:root {
  --bg: #ffffff;
  --bg-subtle: #f7f8fa;
  --bg-dark: #0f1117;
  --bg-dark-card: #181c26;
  --text: #0f1117;
  --text-soft: #52596b;
  --text-muted: #8a92a3;
  --text-on-dark: #e8eaf0;
  --text-soft-on-dark: #8a92a3;
  --border: #e4e7ed;
  --border-dark: #252a38;
  --primary: #1d4ed8;
  --primary-strong: #1741c4;
  --primary-soft: #eff4ff;
  --accent: #3b82f6;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.07), 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 4px 16px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.07);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0 0 0.75rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.75rem); font-weight: 780; }
h2 { font-size: clamp(1.65rem, 3vw, 2.5rem); font-weight: 740; }
h3 { font-size: 1.1rem; font-weight: 680; }

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

ul, ol {
  margin: 0;
  padding-left: 1.25rem;
}

li { margin-bottom: 0.5rem; }

a { color: var(--primary); }

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--bg-subtle);
}

.section-dark {
  background: var(--bg-dark);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-on-dark);
}

.section-dark p,
.section-dark li {
  color: var(--text-soft-on-dark);
}

.section-header {
  margin-bottom: 3rem;
  max-width: 560px;
}

.section-header p {
  font-size: 1.1rem;
  margin: 0;
}

#outcomes .section-header {
  max-width: none;
}

#outcomes .section-header p {
  max-width: max-content;
}

@media (max-width: 768px) {
  #outcomes .section-header p {
    max-width: none;
  }
}

.section-lead {
  font-size: 1.15rem;
  color: var(--text-soft-on-dark);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* ─── NAV ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.site-header .btn-primary {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
}

.site-header .btn-primary:hover {
  background: #020617;
  border-color: #020617;
  color: #ffffff;
}

.site-header .btn-primary:link,
.site-header .btn-primary:visited {
  color: #ffffff;
}

.site-header .nav {
  width: min(1160px, 92%);
  margin-left: max(calc((100% - min(1160px, 92%)) / 2 - 14px), 2.5%);
  margin-right: auto;
  padding-left: 0;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.75rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 1.25rem;
}

.brand-logo {
  display: block;
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 520;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--text); }

/* ─── BUTTONS ─── */
.btn {
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 620;
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border: 1.5px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-strong); border-color: var(--primary-strong); }

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--text-soft);
  padding-left: 0;
}
.btn-ghost:hover { color: var(--text); transform: none; }

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 660;
}

.btn-block {
  width: 100%;
  margin-top: 0.5rem;
}

/* ─── HERO ─── */
.hero {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background: linear-gradient(170deg, #eef3ff 0%, #ffffff 45%, #f7f8fa 100%);
}

.hero-logo {
  display: block;
  height: 52px;
  width: auto;
  margin-bottom: 2.5rem;
}

.hero-inner {
  max-width: 680px;
  margin-bottom: 4rem;
}

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 680;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  background: var(--primary-soft);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

.eyebrow-credential {
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.85rem;
  line-height: 1.5;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 58ch;
  margin-bottom: 0.5rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1.25rem;
}

.trust-line {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.logo-row {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.logo-row-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.logo-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.logo-item {
  font-size: 1.35rem;
  font-weight: 740;
  letter-spacing: -0.03em;
  color: var(--text);
  opacity: 0.55;
}

.section-lead-light {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.why-intro {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--text-soft);
  margin: 0;
}

.why-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.why-closer {
  margin: 1.5rem 0 0;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stat-number {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 820;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.4;
}

/* ─── PAIN ─── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0;
}

.pain-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.pain-icon {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: #ef4444;
  margin-top: 0.05rem;
  font-weight: 700;
}

.pain-item p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--text-soft-on-dark);
  line-height: 1.55;
}

/* ─── SERVICES ─── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-number {
  font-size: 0.78rem;
  font-weight: 740;
  color: var(--primary);
  letter-spacing: 0.08em;
  background: var(--primary-soft);
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.service-card > p {
  margin: 0;
  font-size: 0.95rem;
}

.service-fit {
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.fit-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.service-fit p {
  margin: 0;
  font-size: 0.87rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.service-examples-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0.25rem 0 0;
}

.outcome-list {
  margin: 0;
  padding-left: 1.1rem;
}

.outcome-list li {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

/* ─── ROI ─── */
.roi-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.roi-text h2 { margin-bottom: 1.25rem; }
.roi-text p { font-size: 1rem; }
.roi-text .btn { margin-top: 0.5rem; }

.roi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.roi-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}

.roi-row:last-of-type { border-bottom: none; }

.roi-row span {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.roi-row strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.roi-divider {
  height: 2px;
  background: var(--border);
  margin: 0.5rem 0;
}

.roi-total {
  padding-top: 1rem;
  border-bottom: none !important;
}

.roi-total span { font-weight: 600; color: var(--text); }

.roi-highlight {
  font-size: 1.8rem !important;
  font-weight: 820 !important;
  color: var(--primary) !important;
  letter-spacing: -0.03em;
}

.roi-note {
  margin: 1.25rem 0 0;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── WORK ─── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.work-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.work-card-featured {
  background: var(--bg-dark);
  border-color: var(--border-dark);
}

.work-card-featured h3,
.work-card-featured p {
  color: var(--text-on-dark);
}

.work-card-featured .work-result {
  color: var(--accent);
}

.work-result {
  font-size: 1.5rem;
  font-weight: 820;
  letter-spacing: -0.04em;
  color: var(--primary);
  line-height: 1;
}

.work-card h3 { margin: 0; }
.work-card p { margin: 0; font-size: 0.95rem; }

.case-study-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.case-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0;
}

.work-card-featured .case-label {
  color: var(--text-soft-on-dark);
}

.case-impact {
  font-weight: 680;
  color: var(--text) !important;
}

.work-card-featured .case-impact {
  color: var(--accent) !important;
  font-weight: 740;
}

.case-impact-list {
  margin: 0;
  padding-left: 1.1rem;
}

.case-impact-list li {
  font-size: 0.95rem;
  font-weight: 680;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.work-card-featured .case-impact-list li {
  color: var(--accent);
  font-weight: 740;
}

.work-grid-featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card-featured-span {
  grid-column: 1 / -1;
}

/* ─── PROCESS ─── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 0.5rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-connector {
  width: 3rem;
  height: 1px;
  background: var(--border);
  margin-top: 1.4rem;
  align-self: flex-start;
}

.step-num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 780;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 { margin-bottom: 0.4rem; }
.step-content p { font-size: 0.93rem; margin: 0; }

/* ─── ASSESSMENT ─── */
.assessment-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.assessment-text h2 { margin-bottom: 1rem; }
.assessment-text p { font-size: 1rem; margin-bottom: 1rem; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.97rem;
  color: var(--text-soft);
  margin: 0;
}

.checklist li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.assessment-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 88px;
}

.assess-price-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0 0 0.35rem;
}

.assess-price {
  font-size: 2rem;
  font-weight: 820;
  color: var(--text);
  margin: 0 0 0.4rem;
  letter-spacing: -0.04em;
}

.assess-includes-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin: 0.75rem 0 0.5rem;
}

.assess-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.assess-includes li {
  font-size: 0.93rem;
  color: var(--text-soft);
  margin: 0;
  padding-left: 1.1rem;
  position: relative;
}

.assess-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.assess-contact {
  font-size: 1.05rem;
  font-weight: 640;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.assess-credit {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.assess-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0;
  text-align: center;
}

/* ─── OUTCOMES ─── */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.outcome-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.outcome-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
}

.outcome-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.outcome-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.outcome-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-muted);
}

/* ─── WHAT I BUILD ─── */
.build-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.build-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.build-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
}

.build-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-soft);
}

/* ─── ADDITIONAL PROJECTS ─── */
.project-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.project-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 1rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.55;
}

.project-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ─── ASSESSMENT PROCESS ─── */
.assessment-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.assessment-week-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.week-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin: 0 0 0.5rem;
}

.assessment-week-card h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.assessment-week-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.assessment-week-card li {
  font-size: 0.93rem;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}

.assessment-deliverables {
  background: var(--bg-dark);
  border-color: var(--border-dark);
}

.assessment-deliverables .week-label {
  color: var(--accent);
}

.assessment-deliverables h3 {
  color: var(--text-on-dark);
}

.assessment-deliverables li {
  color: var(--text-soft-on-dark);
}

/* ─── ABOUT ─── */
.about-inner {
  max-width: 620px;
}

.about-split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 900px;
}

.about-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-subtle);
}

.about-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-text .eyebrow { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { font-size: 1rem; }

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.about-credentials span {
  font-size: 0.83rem;
  font-weight: 580;
  color: var(--text-soft);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.about-highlights-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 2rem 0 0;
}

/* ─── FAQ ─── */
.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  transition: box-shadow 0.15s;
}

details[open] { box-shadow: var(--shadow-sm); }

summary {
  font-weight: 640;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0.85rem 0 0;
  font-size: 0.97rem;
  line-height: 1.65;
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--bg-dark);
  padding: 7rem 0;
}

.final-cta h2 { color: var(--text-on-dark); }
.final-cta p { color: var(--text-soft-on-dark); font-size: 1.1rem; max-width: 52ch; margin: 0 auto 2.25rem; }
.final-cta .btn-primary { background: #fff; color: var(--primary); border-color: #fff; }
.final-cta .btn-primary:hover { background: #f0f5ff; }

.center { text-align: center; }

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  display: block;
  height: 40px;
  width: auto;
}

.footer-brand p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-email a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.88rem;
}
.footer-email a:hover { color: var(--primary); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .service-grid,
  .work-grid,
  .outcome-grid,
  .build-grid,
  .assessment-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-connector {
    display: none;
  }

  .process-step {
    flex-direction: row;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .step-num {
    flex-shrink: 0;
  }
}

@media (max-width: 860px) {
  .section { padding: 4.5rem 0; }
  .hero { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .final-cta { padding: 5rem 0; }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .roi-split,
  .assessment-split,
  .about-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo-wrap {
    max-width: 280px;
  }

  .assessment-card {
    position: static;
  }

  .outcome-grid,
  .build-grid,
  .assessment-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section { padding: 3.75rem 0; }

  .nav-links a:not(.btn) { display: none; }

  .btn-lg {
    white-space: normal;
    text-align: center;
  }

  .btn-block {
    white-space: normal;
    text-align: center;
  }

  .logo-list {
    gap: 1.25rem;
  }

  .logo-item {
    font-size: 1.1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .work-grid,
  .outcome-grid,
  .build-grid,
  .assessment-process-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 0;
    gap: 0.35rem;
  }
}
