/* ============================================================
   SYSTEMIC CHANGE LABS INNER PAGES SHARED STYLES (v1)
   All pages use this for consistent premium design
   ============================================================ */

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', system-ui, sans-serif; background: #fdfef9; color: #1a2e26; padding-top: 76px; }

/* ── Wrap ── */
.pg-wrap { width: min(100% - 48px, 1750px); margin-inline: auto; }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 420ms ease, transform 420ms ease; }
.reveal.active { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
[style*="--stagger"] { transition-delay: calc(var(--stagger) * 80ms); }

/* ══════════════════════════════════════════
   HEADER OVERRIDES (Inner pages only)
   ══════════════════════════════════════════ */
.site-header .brand span,
.site-header .scl-brand span,
.site-header .brand span strong,
.site-header .scl-brand span strong {
  color: #f7ad24 !important;
}

/* Active nav link shows which page you're on */
.site-header .site-nav > a.active,
.site-header .site-nav .nav-parent.active,
.site-header .scl-nav > a.active,
.site-header .scl-nav .nav-parent.active {
  border-bottom-color: #f7ad24 !important; font-weight: 700 !important;
}

/* ══════════════════════════════════════════
   PAGE HERO dark green immersive banner
   ══════════════════════════════════════════ */
.pg-hero {
  background: #0c2d22; padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px); position: relative; overflow: hidden;
}
.pg-hero::before {
  content: ''; position: absolute; top: -20%; right: -5%; width: 55%; height: 130%; background: radial-gradient(ellipse, rgba(247,173,36,0.08) 0%, transparent 65%); pointer-events: none;
}
.pg-hero::after {
  content: ''; position: absolute; bottom: -20%; left: -5%; width: 40%; height: 80%; background: radial-gradient(ellipse, rgba(18,90,60,0.4) 0%, transparent 65%); pointer-events: none;
}
.pg-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; position: relative; z-index: 1;
}
.pg-hero-inner.centered {
  grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; text-align: center;
}
.pg-hero-kicker {
  display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #f7ad24; background: rgba(247,173,36,0.1); border: 1px solid rgba(247,173,36,0.25); padding: 6px 16px 6px 8px; border-radius: 100px; margin-bottom: 24px;
}
.pg-hero-kicker::before {
  content: ''; width: 6px; height: 6px; background: #f7ad24; border-radius: 50%; flex-shrink: 0;
}
.pg-hero h1 {
  font-family: 'Montserrat', system-ui, sans-serif; font-size: clamp(2.4rem, 4.5vw, 4.2rem); font-weight: 800; line-height: 1.1; color: #ffffff; margin: 0 0 20px; letter-spacing: -0.03em;
}
.pg-hero p {
  font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.8; color: rgba(255,255,255,0.75); margin: 0 0 32px; max-width: 560px;
}
.pg-hero-img {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.pg-hero-img img {
  width: 100%; height: auto; max-height: 460px; object-fit: contain; display: block; position: relative; z-index: 1;
  /* Fade edges into the dark hero background eliminates the white-box look */
  -webkit-mask-image: radial-gradient(
    ellipse 88% 82% at 52% 50%, black 0%, black 38%, rgba(0,0,0,0.92) 52%, rgba(0,0,0,0.6) 64%, rgba(0,0,0,0.2) 76%, transparent 90%
  ); mask-image: radial-gradient(
    ellipse 88% 82% at 52% 50%, black 0%, black 38%, rgba(0,0,0,0.92) 52%, rgba(0,0,0,0.6) 64%, rgba(0,0,0,0.2) 76%, transparent 90%
  ); filter: drop-shadow(0 20px 50px rgba(0,0,0,0.25));
}
/* Ambient green glow behind the image */
.pg-hero-img::before {
  content: ''; position: absolute; inset: 5%; background: radial-gradient(ellipse at center, rgba(18,90,60,0.55) 0%, rgba(12,45,34,0.8) 50%, transparent 75%); border-radius: 50%; z-index: 0; pointer-events: none;
}
/* Gold accent glow */
.pg-hero-img::after {
  content: ''; position: absolute; top: 10%; right: 5%; width: 45%; height: 45%; background: radial-gradient(circle, rgba(247,173,36,0.08) 0%, transparent 70%); border-radius: 50%; z-index: 0; pointer-events: none;
}

/* ══════════════════════════════════════════
   CONTENT SECTIONS
   ══════════════════════════════════════════ */
.pg-section {
  padding: clamp(70px, 9vw, 120px) 0;
}
.pg-section-alt {
  background: #eef5ed;
}
.pg-section-dark {
  background: #0c2d22; color: #fff;
}

/* Section heading */
.pg-section-title {
  margin-bottom: clamp(40px, 5vw, 60px);
}
.pg-section-title .pg-kicker {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #f7ad24; margin-bottom: 12px;
}
.pg-section-title h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.2vw, 3rem); font-weight: 700; line-height: 1.15; color: #0c2d22; margin: 0;
}
.pg-section-dark .pg-section-title h2 { color: #fff; }
.pg-section-title p {
  font-size: 1.05rem; line-height: 1.8; color: #5a6964; margin: 16px 0 0; max-width: 640px;
}

/* Split layout */
.pg-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center;
}
.pg-split.reverse { direction: rtl; }
.pg-split.reverse > * { direction: ltr; }

.pg-split-img {
  border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(18,63,49,0.1);
}
.pg-split-img img {
  width: 100%; height: 380px; object-fit: cover; display: block;
}

.pg-split-copy .pg-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #f7ad24; margin-bottom: 12px; display: block;
}
.pg-split-copy h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 700; line-height: 1.2; color: #0c2d22; margin: 0 0 16px;
}
.pg-split-copy p {
  font-size: 1.05rem; line-height: 1.8; color: #5a6964; margin-bottom: 16px;
}

/* Feature grid cards */
.pg-card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px;
}
.pg-card {
  background: #fff; border: 1px solid rgba(18,63,49,0.08); border-radius: 16px; padding: 32px 28px; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.pg-card:hover {
  transform: translateY(-3px); box-shadow: 0 16px 34px rgba(18,63,49,0.06); border-color: rgba(247,173,36,0.3);
}
.pg-section-alt .pg-card { background: #fff; }
.pg-card-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #f7ad24; opacity: 0.7; margin-bottom: 12px; line-height: 1;
}

/* Image-rich cards */
.pg-card-has-img {
  padding: 0; display: flex; flex-direction: column; overflow: hidden;
}
.pg-card-img-wrapper {
  width: 100%; height: 200px; overflow: hidden; border-bottom: 1px solid rgba(18,63,49,0.06);
}
.pg-card-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 360ms ease;
}
.pg-card-has-img:hover .pg-card-img-wrapper img {
  transform: scale(1.03);
}
.pg-card-content {
  padding: 28px; flex: 1; display: flex; flex-direction: column;
}

.pg-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #0c2d22; margin: 0 0 10px;
}
.pg-card p {
  font-size: 0.95rem; line-height: 1.7; color: #5a6964; margin: 0;
}

/* Stats row */
.pg-stats {
  display: flex; gap: 48px; flex-wrap: wrap; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(18,63,49,0.1);
}
.pg-stat h3 {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: #f7ad24; margin: 0 0 4px; line-height: 1;
}
.pg-stat p { font-size: 0.9rem; color: #5a6964; margin: 0; font-weight: 600; }

/* Quote block */
.pg-quote {
  background: #0c2d22; border-radius: 20px; padding: clamp(36px, 5vw, 60px); position: relative; overflow: hidden;
}
.pg-quote::before {
  content: '"'; position: absolute; top: -20px; left: 20px; font-family: 'Playfair Display', serif; font-size: 12rem; color: rgba(247,173,36,0.1); line-height: 1; pointer-events: none;
}
.pg-quote blockquote {
  font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-style: italic; color: #fff; line-height: 1.5; margin: 0 0 20px; position: relative; z-index: 1;
}
.pg-quote cite {
  font-size: 0.9rem; color: #f7ad24; font-style: normal; font-weight: 700;
}

/* Large image hero strip */
.pg-image-strip {
  width: 100%; height: 420px; object-fit: cover; border-radius: 20px; display: block; box-shadow: 0 20px 60px rgba(18,63,49,0.12);
}

/* Cinematic Image Strip container & image styling */
.pg-cinematic-strip {
  width: 100%; height: clamp(240px, 35vw, 420px); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(18,63,49,0.12); display: block;
}
.pg-cinematic-strip img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Process steps */
.pg-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; counter-reset: steps;
}
.pg-step {
  padding: 32px 28px; position: relative; border-left: 1px solid rgba(18,63,49,0.1);
}
.pg-step:first-child { border-left: none; }
.pg-step::before {
  counter-increment: steps; content: counter(steps, decimal-leading-zero); display: block; font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: rgba(247,173,36,0.35); margin-bottom: 12px; line-height: 1;
}
.pg-step h4 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #0c2d22; margin: 0 0 8px;
}
.pg-step p { font-size: 0.9rem; color: #5a6964; line-height: 1.65; margin: 0; }

/* Systems Thinking page polish */
.systems-why-section .pg-section-title {
  max-width: none !important;
}
.systems-why-section .pg-section-title h2,
.systems-explore-section .pg-section-title h2 {
  font-size: clamp(2.25rem, 3.4vw, 3.65rem) !important;
}
.systems-why-section .pg-section-title p {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  font-size: clamp(1.08rem, 1.25vw, 1.22rem) !important;
  line-height: 1.75 !important;
}
.systems-why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}
.systems-why-grid .pg-card,
.systems-explore-grid .pg-card,
.systems-journey-grid .pg-step {
  min-width: 0 !important;
  border-radius: 20px !important;
  border: 1px solid rgba(18,63,49,0.12) !important;
  box-shadow: 0 18px 40px rgba(18,63,49,0.06) !important;
}
.systems-why-grid .pg-card h3,
.systems-explore-grid .pg-card h3,
.systems-journey-grid .pg-step h3 {
  line-height: 1.15 !important;
  overflow-wrap: normal !important;
}
.systems-journey-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 20px !important;
  counter-reset: none !important;
}
.systems-journey-grid .pg-step {
  grid-column: span 2;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 26px !important;
  border-left: 1px solid rgba(18,63,49,0.12) !important;
  background: #fff !important;
}
.systems-journey-grid .pg-step:nth-child(4),
.systems-journey-grid .pg-step:nth-child(5) {
  grid-column: span 3;
}
.systems-journey-grid .pg-step::before {
  content: none !important;
  display: none !important;
}
.systems-journey-grid .pg-card-num {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  min-width: 46px !important;
  height: 34px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: rgba(247,173,36,0.16) !important;
  color: #d99110 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  opacity: 1 !important;
  margin-bottom: 4px !important;
}
.systems-journey-grid .pg-step h3 {
  margin: 0 !important;
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.55rem, 2vw, 2.1rem) !important;
  color: #0c2d22 !important;
}
.systems-journey-grid .pg-step h4 {
  margin: 0 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  color: #123f31 !important;
}
.systems-journey-grid .pg-step p {
  margin: 0 !important;
  font-size: 0.96rem !important;
  line-height: 1.62 !important;
  color: #55645f !important;
}
.systems-explore-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
}
.systems-explore-grid .pg-card {
  padding: 28px !important;
  background: linear-gradient(135deg, #ffffff 0%, #f3f8f1 100%) !important;
}
.systems-explore-grid .pg-card h3 {
  font-size: clamp(1.3rem, 1.7vw, 1.65rem) !important;
  margin-bottom: 12px !important;
}
.systems-explore-grid .pg-card p {
  font-size: 1rem !important;
  line-height: 1.68 !important;
}

@media (max-width: 1180px) {
  .systems-why-grid,
  .systems-explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .systems-journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .systems-journey-grid .pg-step,
  .systems-journey-grid .pg-step:nth-child(4),
  .systems-journey-grid .pg-step:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .systems-why-grid,
  .systems-explore-grid,
  .systems-journey-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════════
   INLINE CTA BANNER (same as home page)
   ══════════════════════════════════════════ */
.pg-cta-section {
  background: #123f31; padding: clamp(50px, 6vw, 80px) 0; position: relative; overflow: hidden;
}
.pg-cta-section::before {
  content: ''; position: absolute; top: -60%; right: -5%; width: 50%; padding-bottom: 50%; border-radius: 50%; background: radial-gradient(circle, rgba(247,173,36,0.1) 0%, transparent 65%); pointer-events: none;
}
.pg-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 36px 48px; flex-wrap: wrap; position: relative; z-index: 2;
}
.pg-cta-text { flex: 1; min-width: 240px; }
.pg-cta-text h1,
.pg-cta-text h2,
.pg-cta-text h3,
.pg-cta-text h4,
.pg-cta-inner h1,
.pg-cta-inner h2,
.pg-cta-inner h3,
.pg-cta-inner h4,
.pg-cta-section h1,
.pg-cta-section h2,
.pg-cta-section h3,
.pg-cta-section h4 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: 'Playfair Display', Georgia, serif;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.15;
}
.pg-cta-label,
.pg-cta-text .pg-cta-label {
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #f7ad24 !important;
  -webkit-text-fill-color: #f7ad24 !important;
  margin: 0 0 12px !important;
  display: block;
}
.pg-cta-desc,
.pg-cta-text p {
  font-size: 1.1rem;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  line-height: 1.65;
  margin: 0 0 12px;
  font-weight: 500;
}
.pg-cta-desc:last-child,
.pg-cta-text p:last-child {
  margin-bottom: 0;
}
.pg-cta-desc strong,
.pg-cta-text strong,
.pg-cta-desc b,
.pg-cta-text b {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   WAVE DIVIDER
   ══════════════════════════════════════════ */
.pg-wave { display: block; line-height: 0; background: #123f31; }
.pg-wave svg { display: block; width: 100%; height: 50px; }

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.pg-btn {
  display: inline-flex; align-items: center; justify-content: center; font-family: 'Inter', system-ui, sans-serif; font-size: 0.88rem; font-weight: 700; min-height: 50px; padding: 13px 28px; border-radius: 4px; text-decoration: none; cursor: pointer; letter-spacing: 0.01em; transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.pg-btn-green {
  background: #123f31; border: 2px solid #123f31; color: #fff;
}
.pg-btn-green:hover { background: #1a5c48; border-color: #1a5c48; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(18,63,49,0.2); }
.pg-btn-yellow {
  background: #f7ad24; border: 2px solid #f7ad24; color: #123f31; font-weight: 800;
}
.pg-btn-yellow:hover { background: #ffc24f; border-color: #ffc24f; transform: translateY(-2px); }
.pg-btn-outline-white {
  background: transparent; border: 2px solid rgba(255,255,255,0.4); color: #fff;
}
.pg-btn-outline-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   STORYTELLING STEPS About Philosophy
   ══════════════════════════════════════════ */
.about-story-section { background: #fdfef9; }

.story-step {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; padding: clamp(40px, 5vw, 64px) 0; border-bottom: 1px solid rgba(18,63,49,0.07); position: relative;
}
.story-step:last-child { border-bottom: none; }

/* Reverse: image on right, copy on left */
.story-step-reverse { }
.story-step-reverse .story-step-img { order: 2; }
.story-step-reverse .story-step-copy { order: 1; }

/* Image column */
.story-step-img {
  position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(18,63,49,0.12); aspect-ratio: 4/3;
}
.story-step-img img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms ease;
}
.story-step:hover .story-step-img img {
  transform: scale(1.04);
}

/* Step badge numbered circle */
.story-step-badge {
  position: absolute; top: 20px; left: 20px; width: 52px; height: 52px; border-radius: 50%; background: #0c2d22; color: #fff; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; z-index: 2; box-shadow: 0 6px 20px rgba(12,45,34,0.35);
}
.story-step-badge-gold {
  background: #f7ad24; color: #0c2d22;
}

/* Copy column */
.story-step-copy { display: flex; flex-direction: column; gap: 14px; }

.story-step-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: #f7ad24; display: block;
}
.story-step-copy h3 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 700; color: #0c2d22; margin: 0; line-height: 1.15;
}
.story-step-copy p {
  font-size: 1.05rem; line-height: 1.85; color: #5a6964; margin: 0;
}
.story-step-pill {
  display: inline-flex; align-items: center; padding: 7px 18px; border-radius: 100px; background: rgba(18,63,49,0.07); border: 1px solid rgba(18,63,49,0.12); font-size: 0.78rem; font-weight: 700; color: #123f31; letter-spacing: 0.04em; width: fit-content; margin-top: 6px;
}
.story-step-pill-gold {
  background: rgba(247,173,36,0.12); border-color: rgba(247,173,36,0.35); color: #b37800;
}

/* ══════════════════════════════════════════
   WHY CHOOSE US  3-column forced grid
   ══════════════════════════════════════════ */
.why-choose-grid {
  grid-template-columns: repeat(3, 1fr) !important; margin-top: 0;
}

.why-card {
  position: relative; padding-top: 36px !important;
}
.why-card-icon {
  font-size: 1.8rem; margin-bottom: 14px; display: block; line-height: 1;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 860px) {
  .pg-hero-inner { grid-template-columns: 1fr; }
  .pg-hero-img:not(.insights-hero-img) { display: none; }
  .pg-split { grid-template-columns: 1fr; direction: ltr !important; }
  .pg-split-img img { height: 260px; }
  .pg-cta-inner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .pg-steps { grid-template-columns: 1fr; }
  .pg-step { border-left: none; border-top: 1px solid rgba(18,63,49,0.1); }
  .pg-step:first-child { border-top: none; }

  /* Story steps stack on mobile */
  .story-step {
    grid-template-columns: 1fr; padding: 40px 0;
  }
  .story-step-reverse .story-step-img { order: 0; }
  .story-step-reverse .story-step-copy { order: 1; }

  /* Why choose  1 col on mobile */
  .why-choose-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  /* Why choose stack nicely on small screens */
  .why-choose-grid { grid-template-columns: 1fr !important; }
}

/* Systems Thinking final alignment overrides */
.systems-hero {
  padding-top: clamp(28px, 4vw, 56px) !important;
  padding-bottom: clamp(34px, 5vw, 66px) !important;
}
.systems-hero .pg-hero-inner {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr) !important;
  gap: clamp(24px, 3.6vw, 52px) !important;
  align-items: center !important;
}
.systems-hero h1 {
  font-size: clamp(2.9rem, 4.4vw, 5rem) !important;
  line-height: 1.02 !important;
}
.systems-hero .pg-hero-copy p {
  max-width: 700px !important;
}
.systems-hero .pg-hero-img {
  display: block !important;
  width: 100% !important;
  justify-self: stretch !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: rgba(255,255,255,.06) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.22) !important;
}
.systems-hero .pg-hero-img img {
  width: 100% !important;
  height: clamp(440px, 46vw, 680px) !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: none !important;
}
.systems-definition-section {
  background: #fbfcf6 !important;
}
.systems-definition-copy {
  max-width: 1180px !important;
  margin: 0 auto clamp(28px, 4vw, 44px) !important;
  text-align: center !important;
}
.systems-definition-copy h2 {
  font-size: clamp(2.35rem, 4vw, 4.25rem) !important;
  line-height: 1.04 !important;
  margin-bottom: clamp(18px, 2.6vw, 30px) !important;
}
.systems-definition-text {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
  text-align: left !important;
}
.systems-definition-text p {
  margin: 0 !important;
  padding: 24px !important;
  border: 1px solid rgba(18,63,49,.1) !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: 0 18px 42px rgba(18,63,49,.055) !important;
  font-size: clamp(1.02rem, 1.15vw, 1.16rem) !important;
  line-height: 1.72 !important;
}
.systems-definition-cards {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
.systems-definition-cards article {
  min-height: 238px !important;
  padding: 28px 24px !important;
  border: 1px solid rgba(18,63,49,.12) !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #fff 0%, #f4f8f0 100%) !important;
  box-shadow: 0 20px 46px rgba(18,63,49,.06) !important;
}
.systems-definition-cards article::before {
  display: grid !important;
  place-items: center !important;
  width: 72px !important;
  height: 72px !important;
  margin-bottom: 28px !important;
  border-radius: 18px !important;
  background: #eef5ed !important;
  color: #123f31 !important;
  font-size: 2rem !important;
}
.systems-definition-cards article:nth-child(1)::before { content: "⌕" !important; }
.systems-definition-cards article:nth-child(2)::before { content: "∞" !important; }
.systems-definition-cards article:nth-child(3)::before { content: "↻" !important; }
.systems-definition-cards article:nth-child(4)::before { content: "✦" !important; }
.systems-definition-cards strong {
  display: block !important;
  color: #f7ad24 !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 1.45rem !important;
  line-height: 1 !important;
  margin-bottom: 12px !important;
}
.systems-definition-cards h3 {
  margin: 0 0 12px !important;
  color: #0c2d22 !important;
  font-size: clamp(1.45rem, 1.9vw, 2rem) !important;
  line-height: 1.1 !important;
}
.systems-definition-cards p {
  margin: 0 !important;
  color: #52615d !important;
  font-size: 1.04rem !important;
  line-height: 1.6 !important;
}
.systems-journey-section .pg-section-title,
.systems-explore-section .pg-section-title {
  max-width: 1040px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
.systems-journey-section .pg-section-title h2 {
  font-size: clamp(2.35rem, 3.7vw, 4rem) !important;
  line-height: 1.05 !important;
}
.systems-journey-section .pg-section-title p,
.systems-explore-section .pg-section-title p {
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(1.06rem, 1.2vw, 1.2rem) !important;
  line-height: 1.75 !important;
}
.systems-why-section {
  padding-top: clamp(58px, 6vw, 88px) !important;
  padding-bottom: clamp(58px, 6vw, 88px) !important;
}
.systems-why-section .pg-section-title {
  display: grid !important;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr) !important;
  gap: clamp(28px, 4vw, 64px) !important;
  align-items: end !important;
  max-width: 100% !important;
  margin: 0 0 clamp(28px, 4vw, 48px) !important;
  text-align: left !important;
}
.systems-why-section .pg-section-title .pg-kicker {
  grid-column: 1 / -1 !important;
  margin-bottom: 0 !important;
}
.systems-why-section .pg-section-title h2 {
  margin: 0 !important;
  font-size: clamp(2.55rem, 4vw, 4.4rem) !important;
  line-height: 1.03 !important;
}
.systems-why-section .pg-section-title p {
  margin: 0 !important;
  max-width: none !important;
  font-size: clamp(1.08rem, 1.25vw, 1.24rem) !important;
  line-height: 1.72 !important;
}
.systems-why-section .pg-section-title p + p {
  margin-top: 18px !important;
}
.systems-why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(16px, 1.8vw, 24px) !important;
}
.systems-why-grid .pg-card {
  min-height: 230px !important;
  padding: clamp(24px, 2vw, 34px) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f6faf3 100%) !important;
}
.systems-why-grid .pg-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.85rem) !important;
}
.systems-why-grid .pg-card p {
  font-size: clamp(1rem, 1.08vw, 1.12rem) !important;
  line-height: 1.65 !important;
}
@media (max-width: 1100px) {
  .systems-definition-text,
  .systems-definition-cards,
  .systems-why-grid,
  .systems-explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .systems-hero .pg-hero-inner {
    grid-template-columns: 1fr !important;
  }
  .systems-hero .pg-hero-img img {
    height: clamp(360px, 56vw, 560px) !important;
  }
  .systems-why-section .pg-section-title {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
}
@media (max-width: 720px) {
  .systems-hero {
    padding-top: 34px !important;
    padding-bottom: 44px !important;
  }
  .systems-hero .pg-hero-inner {
    gap: 28px !important;
  }
  .systems-hero .pg-hero-img img {
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
  }
  .systems-definition-text,
  .systems-definition-cards {
    grid-template-columns: 1fr !important;
  }
  .systems-definition-cards article {
    min-height: 0 !important;
  }
}

/* Systems Thinking visual redesign: each section gets a distinct treatment */
.systems-definition-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(247,173,36,.1), transparent 28%),
    linear-gradient(180deg, #fbfcf6 0%, #eef5ed 100%) !important;
}
.systems-definition-copy {
  position: relative !important;
}
.systems-definition-copy::after {
  content: "" !important;
  display: block !important;
  width: min(720px, 70vw) !important;
  height: 2px !important;
  margin: clamp(24px, 3vw, 38px) auto 0 !important;
  background: linear-gradient(90deg, transparent, rgba(18,63,49,.24), rgba(247,173,36,.55), rgba(18,63,49,.24), transparent) !important;
}
.systems-definition-text p {
  position: relative !important;
  overflow: hidden !important;
  padding: 30px 28px 30px 34px !important;
  border: 0 !important;
  border-radius: 28px !important;
  background: rgba(255,255,255,.9) !important;
}
.systems-definition-text p::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 26px !important;
  bottom: 26px !important;
  width: 6px !important;
  border-radius: 999px !important;
  background: #f7ad24 !important;
}
.systems-definition-text p:nth-child(2)::before { background: #2b7160 !important; }
.systems-definition-text p:nth-child(3)::before { background: #0c2d22 !important; }
.systems-definition-cards {
  align-items: stretch !important;
}
.systems-definition-cards article {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  min-height: 300px !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 30px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.98)),
    radial-gradient(circle at 50% 20%, rgba(247,173,36,.2), transparent 44%) !important;
}
.systems-definition-cards article::after {
  content: "" !important;
  position: absolute !important;
  inset: 22px 22px auto auto !important;
  width: 92px !important;
  height: 92px !important;
  border-radius: 50% !important;
  border: 1px dashed rgba(18,63,49,.24) !important;
}
.systems-definition-cards article:nth-child(2) {
  background: linear-gradient(180deg, #f9fbf4, #ffffff) !important;
}
.systems-definition-cards article:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, #eef5ed) !important;
}
.systems-definition-cards article:nth-child(4) {
  background: linear-gradient(135deg, #123f31, #1d5a47) !important;
}
.systems-definition-cards article:nth-child(4) h3,
.systems-definition-cards article:nth-child(4) p {
  color: #fff !important;
}
.systems-definition-cards article:nth-child(4)::before {
  background: rgba(255,255,255,.14) !important;
  color: #f7ad24 !important;
}
.systems-definition-cards article:nth-child(4)::after {
  border-color: rgba(255,255,255,.28) !important;
}
.systems-why-section {
  background:
    linear-gradient(90deg, rgba(18,63,49,.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18,63,49,.05) 1px, transparent 1px),
    #f6fbf4 !important;
  background-size: 52px 52px, 52px 52px, auto !important;
}
.systems-why-grid .pg-card {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 34px !important;
  border: 0 !important;
  background: #fff !important;
}
.systems-why-grid .pg-card::before {
  content: "" !important;
  display: block !important;
  width: 86px !important;
  height: 86px !important;
  margin-bottom: 28px !important;
  border-radius: 22px !important;
  background: #eef5ed !important;
  box-shadow: inset 0 0 0 1px rgba(18,63,49,.1) !important;
}
.systems-why-grid .pg-card:nth-child(1)::before {
  background:
    radial-gradient(circle at 46px 32px, #0c2d22 0 5px, transparent 6px),
    radial-gradient(circle at 28px 50px, #f7ad24 0 5px, transparent 6px),
    linear-gradient(135deg, transparent 46%, rgba(18,63,49,.35) 47% 49%, transparent 50%),
    #eef5ed !important;
}
.systems-why-grid .pg-card:nth-child(2)::before {
  background:
    radial-gradient(circle at 26px 42px, #f7ad24 0 6px, transparent 7px),
    radial-gradient(circle at 58px 42px, #0c2d22 0 6px, transparent 7px),
    linear-gradient(90deg, transparent 28%, rgba(18,63,49,.4) 29% 71%, transparent 72%),
    #eef5ed !important;
}
.systems-why-grid .pg-card:nth-child(3)::before {
  background:
    linear-gradient(90deg, transparent 40%, #0c2d22 41% 45%, transparent 46%),
    radial-gradient(circle at 42px 34px, #f7ad24 0 18px, transparent 19px),
    #eef5ed !important;
}
.systems-why-grid .pg-card:nth-child(4)::before {
  background:
    linear-gradient(135deg, transparent 52%, #0c2d22 53% 58%, transparent 59%),
    radial-gradient(circle at 60px 26px, #f7ad24 0 9px, transparent 10px),
    #eef5ed !important;
}
.systems-why-grid .pg-card-num {
  position: absolute !important;
  top: 30px !important;
  right: 30px !important;
  margin: 0 !important;
  background: rgba(247,173,36,.14) !important;
}
.systems-journey-section {
  background: #fff !important;
}
.systems-journey-grid {
  gap: 24px !important;
}
.systems-journey-grid .pg-step {
  position: relative !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 30px !important;
  background: linear-gradient(145deg, #ffffff 0%, #f4f8f0 100%) !important;
}
.systems-journey-grid .pg-step::after {
  content: "" !important;
  position: absolute !important;
  top: 28px !important;
  right: 28px !important;
  width: 96px !important;
  height: 96px !important;
  border-radius: 50% !important;
  border: 1px dashed rgba(18,63,49,.18) !important;
}
.systems-journey-grid .pg-step:nth-child(2),
.systems-journey-grid .pg-step:nth-child(4) {
  background: linear-gradient(145deg, #eef5ed 0%, #ffffff 100%) !important;
}
.systems-journey-grid .pg-step:nth-child(3) {
  background: linear-gradient(145deg, #fff 0%, #fff8e8 100%) !important;
}
.systems-journey-grid .pg-step:nth-child(5) {
  background: linear-gradient(145deg, #123f31 0%, #1d5a47 100%) !important;
}
.systems-journey-grid .pg-step:nth-child(5) h3,
.systems-journey-grid .pg-step:nth-child(5) h4,
.systems-journey-grid .pg-step:nth-child(5) p {
  color: #fff !important;
}
.systems-explore-grid .pg-card {
  position: relative !important;
  overflow: hidden !important;
  min-height: 260px !important;
  padding: 34px !important;
  border: 0 !important;
  border-radius: 30px !important;
  background: #fff !important;
}
.systems-explore-grid .pg-card::before {
  content: "" !important;
  display: block !important;
  width: 58px !important;
  height: 58px !important;
  margin-bottom: 24px !important;
  border-radius: 16px !important;
  background: #eef5ed !important;
}
.systems-explore-grid .pg-card:nth-child(1)::before { content: "▦" !important; display: grid !important; place-items: center !important; color: #0c2d22 !important; font-size: 1.6rem !important; }
.systems-explore-grid .pg-card:nth-child(2)::before { content: "◎" !important; display: grid !important; place-items: center !important; color: #0c2d22 !important; font-size: 1.8rem !important; }
.systems-explore-grid .pg-card:nth-child(3)::before { content: "♻" !important; display: grid !important; place-items: center !important; color: #0c2d22 !important; font-size: 1.4rem !important; }
.systems-explore-grid .pg-card:nth-child(4)::before { content: "✎" !important; display: grid !important; place-items: center !important; color: #0c2d22 !important; font-size: 1.4rem !important; }
.systems-explore-grid .pg-card:nth-child(5)::before { content: "⚖" !important; display: grid !important; place-items: center !important; color: #0c2d22 !important; font-size: 1.4rem !important; }
.systems-explore-grid .pg-card:nth-child(6)::before { content: "⌁" !important; display: grid !important; place-items: center !important; color: #0c2d22 !important; font-size: 1.8rem !important; }
.systems-why-section {
  padding-top: clamp(44px, 5vw, 72px) !important;
  padding-bottom: clamp(48px, 5vw, 76px) !important;
}

.systems-why-section .systems-why-title {
  display: grid !important;
  grid-template-columns: minmax(0, .74fr) minmax(0, 1.26fr) !important;
  gap: clamp(18px, 3vw, 46px) !important;
  align-items: center !important;
  max-width: 100% !important;
  margin: 0 0 clamp(24px, 3vw, 38px) !important;
  text-align: left !important;
}

.systems-why-title .pg-kicker {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
}

.systems-why-heading h2 {
  margin: 0 !important;
  font-size: clamp(2.35rem, 3.7vw, 4.2rem) !important;
  line-height: 1.04 !important;
  max-width: 780px !important;
}

.systems-why-copy {
  padding: clamp(20px, 2.2vw, 32px) !important;
  border-radius: 28px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(243, 250, 244, .86)),
    radial-gradient(circle at 92% 12%, rgba(251, 174, 31, .12), transparent 34%) !important;
  border: 1px solid rgba(18, 63, 49, .1) !important;
  box-shadow: 0 20px 48px rgba(18, 63, 49, .055) !important;
}

.systems-why-copy p {
  margin: 0 !important;
  max-width: none !important;
  font-size: clamp(1.04rem, 1.16vw, 1.18rem) !important;
  line-height: 1.68 !important;
}

.systems-why-copy p + p {
  margin-top: 14px !important;
}

.systems-why-grid {
  margin-top: 0 !important;
}

@media (max-width: 980px) {
  .systems-why-section .systems-why-title {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .systems-why-heading h2 {
    margin-inline: auto !important;
  }

  .systems-why-copy {
    text-align: left !important;
  }
}
