/* ═══════════════════════════════════════════
   LOOP WISE SOLUTIONS — Main Stylesheet
   Version 1.1.0
═══════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────── */
:root {
  --navy:    #0A2240;
  --blue:    #1A5FA8;
  --accent:  #4A9EDB;
  --paper:   #F5F7FA;
  --surface: #E8EDF4;
  --text:    #1C1C1E;
  --muted:   #6B7A8D;
  --teal:    #0E6655;
  --gold:    #C9A84C;
  --white:   #FFFFFF;
  --max-w:   1200px;
  --sans:    'IBM Plex Sans', system-ui, sans-serif;
  --serif:   'IBM Plex Serif', Georgia, serif;
}

/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10,34,64,0.07);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(10,34,64,0.08); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 40px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-badge-img {
  width: 46px; height: 46px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; gap: 0; }
.nav-rule { height: 2px; background: var(--accent); margin-bottom: 5px; width: 100%; }
.nav-name { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; line-height: 1; margin-bottom: 3px; }
.nav-sub  { font-size: 6.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--muted);
  letter-spacing: 0.02em; position: relative;
  transition: color 0.2s; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); }
.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  padding: 11px 24px !important; border-radius: 3px;
  letter-spacing: 0.04em !important; font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blue) !important; }

/* Mobile nav */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--navy);
  border-radius: 1px; transition: all 0.3s;
}
.nav-mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(10,34,64,0.08);
  z-index: 199; padding: 24px 40px;
  flex-direction: column; gap: 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px; color: var(--navy); font-weight: 400;
  padding: 8px 0; border-bottom: 1px solid rgba(10,34,64,0.05);
}

/* ─── Shared Utilities ─────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.section-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300; line-height: 1.2;
  color: var(--navy); letter-spacing: -0.02em; margin-bottom: 20px;
}
.section-sub {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--muted); max-width: 640px;
}
.rule-accent { width: 48px; height: 3px; background: var(--accent); margin-bottom: 24px; }

/* Lockup */
.lockup { display: flex; align-items: center; gap: 18px; }
.lockup-text { display: flex; flex-direction: column; }
.lockup-rule { height: 2px; background: var(--accent); margin-bottom: 6px; }
.lockup-name { font-weight: 600; letter-spacing: -0.01em; line-height: 1; margin-bottom: 4px; }
.lockup-sub  { font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }

/* Buttons */
.btn-primary {
  display: inline-block; font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--white); background: var(--navy);
  padding: 14px 30px; border-radius: 3px; border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--blue); }
.btn-outline {
  display: inline-block; font-size: 13px; font-weight: 400;
  letter-spacing: 0.04em; color: var(--navy); padding: 14px 30px;
  border: 1.5px solid rgba(10,34,64,0.22); border-radius: 3px;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-ghost-dark {
  display: inline-block; font-size: 13px; font-weight: 400;
  color: rgba(245,247,250,0.65); padding: 14px 30px;
  border: 1px solid rgba(245,247,250,0.18); border-radius: 3px;
  transition: all 0.2s;
}
.btn-ghost-dark:hover { color: var(--paper); border-color: rgba(245,247,250,0.5); }
.btn-accent {
  display: inline-block; font-size: 13px; font-weight: 500;
  color: var(--white); background: var(--blue);
  padding: 13px 28px; border-radius: 3px; transition: background 0.2s;
}
.btn-accent:hover { background: var(--accent); }

/* Scroll fade-up animation */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ─── Hero ───────────────────────────────────── */
.hero {
  background: var(--navy);
  padding-top: 72px;
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,158,219,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,158,219,0.04) 1px, transparent 1px);
  background-size: 72px 72px; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  right: -300px; top: 50%; transform: translateY(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(26,95,168,0.18) 0%, transparent 68%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 80px 40px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: center;
}
.hero-eyebrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.eyebrow-item {
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(245,247,250,0.4);
}
.eyebrow-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 300; line-height: 1.1;
  color: var(--paper); letter-spacing: -0.025em; margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: rgba(245,247,250,0.58); max-width: 520px; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero service list panel */
.hero-panel { display: flex; flex-direction: column; gap: 2px; }
.hp-row {
  display: flex; align-items: center; gap: 24px;
  background: rgba(26,95,168,0.18);
  border: 1px solid rgba(74,158,219,0.1);
  border-left: 3px solid rgba(74,158,219,0.3);
  padding: 22px 28px; text-decoration: none;
  transition: background 0.22s, border-left-color 0.22s;
  cursor: pointer;
}
.hp-row:hover {
  background: rgba(26,95,168,0.32);
  border-left-color: var(--accent);
}
.hp-row-num {
  font-size: 11px; font-weight: 500; color: rgba(74,158,219,0.5);
  letter-spacing: 0.08em; width: 24px; flex-shrink: 0;
}
.hp-row-title {
  font-size: 15px; font-weight: 400; color: rgba(245,247,250,0.72);
  flex: 1; letter-spacing: -0.01em; transition: color 0.2s;
}
.hp-row:hover .hp-row-title { color: var(--paper); }
.hp-row-arrow { font-size: 14px; color: rgba(74,158,219,0.4); transition: color 0.2s; }
.hp-row:hover .hp-row-arrow { color: var(--accent); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(74,158,219,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.hero-scroll span {
  font-size: 9px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(245,247,250,0.25);
}

/* ─── Services Section ──────────────────────── */
.services-section {
  padding: 120px 0; background: var(--white);
}
.services-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 3px; margin-top: 56px;
}
.svc-card {
  background: var(--paper);
  border: 1px solid rgba(10,34,64,0.05);
  padding: 48px 44px;
  position: relative; overflow: hidden;
  transition: background 0.22s;
  display: flex; flex-direction: column;
}
.svc-card:hover { background: var(--surface); }
.svc-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.svc-card:hover .svc-card-accent { transform: scaleX(1); }
.svc-card.epm .svc-card-accent,
.svc-card.bi  .svc-card-accent { background: var(--blue); }
.svc-card.auto .svc-card-accent { background: var(--teal); }
.svc-card.con  .svc-card-accent { background: var(--gold); }
.svc-num {
  font-family: var(--serif); font-size: 44px; font-weight: 300;
  color: rgba(10,34,64,0.08); line-height: 1; margin-bottom: 24px;
}
.svc-title {
  font-size: 20px; font-weight: 500; color: var(--navy);
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.svc-lbl {
  font-size: 12px; font-weight: 500; letter-spacing: 0.02em;
  color: var(--accent); margin-bottom: 16px;
}
.svc-desc {
  font-size: 14px; font-weight: 300; line-height: 1.78; color: var(--muted);
  margin-bottom: 28px; flex: 1;
}
.svc-link {
  font-size: 12px; font-weight: 500; color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.04em; transition: gap 0.2s;
}
.svc-link:hover { gap: 12px; }

/* ─── Why Section ───────────────────────────── */
.why-section { background: var(--navy); padding: 0; }
.why-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 100px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.why-ql {
  font-family: var(--serif); font-size: 56px; color: var(--blue);
  line-height: 0.7; display: block; margin-bottom: 16px;
}
.why-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300; font-style: italic; line-height: 1.45;
  color: var(--paper); margin-bottom: 40px;
}
.why-rule { width: 44px; height: 2px; background: var(--accent); margin-bottom: 28px; }
.why-sub {
  font-size: 14px; font-weight: 300; line-height: 1.8;
  color: rgba(245,247,250,0.48); margin-bottom: 32px;
}
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.wp {
  background: rgba(26,95,168,0.14);
  border: 1px solid rgba(74,158,219,0.09);
  padding: 36px 28px;
}
.wp-n {
  font-family: var(--serif); font-size: 32px; font-weight: 300;
  color: rgba(74,158,219,0.2); line-height: 1; margin-bottom: 16px;
}
.wp-t { font-size: 14px; font-weight: 500; color: var(--paper); margin-bottom: 10px; letter-spacing: -0.01em; }
.wp-b { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(245,247,250,0.48); }

/* ─── Markets Bar ───────────────────────────── */
.markets-bar {
  padding: 52px 0; background: var(--surface);
  border-top: 1px solid rgba(10,34,64,0.07);
  border-bottom: 1px solid rgba(10,34,64,0.07);
}
.markets-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.markets-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.markets-div { width: 1px; height: 28px; background: rgba(10,34,64,0.12); flex-shrink: 0; }
.markets-list { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.market { font-size: 13px; font-weight: 500; color: var(--navy); letter-spacing: 0.04em; }

/* ─── About Strip (Homepage) ─────────────────── */
.about-strip { padding: 100px 0; background: var(--white); }
.about-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 460px; gap: 80px; align-items: center;
}
.about-headline {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300; line-height: 1.3;
  color: var(--navy); letter-spacing: -0.02em; margin-bottom: 24px;
}
.about-body {
  font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--muted); margin-bottom: 24px;
}
.about-link {
  font-size: 13px; font-weight: 500; color: var(--blue);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.2s; letter-spacing: 0.04em;
}
.about-link:hover { gap: 14px; }
.about-panel {
  background: var(--navy); padding: 52px;
  position: relative; overflow: hidden;
}
.about-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--accent);
}
.ap-lockup { margin-bottom: 36px; }
.ap-values { display: flex; flex-direction: column; gap: 2px; }
.apv {
  display: flex; align-items: center; gap: 14px;
  background: rgba(26,95,168,0.15); border-left: 3px solid var(--accent);
  padding: 14px 18px;
  font-size: 13px; font-weight: 400; color: rgba(245,247,250,0.6);
  transition: background 0.2s;
}
.apv:hover { background: rgba(26,95,168,0.28); }

/* ─── Insights Section ──────────────────────── */
.insights-section { padding: 120px 0; background: var(--paper); }
.insights-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: 56px;
}
.ins-card {
  background: var(--white); padding: 40px;
  display: flex; flex-direction: column;
  transition: background 0.2s;
  border: 1px solid rgba(10,34,64,0.05);
  position: relative;
}
.ins-card:hover { background: var(--surface); }
.ins-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); opacity: 0; transition: opacity 0.2s;
}
.ins-card:hover::before { opacity: 1; }
.ins-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.ins-cat  { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.ins-date { font-size: 11px; color: var(--muted); }
.ins-title {
  font-family: var(--serif); font-size: 19px; font-weight: 300;
  line-height: 1.42; color: var(--navy); letter-spacing: -0.01em;
  margin-bottom: 16px; flex: 1;
}
.ins-excerpt {
  font-size: 13px; font-weight: 300; line-height: 1.78; color: var(--muted); margin-bottom: 24px;
}
.ins-link {
  font-size: 12px; font-weight: 500; color: var(--blue);
  letter-spacing: 0.04em; display: flex; align-items: center; gap: 8px;
}
.ins-placeholder {
  background: var(--surface); padding: 48px; text-align: center;
  grid-column: 1 / -1; margin-top: 3px;
}
.ins-ph-text {
  font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.78;
  max-width: 520px; margin: 0 auto;
}
.ins-ph-text strong { color: var(--navy); font-weight: 500; }

/* ─── CTA Band ──────────────────────────────── */
.cta-band {
  background: var(--navy); padding: 100px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--accent);
}
.cta-h {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300; font-style: italic;
  color: var(--paper); letter-spacing: -0.02em;
  margin: 0 auto 24px; max-width: 560px;
}
.cta-p {
  font-size: 15px; font-weight: 300;
  color: rgba(245,247,250,0.52);
  max-width: 480px; margin: 0 auto 44px; line-height: 1.78;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── Service Page Hero ─────────────────────── */
.svc-page-hero {
  background: var(--navy); padding: 160px 40px 80px;
  position: relative; overflow: hidden;
}
.svc-page-hero::before {
  content: ''; position: absolute; right: -200px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,95,168,0.15) 0%, transparent 68%);
  pointer-events: none;
}
.sph-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.sph-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.sph-label::before { content: ''; width: 32px; height: 2px; background: var(--accent); }
.sph-h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 300; line-height: 1.12;
  color: var(--paper); letter-spacing: -0.025em;
  max-width: 700px; margin-bottom: 28px;
}
.sph-p {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: rgba(245,247,250,0.58); max-width: 580px; margin-bottom: 44px;
}
.sph-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--accent);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(74,158,219,0.3);
  padding-bottom: 4px; transition: border-color 0.2s;
}
.sph-cta:hover { border-color: var(--accent); }

/* ─── Service Page Content ──────────────────── */
.svc-content { padding: 100px 0; background: var(--white); }
.svc-2col {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: start;
}
.svc-deliverables h3 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 28px;
}
.del-list { display: flex; flex-direction: column; gap: 3px; margin-bottom: 64px; }
.del-item {
  background: var(--paper); border-left: 3px solid var(--accent);
  padding: 24px 28px; transition: background 0.2s;
}
.del-item:hover { background: var(--surface); }
.del-title { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.01em; }
.del-desc  { font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--muted); }
.del-sub-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.approach-text { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--muted); margin-bottom: 20px; }

/* Sidebar */
.ss-card { background: var(--navy); padding: 36px; margin-bottom: 3px; position: relative; }
.ss-card:first-child::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
}
.ss-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.ss-text { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(245,247,250,0.55); }
.ss-cta {
  display: inline-block; margin-top: 20px;
  font-size: 12px; font-weight: 500; color: var(--paper);
  border-bottom: 1px solid rgba(245,247,250,0.3);
  padding-bottom: 3px; transition: border-color 0.2s; letter-spacing: 0.04em;
}
.ss-cta:hover { border-color: var(--paper); }

/* Who this is for */
.who-list { display: flex; flex-direction: column; gap: 3px; }
.who-item {
  display: flex; gap: 14px; padding: 20px 24px;
  background: var(--paper);
  border-left: 3px solid rgba(10,34,64,0.1);
  font-size: 13px; font-weight: 300; line-height: 1.65; color: var(--muted);
}
.who-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 8px;
}

/* ─── Services Overview Page ─────────────────── */
.services-overview-body { background: var(--white); }
.svc-row {
  display: flex; align-items: center; gap: 40px;
  padding: 40px 44px;
  border-left: 4px solid rgba(10,34,64,0.06);
  border-bottom: 1px solid rgba(10,34,64,0.05);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.svc-row:hover { background: var(--paper); border-left-color: var(--blue); }
.svc-row--teal:hover { border-left-color: var(--teal); }
.svc-row--gold:hover  { border-left-color: var(--gold); }
.svc-row-num {
  font-family: var(--serif); font-size: 40px; font-weight: 300;
  color: rgba(10,34,64,0.1); flex-shrink: 0; width: 52px; line-height: 1;
}
.svc-row-body { flex: 1; }
.svc-row-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 6px;
}
.svc-row-title {
  font-family: var(--serif); font-size: clamp(20px, 2vw, 26px);
  font-weight: 300; color: var(--navy); letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.svc-row-desc {
  font-size: 14px; font-weight: 300; line-height: 1.78; color: var(--muted); max-width: 600px;
}
.svc-row-arrow { font-size: 20px; color: var(--muted); flex-shrink: 0; transition: color 0.2s, transform 0.2s; }
.svc-row:hover .svc-row-arrow { color: var(--navy); transform: translateX(6px); }

/* ─── About Page ─────────────────────────────── */
.about-page-hero {
  background: var(--navy); padding: 160px 40px 100px;
  position: relative; overflow: hidden;
}
.about-page-hero::after {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,95,168,0.12) 0%, transparent 68%);
  pointer-events: none;
}
.about-main { padding: 100px 0; background: var(--white); }
.about-2col {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 400px; gap: 80px;
}
.about-body-text {
  font-size: 15px; font-weight: 300; line-height: 1.88; color: var(--muted); margin-bottom: 24px;
}
.about-beliefs { padding: 80px 0; background: var(--paper); }
.beliefs-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; margin-top: 56px;
}
.belief-card {
  background: var(--white); border: 1px solid rgba(10,34,64,0.06);
  padding: 44px; position: relative;
}
.belief-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.belief-card:hover::before { transform: scaleX(1); }
.belief-title { font-size: 17px; font-weight: 500; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.01em; }
.belief-body  { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--muted); }
.how-we-work  { padding: 80px 0; background: var(--navy); }
.hw-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hw-text { font-size: 15px; font-weight: 300; line-height: 1.88; color: rgba(245,247,250,0.55); margin-bottom: 24px; }
.hw-panel {
  background: rgba(26,95,168,0.18); border: 1px solid rgba(74,158,219,0.1); padding: 44px;
}
.hw-panel-title {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  font-style: italic; color: var(--paper); margin-bottom: 24px; line-height: 1.4;
}
.hw-fact {
  display: flex; gap: 14px; margin-bottom: 18px;
  font-size: 14px; font-weight: 300; color: rgba(245,247,250,0.55); line-height: 1.7;
}

/* ─── Partners Page ──────────────────────────── */
.partners-main { padding: 100px 0; background: var(--white); }
.partners-2col {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: start;
}
.partnership-items { display: flex; flex-direction: column; gap: 3px; margin-top: 48px; }
.pi-item {
  background: var(--paper); border-left: 3px solid var(--accent);
  padding: 28px 32px; display: flex; gap: 18px; align-items: flex-start;
  transition: background 0.2s;
}
.pi-item:hover { background: var(--surface); }
.pi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 8px;
}
.pi-text { font-size: 14px; font-weight: 300; line-height: 1.78; color: var(--muted); }
.pi-text strong { color: var(--navy); font-weight: 500; }
.partner-panel {
  background: var(--navy); padding: 44px; position: relative;
}
.partner-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent);
}
.pp-title {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  font-style: italic; color: var(--paper); margin-bottom: 20px; line-height: 1.4;
}
.pp-body { font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(245,247,250,0.5); margin-bottom: 32px; }
.partners-contact-strip {
  background: var(--paper); padding: 80px 0;
  border-top: 1px solid rgba(10,34,64,0.07);
}

/* ─── Insights Archive ──────────────────────── */
.insights-page-main { padding: 100px 0; background: var(--white); }
.insights-intro { max-width: 640px; margin-bottom: 64px; }
.insights-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.insights-page-grid .ins-card { background: var(--paper); }
.insights-page-grid .ins-card:hover { background: var(--surface); }
.insights-pagination { margin-top: 48px; text-align: center; grid-column: 1 / -1; }
.insights-pagination .page-numbers {
  display: inline-block; padding: 8px 14px;
  font-size: 13px; color: var(--muted);
  border: 1px solid rgba(10,34,64,0.1); margin: 0 2px;
  transition: all 0.2s;
}
.insights-pagination .page-numbers:hover,
.insights-pagination .page-numbers.current {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}

/* ─── Single Insight / Article Body ─────────── */
.insight-body { font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--text); }
.insight-body h2 { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--navy); margin: 48px 0 20px; letter-spacing: -0.02em; }
.insight-body h3 { font-size: 18px; font-weight: 500; color: var(--navy); margin: 36px 0 16px; }
.insight-body p  { margin-bottom: 24px; color: var(--muted); }
.insight-body ul, .insight-body ol { margin: 0 0 24px 24px; color: var(--muted); }
.insight-body li { margin-bottom: 8px; font-weight: 300; line-height: 1.78; }
.insight-body blockquote {
  border-left: 3px solid var(--accent); padding: 24px 28px;
  background: var(--paper); margin: 36px 0;
  font-family: var(--serif); font-size: 18px; font-weight: 300;
  font-style: italic; color: var(--navy); line-height: 1.6;
}
.insight-body strong { font-weight: 500; color: var(--navy); }
.insight-body a { color: var(--blue); border-bottom: 1px solid rgba(26,95,168,0.3); transition: border-color 0.2s; }
.insight-body a:hover { border-color: var(--blue); }

/* ─── Contact Page ───────────────────────────── */
.contact-main { padding: 100px 0; background: var(--white); }
.contact-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 500px; gap: 80px; align-items: start;
}
.contact-info-block h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300; line-height: 1.3;
  color: var(--navy); letter-spacing: -0.02em; margin-bottom: 20px;
}
.contact-info-block p { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--muted); margin-bottom: 44px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.cd-row { display: flex; gap: 16px; align-items: flex-start; }
.cd-lbl {
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); width: 24px; flex-shrink: 0; padding-top: 4px;
}
.cd-val { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.6; }
.cd-val a { color: var(--blue); transition: color 0.2s; }
.cd-val a:hover { color: var(--navy); }
.contact-form-wrap {
  background: var(--navy); padding: 44px; position: relative;
}
.contact-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent);
}
.cf-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 28px;
}
.cf-group { margin-bottom: 22px; }
.cf-label {
  display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(245,247,250,0.4); margin-bottom: 8px;
}
.cf-input {
  width: 100%; padding: 13px 16px;
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  color: var(--paper);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px; outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.cf-input:focus { border-color: var(--accent); background: rgba(255,255,255,0.09); }
.cf-input::placeholder { color: rgba(245,247,250,0.2); }
textarea.cf-input { min-height: 120px; resize: vertical; }
.cf-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-submit {
  width: 100%; padding: 14px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--navy); background: var(--paper);
  border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s;
}
.cf-submit:hover { background: var(--white); }

/* Contact Form 7 overrides */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-textarea,
.wpcf7-form .wpcf7-select {
  width: 100%; padding: 13px 16px;
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  color: var(--paper);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px; outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-textarea:focus { border-color: var(--accent); background: rgba(255,255,255,0.09); }
.wpcf7-form .wpcf7-text::placeholder,
.wpcf7-form .wpcf7-textarea::placeholder { color: rgba(245,247,250,0.2); }
.wpcf7-form textarea { min-height: 120px; resize: vertical; }
.wpcf7-form .wpcf7-submit {
  width: 100%; padding: 14px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em; color: var(--navy); background: var(--paper);
  border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s;
}
.wpcf7-form .wpcf7-submit:hover { background: var(--white); }
.wpcf7-form p { margin-bottom: 22px; }
.wpcf7-form label {
  display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(245,247,250,0.4); margin-bottom: 8px;
}
.wpcf7-not-valid-tip { font-size: 11px; color: #ff6b6b; margin-top: 4px; }
.wpcf7-response-output { margin-top: 16px; padding: 12px 16px; font-size: 13px; border-radius: 2px; }
.wpcf7-mail-sent-ok { background: rgba(14,102,85,0.2); border: 1px solid rgba(14,102,85,0.4); color: #6ee7b7; }
.wpcf7-validation-errors { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: #fbbf24; }

/* ─── Footer ─────────────────────────────────── */
.footer {
  background: var(--navy); padding: 68px 0 44px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 300px 1fr 1fr 1fr; gap: 60px;
  margin-bottom: 56px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo-area .lockup { margin-bottom: 24px; }
.footer-tagline {
  font-size: 13px; font-weight: 300; font-style: italic;
  color: rgba(245,247,250,0.38); line-height: 1.65; margin-bottom: 24px;
}
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.fc-row { display: flex; gap: 10px; align-items: center; }
.fc-lbl {
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); width: 18px; flex-shrink: 0;
}
.fc-val { font-size: 12px; font-weight: 300; color: rgba(245,247,250,0.32); }
.footer-col-title {
  font-size: 10px; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: rgba(245,247,250,0.3); margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px; font-weight: 300; color: rgba(245,247,250,0.42);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--paper); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 12px; font-weight: 300; color: rgba(245,247,250,0.22); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 12px; font-weight: 300; color: rgba(245,247,250,0.22); transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(245,247,250,0.5); }

/* ─── Responsive — 1024px ────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel { display: grid; grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .svc-2col { grid-template-columns: 1fr; }
  .about-2col { grid-template-columns: 1fr; }
  .partners-2col { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hw-inner { grid-template-columns: 1fr; }
}

/* ─── Responsive — 768px ─────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }

  .hero-inner { padding: 60px 24px; }
  .hero-panel { grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(32px, 8vw, 52px); }

  .container { padding: 0 24px; }
  .services-section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .why-inner { padding: 80px 24px; }
  .why-points { grid-template-columns: 1fr; }

  .markets-inner { gap: 20px; }
  .markets-list  { gap: 16px; }

  .about-inner { padding: 0 24px; }
  .about-panel { padding: 36px 24px; }

  .insights-grid { grid-template-columns: 1fr; }

  .svc-page-hero { padding: 120px 24px 60px; }
  .svc-2col { padding: 0 24px; }
  .svc-2col .svc-sidebar { margin-top: 48px; }

  .about-2col { padding: 0 24px; }
  .beliefs-grid { grid-template-columns: 1fr; }

  .partners-2col { padding: 0 24px; }

  .contact-inner { padding: 0 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { padding: 0 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .svc-row { flex-wrap: wrap; padding: 28px 24px; }
  .insights-page-grid { grid-template-columns: 1fr; }
}
