/*
 * Newsgraphy — Partnership page
 * Extends inner.css (loaded after it)
 */

/* ════════════════════════════════════════════════════════════════
   TOKENS (inherits from inner.css :root)
════════════════════════════════════════════════════════════════ */
:root {
  --green:      #1a6b3a;
  --green100:   #e8f5ee;
  --amber:      #c46200;
  --amber100:   #fff3e0;
  --max:        1180px;
  --gutter:     clamp(20px, 5vw, 64px);
  --section-v:  clamp(64px, 8vw, 112px);
}

/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.ngp-hero {
  background: var(--blue900);
  color: #fff;
  padding: var(--section-v) var(--gutter);
  position: relative;
  overflow: hidden;
}

/* Decorative grid lines */
.ngp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Orange accent bar — left edge */
.ngp-hero::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
}

.ngp-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}

.ngp-hero-copy { max-width: 680px; }

.ngp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.ngp-eyebrow::before {
  content: "";
  width: 28px; height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.ngp-hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.03;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 24px;
}
.ngp-hero-title em {
  font-style: normal;
  color: var(--orange);
}

.ngp-hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.ngp-hero-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
  max-width: 600px;
  margin-bottom: 16px;
}

.ngp-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.ngp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
  font-family: var(--sans);
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 150ms, color 150ms, border-color 150ms, transform 120ms;
  white-space: nowrap;
  letter-spacing: .02em;
}
.ngp-btn:hover { transform: translateY(-1px); }

.ngp-btn--primary {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
}
.ngp-btn--primary:hover { background: #c46200; border-color: #c46200; color: #fff; }

.ngp-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 2px solid rgba(255,255,255,.25);
}
.ngp-btn--ghost:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

/* Stats sidebar */
.ngp-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-self: stretch;
  justify-content: center;
  padding-left: 48px;
  border-left: 1px solid rgba(255,255,255,.1);
  min-width: 200px;
}

.ngp-stat {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ngp-stat:last-child { border-bottom: none; }

.ngp-stat-num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.ngp-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════════
   CREDIBILITY BAR
════════════════════════════════════════════════════════════════ */
.ngp-cred-bar {
  background: var(--blue);
  padding: 18px var(--gutter);
  border-bottom: 3px solid var(--orange);
}

.ngp-cred-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ngp-cred-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  flex-shrink: 0;
  white-space: nowrap;
}

.ngp-cred-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

.ngp-cred-logos {
  display: flex;
  list-style: none;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.ngp-cred-logos li {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 5px 12px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 150ms;
}
.ngp-cred-logos li:hover { background: rgba(255,255,255,.18); }

/* ════════════════════════════════════════════════════════════════
   SHARED SECTION WRAPPER
════════════════════════════════════════════════════════════════ */
.ngp-section {
  padding: var(--section-v) var(--gutter);
}
.ngp-section--alt  { background: var(--surface); }
.ngp-section--dark {
  background: var(--blue900);
  color: #fff;
}
.ngp-section--accent {
  background: var(--blue);
  color: #fff;
}

.ngp-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.ngp-inner--narrow { max-width: 720px; }
.ngp-inner--center { text-align: center; }
.ngp-inner--wide   { max-width: 1280px; }

.ngp-section-label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ngp-section-label::before {
  content: "";
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.ngp-section-label--light { color: rgba(255,255,255,.5); }
.ngp-section-label--light::before { background: rgba(255,255,255,.3); }

.ngp-section-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 40px;
}
.ngp-section-title--light { color: #fff; }

/* ════════════════════════════════════════════════════════════════
   DIFFERENTIATORS (3-up pillars)
════════════════════════════════════════════════════════════════ */
.ngp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 8px;
}

.ngp-pillar {
  background: #fff;
  padding: 36px 32px;
  position: relative;
  border-top: 4px solid transparent;
  transition: border-color 200ms, box-shadow 200ms;
}
.ngp-pillar:hover {
  border-top-color: var(--orange);
  box-shadow: 0 8px 32px rgba(8,102,188,.08);
  z-index: 1;
}

.ngp-pillar-icon {
  width: 48px; height: 48px;
  background: var(--surface);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.ngp-pillar-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.ngp-pillar-body {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════════
   SERVICES GRID
════════════════════════════════════════════════════════════════ */
.ngp-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.ngp-svc {
  background: #fff;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 200ms;
}
.ngp-section--alt .ngp-svc { background: #fff; }

/* Colored top strip per service */
.ngp-svc::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--svc-color, var(--blue));
}

.ngp-svc:nth-child(1) { --svc-color: var(--blue); }
.ngp-svc:nth-child(2) { --svc-color: var(--orange); }
.ngp-svc:nth-child(3) { --svc-color: var(--green); }
.ngp-svc:nth-child(4) { --svc-color: #7c3aed; }

.ngp-svc:hover { box-shadow: 0 8px 40px rgba(0,0,0,.08); z-index: 1; }

.ngp-svc-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--svc-color, var(--blue));
  background: color-mix(in srgb, var(--svc-color, var(--blue)) 10%, transparent);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 18px;
}

.ngp-svc-title {
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.015em;
  line-height: 1.2;
}

.ngp-svc-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

.ngp-svc-best {
  font-size: 12px;
  color: var(--muted);
  border-left: 3px solid var(--svc-color, var(--blue));
  padding: 8px 12px;
  background: color-mix(in srgb, var(--svc-color, var(--blue)) 5%, transparent);
  line-height: 1.6;
}
.ngp-svc-best strong { color: var(--text); font-weight: 700; }

.ngp-svc-deliverables {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ngp-svc-deliverable-tag {
  font-size: 11px;
  font-weight: 700;
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ════════════════════════════════════════════════════════════════
   PROCESS STRIP
════════════════════════════════════════════════════════════════ */
.ngp-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}

/* Connecting line */
.ngp-process::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.ngp-step {
  padding: 0 20px 32px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.ngp-step-num {
  width: 56px; height: 56px;
  background: var(--blue900);
  color: var(--orange);
  font-family: var(--sans);
  font-weight: 900;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--blue900);
}

.ngp-step-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.ngp-step-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════
   CASE STUDIES
════════════════════════════════════════════════════════════════ */
.ngp-cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 8px;
}

.ngp-cs-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow 200ms, transform 200ms;
}
.ngp-cs-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  transform: translateY(-3px);
  z-index: 1;
}

/* Coloured top band */
.ngp-cs-band {
  height: 6px;
  background: var(--cs-color, var(--blue));
  flex-shrink: 0;
}

.ngp-cs-card-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ngp-cs-client-tag {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cs-color, var(--blue));
  margin-bottom: 12px;
}

.ngp-cs-title {
  font-family: var(--display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -.015em;
  margin-bottom: 12px;
}

.ngp-cs-excerpt {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  flex: 1;
}

.ngp-cs-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ngp-cs-del {
  font-size: 11px;
  font-weight: 700;
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ════════════════════════════════════════════════════════════════
   EDITORIAL STANDARDS — dark pull-quote section
════════════════════════════════════════════════════════════════ */
.ngp-editorial {
  padding: var(--section-v) var(--gutter);
  background: var(--blue900);
  position: relative;
  overflow: hidden;
}

/* Big faint quote mark */
.ngp-editorial::before {
  content: "\201C";
  position: absolute;
  top: -60px;
  right: var(--gutter);
  font-size: 400px;
  font-family: var(--sans);
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.ngp-editorial-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ngp-pull-quote {
  font-family: var(--sans);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 28px;
}
.ngp-pull-quote em {
  font-style: normal;
  color: var(--orange);
}

.ngp-editorial-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
  max-width: 640px;
  margin-bottom: 32px;
}
.ngp-editorial-body p + p { margin-top: 14px; }

.ngp-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: .02em;
  transition: gap 150ms;
}
.ngp-cta-link:hover { gap: 14px; }
.ngp-cta-link--light { color: var(--orange); }

/* ════════════════════════════════════════════════════════════════
   LANGUAGE ADVANTAGE BANNER
════════════════════════════════════════════════════════════════ */
.ngp-lang-banner {
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.ngp-lang-banner::after {
  content: none;
}

.ngp-lang-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ngp-lang-copy .ngp-section-label { color: rgba(255,255,255,.5); }
.ngp-lang-copy .ngp-section-label::before { background: rgba(255,255,255,.3); }

.ngp-lang-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 16px;
}

.ngp-lang-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
  max-width: 560px;
}

.ngp-lang-chips {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}

.ngp-lang-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 14px 20px;
  border-radius: 4px;
  min-width: 240px;
}

.ngp-lang-chip-flag {
  font-size: 28px;
  line-height: 1;
}

.ngp-lang-chip-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  line-height: 1.3;
}
.ngp-lang-chip-sub {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
  font-weight: 400;
}

/* ════════════════════════════════════════════════════════════════
   WHO WE WORK WITH
════════════════════════════════════════════════════════════════ */
.ngp-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.ngp-who-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  border-bottom: 3px solid transparent;
  transition: border-color 200ms, box-shadow 200ms;
}
.ngp-who-card:hover {
  border-bottom-color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.ngp-who-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.ngp-who-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.ngp-who-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════
   PROSE (generic long-form text)
════════════════════════════════════════════════════════════════ */
.ngp-prose { max-width: 640px; }
.ngp-prose p { font-size: 15px; line-height: 1.85; color: var(--muted); }
.ngp-prose p + p { margin-top: 14px; }
.ngp-prose--light p { color: rgba(255,255,255,.65); }

/* ════════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════════ */
.ngp-faq { margin-top: 8px; border-top: 2px solid var(--border); }

.ngp-faq-item {
  border-bottom: 1px solid var(--border);
}

.ngp-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  letter-spacing: -.01em;
  transition: color 150ms;
}
.ngp-faq-q::-webkit-details-marker { display: none; }
.ngp-faq-q::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 200ms;
  line-height: 1;
}
.ngp-faq-item[open] .ngp-faq-q { color: var(--blue); }
.ngp-faq-item[open] .ngp-faq-q::after {
  content: "−";
  transform: rotate(0deg);
}

.ngp-faq-a {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
}
.ngp-faq-a a { color: var(--blue); text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════
   CLOSING CTA
════════════════════════════════════════════════════════════════ */
.ngp-closing {
  padding: var(--section-v) var(--gutter);
  background: var(--blue900);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle concentric rings */
.ngp-closing::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  box-shadow:
    0 0 0 80px rgba(255,255,255,.025),
    0 0 0 160px rgba(255,255,255,.015),
    0 0 0 240px rgba(255,255,255,.008);
  pointer-events: none;
}

.ngp-closing-inner {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ngp-closing-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 16px;
}

.ngp-closing-body {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  margin-bottom: 36px;
  line-height: 1.7;
}

.ngp-closing-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 150ms, transform 120ms;
  letter-spacing: .01em;
}
.ngp-closing-email:hover {
  background: #c46200;
  transform: translateY(-2px);
  color: #fff;
}

.ngp-closing-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* ════════════════════════════════════════════════════════════════
   CASE STUDIES — full-bleed long-form cards
════════════════════════════════════════════════════════════════ */

.ngp-cs-full {
  border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  background: #fff;
  position: relative;
}

/* Left accent rule using the case study colour */
.ngp-cs-full::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--cs-color, var(--blue));
}

.ngp-cs-full--alt {
  background: var(--surface);
}

/* ── Header row ── */
.ngp-cs-full-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.ngp-cs-full-meta {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.ngp-cs-full-num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--cs-color, var(--blue));
  opacity: .25;
  flex-shrink: 0;
  margin-top: 4px;
}

.ngp-cs-full-client {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cs-color, var(--blue));
  margin-bottom: 8px;
}

.ngp-cs-full-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text);
}

.ngp-cs-full-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-shrink: 0;
  padding-top: 6px;
}

/* ── Body: text + gallery side-by-side ── */
.ngp-cs-full-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

/* Reversed layout: gallery left, text right */
.ngp-cs-full-body--reversed {
  grid-template-columns: 1.4fr 1fr;
}
.ngp-cs-full-body--reversed .ngp-cs-full-text { order: 2; }
.ngp-cs-full-body--reversed .ngp-cs-full-gallery { order: 1; }

.ngp-cs-full-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 14px;
}

/* Stat highlights inside text column */
.ngp-cs-full-highlights {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.ngp-cs-highlight {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ngp-cs-highlight-num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: var(--cs-color, var(--blue));
}

.ngp-cs-highlight-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 160px;
  line-height: 1.4;
}

/* ── Gallery layouts ── */
.ngp-cs-full-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ngp-cs-gallery--side-by-side {
  flex-direction: row;
  align-items: flex-start;
}

.ngp-cs-gallery--stacked .ngp-cs-gallery--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ngp-cs-fig {
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ngp-cs-fig--wide {
  flex: none;
}

.ngp-cs-fig img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: box-shadow 200ms;
}

.ngp-cs-fig img:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.ngp-cs-fig figcaption {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  font-style: italic;
  padding: 0 2px;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ngp-hero-inner     { grid-template-columns: 1fr; }
  .ngp-hero-stats     {
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-left: 0;
    padding-top: 28px;
    gap: 0;
  }
  .ngp-stat {
    flex: 1;
    min-width: 140px;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,.07);
    padding: 0 24px 0 0;
    margin-right: 24px;
  }
  .ngp-stat:last-child { border-right: none; margin-right: 0; }
  .ngp-cs-grid        { grid-template-columns: repeat(2, 1fr); }
  .ngp-process        { grid-template-columns: repeat(2, 1fr); }
  .ngp-process::before { display: none; }
  .ngp-lang-inner     { grid-template-columns: 1fr; gap: 32px; }
  .ngp-lang-chips     { flex-direction: row; align-items: flex-start; }
}

@media (max-width: 768px) {
  .ngp-pillars        { grid-template-columns: 1fr; gap: 2px; }
  .ngp-services-grid  { grid-template-columns: 1fr; }
  .ngp-who-grid       { grid-template-columns: repeat(2, 1fr); }
  .ngp-cs-grid        { grid-template-columns: 1fr; }
  .ngp-process        { grid-template-columns: 1fr 1fr; }
  .ngp-lang-chips     { flex-direction: column; }
  .ngp-lang-chip      { min-width: unset; width: 100%; }
  .ngp-hero-cta-row   { flex-direction: column; align-items: flex-start; }

  /* Case study full cards — stack on mobile */
  .ngp-cs-full-body,
  .ngp-cs-full-body--reversed     { grid-template-columns: 1fr; gap: 28px; }
  .ngp-cs-full-body--reversed .ngp-cs-full-text  { order: unset; }
  .ngp-cs-full-body--reversed .ngp-cs-full-gallery { order: unset; }
  .ngp-cs-gallery--side-by-side   { flex-direction: column; }
  .ngp-cs-full-header             { flex-direction: column; gap: 16px; }
  .ngp-cs-full-num                { font-size: 36px; }
}

@media (max-width: 480px) {
  .ngp-who-grid       { grid-template-columns: 1fr; }
  .ngp-process        { grid-template-columns: 1fr; }
  .ngp-stat           { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 16px 0; margin: 0; }
  .ngp-stat:last-child { border-bottom: none; }
  .ngp-hero-stats     { padding-top: 24px; }
}
