/* ═══════════════════════════════════════════════════════════
   DEAL MAKERS — Complete Design System
   Elegant · Greyscale · Premium
═══════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ───────────────────────────────────────────── */
:root {
  --ink:       #0f0f0f;
  --ink-90:    #1a1a1a;
  --ink-70:    #2e2e2e;
  --grey-60:   #555;
  --grey-40:   #888;
  --grey-20:   #bbb;
  --grey-10:   #e0e0e0;
  --grey-05:   #f4f4f4;
  --white:     #ffffff;
  --cream:     #f9f8f6;

  --display:   'Cormorant Garamond', Georgia, serif;
  --body:      'Inter', system-ui, sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:     3px;
  --shadow:     0 2px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.16);
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--body); cursor: pointer; border: none; background: none; }

/* ── LAYOUT ───────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 36px; }

/* ── TYPOGRAPHY ───────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-40);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--grey-60); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--grey-20); }
.section-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey-60);
  font-weight: 300;
}
.section-sub.light { color: rgba(255,255,255,0.5); }

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-title { margin: 0 auto; }
.section-header.centered .section-sub { margin: 16px auto 0; max-width: 580px; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--ink-70); transform: translateY(-1px); }

.btn-outline-hero {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
}
.btn-outline-hero:hover { border-color: var(--white); color: var(--white); }

.btn-dark {
  display: inline-block;
  padding: 15px 40px;
  background: var(--ink);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.btn-dark:hover { background: var(--ink-70); }

.btn-outline-dark {
  display: inline-block;
  padding: 15px 40px;
  border: 1.5px solid rgba(15,15,15,0.35);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.btn-outline-dark:hover { border-color: var(--ink); }

/* ── SKIP LINK (Accessibility) ──────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 10px 20px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 9999;
  transition: top 0.2s;
  border: 2px solid var(--ink);
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

/* ── FOCUS VISIBLE (Accessibility) ──────────────────── */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}
#header.scrolled *:focus-visible { outline-color: var(--ink); }
.hero-section *:focus-visible,
.pipeline-section *:focus-visible,
.why-section *:focus-visible,
.models-section *:focus-visible,
.contact-section *:focus-visible,
.site-footer *:focus-visible {
  outline-color: var(--white);
}

/* ── ANIMATIONS ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   HEADER / NAVBAR
══════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: padding var(--transition);
}
#header::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Dark gradient at top so logo + links are always visible over hero */
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.1) 80%,
    transparent 100%
  );
  z-index: -1;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  padding: 12px 0;
}
#header.scrolled::before {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-10);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; position: relative; }
.logo-img {
  height: 34px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  transition: opacity var(--transition);
}
/* Dual logo swap: at top show white logo, on scroll show dark logo */
.logo-dark  { opacity: 0; position: absolute; left: 0; top: 0; }
.logo-white { opacity: 1; }
#header.scrolled .logo-dark  { opacity: 1; position: relative; }
#header.scrolled .logo-white { opacity: 0; position: absolute; left: 0; top: 0; }
.main-nav { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
#header.scrolled .nav-link { color: var(--grey-60); }
.nav-link:hover { color: var(--white); }
#header.scrolled .nav-link:hover { color: var(--ink); }
.nav-link[aria-current="true"] { color: var(--white); font-weight: 500; }
#header.scrolled .nav-link[aria-current="true"] { color: var(--ink); font-weight: 600; }

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.95);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
#header.scrolled .nav-cta { border-color: var(--ink); color: var(--ink); }
#header.scrolled .nav-cta:hover { background: var(--ink); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.9); transition: var(--transition); }
#header.scrolled .hamburger span { background: var(--ink); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
  filter: brightness(0.45) grayscale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.5) 100%
  );
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.hero-section > .container {
  position: relative;
  z-index: 2;
  width: 100%;
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
}
.hero-content { max-width: 760px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.4);
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: rgba(255,255,255,0.7); }
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  width: 100%;
  margin-top: auto;
  z-index: 2;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stats .container { display: flex; }
.hero-stat {
  flex: 1;
  padding: 22px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════════════════════
   PIPELINE
══════════════════════════════════════════════════════ */
.pipeline-section {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.pipeline-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.pipeline-section .eyebrow { color: rgba(255,255,255,0.3); }
.pipeline-section .section-sub { color: rgba(255,255,255,0.4); margin-top: 16px; }

/* ── New card grid ── */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
}
.pipeline-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 44px 40px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: default;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  opacity: 0;
  transform: translateY(24px);
  animation: pipeUp 0.6s ease forwards;
}
.pipeline-card:nth-child(1) { animation-delay: 0.04s; }
.pipeline-card:nth-child(2) { animation-delay: 0.10s; }
.pipeline-card:nth-child(3) { animation-delay: 0.16s; }
.pipeline-card:nth-child(4) { animation-delay: 0.22s; }
.pipeline-card:nth-child(5) { animation-delay: 0.28s; }
.pipeline-card:nth-child(6) { animation-delay: 0.34s; }
@keyframes pipeUp {
  to { opacity: 1; transform: translateY(0); }
}
.pipeline-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

/* Accent card — Deal Structuring */
.pipeline-card-accent {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}
.pipeline-card-accent::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
}
.pipeline-card-accent:hover { background: rgba(255,255,255,0.10); }

/* Large italic Roman numeral */
.pipeline-card-num {
  font-family: var(--display);
  font-size: 3.8rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  transition: color 0.35s ease;
  user-select: none;
}
.pipeline-card:hover .pipeline-card-num { color: rgba(255,255,255,0.22); }
.pipeline-card-accent .pipeline-card-num { color: rgba(255,255,255,0.2); }

.pipeline-card-body { display: flex; flex-direction: column; gap: 12px; }

.pipeline-card-label {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}
.pipeline-card-accent .pipeline-card-label { color: var(--white); }

.pipeline-card-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  font-weight: 300;
}
.pipeline-card:hover .pipeline-card-desc { color: rgba(255,255,255,0.6); }
.pipeline-card-accent .pipeline-card-desc { color: rgba(255,255,255,0.55); }

/* Keep old classes intact to avoid breaking anything */
.pipeline-track { display: none; }
.pipeline-line { display: none; }

/* ══════════════════════════════════════════════════════
   WHO WE SERVE
══════════════════════════════════════════════════════ */
.serve-section { padding: 110px 0; background: var(--white); }
.serve-section .section-header { margin-bottom: 52px; }
.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.serve-card {
  background: var(--cream);
  border: 1px solid var(--grey-10);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.serve-card:hover { border-color: var(--grey-20); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.serve-card-inner { padding: 40px 40px 44px; }
.serve-card-num {
  font-family: var(--display);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--grey-10);
  line-height: 1;
  margin-bottom: 20px;
}
.serve-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: var(--radius);
}
.serve-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.serve-card:hover .serve-card-img { transform: scale(1.04); filter: grayscale(0.6); }
.serve-card-title {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.serve-card-tagline {
  font-size: 14px;
  color: var(--grey-60);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
  border-left: 2px solid var(--grey-10);
  padding-left: 14px;
}
.serve-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.serve-pillars li {
  font-size: 13px;
  color: var(--grey-60);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
}
.serve-pillars li::before {
  content: '—';
  color: var(--grey-40);
  flex-shrink: 0;
}
.serve-cta {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  border-bottom: 1px solid var(--grey-20);
  padding-bottom: 2px;
  transition: border-color var(--transition), color var(--transition);
}
.serve-cta:hover { border-color: var(--ink); }

/* ══════════════════════════════════════════════════════
   DEAL MODELS
══════════════════════════════════════════════════════ */
.models-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.models-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) grayscale(1);
}
.models-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.55) 100%);
}
.models-section .container { position: relative; z-index: 2; }
.models-section .section-sub { max-width: 560px; margin: 16px auto 0; }
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.model-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 44px 36px;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
}
.model-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.model-card.model-featured {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}
.model-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  display: block;
}
.model-title {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.model-body {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.model-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.model-points li {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.model-points li span { color: rgba(255,255,255,0.25); flex-shrink: 0; }
.model-featured .model-points li { color: rgba(255,255,255,0.7); }
.model-featured .model-points li span { color: rgba(255,255,255,0.35); }
.model-badge {
  display: inline-block;
  margin-top: 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 5px 14px;
  border-radius: 20px;
}

/* ══════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════ */
.services-section {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.services-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
/* Override header text colours on dark bg */
.services-section .eyebrow { color: rgba(255,255,255,0.4); }
.services-section .section-title { color: var(--white); }
.services-section .section-title em { color: rgba(255,255,255,0.45); }
.services-section .section-sub { color: rgba(255,255,255,0.5); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Base card ── */
.service-card {
  padding: 44px 36px 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(28px);
  animation: svcFadeUp 0.55s ease forwards;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.12s; }
.service-card:nth-child(3) { animation-delay: 0.19s; }
.service-card:nth-child(4) { animation-delay: 0.26s; }
.service-card:nth-child(5) { animation-delay: 0.33s; }
.service-card:nth-child(6) { animation-delay: 0.40s; }
@keyframes svcFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Alternating card colours: light → dark → light */
.service-card:nth-child(odd) {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.service-card:nth-child(even) {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Hover shimmer line at top */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.45); }
.service-card:hover::before { opacity: 1; }
.service-card:nth-child(odd):hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }
.service-card:nth-child(even):hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); }

/* Large ghost number in card background */
.service-card::after {
  font-family: var(--display);
  font-size: 7rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.04);
  position: absolute;
  bottom: -16px; right: 16px;
  line-height: 1;
  pointer-events: none;
  transition: color 0.35s ease;
}
.service-card:nth-child(1)::after { content: '01'; }
.service-card:nth-child(2)::after { content: '02'; }
.service-card:nth-child(3)::after { content: '03'; }
.service-card:nth-child(4)::after { content: '04'; }
.service-card:nth-child(5)::after { content: '05'; }
.service-card:nth-child(6)::after { content: '06'; }
.service-card:hover::after { color: rgba(255,255,255,0.07); }

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.6);
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.service-icon-wrap svg { width: 24px; height: 24px; }
.service-card:hover .service-icon-wrap {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.service-name {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  line-height: 1.25;
}
.service-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════
   PARTNER ECOSYSTEM
══════════════════════════════════════════════════════ */
.partners-section {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.partners-section::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.partners-section .eyebrow { color: rgba(255,255,255,0.4); }
.partners-section .section-title { color: var(--white); }
.partners-section .section-title em { color: rgba(255,255,255,0.5); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.partner-tile {
  padding: 48px 32px 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(32px);
  animation: partnerFadeUp 0.55s ease forwards;
}
.partner-tile:nth-child(1) { animation-delay: 0.05s; }
.partner-tile:nth-child(2) { animation-delay: 0.12s; }
.partner-tile:nth-child(3) { animation-delay: 0.19s; }
.partner-tile:nth-child(4) { animation-delay: 0.26s; }
.partner-tile:nth-child(5) { animation-delay: 0.33s; }
.partner-tile:nth-child(6) { animation-delay: 0.40s; }
@keyframes partnerFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.partner-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.partner-tile:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.partner-tile:hover::before { opacity: 1; }
.partner-tile:hover .partner-icon-wrap {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.partner-tile:hover .partner-icon-wrap svg { color: var(--white); }
.partner-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.partner-icon-wrap svg {
  width: 30px; height: 30px;
  color: rgba(255,255,255,0.5);
  transition: color 0.35s ease;
}
/* keep old partner-icon as alias */
.partner-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.partner-icon svg {
  width: 30px; height: 30px;
  color: rgba(255,255,255,0.5);
  transition: color 0.35s ease;
}
.partner-tile:hover .partner-icon {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.partner-tile:hover .partner-icon svg { color: var(--white); }
.partner-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.partner-name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════ */
.why-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) grayscale(1);
}
.why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}
.why-section .container { position: relative; z-index: 2; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-points { display: flex; flex-direction: column; gap: 0; }
.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.why-point:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.why-num {
  font-family: var(--display);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  width: 28px;
  padding-top: 2px;
}
.why-point-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.why-point-body {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  font-weight: 300;
}
.why-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.why-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 40px 32px;
  transition: background var(--transition);
}
.why-metric:hover { background: rgba(255,255,255,0.07); }
.why-metric-val {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.why-metric-val span {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.5);
}
.why-metric-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════
   INVESTORS
══════════════════════════════════════════════════════ */
.investors-section { padding: 110px 0; background: var(--cream); }
.investors-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.investors-visual { position: relative; top: 0; }
.investors-img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
  border-radius: var(--radius);
  display: block;
}
.investors-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--ink);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: center;
  min-width: 140px;
}
.investors-badge-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.investors-badge-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.investors-content { padding-top: 8px; }
.investor-advantages { display: flex; flex-direction: column; gap: 0; margin-top: 0; }
.advantage-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-10);
}
.advantage-item:first-child { border-top: 1px solid var(--grey-10); }
.advantage-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
  margin-top: 6px;
}
.advantage-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.advantage-body {
  font-size: 13px;
  color: var(--grey-60);
  line-height: 1.65;
  font-weight: 300;
}
/* Journey Bridge — thin decorative connector between advantages and journey */
.investor-journey-connector {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--grey-10), var(--ink));
  margin: 0 0 0 16px;
}
.investor-journey {
  background: var(--ink);
  border: none;
  border-radius: var(--radius);
  padding: 32px 36px 36px;
  margin: 0 0 32px;
  position: relative;
  overflow: hidden;
}
.investor-journey::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.investor-journey::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.investor-journey-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.investor-journey-title::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}
.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.journey-steps::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
}
.journey-step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 0;
  position: relative;
  cursor: default;
  transition: transform 0.2s ease;
}
.journey-step:hover { transform: translateX(4px); }
.journey-step:hover .journey-n {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.journey-step:last-child { border-bottom: none; }
.journey-n {
  font-family: var(--display);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}
.journey-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonials-section { padding: 110px 0; background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.testimonial-card {
  padding: 40px 32px;
  border: 1px solid var(--grey-10);
  background: var(--cream);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover { border-color: var(--grey-20); transform: translateY(-4px); }
.testimonial-card.testimonial-featured {
  background: var(--ink);
  border-color: var(--ink);
}
.testimonial-quote {
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.7;
  color: var(--grey-10);
  margin-bottom: 20px;
}
.testimonial-featured .testimonial-quote { color: rgba(255,255,255,0.12); }
.testimonial-text {
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 28px;
}
.testimonial-featured .testimonial-text { color: rgba(255,255,255,0.8); }
.testimonial-divider {
  width: 32px;
  height: 1px;
  background: var(--grey-20);
  margin-bottom: 16px;
}
.testimonial-featured .testimonial-divider { background: rgba(255,255,255,0.2); }
.testimonial-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.testimonial-featured .testimonial-author { color: var(--white); }
.testimonial-role {
  font-size: 12px;
  color: var(--grey-40);
  margin-top: 3px;
  font-weight: 300;
}
.testimonial-featured .testimonial-role { color: rgba(255,255,255,0.35); }

/* ══════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════ */
.cta-band { padding: 100px 0; background: var(--grey-05); border-top: 1px solid var(--grey-10); border-bottom: 1px solid var(--grey-10); }
.cta-inner { text-align: center; }
.cta-headline {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.1;
}
.cta-headline em { font-style: italic; color: var(--grey-60); }
.cta-sub {
  font-size: 15px;
  color: var(--grey-60);
  margin-bottom: 44px;
  font-weight: 300;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════ */
.contact-section { padding: 110px 0; background: var(--ink); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}
.contact-title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin: 14px 0 16px;
  line-height: 1.2;
}
.contact-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 44px;
}
.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-detail-item {}
.contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.contact-val {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.6;
}
.contact-val a { transition: color var(--transition); }
.contact-val a:hover { color: var(--white); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--body);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(255,255,255,0.35); }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--ink-90); color: var(--white); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-privacy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.5;
  margin-top: 4px;
  font-weight: 300;
}
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--white);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--body);
  transition: background var(--transition), transform var(--transition);
}
.form-submit:hover { background: var(--grey-10); transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer { background: #080808; padding: 72px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-logo {
  height: 30px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 20px; }
.footer-social-link {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-social-link:hover { color: rgba(255,255,255,0.6); }
.footer-col-title {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,0.18); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 11.5px;
  color: rgba(255,255,255,0.18);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════════════════════════
   CASE STUDIES HOME TEASER
══════════════════════════════════════════════════════ */
.cs-home-section {
  padding: 120px 0;
  background: var(--cream);
}

.cs-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

/* ── Card base ── */
.cs-home-card {
  background: var(--white);
  border: 1px solid var(--grey-10);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  animation: csFadeUp 0.6s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.cs-home-card:nth-child(1) { animation-delay: 0.05s; }
.cs-home-card:nth-child(2) { animation-delay: 0.15s; }
.cs-home-card:nth-child(3) { animation-delay: 0.25s; }
@keyframes csFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.cs-home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: var(--ink);
}

/* ── Roman numeral watermark ── */
.cs-home-roman {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--display);
  font-size: 5rem;
  font-style: italic;
  color: var(--grey-05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── Deal type badge ── */
.cs-home-badge {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── Card title ── */
.cs-home-title {
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
  font-weight: 500;
}

/* ── Location ── */
.cs-home-location {
  font-size: 11px;
  color: var(--grey-40);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cs-home-location::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--grey-40);
  flex-shrink: 0;
}

/* ── KPI chips ── */
.cs-home-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.cs-home-kpi {
  font-size: 11px;
  color: var(--ink);
  border: 1px solid var(--grey-10);
  border-radius: 100px;
  padding: 4px 12px;
  font-weight: 500;
}

/* ── Teaser text ── */
.cs-home-teaser {
  font-size: 13px;
  color: var(--grey-60);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}

/* ── Arrow link ── */
.cs-home-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.cs-home-link:hover { gap: 10px; }

/* ── CTA below grid ── */
.cs-home-cta {
  text-align: center;
  margin-top: 56px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .services-header { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 860px) {
  .hero-section > .container { padding-top: 100px; padding-bottom: 40px; }
  .hero-stats .container { flex-wrap: wrap; }
  .hero-stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .serve-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; gap: 12px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-metrics { grid-template-columns: 1fr 1fr; }
  .investors-grid { grid-template-columns: 1fr; }
  .investors-img { height: 340px; }
  .investors-img-badge { right: 0; bottom: -16px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pipeline-track { overflow-x: scroll; padding-bottom: 16px; }
  .pipeline-line { display: none; }
  .pipeline-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  /* Case studies home */
  .cs-home-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero-headline { font-size: 2.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .why-metrics { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stat { flex: 0 0 100%; }
  /* Case studies home */
  .cs-home-grid { grid-template-columns: 1fr; }
}
