/* =============================================================
   Strategy CRM — style.css
   Design system: navy base, slate/grey accents, Jakarta + Inter
   ============================================================= */

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --navy:          #0c1630;
  --navy-mid:      #101e3a;
  --navy-deep:     #070e1c;
  --slate:         #7a9cc0;
  --slate-light:   #b8cce0;
  --surface:       #f4f6f9;
  --white:         #ffffff;
  --border:        #dce4ef;
  --border-dark:   rgba(122,156,192,0.15);
  --text-primary:  #0c1630;
  --text-secondary:#5a6a80;
  --text-muted:    #6a7a92;
  --text-dark:     rgba(255,255,255,0.55);
  --text-dark-str: rgba(255,255,255,0.85);
  --font-head:     'Plus Jakarta Sans', sans-serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --r-sm:  7px;
  --r-md:  11px;
  --r-lg:  13px;
  --r-pill:20px;
}

/* ── BASE ───────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--border-dark);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.nav-wordmark {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}
.nav-wordmark span { color: var(--slate); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-light);
  padding: 7px 18px;
  border-radius: 6px;
  border: 1px solid rgba(184,204,224,0.28);
  transition: border-color 0.2s, color 0.2s;
}
.nav-cta:hover {
  border-color: rgba(184,204,224,0.55);
  color: var(--white);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 160px 52px 108px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow-1 {
  top: -100px; right: -80px;
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(122,156,192,0.12) 0%, transparent 65%);
}
.hero-glow-2 {
  bottom: -80px; left: 5%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(122,156,192,0.06) 0%, transparent 65%);
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122,156,192,0.10);
  border: 1px solid rgba(122,156,192,0.22);
  color: var(--slate-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 36px;
}
.hero-badge-dot {
  width: 5px; height: 5px;
  background: var(--slate);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -2px;
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: normal;
  color: var(--slate);
}
.hero-desc {
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 48px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  border: none;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-ghost {
  background: transparent;
  color: var(--text-dark-str);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.16);
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.38); }

/* ── HERO PILLS ─────────────────────────────────────────────── */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(122,156,192,0.08);
  border: 1px solid rgba(122,156,192,0.20);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  letter-spacing: 0.1px;
}
.hero-pill svg {
  width: 14px; height: 14px;
  stroke: var(--slate);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* ── CAPABILITY STRIP ───────────────────────────────────────── */
.cap-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
}
.cap-strip-inner {
  display: flex;
  max-width: 960px;
  width: 100%;
}
.cap-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px;
  border-right: 1px solid var(--border);
  font-size: 13px;
  color: #3a4a60;
  font-weight: 500;
}
.cap-item:last-child { border-right: none; }
.cap-item svg {
  width: 17px; height: 17px;
  stroke: var(--slate);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* ── SECTION SHARED ─────────────────────────────────────────── */
.section { padding: 88px 52px; }
.section-white   { background: var(--white); }
.section-surface { background: var(--surface); }
.section-navy    { background: var(--navy); }

.sec-header {
  text-align: center;
  margin-bottom: 56px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.sec-title-light { color: var(--white); }
.sec-sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.sec-sub-light { color: var(--text-dark); }

/* ── POSITIONING SECTION ────────────────────────────────────── */
.pos-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.pos-left h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.13;
  letter-spacing: -0.8px;
  margin-bottom: 22px;
}
.pos-left h2 em {
  font-style: normal;
  color: var(--slate);
}
.pos-left p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.82;
  margin-bottom: 16px;
}
.pos-left p:last-child { margin-bottom: 0; }
.pos-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pos-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pos-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pos-icon svg {
  width: 16px; height: 16px;
  stroke: var(--slate);
  stroke-width: 2;
  fill: none;
}
.pos-card h3 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.pos-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── SERVICE CARDS ──────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 22px;
  transition: border-color 0.2s;
}
.svc-card:hover { border-color: var(--slate); }
.svc-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.svc-icon svg {
  width: 18px; height: 18px;
  stroke: var(--slate);
  stroke-width: 2;
  fill: none;
}
.svc-card h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.svc-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.68;
}

/* ── INDUSTRY CARDS ─────────────────────────────────────────── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.ind-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.ind-head {
  padding: 28px 24px 22px;
  background: var(--navy);
}
.ind-ico {
  width: 42px; height: 42px;
  background: rgba(122,156,192,0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ind-ico svg {
  width: 20px; height: 20px;
  stroke: var(--slate-light);
  stroke-width: 2;
  fill: none;
}
.ind-head h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.ind-head p {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.65;
}
.ind-body {
  padding: 16px 24px 22px;
  background: var(--white);
}
.tag {
  display: inline-block;
  background: #edf1f8;
  color: #3a5070;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  margin: 3px 3px 0 0;
}

/* ── PRODUCT CARDS ──────────────────────────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.prod-grid-4 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
}
.prod-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.prod-head {
  padding: 28px 24px 22px;
  background: var(--navy-mid);
}
.prod-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 10px;
}
.prod-head h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.prod-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
}
.prod-body {
  padding: 20px 24px 24px;
  background: var(--white);
}
.prod-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 20px;
}
.prod-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.prod-link:hover { gap: 8px; }
.prod-link svg {
  width: 14px; height: 14px;
  stroke: var(--slate);
  stroke-width: 2;
  fill: none;
}

/* ── DIFFERENTIATORS ────────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}
.diff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.diff-ico {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.diff-ico svg {
  width: 17px; height: 17px;
  stroke: var(--slate);
  stroke-width: 2;
  fill: none;
}
.diff-card h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.diff-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.68;
}

/* ── PROCESS ────────────────────────────────────────────────── */
.proc-wrap {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.proc-line {
  position: absolute;
  top: 25px;
  left: 13%; right: 13%;
  height: 1px;
  background: rgba(122,156,192,0.20);
}
.proc-step {
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}
.proc-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(122,156,192,0.12);
  border: 1px solid rgba(122,156,192,0.28);
  color: var(--slate-light);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.proc-step h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.proc-step p {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
}

/* ── CTA BAND ───────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  border-top: none;
  padding: 88px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 640px; height: 320px;
  background: radial-gradient(ellipse, rgba(122,156,192,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.8px;
  position: relative;
  z-index: 1;
}
.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.48);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.78;
  position: relative;
  z-index: 1;
}
.btn-cta {
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: var(--r-sm);
  border: none;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s;
}
.btn-cta:hover { opacity: 0.9; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  padding: 40px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  border-top: 1px solid rgba(122,156,192,0.07);
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-bottom: 14px;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-contact a {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: rgba(255,255,255,0.65); }
.footer-contact svg {
  width: 13px; height: 13px;
  stroke: var(--slate);
  stroke-width: 2;
  fill: none;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.footer-links {
  display: flex;
  gap: 22px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.6); }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.20);
}

/* ── PRODUCT HERO (left-aligned variant) ───────────────────────── */
.hero-product {
  text-align: left;
}
.hero-product .hero-inner {
  max-width: 720px;
  margin: 0;
}
.hero-product .hero-desc {
  margin: 0 0 40px;
}
.hero-product .hero-actions {
  justify-content: flex-start;
}
.hero-product .hero-pills {
  justify-content: flex-start;
}

/* ── PROBLEM / TWO-COLUMN TEXT SECTION ─────────────────────────── */
.prose-section {
  max-width: 720px;
  margin: 0 auto;
}
.prose-section .sec-header {
  text-align: left;
  margin-bottom: 32px;
}
.prose-section .sec-sub {
  margin: 0;
  max-width: 100%;
}
.prose-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 18px;
}
.prose-section p:last-child { margin-bottom: 0; }

/* ── THE SHIFT (before / after) ─────────────────────────────────── */
.shift-grid {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.shift-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.shift-head {
  padding: 18px 24px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.shift-before .shift-head {
  background: var(--surface);
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.shift-after .shift-head {
  background: var(--navy);
  color: var(--slate-light);
}
.shift-list {
  list-style: none;
  padding: 22px 24px 26px;
  background: var(--white);
}
.shift-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  padding: 9px 0;
}
.shift-before .shift-list li {
  border-bottom: 1px solid var(--border);
}
.shift-before .shift-list li:last-child { border-bottom: none; }
.shift-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.shift-before .shift-dot { background: var(--text-muted); }
.shift-after .shift-list li {
  color: var(--text-primary);
  font-weight: 500;
}
.shift-after .shift-dot { background: var(--slate); }
.shift-closer {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.shift-closer strong {
  color: var(--navy);
  font-weight: 600;
}

/* ── GETTING THERE (timeline) ──────────────────────────────────── */
.timeline-wrap {
  max-width: 720px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.timeline-line {
  position: absolute;
  top: 24px;
  left: 16%; right: 16%;
  height: 1px;
  background: var(--border);
}
.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}
.timeline-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.timeline-step h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.timeline-step p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.timeline-note {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── INCLUDED LIST ──────────────────────────────────────────────── */
.included-grid {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}
.included-item svg {
  width: 16px; height: 16px;
  stroke: var(--slate);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── TRUST STRIP ────────────────────────────────────────────────── */
.trust-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.trust-block p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
}

@media (max-width: 760px) {
  .shift-grid { grid-template-columns: 1fr; }
  .timeline-wrap { grid-template-columns: 1fr; gap: 32px; }
  .timeline-line { display: none; }
  .included-grid { grid-template-columns: 1fr; }
}

/* ── ANIMATED PROCESS DIAGRAM ──────────────────────────────────── */
.journey-diagram {
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}
.journey-diagram .jd-line {
  fill: none;
  stroke: var(--border);
  stroke-width: 2;
  opacity: 0.4;
}
.journey-diagram .jd-line-draw {
  fill: none;
  stroke: var(--slate);
  stroke-width: 2;
  stroke-dasharray: 100;
}
.journey-diagram .jd-node-circle {
  fill: var(--white);
  stroke: var(--border);
  stroke-width: 2;
}
.journey-diagram .jd-node-fill {
  fill: var(--navy);
  transform-origin: center;
}
.journey-diagram .jd-check {
  stroke: var(--white);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 20;
}
.journey-diagram .jd-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  fill: var(--navy);
}
.journey-diagram .jd-sublabel {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  fill: var(--text-muted);
}
.journey-diagram .jd-pulse {
  fill: none;
  stroke: var(--slate);
  stroke-width: 2;
  transform-origin: center;
}

@keyframes anim-jd-a-fill {
  0%, 0.0% { opacity:0; transform:scale(0.6); }
  3.33%, 91.67% { opacity:1; transform:scale(1); }
  98.33%, 100% { opacity:0; transform:scale(0.6); }
}
.jd-a-fill { animation: anim-jd-a-fill 12s ease-in-out infinite; }

@keyframes anim-jd-line-ab1 {
  0%, 3.33% { stroke-dashoffset:100; }
  8.33%, 91.67% { stroke-dashoffset:0; }
  98.33%, 100% { stroke-dashoffset:100; }
}
.jd-line-ab1 { animation: anim-jd-line-ab1 12s ease-in-out infinite; }

@keyframes anim-jd-node-b1-fill {
  0%, 8.33% { opacity:0; transform:scale(0.6); }
  10.83%, 91.67% { opacity:1; transform:scale(1); }
  98.33%, 100% { opacity:0; transform:scale(0.6); }
}
.jd-node-b1-fill { animation: anim-jd-node-b1-fill 12s ease-in-out infinite; }

@keyframes anim-jd-check-b1 {
  0%, 9.58% { stroke-dashoffset:20; }
  12.5%, 91.67% { stroke-dashoffset:0; }
  98.33%, 100% { stroke-dashoffset:20; }
}
.jd-check-b1 { animation: anim-jd-check-b1 12s ease-in-out infinite; }

@keyframes anim-jd-line-ab2 {
  0%, 13.33% { stroke-dashoffset:100; }
  18.33%, 91.67% { stroke-dashoffset:0; }
  98.33%, 100% { stroke-dashoffset:100; }
}
.jd-line-ab2 { animation: anim-jd-line-ab2 12s ease-in-out infinite; }

@keyframes anim-jd-node-b2-fill {
  0%, 18.33% { opacity:0; transform:scale(0.6); }
  20.83%, 91.67% { opacity:1; transform:scale(1); }
  98.33%, 100% { opacity:0; transform:scale(0.6); }
}
.jd-node-b2-fill { animation: anim-jd-node-b2-fill 12s ease-in-out infinite; }

@keyframes anim-jd-check-b2 {
  0%, 19.58% { stroke-dashoffset:20; }
  22.5%, 91.67% { stroke-dashoffset:0; }
  98.33%, 100% { stroke-dashoffset:20; }
}
.jd-check-b2 { animation: anim-jd-check-b2 12s ease-in-out infinite; }

@keyframes anim-jd-line-ab3 {
  0%, 23.33% { stroke-dashoffset:100; }
  28.33%, 91.67% { stroke-dashoffset:0; }
  98.33%, 100% { stroke-dashoffset:100; }
}
.jd-line-ab3 { animation: anim-jd-line-ab3 12s ease-in-out infinite; }

@keyframes anim-jd-node-b3-fill {
  0%, 28.33% { opacity:0; transform:scale(0.6); }
  30.83%, 91.67% { opacity:1; transform:scale(1); }
  98.33%, 100% { opacity:0; transform:scale(0.6); }
}
.jd-node-b3-fill { animation: anim-jd-node-b3-fill 12s ease-in-out infinite; }

@keyframes anim-jd-check-b3 {
  0%, 29.58% { stroke-dashoffset:20; }
  32.5%, 91.67% { stroke-dashoffset:0; }
  98.33%, 100% { stroke-dashoffset:20; }
}
.jd-check-b3 { animation: anim-jd-check-b3 12s ease-in-out infinite; }

@keyframes anim-jd-line-b1c {
  0%, 33.33% { stroke-dashoffset:100; }
  38.33%, 91.67% { stroke-dashoffset:0; }
  98.33%, 100% { stroke-dashoffset:100; }
}
.jd-line-b1c { animation: anim-jd-line-b1c 12s ease-in-out infinite; }

@keyframes anim-jd-line-b2c {
  0%, 38.33% { stroke-dashoffset:100; }
  43.33%, 91.67% { stroke-dashoffset:0; }
  98.33%, 100% { stroke-dashoffset:100; }
}
.jd-line-b2c { animation: anim-jd-line-b2c 12s ease-in-out infinite; }

@keyframes anim-jd-line-b3c {
  0%, 43.33% { stroke-dashoffset:100; }
  48.33%, 91.67% { stroke-dashoffset:0; }
  98.33%, 100% { stroke-dashoffset:100; }
}
.jd-line-b3c { animation: anim-jd-line-b3c 12s ease-in-out infinite; }

@keyframes anim-jd-node-c-fill {
  0%, 48.33% { opacity:0; transform:scale(0.6); }
  50.83%, 91.67% { opacity:1; transform:scale(1); }
  98.33%, 100% { opacity:0; transform:scale(0.6); }
}
.jd-node-c-fill { animation: anim-jd-node-c-fill 12s ease-in-out infinite; }

@keyframes anim-jd-line-cd {
  0%, 52.5% { stroke-dashoffset:100; }
  57.5%, 91.67% { stroke-dashoffset:0; }
  98.33%, 100% { stroke-dashoffset:100; }
}
.jd-line-cd { animation: anim-jd-line-cd 12s ease-in-out infinite; }

@keyframes anim-jd-node-d-fill {
  0%, 57.5% { opacity:0; transform:scale(0.6); }
  60.0%, 91.67% { opacity:1; transform:scale(1); }
  98.33%, 100% { opacity:0; transform:scale(0.6); }
}
.jd-node-d-fill { animation: anim-jd-node-d-fill 12s ease-in-out infinite; }

@keyframes anim-jd-pulse-c {
  0%, 48.33% { opacity:0; transform:scale(0.8); }
  49.58% { opacity:0.6; transform:scale(1); }
  58.33%, 100% { opacity:0; transform:scale(1.6); }
}
.jd-pulse-c { animation: anim-jd-pulse-c 12s ease-in-out infinite; }

@keyframes anim-jd-pulse-d {
  0%, 57.5% { opacity:0; transform:scale(0.8); }
  58.75% { opacity:0.6; transform:scale(1); }
  67.5%, 100% { opacity:0; transform:scale(1.6); }
}
.jd-pulse-d { animation: anim-jd-pulse-d 12s ease-in-out infinite; }

@media (max-width: 760px) {
  .journey-diagram { display: none; }
  .journey-diagram-mobile-note {
    display: block !important;
  }
}
.journey-diagram-mobile-note {
  display: none;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  padding: 20px;
}

/* ── BEHIND THE SCENES STRIP ───────────────────────────────────── */
.automation-strip {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.automation-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: center;
}
.automation-icon {
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
}
.automation-icon svg {
  width: 20px; height: 20px;
  stroke: var(--slate);
  stroke-width: 2;
  fill: none;
}
.automation-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--slate);
  opacity: 0;
  animation: automation-pulse 2.6s ease-in-out infinite;
}
.automation-item:nth-child(2) .automation-icon::after { animation-delay: 0.4s; }
.automation-item:nth-child(3) .automation-icon::after { animation-delay: 0.8s; }
@keyframes automation-pulse {
  0% { opacity: 0.5; transform: scale(0.9); }
  70% { opacity: 0; transform: scale(1.25); }
  100% { opacity: 0; transform: scale(1.25); }
}
.automation-item h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.automation-item p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .automation-strip { grid-template-columns: 1fr; }
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-dark);
  }
  .nav-toggle { display: flex; }

  .hero { padding: 120px 24px 72px; }
  .section { padding: 64px 24px; }

  .pos-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid,
  .prod-grid,
  .prod-grid-4 { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .proc-wrap { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .proc-line { display: none; }

  .cap-strip-inner { flex-wrap: wrap; }
  .cap-item {
    min-width: 50%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }
  .footer-right { align-items: flex-start; }
  .footer-copy { text-align: left; }
}

@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -1px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cap-item { min-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
