/* SuccessMetrics — Design System */
:root {
  --bg: #0a0e1a;
  --bg-2: #0f1526;
  --bg-3: #161e35;
  --card: #131a2e;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(99, 140, 255, 0.4);
  --text: #e8ecf5;
  --text-dim: #9aa5bd;
  --text-faint: #6b7691;
  --accent: #16a6d8;
  --accent-2: #38d9c0;
  --accent-3: #5b6bd6;
  --brand-cyan: #0995c5;
  --brand-indigo: #2e3791;
  --gradient: linear-gradient(135deg, #0995c5 0%, #16a6d8 50%, #38d9c0 100%);
  --gradient-text: linear-gradient(110deg, #2fb4e0 0%, #38d9c0 55%, #6f8cff 100%);
  --radius: 14px;
  --max-w: 1180px;
  --nav-max-w: 1400px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--nav-max-w); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em;
  color: var(--text); display: flex; align-items: center; gap: 10px;
}
.logo .mark {
  width: 40px; height: 40px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  box-sizing: border-box;
  display: inline-flex; align-items: center; justify-content: center;
}
.logo span.sm { background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links a { color: var(--text-dim); font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--gradient); color: #0a0e1a !important; font-weight: 700;
  padding: 9px 20px; border-radius: 9px; font-size: 0.9rem;
  transition: transform 0.15s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(79, 124, 255, 0.35); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  padding: 40px 0 90px;
  background:
    radial-gradient(ellipse 60% 50% at 70% 0%, rgba(79, 124, 255, 0.18), transparent),
    radial-gradient(ellipse 50% 40% at 20% 100%, rgba(56, 217, 192, 0.10), transparent),
    var(--bg);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black, transparent);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px; align-items: center; }
.hero-art { display: flex; justify-content: center; align-items: center; }
.hero-logo {
  width: 100%; max-width: 360px;
  background: #fff;
  border-radius: 24px;
  padding: 40px 44px;
  box-sizing: border-box;
  box-shadow: 0 20px 60px rgba(9, 149, 197, 0.30), 0 0 0 1px rgba(255,255,255,0.06);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (max-width: 860px) { .hero-layout { grid-template-columns: 1fr; } .hero-art { display: none; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-2);
  border: 1px solid rgba(56, 217, 192, 0.3);
  background: rgba(56, 217, 192, 0.07);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.12;
  max-width: 860px; margin-bottom: 22px;
}
.hero h1 .grad { background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { font-size: 1.18rem; color: var(--text-dim); max-width: 640px; margin-bottom: 36px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px; font-weight: 700; font-size: 0.98rem;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  cursor: pointer; border: none; font-family: var(--font);
}
.btn-primary { background: var(--gradient); color: #0a0e1a; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(79, 124, 255, 0.4); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--border-hover); background: rgba(79, 124, 255, 0.06); }

/* ============ CLIENT LOGO MARQUEE ============ */
.client-marquee-section {
  border-top: 1px solid var(--border);
  background: var(--bg);
  margin-top: -32px;
  position: relative;
  z-index: 1;
}
.client-marquee-head {
  text-align: center;
  padding: 20px 24px 16px;
}
.client-marquee-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.client-marquee {
  overflow: hidden;
  padding: 12px 0 18px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.client-marquee-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: client-marquee-scroll 45s linear infinite;
}
.client-marquee:hover .client-marquee-inner {
  animation-play-state: paused;
}
.client-marquee-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 56px;
  flex-shrink: 0;
  padding-right: 56px;
}
.client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.client-logo img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.client-logo:hover img { opacity: 1; }
.client-logo--caloes img,
.client-logo--alameda img,
.client-logo--caltrans img {
  height: 36px;
  max-width: 220px;
  opacity: 0.9;
  mix-blend-mode: lighten;
}
.client-logo--alameda img { max-width: 260px; }
.client-logo--roller img {
  height: 26px;
  max-width: 150px;
}
.client-logo--leaflink img {
  height: 32px;
  max-width: 180px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.client-logo--rli img {
  height: 36px;
  max-width: 140px;
  opacity: 0.9;
  mix-blend-mode: lighten;
}
@keyframes client-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}
@media (prefers-reduced-motion: reduce) {
  .client-marquee-inner {
    animation: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    transform: none;
  }
  .client-marquee { mask-image: none; -webkit-mask-image: none; }
  .client-marquee-group[aria-hidden="true"] { display: none; }
  .client-marquee-group { padding-right: 56px; }
}

/* ============ STATS BAR ============ */
.stats-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.stats-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 34px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat { text-align: center; }
.stat .num {
  font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em;
  background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .lbl { font-size: 0.85rem; color: var(--text-faint); margin-top: 2px; }

/* ============ SECTIONS ============ */
section.block { padding: 90px 0; }
section.block.alt { background: var(--bg-2); }
.section-head { max-width: 700px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
h2.title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 16px; }
.section-head p { color: var(--text-dim); font-size: 1.05rem; }

/* ============ CARDS ============ */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative; display: flex; flex-direction: column;
}
.card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.35); }
.card .icon {
  width: 46px; height: 46px; border-radius: 11px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  background: rgba(79, 124, 255, 0.12); border: 1px solid rgba(79, 124, 255, 0.25);
}
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.card p { color: var(--text-dim); font-size: 0.93rem; flex: 1; }
.card .link { margin-top: 18px; font-weight: 600; font-size: 0.9rem; color: var(--accent-2); }
.card .link:hover { text-decoration: underline; }
.badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 14px;
  background: rgba(167, 139, 250, 0.12); color: var(--accent-3); border: 1px solid rgba(167, 139, 250, 0.3);
  align-self: flex-start;
}
.badge.teal { background: rgba(56, 217, 192, 0.1); color: var(--accent-2); border-color: rgba(56, 217, 192, 0.3); }
.badge.blue { background: rgba(79, 124, 255, 0.12); color: #8db0ff; border-color: rgba(79, 124, 255, 0.3); }

/* ============ PROCESS / TIMELINE ============ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; position: relative;
}
.step::before {
  counter-increment: step; content: '0' counter(step);
  font-size: 0.85rem; font-weight: 800; color: var(--accent-2);
  display: block; margin-bottom: 12px; letter-spacing: 0.05em;
}
.step h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--text-dim); }

/* ============ CTA BANNER ============ */
.cta-banner {
  margin: 0 24px;
}
.cta-banner .inner {
  max-width: var(--max-w); margin: 0 auto;
  background:
    radial-gradient(ellipse 70% 100% at 30% 0%, rgba(79, 124, 255, 0.25), transparent),
    radial-gradient(ellipse 50% 80% at 80% 100%, rgba(56, 217, 192, 0.18), transparent),
    var(--bg-3);
  border: 1px solid var(--border); border-radius: 22px;
  padding: 64px 48px; text-align: center;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-banner p { color: var(--text-dim); max-width: 560px; margin: 0 auto 30px; }

/* ============ PARTNERS ============ */
.partners-section {
  padding: 0 0 0;
  margin-top: -20px;
}
.partners-section .section-head {
  margin-bottom: 28px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  min-height: 112px;
  transition: border-color 0.2s;
}
.partner-logo:hover {
  border-color: var(--border-hover);
}
.partner-logo img {
  width: 100%;
  max-width: 240px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}
.partner-logo--salesforce img {
  max-width: 400px;
  max-height: 112px;
}
.partner-logo--xtech img {
  max-width: 480px;
  max-height: 128px;
}
.partner-logo--odaseva img {
  max-width: 200px;
  max-height: 48px;
}

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--border); background: var(--bg-2);
  padding: 60px 0 32px; margin-top: 90px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-grid h5 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--text-dim); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--text); }
.footer-about p { color: var(--text-dim); font-size: 0.9rem; max-width: 320px; margin-top: 14px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  color: var(--text-faint); font-size: 0.85rem;
}

/* ============ PAGE HERO (interior) ============ */
.page-hero {
  padding: 80px 0 60px;
  background:
    radial-gradient(ellipse 50% 60% at 80% 0%, rgba(79, 124, 255, 0.14), transparent),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.page-hero p { color: var(--text-dim); font-size: 1.1rem; max-width: 680px; }

/* ============ PROSE (blog/article) ============ */
.prose { max-width: 760px; margin: 0 auto; padding: 60px 24px; }
.prose.prose--story {
  max-width: min(var(--max-w), 100%);
  width: min(100%, calc(var(--max-w) - 48px));
  padding: 60px max(24px, 4vw);
}
.prose h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.18; margin-bottom: 18px; }
.prose .meta { color: var(--text-faint); font-size: 0.9rem; margin-bottom: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.prose h2 { font-size: 1.55rem; font-weight: 750; margin: 44px 0 16px; letter-spacing: -0.015em; }
.prose h3 { font-size: 1.2rem; font-weight: 700; margin: 32px 0 12px; }
.prose p { color: #c4ccdd; margin-bottom: 18px; font-size: 1.02rem; }
.prose ul, .prose ol { color: #c4ccdd; margin: 0 0 18px 24px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 3px solid var(--accent-2); padding: 4px 0 4px 22px; margin: 28px 0;
  color: var(--text); font-size: 1.1rem; font-style: italic;
}
.prose .callout {
  background: var(--card); border: 1px solid var(--border); border-left: 3px solid var(--accent);
  border-radius: 10px; padding: 22px 26px; margin: 28px 0;
}
.prose .callout p:last-child { margin-bottom: 0; }
.prose .story-meta {
  color: var(--text-dim); font-size: 0.95rem; margin-bottom: 28px;
  display: grid; gap: 6px;
}
.prose .story-meta strong { color: var(--text); font-weight: 600; }
.prose-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.prose-header-copy { flex: 1; min-width: 0; }
.prose-header .badge { display: inline-block; margin-bottom: 12px; }
.prose-header h1 { margin-bottom: 18px; }
.prose-header .story-meta { margin-bottom: 0; }
.prose-client-logo {
  flex-shrink: 0;
  height: 38px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.88;
}
.prose-client-logo--sfhss { max-width: 200px; height: 40px; }
.prose-client-logo--mohcd,
.story-client-logo--mohcd {
  filter: brightness(0) invert(1);
}
.prose-client-logo--mohcd { max-width: 480px; height: auto; max-height: 108px; }
.prose--story .prose-client-logo { height: 52px; max-width: 240px; }
.prose--story .prose-client-logo--sfhss { max-width: 280px; height: 56px; }
.prose--story .prose-client-logo--mohcd { max-width: 540px; max-height: 120px; height: auto; }
.prose table {
  width: 100%; border-collapse: collapse; margin: 24px 0 28px;
  font-size: 0.95rem;
}
.prose th, .prose td {
  border: 1px solid var(--border); padding: 12px 14px; text-align: left;
  color: #c4ccdd;
}
.prose th { background: var(--card); color: var(--text); font-weight: 600; }
.prose hr {
  border: none; border-top: 1px solid var(--border); margin: 44px 0;
}

/* ============ FORMS ============ */
.form-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 38px;
  min-width: 0;
  max-width: 100%;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; min-width: 0; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--text-dim); }
.field input, .field select, .field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 9px;
  padding: 12px 14px; color: var(--text); font-family: var(--font); font-size: 0.95rem;
  transition: border-color 0.2s;
}
.field select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.field input[type="file"] {
  padding: 10px 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; color: var(--text-faint); margin-top: 14px; }

/* ============ JOB LISTINGS ============ */
.job-row {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 28px; margin-bottom: 14px; transition: border-color 0.2s;
  flex-wrap: wrap;
}
.job-row:hover { border-color: var(--border-hover); }
.job-row .info h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 4px; }
.job-row .info .meta { font-size: 0.86rem; color: var(--text-faint); display: flex; gap: 14px; flex-wrap: wrap; }
.job-row .meta span::before { content: ''; }
.jobs-status { color: var(--text-dim); font-size: 0.95rem; padding: 12px 0; }
.form-status {
  margin-bottom: 18px; padding: 14px 16px; border-radius: 10px; font-size: 0.95rem; line-height: 1.5;
}
.form-status--success {
  background: rgba(56, 217, 192, 0.12); border: 1px solid rgba(56, 217, 192, 0.35); color: var(--text);
}
.form-status--error {
  background: rgba(255, 99, 99, 0.1); border: 1px solid rgba(255, 99, 99, 0.35); color: #ffb4b4;
}

/* ============ RESOURCE / STORY CARDS ============ */
.card.res-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.card.res-card .thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  flex-shrink: 0;
}
.card.res-card .body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card.res-card.story-card .thumb {
  height: 260px;
  min-height: 260px;
}
.story-card-thumb {
  flex-direction: column;
  gap: 22px;
  justify-content: center;
  padding: 32px 28px;
}
.story-card-icon {
  font-size: 5rem;
  line-height: 1;
  flex-shrink: 0;
}
.card.res-card.story-card .link { margin-top: auto; padding-top: 18px; }
.story-client-logo {
  object-fit: contain;
  opacity: 0.92;
  flex-shrink: 0;
}
.story-client-logo--thumb {
  height: 64px;
  width: auto;
  max-width: min(320px, 85%);
  object-position: center;
}
.story-client-logo--sfhss.story-client-logo--thumb { max-width: min(360px, 90%); height: 72px; }
.story-client-logo--mohcd.story-client-logo--thumb { height: auto; max-height: 84px; max-width: min(630px, 92%); }
.thumb-1 { background: linear-gradient(135deg, rgba(79,124,255,0.25), rgba(167,139,250,0.2)); }
.thumb-2 { background: linear-gradient(135deg, rgba(56,217,192,0.22), rgba(79,124,255,0.2)); }
.thumb-3 { background: linear-gradient(135deg, rgba(167,139,250,0.22), rgba(56,217,192,0.18)); }
.thumb-4 { background: linear-gradient(135deg, rgba(255,170,80,0.18), rgba(79,124,255,0.2)); }

/* ============ MISC ============ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col > * { min-width: 0; }
.check-list { list-style: none; }
.check-list li {
  padding-left: 32px; position: relative; margin-bottom: 14px; color: var(--text-dim); font-size: 0.97rem;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 21px; height: 21px; border-radius: 6px; font-size: 0.75rem; font-weight: 800;
  background: rgba(56, 217, 192, 0.15); color: var(--accent-2);
  display: flex; align-items: center; justify-content: center;
}
.divider { height: 1px; background: var(--border); margin: 60px 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.88rem; }
  .nav-cta { padding: 8px 16px; font-size: 0.85rem; }
}
@media (max-width: 960px) {
  .grid-3, .grid-4, .process { grid-template-columns: repeat(2, 1fr); }
  .two-col, .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg-2); flex-direction: column; padding: 24px; gap: 18px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .nav-inner { position: relative; }
}
@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4, .process, .two-col, .form-grid, .footer-grid, .partners-grid { grid-template-columns: 1fr; }
  .hero { padding: 32px 0 60px; }
  section.block { padding: 60px 0; }
  .container { padding: 0 18px; }
  .form-card { padding: 24px 18px; }
  .cta-banner .inner { padding: 44px 26px; }
  .prose-header { flex-direction: column; align-items: flex-start; }
  .prose-client-logo { align-self: flex-end; }
}
