/* ============================================================
   PRESTIGE BUSINESS SOLUTIONS — styles.css
   Light theme. Premium. Modern. Conversion-focused.
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand */
  --navy:       #090B0F;
  --navy-light: #1F242C;
  --blue:       #2F3640;
  --blue-lt:    #4B5563;
  --blue-tint:  #F3F4F6;
  --accent:       #111827;
  --accent-tint:  #F8FAFC;

  /* Surfaces */
  --bg:         #FFFFFF;
  --bg-alt:     #F7F8FA;
  --bg-tint:    #EEF0F3;
  --bg-dark:    #090B0F;

  /* Text */
  --text:       #0F172A;
  --text-2:     #475569;
  --text-3:     #94A3B8;
  --muted:      #475569;
  --text-on:    #F8FAFC;
  --text-on-2:  #94A3B8;

  /* Borders */
  --border:     #E2E8F0;
  --border-2:   #CBD5E1;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(15,23,42,.06);
  --sh-sm: 0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.05);
  --sh:    0 10px 28px rgba(9,11,15,.08), 0 2px 8px rgba(9,11,15,.04);
  --sh-md: 0 18px 48px rgba(9,11,15,.12), 0 8px 18px rgba(9,11,15,.06);
  --sh-lg: 0 32px 80px rgba(9,11,15,.16);
  --sh-blue: 0 12px 30px rgba(9,11,15,.18);

  /* Layout */
  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --nav-h:     68px;
  --pad:       88px;
  --r:         8px;
  --r-lg:      16px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  background:
    radial-gradient(circle at 50% -10%, rgba(9,11,15,.06), transparent 34rem),
    linear-gradient(90deg, rgba(9,11,15,.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(9,11,15,.02) 1px, transparent 1px),
    linear-gradient(180deg, #FFFFFF 0%, #FAFAFB 100%);
  background-size: auto, 44px 44px, 44px 44px, auto;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a       { color: inherit; text-decoration: none; }
ul      { list-style: none; }
img     { max-width: 100%; display: block; }
button  { font-family: inherit; cursor: pointer; border: none; background: none; }
figure  { margin: 0; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.section         { padding: var(--pad) 0; }
.section-tight   { padding: 56px 0 var(--pad); }
.section-sm      { padding: 68px 0; }
.section-alt     { background: var(--bg-alt); }
.section-tint    { background: var(--bg-tint); }
.section-dark    { background: var(--bg-dark); }
hr.divider       { border: none; border-top: 1px solid var(--border); }

/* Grid helpers */
.grid-2  { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 600; letter-spacing: -0.025em; line-height: 1.2; color: var(--text); }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p  { color: var(--text-2); line-height: 1.7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--blue); border-radius: 2px; }

.section-head { max-width: 720px; margin-bottom: 2.25rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p  { font-size: 1.0625rem; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }

.text-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, #5B6470 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--r);
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: var(--sh-sm);
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--sh-md); }

.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: var(--sh-blue);
}
.btn-blue:hover { background: var(--blue-lt); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-2);
}
.btn-outline:hover { border-color: var(--navy); background: var(--bg-alt); }

.btn-white {
  background: #fff;
  color: var(--navy);
  border-color: rgba(255,255,255,.2);
  box-shadow: var(--sh-sm);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--sh); }

.btn-dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--sh); }
.btn-ghost {
  background: rgba(255,255,255,.72);
  color: var(--navy);
  border-color: rgba(9,11,15,.14);
}
.btn-ghost:hover { background: #fff; border-color: rgba(9,11,15,.32); transform: translateY(-1px); }

.btn-ghost-white {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.2); }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── Badges / Tags ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3125rem 0.625rem;
  border-radius: 20px;
}
.badge-green  { color: var(--navy); background: var(--bg-tint); }
.badge-amber  { color: var(--navy); background: var(--bg-tint); }
.badge-blue   { color: var(--blue); background: var(--blue-tint); }
.badge-navy   { color: #fff; background: var(--navy); }
.badge-active,
.badge-building { color: var(--navy); background: var(--bg-tint); }

.label {
  display: inline-flex;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
}
.tag-strip { display: flex; flex-wrap: wrap; gap: 0.375rem; }

/* ── Card base ───────────────────────────────────────────────── */
.card {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }

.card-glass {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  height: 92px;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  pointer-events: none;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  gap: 1.25rem;
  margin-top: 17px;
  pointer-events: auto;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(9,11,15,.12);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 30px;
  width: auto;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
}
.nav-company {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.1;
}
.nav-tagline {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1.1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.nav-links a:hover  { color: var(--navy); background: rgba(9,11,15,.055); }
.nav-links a.active { color: #fff; font-weight: 600; background: var(--navy); }

.nav-actions { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-right: -0.5rem;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--navy);
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-toggle.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile menu ─────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 92px 0 0;
  z-index: 499;
  background: var(--bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav  { display: flex; flex-direction: column; gap: 0; }
.mobile-link {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-link:hover { color: var(--blue); }
.mobile-cta-m {
  background: var(--navy);
  color: #fff !important;
  padding: 0.875rem 1.5rem !important;
  border-radius: var(--r);
  text-align: center;
  margin-top: 1.5rem;
  display: block;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  border-bottom: none !important;
}
.mobile-footer { padding-top: 2rem; border-top: 1px solid var(--border); }
.mobile-footer a { display: block; font-size: 0.875rem; color: var(--text-2); padding: 0.375rem 0; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: var(--text-on);
  padding: 5rem 0 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2.5rem;
}
.footer-brand-col .footer-logo-img { height: 40px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand-col p { font-size: 0.9375rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 280px; margin-bottom: 1.25rem; }
.footer-contact-info { font-size: 0.875rem; color: rgba(255,255,255,.5); }
.footer-contact-info a { color: rgba(255,255,255,.6); display: block; transition: color .15s ease; }
.footer-contact-info a:hover { color: #fff; }
.footer-col h5 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  padding: 0.3125rem 0;
  transition: color .15s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,.35); }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.15);
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  transition: color .15s ease, border-color .15s ease;
}
.footer-socials a:hover { color: #fff; border-color: rgba(255,255,255,.4); }

/* ── HERO (home) ─────────────────────────────────────────────── */
.hero {
  padding: 150px 0 46px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(9,11,15,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -150px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(9,11,15,.035) 0%, transparent 65%);
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 520px);
  gap: 4.25rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(9,11,15,.08);
  box-shadow: var(--sh-xs);
  padding: 0.4375rem 0.875rem;
  border-radius: 20px;
  margin-bottom: 1.75rem;
}
.hero-kicker .dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero h1 span { color: #5B6470; }
.hero-desc {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.hero-actions { margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.trust-value { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.03em; color: var(--navy); }
.trust-label { font-size: 0.75rem; color: var(--text-3); }
.trust-sep   { width: 1px; height: 32px; background: var(--border-2); }

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-visual .photo-card {
  min-height: 560px;
  border-radius: 24px;
}
.hero-card {
  position: absolute;
  left: -4.5rem;
  right: 2.5rem;
  bottom: 1.5rem;
  background: rgba(255,255,255,.64);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
.hero-card-header {
  background: rgba(9,11,15,.92);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-card-dots { display: flex; gap: 0.375rem; }
.hero-card-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.25); }
.hero-card-title { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,.7); margin-left: 0.5rem; }
.hero-card-body  { padding: 1.5rem; }
.hcb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.hcb-row:last-child { border-bottom: none; }
.hcb-label { color: var(--text-2); }
.hcb-value { font-weight: 600; color: var(--text); }
.hcb-badge { font-size: 0.6875rem; font-weight: 600; padding: 0.25rem 0.625rem; border-radius: 20px; }
.hcb-green  { color: var(--navy); background: var(--bg-tint); }
.hcb-blue   { color: var(--blue); background: var(--blue-tint); }
.hcb-amber  { color: var(--navy); background: var(--bg-tint); }

.hero-float {
  position: absolute;
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  animation: float 4.5s ease-in-out infinite alternate;
}
.hero-float-1 { bottom: -24px; left: -32px; animation-delay: 0s; }
.hero-float-2 { top: -16px;   right: -24px; animation-delay: 1.5s; }
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-8px); } }
.hf-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 800; letter-spacing: .02em; }
.hf-blue  { background: var(--blue-tint); }
.hf-green { background: var(--bg-tint); }
.hf-text  { display: flex; flex-direction: column; }
.hf-val   { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.hf-sub   { font-size: 0.6875rem; color: var(--text-3); }

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.tb-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
}
.tb-item svg { color: var(--blue); flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(247,248,250,.9)),
    radial-gradient(circle at 85% 10%, rgba(9,11,15,.08), transparent 28rem);
  padding: calc(var(--nav-h) + 4.75rem) 0 4.75rem;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--text-3); transition: color .15s ease; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: var(--border-2); }
.page-hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.page-hero-desc,
.hero-sub {
  font-size: 1.125rem;
  max-width: 560px;
  line-height: 1.65;
  color: var(--text-2);
}

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.stat-card {
  padding: 2rem;
  border-right: 1px solid var(--border);
  background: rgba(255,255,255,.78);
}
.stat-card:last-child { border-right: none; }
.stat-num { font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 700; letter-spacing: -0.05em; color: var(--navy); margin-bottom: 0.375rem; }
.stat-desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.5; }

/* ── SERVICE CARDS ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); border-color: rgba(9,11,15,.22); }
.sc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.sc-icon-blue   { background: var(--blue-tint); color: var(--blue); }
.sc-icon-navy   { background: rgba(13,31,60,.08); color: var(--navy); }
.sc-icon-green  { background: #F1F2F4; color: #374151; }
.sc-icon-amber  { background: var(--bg-tint); color: var(--navy); }
.sc-icon-purple { background: #F1F2F4; color: #374151; }
.sc-icon-teal   { background: #F1F2F4; color: #374151; }

.service-card h3 { margin-bottom: 0.625rem; }
.service-card p  { font-size: 0.9375rem; line-height: 1.65; flex: 1; margin-bottom: 1.5rem; }
.sc-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  transition: gap .15s ease;
}
.sc-link:hover { gap: 0.5rem; }

/* ── Operating system bento ─────────────────────────────────── */
.ops-shell {
  display: grid;
  grid-template-columns: .9fr 1.25fr;
  gap: 1.25rem;
  align-items: stretch;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 30px 100px rgba(9,11,15,.12);
  backdrop-filter: blur(26px) saturate(1.16);
  -webkit-backdrop-filter: blur(26px) saturate(1.16);
}
.ops-copy {
  border-radius: 22px;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, rgba(9,11,15,.90), rgba(9,11,15,.78)),
    url('https://images.unsplash.com/photo-1497366412874-3415097a27e7?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.ops-copy .eyebrow,
.ops-copy h2,
.ops-copy p { color: #fff; }
.ops-copy .eyebrow::before { background: rgba(255,255,255,.55); }
.ops-copy p { color: rgba(255,255,255,.72); max-width: 520px; }
.ops-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.ops-copy .btn-outline { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); }
.ops-copy .btn-outline:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); }
.ops-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(170px, auto);
  gap: 1rem;
}
.ops-tile {
  grid-column: span 3;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 170px;
  padding: 1.35rem;
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 14px 38px rgba(9,11,15,.08);
  overflow: hidden;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), box-shadow .32s ease, background .32s ease;
}
.ops-tile::before {
  content: '';
  position: absolute;
  inset: auto -20% -55% -20%;
  height: 120px;
  background: radial-gradient(circle, rgba(9,11,15,.11), transparent 68%);
  opacity: 0;
  transition: opacity .32s ease, transform .32s ease;
}
.ops-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(9,11,15,.15);
  background: rgba(255,255,255,.9);
}
.ops-tile:hover::before { opacity: 1; transform: translateY(-8px); }
.ops-tile-large { grid-column: span 6; }
.ops-tile-dark {
  color: #fff;
  background: linear-gradient(145deg, #090B0F, #2B313A);
  border-color: rgba(255,255,255,.12);
}
.ops-tile span {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-3);
}
.ops-tile h3 { margin-bottom: .45rem; }
.ops-tile p { font-size: .9rem; line-height: 1.55; max-width: 26rem; }
.ops-tile-dark h3,
.ops-tile-dark p { color: #fff; }
.ops-tile-dark p { color: rgba(255,255,255,.68); }

/* Service detail (services page) */
.service-detail {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.service-detail:first-child { border-top: none; }
.sd-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}
.sd-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.sd-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sd-header h3 { font-size: 1.5rem; }
.sd-desc { font-size: 1.0625rem; line-height: 1.72; margin-bottom: 1.5rem; }
.sd-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.sd-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-2);
}
.sd-list li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; font-size: 0.875rem; margin-top: 0.125rem; }
.sd-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sd-sidebar-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.sd-sidebar-box h5 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.sd-sidebar-box ul { display: flex; flex-direction: column; gap: 0.5rem; }
.sd-sidebar-box li { font-size: 0.9375rem; color: var(--text-2); }

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(50% / 4);
  right: calc(50% / 4);
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, var(--blue) 50%, var(--border) 100%);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.ps-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  transition: border-color .2s ease, background .2s ease;
}
.process-step:hover .ps-num { border-color: var(--blue); background: var(--blue-tint); color: var(--blue); }
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.875rem; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color .15s ease;
}
.faq-q:hover { color: var(--blue); }
.faq-icon { font-size: 1.25rem; color: var(--text-3); transition: transform .2s ease; line-height: 1; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--blue); }
.faq-a { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .3s ease, opacity .25s ease; }
.faq-item.open .faq-a { max-height: 200px; opacity: 1; }
.faq-a p { padding-bottom: 1.25rem; font-size: 0.9375rem; line-height: 1.68; }

/* ── PROJECT CARDS ───────────────────────────────────────────── */
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.5rem 1.125rem;
  border-radius: 20px;
  transition: all .15s ease;
}
.filter-btn:hover { color: var(--navy); border-color: var(--navy); }
.filter-btn.active { color: #fff; background: var(--navy); border-color: var(--navy); }

.projects-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.project-card {
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s ease, transform .2s ease;
  display: flex;
  flex-direction: column;
}
.project-card:hover { box-shadow: 0 24px 70px rgba(9,11,15,.14); transform: translateY(-6px); }
.project-card.featured { grid-column: 1 / -1; flex-direction: row; }

.pc-visual { background: var(--bg-alt); overflow: hidden; position: relative; }
.project-card:not(.featured) .pc-visual { aspect-ratio: 16/9; }
.project-card.featured .pc-visual { width: 480px; flex-shrink: 0; min-height: 320px; }
.pc-visual img { width: 100%; height: 100%; object-fit: cover; }

.pc-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-tint) 100%);
}
.pc-placeholder-inner {
  text-align: center;
}
.pc-placeholder-inner .ph-icon { font-size: 2.5rem; margin-bottom: 0.5rem; opacity: .3; }
.pc-placeholder-inner span { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.photo-card {
  position: relative;
  min-height: 360px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,.9);
}
.photo-card img,
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-card::after,
.pc-visual.has-photo::after,
.story-photo::after,
.vc-thumb.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,11,15,0) 35%, rgba(9,11,15,.48) 100%);
  pointer-events: none;
}
.photo-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  color: #fff;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pc-visual.has-photo {
  background: #111827;
}

.pc-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.pc-cat  { font-size: 0.6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.625rem; }
.pc-body h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.pc-body p  { font-size: 0.9375rem; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.pc-results {
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
  background: rgba(247,248,250,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r);
  margin-bottom: 1.25rem;
}
.pc-result-item { display: flex; flex-direction: column; gap: 0.125rem; }
.pc-result-val   { font-size: 1.125rem; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; }
.pc-result-label { font-size: 0.6875rem; color: var(--text-3); }

/* ── PRICING ──────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(9,11,15,.42);
  box-shadow: 0 0 0 1px rgba(9,11,15,.42), var(--sh-md);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  padding: 0.3125rem 0.875rem;
  border-radius: 0 0 6px 6px;
}
.prc-name { font-size: 0.875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.75rem; }
.prc-price { font-size: 2.75rem; font-weight: 700; letter-spacing: -0.06em; color: var(--navy); line-height: 1; margin-bottom: 0.25rem; }
.prc-price span { font-size: 1rem; opacity: .5; font-weight: 400; letter-spacing: 0; }
.prc-cycle { font-size: 0.875rem; color: var(--text-3); margin-bottom: 1.5rem; }
.prc-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 1.5rem; }
.prc-features { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; margin-bottom: 1.75rem; }
.prc-features li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9375rem; color: var(--text-2); }
.prc-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; font-size: 0.875rem; margin-top: .125rem; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-sm);
}
.testi-stars { color: var(--navy); font-size: 0.875rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testi-quote { font-size: 1rem; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-alt); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--navy); font-size: 0.875rem; }
.testi-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.testi-role { font-size: 0.75rem; color: var(--text-3); }

/* ── TIMELINE ────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: .5rem; bottom: 0; width: 2px; background: var(--border); border-radius: 2px; }
.tl-item { position: relative; padding-bottom: 3rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ''; position: absolute; left: -2.5625rem; top: .3125rem; width: 10px; height: 10px; background: var(--border); border-radius: 50%; border: 2px solid var(--bg); }
.tl-item.current::before { background: var(--blue); border-color: var(--blue-tint); box-shadow: 0 0 0 3px rgba(29,78,216,.2); }
.tl-year  { font-size: 0.6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: .375rem; }
.tl-title { font-size: 1.125rem; font-weight: 600; color: var(--text); margin-bottom: .375rem; letter-spacing: -.02em; }
.tl-desc  { font-size: 0.9375rem; line-height: 1.65; }

/* ── VENTURES (small cards) ──────────────────────────────────── */
.venture-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.venture-card-sm {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.venture-card-sm:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.vc-thumb {
  height: 140px;
  position: relative;
  overflow: hidden;
}
.v-insurance,
.v-onset,
.v-ai,
.v-strategy,
.v-tech,
.v-special { background: linear-gradient(135deg, #090B0F, #3D444E); }
.vc-thumb.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.05);
}
.vc-thumb-label {
  position: absolute; bottom: 1rem; left: 1rem;
  font-size: clamp(1.25rem,3vw,2rem);
  font-weight: 700;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.15);
  line-height: 1;
}
.vc-thumb-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.vc-info { padding: 1.25rem; }
.vc-info-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .5rem; }
.vc-info h4 { font-size: 1rem; }
.vc-info p  { font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.vc-info-link { font-size: 0.8125rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: .25rem; transition: gap .15s ease; }
.vc-info-link:hover { gap: .5rem; }

/* Venture detail pages */
.venture-detail {
  padding: 3rem;
  margin-bottom: 2rem;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--sh);
}
.vd-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.vd-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.vd-desc p { margin-bottom: 1rem; }
.vd-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.vd-sidebar-block {
  padding: 1.25rem;
  border-radius: var(--r);
  background: rgba(247,248,250,.86);
  border: 1px solid var(--border);
}
.vd-sidebar-block h5 {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .85rem;
}
.vd-sidebar-block li {
  color: var(--text-2);
  font-size: .9rem;
  padding: .25rem 0;
}
.vd-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.photo-ph {
  min-height: 180px;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--sh-sm);
}
.photo-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,11,15,.08), rgba(9,11,15,.62));
}
.photo-ph span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.venture-detail:nth-of-type(1) .photo-ph:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=800&q=80'); }
.venture-detail:nth-of-type(1) .photo-ph:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=800&q=80'); }
.venture-detail:nth-of-type(1) .photo-ph:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=800&q=80'); }
.venture-detail:nth-of-type(2) .photo-ph:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=800&q=80'); }
.venture-detail:nth-of-type(2) .photo-ph:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?auto=format&fit=crop&w=800&q=80'); }
.venture-detail:nth-of-type(2) .photo-ph:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=800&q=80'); }
.venture-detail:nth-of-type(3) .photo-ph:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=800&q=80'); }
.venture-detail:nth-of-type(3) .photo-ph:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=800&q=80'); }
.venture-detail:nth-of-type(3) .photo-ph:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=800&q=80'); }
.venture-detail:nth-of-type(5) .photo-ph:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1497366412874-3415097a27e7?auto=format&fit=crop&w=800&q=80'); }
.venture-detail:nth-of-type(5) .photo-ph:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=800&q=80'); }
.venture-detail:nth-of-type(5) .photo-ph:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=800&q=80'); }

/* Insights */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.insight-card {
  min-height: 320px;
  padding: 1.75rem;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
}
.insight-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 46% 1fr;
  padding: 0;
  overflow: hidden;
}
.ic-visual { min-height: 360px; position: relative; overflow: hidden; }
.ic-visual-inner {
  min-height: 100%;
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80') !important;
  background-size: cover !important;
  background-position: center !important;
}
.ic-visual-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,11,15,.12), rgba(9,11,15,.72));
}
.ic-body { padding: 2rem; display: flex; flex-direction: column; }
.ic-cat {
  display: inline-flex;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .75rem;
}
.insight-card h3 { margin-bottom: .75rem; }
.insight-card p { font-size: .9375rem; }
.ic-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  color: var(--text-3);
  font-size: .75rem;
  margin-top: auto;
  padding-top: 1.5rem;
}
.ic-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-2);
}
.tag-pill {
  color: var(--navy);
  background: var(--bg-tint);
  border-radius: 999px;
  padding: .2rem .5rem;
}

/* ── BOOKING PAGE ────────────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
}
.booking-info h2 { margin-bottom: 1rem; }
.booking-info p  { margin-bottom: 1.5rem; }
.meeting-types { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.meeting-type {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.mt-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--blue-tint); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; }
.mt-body h4 { font-size: 0.9375rem; margin-bottom: .25rem; }
.mt-body p  { font-size: 0.875rem; }
.mt-duration { font-size: 0.75rem; color: var(--text-3); font-weight: 500; margin-top: .25rem; }

.booking-embed-wrap {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.86);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
  min-height: 600px;
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 400px 1fr; gap: 5rem; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(255,255,255,.86); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); margin-bottom: 2rem; }
.cm-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  transition: background .15s ease;
}
.cm-item:last-child { border-bottom: none; }
.cm-item:hover { background: var(--bg-alt); }
.cm-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--blue-tint); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; }
.cm-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.cm-value { font-size: 1rem; font-weight: 500; color: var(--text); }

/* ── FORM ────────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4375rem; }
.field label { font-size: 0.8125rem; font-weight: 600; color: var(--text); }
.opt { font-weight: 400; color: var(--text-3); }

.field input, .field textarea {
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r);
  padding: 0.75rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,.12); }
.field input.err, .field textarea.err { border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.sel-wrap { position: relative; }
.sel-wrap select { font-family: var(--font); font-size: 0.9375rem; color: var(--text); background: var(--bg); border: 1.5px solid var(--border-2); border-radius: var(--r); padding: 0.75rem 2.5rem 0.75rem 1rem; outline: none; width: 100%; -webkit-appearance: none; appearance: none; transition: border-color .15s ease, box-shadow .15s ease; cursor: pointer; }
.sel-wrap select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,.12); }
.sel-arrow { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-3); pointer-events: none; font-size: .75rem; }

.btn-submit { width: 100%; padding: 0.9375rem; font-family: var(--font); font-size: 1rem; font-weight: 600; color: #fff; background: var(--navy); border: none; border-radius: var(--r); transition: background .15s ease, transform .15s ease; box-shadow: var(--sh-sm); }
.btn-submit:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--sh); }
.form-note { font-size: 0.8125rem; color: var(--text-3); text-align: center; }
.form-success { text-align: center; padding: 3rem 2rem; border: 2px solid rgba(9,11,15,.22); border-radius: var(--r-lg); background: var(--bg-alt); }
.succ-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.succ-msg { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.succ-sub { font-size: 0.9375rem; color: var(--text-2); }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px) scale(.985); filter: blur(8px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease; }
.reveal.visible { opacity: 1; transform: none; filter: none; }

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band { background: var(--navy); padding: 7rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 65%); pointer-events: none; }
.cta-band h2 { color: #fff; font-size: clamp(1.75rem, 3.5vw, 3rem); margin-bottom: 1rem; position: relative; }
.cta-band p  { color: rgba(255,255,255,.65); font-size: 1.125rem; max-width: 520px; margin: 0 auto 2.5rem; position: relative; }
.cta-band .btn-group { justify-content: center; position: relative; }

/* ── INDUSTRIES STRIP ────────────────────────────────────────── */
.industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.industry-item { background: var(--bg); padding: 1.75rem; text-align: center; transition: background .2s ease; }
.industry-item:hover { background: var(--bg-tint); }
.ind-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.industry-item h4 { font-size: 0.9375rem; margin-bottom: .375rem; }
.industry-item p  { font-size: 0.8125rem; }

/* ── MULTI-PAGE DIRECTORY / STORY BLOCKS ────────────────────── */
.page-directory {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  grid-auto-rows: 210px;
  gap: 1rem;
}
.directory-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 1.5rem;
  color: #fff;
  box-shadow: 0 18px 55px rgba(9,11,15,.12);
  isolation: isolate;
  transition: transform .34s cubic-bezier(.2,.8,.2,1), box-shadow .34s ease;
}
.directory-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 82px rgba(9,11,15,.18);
}
.directory-card:nth-child(1) {
  grid-row: span 2;
}
.directory-card:nth-child(3) {
  grid-column: span 1;
  grid-row: span 2;
}
.directory-card:nth-child(6) {
  grid-column: span 2;
}
.directory-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.05);
  z-index: -2;
}
.directory-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9,11,15,.03), rgba(9,11,15,.82)),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: auto, 28px 28px;
  z-index: -1;
}
.directory-card span {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: .5rem;
}
.directory-card h3 { color: #fff; margin-bottom: .5rem; }
.directory-card p { color: rgba(255,255,255,.74); font-size: .9rem; margin-bottom: 1rem; }
.directory-card strong { color: #fff; font-size: .875rem; }
.story-photo {
  position: relative;
  min-height: 320px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.leadership-note {
  padding: 1.5rem;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--sh);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav { height: 78px; }
  .nav-inner { height: 54px; margin-top: 12px; }
  .mobile-menu { inset: 78px 0 0; }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding-top: 122px; }
  .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 680px; }
  .hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
  .hero-card { left: 1rem; right: 1rem; }
}
@media (max-width: 900px) {
  :root { --pad: 72px; }
  .ops-shell { grid-template-columns: 1fr; }
  .ops-copy { min-height: 340px; }
  .ops-grid { grid-auto-rows: minmax(150px, auto); }
  .ops-tile,
  .ops-tile-large,
  .ops-tile-dark { grid-column: span 6; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .grid-3, .testimonials-grid, .venture-strip { grid-template-columns: 1fr; }
  .page-directory { grid-template-columns: 1fr 1fr; }
  .directory-card,
  .directory-card:nth-child(1),
  .directory-card:nth-child(3),
  .directory-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }
  .grid-4, .industries-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.featured { flex-direction: column; }
  .project-card.featured .pc-visual { width: 100%; min-height: 240px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .sd-layout { grid-template-columns: 1fr; }
  .vd-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card.featured { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .field-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 1.5rem; }
}
@media (max-width: 600px) {
  :root { --pad: 56px; }
  .container { padding: 0 1.25rem; }
  .nav-inner { border-radius: 18px; }
  .nav-logo-img { height: 26px; }
  .hero { padding-top: 110px; }
  .hero h1 { font-size: 2.55rem; }
  .hero-visual .photo-card { min-height: 440px; }
  .hero-card { position: relative; left: auto; right: auto; bottom: auto; margin-top: -8rem; }
  .hero-float { display: none; }
  .ops-shell { padding: .6rem; border-radius: 22px; }
  .ops-copy,
  .ops-tile,
  .directory-card { border-radius: 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .page-directory { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { gap: 1.25rem; }
  .trust-sep { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .venture-detail { padding: 1.5rem; }
  .vd-top { flex-direction: column; align-items: flex-start; }
  .vd-gallery { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } .reveal { opacity:1; transform:none; } }
