/* ═══ RESET & VARIABLES ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #0a0a0a;
  --white: #f8f8f8;
  --accent: #0c3533;
  --accent-light: #11433f;
  --text-muted-strong: #5f5f5f;
  --nav-bg: #0c3533;
  --gray: #444;
  --border: 3px solid var(--black);
  --border-light: 3px solid rgba(255,255,255,0.15);
  /* Cohesion system */
  --bg-primary: #f8f8f8;
  --bg-subtle: #f0f0ec;
  --bg-emphasis: #0a0a0a;
  --section-pad: 4rem 2rem;
  --h2-size: clamp(1.8rem, 3vw, 2.5rem);
  --h3-size: 1.2rem;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

a[href],
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
label[for],
summary,
[role="button"] {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  padding: 0.85rem 1.25rem;
  background: #ffffff;
  color: var(--black);
  border: var(--border);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.skip-link:focus {
  top: 1rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #00E8A0;
  outline-offset: 3px;
}

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 2rem;
  background: #0c3533 !important;
  border-bottom: none;
}
nav.scrolled { background: var(--nav-bg); }
.nav-logo {
  text-decoration: none; color: var(--white);
  display: flex; align-items: center;
}
.nav-links { display: flex; gap: 0; align-items: stretch; flex: 1; justify-content: flex-end; }
.nav-link {
  text-decoration: none; color: #f9f9f9;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border-left: 2px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.nav-dropdown-toggle {
  background: none;
  border-top: none;
  border-right: none;
  border-bottom: none;
  font-family: inherit;
  cursor: pointer;
}
.nav-link:hover { background: var(--accent-light); color: #ffffff; }
.nav-link:focus-visible,
.dropdown-menu a:focus-visible {
  background: var(--accent-light);
  color: #ffffff;
}
.nav-link[aria-current="page"] {
  color: #ffffff;
  background: var(--accent-light);
}
.nav-dropdown:first-child .nav-link { border-left: none; }
.nav-cta {
  background: #ffffff !important;
  color: var(--nav-bg) !important;
}
.nav-cta:hover {
  background: var(--accent-light) !important;
  color: #ffffff !important;
}
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.mobile-toggle span {
  display: block; width: 28px; height: 3px;
  background: #ffffff; margin: 5px 0;
  transition: all 0.3s;
}

/* Dropdowns */
.nav-dropdown { position: relative; display: flex; align-items: stretch; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: var(--border);
  border-top: none;
  min-width: 220px;
  z-index: 1001;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--black);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: all 0.15s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover {
  background: var(--accent);
  color: #ffffff !important;
}

/* ═══ HERO ═══ */
.hero {
  padding: 6rem 2rem 3rem;
  border-bottom: var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent);
  color: #ffffff;
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: brutFade 0.4s 0.1s forwards;
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: brutFade 0.4s 0.2s forwards;
}
.hero-title .thin {
  font-weight: 300;
  font-style: italic;
  text-transform: none;
}
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: var(--border);
  margin-top: 2rem;
  opacity: 0;
  animation: brutFade 0.4s 0.4s forwards;
}
.hero-sub {
  font-size: 1rem;
  max-width: 450px;
  color: var(--gray);
  line-height: 1.7;
}
.hero-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 3px solid var(--black);
  transition: all 0.15s;
  white-space: nowrap;
}
.hero-btn:hover {
  background: var(--accent);
  color: #ffffff;
}
.hero-btn:focus-visible,
.cta-btn:focus-visible,
.test-dot:focus-visible,
.test-nav-btn:focus-visible,
.blog-filter-btn:focus-visible,
.form-submit:focus-visible {
  background: var(--accent);
  color: #ffffff;
}

@keyframes brutFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ LOGOS / TRUSTED BY ═══ */
.logos-section {
  display: flex;
  border-bottom: var(--border);
  background: #ffffff;
}
.logos-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  padding: 1.5rem 1rem;
  border-right: var(--border);
  background: var(--black);
  color: var(--white);
}
.logos-list {
  display: flex; flex: 1;
  align-items: stretch;
}
.logos-list span {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-right: 2px solid rgba(0,0,0,0.08);
  padding: 1.5rem 1rem;
  color: var(--gray);
  background: #ffffff;
  transition: all 0.2s;
}
.logos-list span:last-child { border-right: none; }
.logos-list span:hover { background: var(--accent); color: #ffffff; }

/* ═══ STATS ═══ */
.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--accent);
  border-bottom: var(--border);
}
.stats-section:has(.stat-block:nth-child(4)) {
  grid-template-columns: repeat(4, 1fr);
}
.stats-section:not(:has(.stat-block:nth-child(3))) {
  grid-template-columns: repeat(2, 1fr);
}
.stat-block {
  padding: 4rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stat-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #00E8A0;
}
.stat-block.visible { opacity: 1; transform: translateY(0); }
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: var(--accent-light); }
.stat-block:hover::before { background: #F9C234; width: 60px; }
.stat-num {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  white-space: nowrap;
  color: #ffffff;
}
.stat-suffix { font-weight: 300; }
.stat-desc {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ═══ SERVICES / CARDS GRID ═══ */
.services-section { border-bottom: var(--border); }
.section-title-bar {
  padding: 2rem;
  border-bottom: var(--border);
  display: flex;
  align-items: baseline;
  gap: 2rem;
}
.section-title-bar h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.section-title-bar p {
  font-size: 0.9rem;
  color: var(--gray);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.svc-card {
  padding: 2.5rem 2rem;
  border-right: var(--border);
  position: relative;
  transition: all 0.2s;
}
.svc-card:last-child { border-right: none; }
.svc-card:hover { background: var(--accent); color: #ffffff; }
.svc-card:hover .svc-num { color: rgba(255,255,255,0.5); }
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.85); }
.svc-card a { text-decoration: none; color: inherit; display: block; }
.svc-num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}
.svc-name {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.svc-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.svc-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border: 2px solid var(--black);
  display: inline-block;
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-section {
  background: var(--white);
  color: var(--black);
  border-bottom: var(--border);
  padding: 4rem 2rem 3rem;
  overflow: hidden;
}
.test-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.test-carousel-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.test-nav {
  display: flex;
  gap: 0.5rem;
}
.test-nav-btn {
  width: 52px;
  height: 52px;
  background: var(--black);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.test-nav-btn:hover {
  background: #00E8A0;
  color: var(--black);
}
.test-carousel {
  overflow: hidden;
}
.test-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.test-slide {
  flex: 0 0 50%;
  padding: 0 0.75rem;
  box-sizing: border-box;
}
.test-card {
  background: linear-gradient(135deg, #0c3533 0%, #081f1e 100%);
  color: #ffffff;
  padding: 3rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.test-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #00E8A0;
}
.test-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00E8A0;
  margin-bottom: 0.75rem;
}
.test-mark {
  font-size: 4rem;
  font-weight: 900;
  color: #00E8A0;
  line-height: 0.8;
  margin-bottom: 1rem;
}
.test-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  flex: 1;
}
.test-author-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.test-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #00E8A0;
}
.test-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.test-avatar-initials {
  font-size: 0.85rem;
  font-weight: 800;
  color: #00E8A0;
  letter-spacing: 0.05em;
}
.test-author {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
}
.test-author a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #00E8A0;
}
.test-author a:hover {
  color: #00E8A0;
}
.test-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}
.test-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.test-dot {
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.test-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.15);
  transition: all 0.2s;
}
.test-dot.active {
  width: 36px;
}
.test-dot.active::before {
  width: 24px;
  background: var(--black);
}
.test-dot:hover::before {
  background: #00E8A0;
}
.test-source {
  padding: 1.25rem 0 0;
  font-size: 0.75rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 1.5rem;
  text-align: center;
}

/* ═══ TABS SECTION ═══ */
.tabs-section {
  background: var(--black);
  color: var(--white);
  border-bottom: var(--border);
  padding: 4rem 2rem;
}
.tabs-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.tabs-menu {
  display: flex;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.tab-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.9);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  margin-bottom: -2px;
}
.tab-btn:hover { color: rgba(255,255,255,0.8); }
.tab-btn.active {
  color: var(--white);
  border-bottom-color: #ffffff;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel ul {
  list-style: none;
  padding: 0;
}
.tab-panel li {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tab-panel li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: #ffffff;
}
.tab-panel p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.tab-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.3rem;
  transition: all 0.2s;
}
.tab-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* ═══ CHALLENGES SECTION ═══ */
.challenges-section {
  padding: 4rem 2rem;
  border-bottom: var(--border);
  background: var(--bg-subtle);
  color: var(--black);
}

.challenges-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.challenges-sub {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.challenge-item {
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.1);
}

.challenge-num {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 1rem;
}

.challenge-item h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.challenge-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ═══ TEAM HOME SECTION ═══ */
.team-home-section {
  padding: 5rem 2rem;
  border-bottom: var(--border);
}

.team-home-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}

.team-home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
}

.team-home-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  border: var(--border);
  background: var(--white);
}

.team-home-photo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}

.team-home-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: center 20%;
}

.team-home-placeholder {
  width: 100px;
  height: 100px;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.team-home-photo img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.team-home-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.team-home-title {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.team-home-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}

.team-home-cta {
  margin-top: 1.5rem;
}

.team-home-info h3 a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

.team-home-info h3 a:hover {
  color: var(--accent);
}

/* ═══ TEAM ABOUT GRID ═══ */
.team-about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-bottom: var(--border);
}

.team-about-card {
  display: block;
  padding: 2.5rem;
  border-right: var(--border);
  text-decoration: none;
  color: var(--black);
  transition: background 0.2s;
}

.team-about-card:last-child {
  border-right: none;
}

.team-about-card:hover {
  background: rgba(12, 53, 51, 0.03);
}

.team-about-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
  margin-bottom: 1.5rem;
}

.team-about-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.team-about-role {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.team-about-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 1rem;
}

.team-about-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

/* ═══ PRESS GRID ═══ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: var(--border);
}

.press-item {
  padding: 2rem;
  border-right: var(--border);
  border-bottom: var(--border);
}

.press-item:nth-child(3n) {
  border-right: none;
}

.press-type {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: #ffffff;
  padding: 0.2rem 0.6rem;
  margin-bottom: 1rem;
}

.press-item h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.press-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.press-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.press-link:hover {
  color: var(--black);
  border-bottom-color: var(--black);
}

/* ═══ PRESS HERO (split layout) ═══ */
.press-hero { display: none; }
.press-hero-premium {
  display: grid;
  grid-template-columns: 3fr 2fr;
  border-bottom: var(--border);
}
.press-hero-left {
  padding: 8rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.press-hero-left h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.press-hero-left h1 .thin {
  font-weight: 300;
  font-style: italic;
  text-transform: none;
}
.press-hero-left > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 2rem;
}
.press-hero-stats {
  display: flex;
  gap: 0;
  border-top: var(--border);
  padding-top: 1.5rem;
}
.press-hero-stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.1);
  padding: 0 0.5rem;
}
.press-hero-stat:last-child { border-right: none; }
.press-hero-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #00E8A0;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.press-hero-stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.press-hero-right {
  border-left: var(--border);
  overflow: hidden;
}
.press-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ═══ PRESS FEATURED GRID (podcast cards) ═══ */
.press-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--border);
}
.press-featured-card {
  display: flex;
  flex-direction: column;
  border-right: var(--border);
  border-bottom: var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.press-featured-card:nth-child(3n) {
  border-right: none;
}
.press-featured-card:hover {
  background: rgba(12, 53, 51, 0.03);
}
.press-featured-img {
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}
.press-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.press-featured-card:hover .press-featured-img img {
  transform: scale(1.03);
}
.press-featured-info {
  padding: 1.5rem;
  flex: 1;
}
.press-featured-info .press-type {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: #ffffff;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.75rem;
}
.press-featured-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.press-featured-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ═══ PRESS AWARDS GRID ═══ */
.press-awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--border);
}
.press-award {
  padding: 2.5rem 2rem;
  border-right: var(--border);
  text-align: center;
}
.press-award:last-child {
  border-right: none;
}
.press-award-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1.25rem;
}
.press-award-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--black);
  color: #00E8A0;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
}
.press-award-logo {
  height: 28px;
  width: auto;
  margin-bottom: 1.25rem;
}
.press-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  margin-top: 0.75rem;
  display: inline-block;
}
.press-link:hover {
  color: #00E8A0;
}
.press-award h3 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.press-award p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ═══ PRESS PODCAST LAYOUT ═══ */
.press-podcast-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--border);
}
.press-podcast-featured {
  border-right: var(--border);
  text-decoration: none;
  color: var(--black);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.press-podcast-featured:hover { background: var(--bg-subtle); }
.press-podcast-featured img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: var(--border);
}
.press-podcast-featured-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.press-podcast-badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: #00E8A0;
  display: inline-block;
  padding: 0.2rem 0.5rem;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.press-podcast-featured-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.press-podcast-featured-info p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}
.press-podcast-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 1rem;
}
.press-podcast-featured:hover .press-podcast-link { color: #00E8A0; }
.press-podcast-list {
  display: flex;
  flex-direction: column;
}
.press-podcast-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-decoration: none;
  color: var(--black);
  transition: all 0.2s;
  flex: 1;
}
.press-podcast-item:last-child { border-bottom: none; }
.press-podcast-item:hover { background: var(--bg-subtle); padding-left: 2.5rem; }
.press-podcast-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.5);
  line-height: 1;
  flex-shrink: 0;
  width: 35px;
}
.press-podcast-item h4 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
}
.press-podcast-item p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ═══ PRESS RECOGNITION STRIP ═══ */
.press-recognition {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--black);
  color: #ffffff;
  border-bottom: var(--border);
}
.press-recog-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: #ffffff;
  transition: background 0.2s;
}
.press-recog-item:last-child { border-right: none; }
.press-recog-item:hover { background: rgba(255,255,255,0.05); }
.press-recog-stat {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00E8A0;
  line-height: 1;
  flex-shrink: 0;
}
.press-recog-logo {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.press-recog-item h3 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
}
.press-recog-item p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

/* ═══ CTA SECTION ═══ */
.cta-section {
  padding: 4rem 2rem;
  border-bottom: var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 65%;
  height: 80%;
  background: url('/images/frequency-wave.png') right center / contain no-repeat;
  opacity: 0.75;
  pointer-events: none;
}
.cta-left {
  position: relative;
  z-index: 1;
}
.cta-btn {
  position: relative;
  z-index: 1;
}
.cta-left h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  max-width: 550px;
}
.cta-left p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 1rem;
}
.cta-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 3px solid var(--accent);
  transition: all 0.15s;
}
.cta-btn:hover {
  background: var(--accent-light);
  color: #ffffff;
}
/* Bright CTA variants */
.hero-btn-bright, .cta-btn-bright {
  background: #00E8A0 !important;
  color: var(--black) !important;
  border-color: #00E8A0 !important;
  font-weight: 900 !important;
}
.hero-btn-bright:hover, .cta-btn-bright:hover {
  background: #F9C234 !important;
  border-color: #F9C234 !important;
  color: var(--black) !important;
}
.hero-btn-outline {
  background: transparent !important;
  color: var(--black) !important;
  border: 2px solid var(--black) !important;
  font-weight: 700 !important;
}
.hero-btn-outline:hover {
  background: var(--black) !important;
  color: #ffffff !important;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.cta-mid {
  padding: 3rem 2rem;
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--bg-subtle);
}
.cta-mid-hook {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cta-objection {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.75rem;
  font-style: italic;
}

/* ═══ FOOTER ═══ */
footer {
  background: var(--black);
  color: var(--white);
  border-top: 3px solid var(--accent-light);
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-top: 0;
  max-width: 320px;
}
.footer-subscribe {
  margin-top: 0.5rem;
}
/* Footer HubSpot subscribe form */
footer .hs-form input[type="email"] {
  width: 100% !important;
  padding: 0.6rem 0.8rem !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.85rem !important;
}
footer .hs-form input[type="email"]:focus {
  border-color: #00E8A0 !important;
  outline: none !important;
}
footer .hs-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5) !important;
}
footer .hs-form .hs-button {
  padding: 0.6rem 1.5rem !important;
  background: #00E8A0 !important;
  color: var(--black) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  cursor: pointer !important;
  margin-top: 0.5rem !important;
}
footer .hs-form .hs-button:hover {
  background: #F9C234 !important;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #ffffff; }
.footer-bottom {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-legal {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.9);
}
.footer-legal a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: #ffffff; }

/* ═══ PAGE HERO (interior pages) ═══ */
.page-hero {
  padding: 8rem 2rem 3rem;
  border-bottom: var(--border);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  opacity: 0;
  animation: brutFade 0.4s 0.1s forwards;
}
.page-hero h1 .thin {
  font-weight: 300;
  font-style: italic;
  text-transform: none;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin-top: 1.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: brutFade 0.4s 0.3s forwards;
}
.page-hero .hero-eyebrow {
  margin-bottom: 1.5rem;
}

/* ═══ CONTENT SECTIONS ═══ */
.content-section {
  padding: 4rem 2rem;
  border-bottom: var(--border);
}
.content-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.content-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 700px;
  margin-bottom: 1rem;
}
.content-section.dark {
  background: var(--bg-emphasis);
  color: var(--white);
}
.content-section.dark p { color: rgba(255,255,255,0.85); }
.content-section.subtle {
  background: var(--bg-subtle);
}
.content-section.subtle + .card-grid,
.content-section.subtle + .services-grid {
  background: var(--bg-subtle);
}
.content-section.subtle + .card-grid .card {
  border-color: rgba(0,0,0,0.1);
}
.content-section.subtle + .services-grid .svc-card {
  border-color: rgba(0,0,0,0.1);
}

/* ═══ UTILITY CLASSES ═══ */
.split-heading {
  font-size: var(--h2-size);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.split-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
}
.split-body + .split-body {
  margin-top: 1rem;
}
.section-subtitle {
  color: var(--gray);
  max-width: 700px;
  margin-top: 0.5rem;
}
.bg-subtle {
  background: var(--bg-subtle);
}

/* ═══ STORY LAYOUT ═══ */
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  border-bottom: var(--border);
}
.story-main {
  padding: 3.5rem 3rem;
  border-right: var(--border);
}
.story-kicker {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.story-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.story-lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--black);
  max-width: 48rem;
  margin-bottom: 1.5rem;
}
.story-copy {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 44rem;
}
.story-copy + .story-copy {
  margin-top: 1rem;
}
.story-side {
  background: var(--black);
  color: #ffffff;
  padding: 3.5rem 2.5rem;
}
.story-side-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00E8A0;
  margin-bottom: 1.5rem;
}
.story-side-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.story-side-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.story-side-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(0,232,160,0.9);
  line-height: 1;
}
.story-side-item h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.story-side-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

/* ═══ CARD GRIDS ═══ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  border-bottom: var(--border);
}
.card {
  padding: 2.5rem 2rem;
  border-right: var(--border);
  border-bottom: var(--border);
  transition: all 0.2s;
}
.card:hover { background: var(--accent); color: #ffffff; }
.card a { text-decoration: none; color: inherit; display: block; }
.card-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.5);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.card:hover .card-num {
  color: rgba(255,255,255,0.5);
}
.card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
}
.card:hover p { color: #ffffff; }
.card-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 2px solid var(--black);
  display: inline-block;
  margin-top: 1rem;
}

/* ═══ PARTNER TABS & CARDS ═══ */
.partner-tabs-section {
  border-top: var(--border);
}
.partner-tab-input { display: none; }
.partner-tab-bar {
  display: flex;
  border-bottom: var(--border);
}
.partner-tab-label {
  flex: 1;
  padding: 1.2rem 2rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border-right: var(--border);
  background: transparent;
  color: var(--gray);
}
.partner-tab-label:last-child { border-right: none; }
.partner-tab-label:hover { background: var(--accent); color: #ffffff; }

/* Active tab state via radio */
#tab-tech:checked ~ .partner-tab-bar label[for="tab-tech"],
#tab-services:checked ~ .partner-tab-bar label[for="tab-services"] {
  background: var(--black);
  color: #ffffff;
}

/* Panel visibility */
.partner-panel { display: none; }
#tab-tech:checked ~ .partner-panel-tech { display: block; }
#tab-services:checked ~ .partner-panel-services { display: block; }

/* Partner grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.partner-card {
  padding: 2.5rem 2rem;
  border-right: var(--border);
  border-bottom: var(--border);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.partner-card:hover { background: var(--accent); color: #ffffff; }
.partner-category {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 2px solid var(--black);
  display: inline-block;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.partner-card:hover .partner-category { border-color: #ffffff; }
.partner-logo-box {
  width: 100%;
  height: 80px;
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: #ffffff;
  padding: 1rem 1.5rem;
  overflow: hidden;
}
.partner-card:hover .partner-logo-box { border-color: #ffffff; }
.partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.partner-name {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.partner-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}
.partner-card:hover .partner-desc { color: rgba(255,255,255,0.85); }
.partner-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  margin-top: 1.5rem;
  display: inline-block;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--accent);
  transition: all 0.2s;
}
.partner-card:hover .partner-link { color: #ffffff; border-color: #ffffff; }

/* ═══ VALUES ═══ */
/* ═══ ABOUT VALUES GRID ═══ */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-bottom: var(--border);
}
.about-value-card {
  padding: 2rem;
  border-right: var(--border);
  border-bottom: var(--border);
  transition: all 0.2s;
}
.about-value-card:hover { background: var(--bg-subtle); }
.about-value-num {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.about-value-card h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.about-value-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ═══ ABOUT TEAM STRIP ═══ */
.about-team-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: var(--border);
}
.about-team-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-right: var(--border);
  text-decoration: none;
  color: var(--black);
  transition: background 0.2s;
}
.about-team-card:last-child { border-right: none; }
.about-team-card:hover { background: var(--bg-subtle); }
.about-team-photo {
  overflow: hidden;
  border-right: var(--border);
}
.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.about-team-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.about-team-info h3 {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.about-team-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}
.about-team-info p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}
.about-team-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 1rem;
}
.about-team-card:hover .about-team-link { color: #00E8A0; }

.values-grid {
  border-bottom: var(--border);
}
.value-item {
  padding: 2rem;
  border-bottom: var(--border);
  display: flex;
  align-items: baseline;
  gap: 2rem;
  transition: all 0.2s;
}
.value-item:last-child { border-bottom: none; }
.value-item:hover { background: var(--accent); color: #ffffff; }
.value-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray);
}
.value-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-right: 0.5rem;
}
.value-desc {
  font-size: 1rem;
  color: var(--gray);
}
.value-item:hover .value-desc { color: #ffffff; }

/* ═══ BLOG FILTER BAR ═══ */
.blog-subscribe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--black);
  color: #ffffff;
  border-bottom: var(--border);
  max-width: 100%;
}
.blog-subscribe-text {
  flex: 0 0 auto;
}
.blog-subscribe-text h3 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
}
.blog-subscribe-text p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.blog-subscribe-form {
  flex: 0 1 400px;
}
.blog-subscribe .hs-form,
.blog-subscribe .hs-form fieldset,
.blog-subscribe .hs-form .hs-form-field {
  display: flex !important;
  flex: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}
.blog-subscribe .hs-form {
  align-items: stretch !important;
  gap: 0 !important;
}
.blog-subscribe .hs-form .input {
  flex: 1 !important;
}
.blog-subscribe .hs-form input[type="email"] {
  width: 100% !important;
  padding: 0.7rem 1rem !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  border-right: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.85rem !important;
  box-sizing: border-box !important;
}
.blog-subscribe .hs-form input[type="email"]:focus {
  border-color: #00E8A0 !important;
  outline: none !important;
}
.blog-subscribe .hs-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5) !important;
}
.blog-subscribe .hs-form .hs-submit {
  flex: 0 0 auto !important;
}
.blog-subscribe .hs-form .hs-button {
  padding: 0.7rem 1.5rem !important;
  background: #00E8A0 !important;
  color: var(--black) !important;
  border: 2px solid #00E8A0 !important;
  border-radius: 0 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  margin: 0 !important;
}
.blog-subscribe .hs-form .hs-button:hover {
  background: #F9C234 !important;
  border-color: #F9C234 !important;
}
.blog-subscribe .hs-form .hs-error-msgs,
.blog-subscribe .hs-form .hs-recaptcha {
  display: none !important;
}

.blog-filter-bar {
  display: flex;
  gap: 0;
  border-bottom: var(--border);
}

.blog-filter-btn {
  padding: 1rem 1.5rem;
  border: none;
  border-right: var(--border);
  background: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  color: var(--gray);
  transition: all 0.2s;
}

.blog-filter-btn:last-child {
  border-right: none;
}

.blog-filter-btn:hover {
  background: rgba(12, 53, 51, 0.05);
  color: var(--black);
}

.blog-filter-btn.active {
  background: var(--accent);
  color: #ffffff;
}

/* ═══ BLOG LISTING ═══ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.blog-card {
  border-right: var(--border);
  border-bottom: var(--border);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { background: var(--accent); color: #ffffff; }
.blog-card a { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: var(--border);
  display: block;
}
.blog-card-body {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.blog-card-excerpt {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}
.blog-card:hover .blog-card-excerpt { color: rgba(255,255,255,0.85); }
.blog-card-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.blog-card-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.blog-card:hover .blog-card-date { color: rgba(255,255,255,0.8); }
.blog-card-category {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border: 2px solid var(--black);
  display: inline-block;
}
.blog-card:hover .blog-card-category { border-color: #ffffff; }
.blog-card-readmore {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  align-self: flex-start;
  padding-bottom: 0.2rem;
}
.blog-card:hover .blog-card-readmore { color: #ffffff; border-color: #ffffff; }

/* ═══ BLOG POST (single) ═══ */
.post-header {
  padding: 8rem 2rem 3rem;
  border-bottom: var(--border);
}
.post-header h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 800px;
}
.post-meta {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.post-hero-image {
  width: 100%;
  border-bottom: var(--border);
}
.post-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}
.post-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-bottom: var(--border);
}
.post-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.post-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.post-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #222;
}
.post-content ul, .post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.post-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  color: #222;
}
.post-content p:has(> img),
.post-content p:has(> a > img) {
  margin: 2rem 0 0.75rem;
  line-height: 0;
}
.post-content img {
  border: var(--border);
  margin: 2rem 0;
}
.post-content p > img,
.post-content p > a > img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.post-content p:has(> img) + p,
.post-content p:has(> a > img) + p {
  margin-top: 0;
}
.post-content p:has(> img) + p > em:only-child,
.post-content p:has(> a > img) + p > em:only-child {
  display: block;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gray);
  text-align: center;
}
.post-content a {
  color: var(--black);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  text-decoration: none;
  transition: all 0.15s;
}
.post-content a:hover {
  background: var(--accent);
}
.post-content a:focus-visible {
  background: var(--accent);
  color: #ffffff;
}
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 2rem 0;
  border: var(--border);
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.post-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gray);
}
.post-faq {
  border-bottom: var(--border);
  background: var(--bg-subtle);
}
.post-faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.post-faq-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-top: 0.5rem;
}
.post-faq-list {
  margin-top: 2rem;
  border-top: var(--border);
}
.post-faq-item {
  padding: 1.5rem 0;
  border-bottom: var(--border);
}
.post-faq-item h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.post-faq-item p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 760px;
}
.related-posts {
  border-bottom: var(--border);
}
.related-posts-header {
  padding: 3rem 2rem 2rem;
}
.related-posts-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-top: 0.5rem;
}
.related-posts-header p {
  max-width: 560px;
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}
.related-posts-grid {
  border-top: var(--border);
}

/* ═══ FORM ═══ */
.form-section {
  padding: 4rem 2rem;
  border-bottom: var(--border);
  max-width: 650px;
  margin: 0 auto;
}
.form-section h2 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: var(--border);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: all 0.15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 4px 4px 0 var(--accent);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-submit {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--black);
  color: var(--white);
  border: 3px solid var(--black);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.15s;
}
.form-submit:hover {
  background: var(--accent);
  color: #ffffff;
}

/* ═══ HUBSPOT FORM OVERRIDES ═══ */
.form-section .hs-form {
  font-family: 'Outfit', sans-serif !important;
}
.form-section .hs-form fieldset {
  max-width: 100% !important;
  margin-bottom: 1.5rem;
}
.form-section .hs-form .hs-form-field > label {
  font-family: 'Space Mono', monospace !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.5rem !important;
  color: var(--black) !important;
}
.form-section .hs-form .hs-form-field > label .hs-form-required { color: var(--accent) !important; }
.form-section .hs-form .hs-field-desc {
  font-size: 0.75rem !important;
  color: var(--gray) !important;
  margin-bottom: 0.5rem !important;
}
.form-section .hs-form input[type="text"],
.form-section .hs-form input[type="email"],
.form-section .hs-form input[type="tel"],
.form-section .hs-form input[type="number"],
.form-section .hs-form textarea,
.form-section .hs-form select {
  width: 100% !important;
  padding: 0.8rem 1rem !important;
  border: 3px solid var(--black) !important;
  border-radius: 0 !important;
  background: var(--white) !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1rem !important;
  color: var(--black) !important;
  transition: all 0.15s !important;
  -webkit-appearance: none;
  appearance: none;
}
.form-section .hs-form input:focus,
.form-section .hs-form textarea:focus,
.form-section .hs-form select:focus {
  outline: none !important;
  border-color: var(--accent) !important;
  box-shadow: 4px 4px 0 var(--accent) !important;
}
.form-section .hs-form textarea {
  min-height: 120px !important;
  resize: vertical !important;
}
.form-section .hs-form .hs-button {
  display: inline-block !important;
  padding: 1rem 2.5rem !important;
  background: var(--black) !important;
  color: #ffffff !important;
  border: 3px solid var(--black) !important;
  border-radius: 0 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  cursor: pointer !important;
  transition: all 0.15s !important;
}
.form-section .hs-form .hs-button:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}
.form-section .hs-form .hs-error-msgs {
  list-style: none !important;
  padding: 0 !important;
  margin: 0.3rem 0 0 !important;
}
.form-section .hs-form .hs-error-msgs li label {
  font-size: 0.7rem !important;
  color: #cc0000 !important;
  font-weight: 600 !important;
}
.form-section .hs-form .hs-richtext { font-size: 0.85rem; color: var(--gray); }
.form-section .hs-form fieldset.form-columns-2 .hs-form-field {
  width: 48% !important;
  float: left !important;
}
.form-section .hs-form fieldset.form-columns-2 .hs-form-field:last-child {
  float: right !important;
}
/* HubSpot checkbox/radio lists */
.form-section .hs-form .inputs-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.form-section .hs-form .inputs-list li {
  padding: 0.6rem 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}
.form-section .hs-form .inputs-list li:last-child { border-bottom: none !important; }
.form-section .hs-form .inputs-list label {
  display: flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer !important;
}
.form-section .hs-form .inputs-list input[type="checkbox"],
.form-section .hs-form .inputs-list input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  border: 2px solid var(--black) !important;
  border-radius: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}
.form-section .hs-form .inputs-list input[type="checkbox"]:checked,
.form-section .hs-form .inputs-list input[type="radio"]:checked {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3 4.3L6 11.6 2.7 8.3 1.3 9.7l4.7 4.7 8.7-8.7z'/%3E%3C/svg%3E") !important;
  background-size: 12px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.form-section .hs-form .inputs-list input[type="checkbox"]::before,
.form-section .hs-form .inputs-list input[type="checkbox"]::after,
.form-section .hs-form .inputs-list input[type="radio"]::before,
.form-section .hs-form .inputs-list input[type="radio"]::after {
  display: none !important;
}
.form-section .hs-form .submitted-message {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
  text-align: center !important;
  padding: 2rem 0 !important;
}

/* ═══ CASE STUDY DETAIL ═══ */
.cs-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 8rem 2rem 4rem;
  border-bottom: var(--border);
  align-items: end;
}
.cs-hero-stat {
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.85;
  color: #00E8A0;
  letter-spacing: -0.04em;
}
.cs-hero-content {
  max-width: 700px;
}
.cs-hero-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.cs-hero-content h1 .thin {
  font-weight: 300;
  font-style: italic;
  text-transform: none;
}
.cs-hero-content p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
}
.cs-meta-bar {
  display: flex;
  background: var(--black);
  border-bottom: var(--border);
}
.cs-meta-pill {
  flex: 1;
  padding: 1.25rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cs-meta-pill:last-child { border-right: none; }
.cs-meta-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: #00E8A0;
  padding: 0.25rem 0.6rem;
}
.cs-meta-val {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
}
.cs-meta-val a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.cs-meta-val a:hover { border-color: #00E8A0; }
.cs-narrative {
  border-bottom: var(--border);
}
.cs-narrative-row {
  display: grid;
  grid-template-columns: 160px 1fr;
}
.cs-narrative-subtle {
  background: var(--bg-subtle);
}
.cs-narrative-label {
  padding: 2.5rem 1.5rem;
  border-right: var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-subtle);
}
.cs-narrative-subtle .cs-narrative-label {
  background: rgba(0,0,0,0.03);
}
.cs-narrative-num {
  font-size: 2rem;
  font-weight: 900;
  color: #00E8A0;
  line-height: 1;
}
.cs-narrative-label span:last-child {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}
.cs-narrative-body {
  padding: 2.5rem;
}
.cs-narrative-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1rem;
}
.cs-narrative-body p:last-child { margin-bottom: 0; }
.cs-benefit {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cs-benefit:last-child { border-bottom: none; }
.cs-benefit h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.cs-quote {
  padding: 3rem 2rem;
  border-bottom: var(--border);
}
.cs-quote-card {
  background: var(--black);
  color: #ffffff;
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  border-left: 4px solid #00E8A0;
}
.cs-quote-card .test-mark { color: #00E8A0; }
.cs-quote-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.cs-quote-card .test-author { color: #ffffff; }
.cs-quote-card .test-role { color: rgba(255,255,255,0.6); }

/* ═══ CASE STUDY INDEX CARDS ═══ */
/* Hero proof stats */
.cs-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  opacity: 0;
  animation: brutFade 0.4s 0.5s forwards;
}
.cs-hero-stat {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.02em;
}
.cs-hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--black);
  margin-right: 0.35rem;
}
/* Toolbar */
.cs-toolbar {
  padding: 1rem 2rem;
  border-bottom: var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cs-toolbar-count {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
/* Grid + cards */
.cs-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: var(--border);
}
.cs-index-card {
  display: grid;
  grid-template-columns: clamp(140px, 15vw, 200px) 1fr;
  border-right: var(--border);
  border-bottom: var(--border);
  text-decoration: none;
  color: var(--black);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.cs-index-card:nth-child(2n) { border-right: none; }
.cs-index-card:nth-child(n+3) { border-bottom: none; }
.cs-index-card:hover {
  background: var(--black);
  color: #ffffff;
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 0 var(--black);
}
.cs-index-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #00E8A0;
  border-right: var(--border);
  padding: 2rem 1rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.cs-index-stat-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.5rem;
}
.cs-index-card:hover .cs-index-stat-label { color: rgba(255,255,255,0.4); }
.cs-index-card:hover .cs-index-stat {
  border-color: rgba(255,255,255,0.25);
  color: #00E8A0;
}
.cs-index-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.cs-index-kicker {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.75rem;
}
.cs-index-card:hover .cs-index-kicker { color: rgba(255,255,255,0.5); }
.cs-index-body h3 {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.cs-index-body p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}
.cs-index-card:hover .cs-index-body p { color: rgba(255,255,255,0.8); }
.cs-index-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1rem;
  color: var(--black);
  transition: transform 0.15s ease;
  display: inline-block;
}
.cs-index-card:hover .cs-index-link {
  color: #00E8A0;
  transform: translateX(4px);
}
.cs-index-card.cs-hidden {
  display: none;
}
/* Empty state */
.cs-empty-state {
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: var(--border);
  color: var(--gray);
  font-size: 1.1rem;
}
.cs-clear-inline {
  background: none;
  border: none;
  color: #00E8A0;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.1rem;
  text-decoration: underline;
}
/* Filters */
.cs-filters {
  display: flex;
  gap: 1rem;
}
.cs-filter {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.25rem;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: 0;
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23444' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  min-width: 180px;
  transition: border-color 0.2s;
}
.cs-filter:focus {
  border-color: var(--black);
}
.cs-filter.active {
  border-color: var(--black);
}
.cs-clear-filters {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: #00E8A0;
  cursor: pointer;
  padding: 0.75rem 0;
}
.cs-index-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.cs-index-logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 0;
}
.cs-index-initials {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #00E8A0;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 6px;
  flex-shrink: 0;
}
.cs-index-title-row h3 {
  margin-bottom: 0;
}

/* ═══ CASE STUDY SHOWCASE ═══ */
.cs-showcase {
  border-bottom: var(--border);
  background: var(--bg-subtle);
  color: var(--black);
}
.cs-showcase-header {
  padding: 4rem 2rem 2rem;
}
.cs-showcase-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.cs-showcase-header p {
  color: var(--gray);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}
.cs-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cs-showcase-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  border-right: var(--border);
  border-top: var(--border);
  text-decoration: none;
  color: var(--black);
  transition: all 0.2s;
}
.cs-showcase-card:last-child { border-right: none; }
.cs-showcase-card:hover { background: var(--black); color: #ffffff; }
.cs-showcase-stat {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #00E8A0;
  margin-bottom: 1.5rem;
}
.cs-showcase-card:hover .cs-showcase-stat { color: #00E8A0; }
.cs-showcase-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.cs-showcase-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}
.cs-showcase-card:hover .cs-showcase-body p { color: rgba(255,255,255,0.9); }
.cs-showcase-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 1.5rem;
  display: inline-block;
}
.cs-showcase-card:hover .cs-showcase-link { color: #00E8A0; }

/* ═══ CASE STUDY CARDS ═══ */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.case-study-card {
  padding: 3rem 2rem;
  border-right: var(--border);
  border-bottom: var(--border);
  transition: all 0.2s;
  position: relative;
}
.case-study-card:hover { background: var(--accent); color: #ffffff; }
.case-study-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.case-study-kicker {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.case-study-card h3 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.case-study-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}
.case-study-card:hover .case-study-kicker { color: #ffffff; }
.case-study-card:hover p { color: #ffffff; }
.case-study-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 2px solid var(--black);
  display: inline-block;
  margin-top: 1.5rem;
}

/* ═══ TEAM ═══ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.team-card {
  padding: 2.5rem 2rem;
  border-right: var(--border);
  border-bottom: var(--border);
  transition: all 0.2s;
}
.team-card:hover { background: var(--accent); color: #ffffff; }
.team-card a { text-decoration: none; color: inherit; display: block; }
.team-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}
.team-card-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ═══ RICH TEXT (from webflow) ═══ */
.rich-text h1 { font-size: 2.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 1rem; }
.rich-text h2 { font-size: 1.8rem; font-weight: 800; text-transform: uppercase; margin-top: 2rem; margin-bottom: 1rem; }
.rich-text h3 { font-size: 1.4rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.rich-text p { font-size: 1rem; line-height: 1.7; margin-bottom: 1rem; }
.rich-text ul, .rich-text ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.rich-text li { margin-bottom: 0.5rem; line-height: 1.6; }
.rich-text img { border: var(--border); margin: 1.5rem 0; }
.rich-text a { color: var(--black); border-bottom: 2px solid var(--accent); text-decoration: none; }
.rich-text a:hover { background: var(--accent); color: #ffffff; }

/* ═══ NAV LOGO ═══ */
.nav-logo-img {
  height: 28px;
  width: auto;
}

/* ═══ FOOTER LOGO & BADGES ═══ */
.footer-logo-link {
  display: inline-block;
}
.footer-logo-img {
  height: 40px;
  width: auto;
}
/* Hide reCAPTCHA badge — HubSpot validates server-side */
.grecaptcha-badge { visibility: hidden !important; height: 0 !important; overflow: hidden !important; }
footer .hs-recaptcha { display: none; }

.footer-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: center;
}
.footer-badge {
  height: 50px;
  width: auto;
}
.social-icon {
  height: 24px;
  width: 24px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.85);
}
.footer-social a:hover .social-icon {
  filter: none;
}

/* ═══ CLIENT LOGOS ═══ */
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
}
.client-logo {
  max-height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
  mix-blend-mode: multiply;
}
.logo-item:hover .client-logo,
.logos-list span:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* ═══ HERO WITH IMAGE ═══ */
.hero-content-wrapper {
  display: flex;
  gap: 3rem;
  align-items: flex-end;
}
.hero-text {
  flex: 1;
}
.hero-scale {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
}
.hero-scale-img {
  height: 100%;
  max-height: 420px;
  width: auto;
}

/* ═══ TESTIMONIAL HEADSHOTS ═══ */
.test-author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.test-headshot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.test-company-logo {
  max-height: 28px;
  width: auto;
  margin-top: 0.5rem;
  opacity: 1;
  filter: brightness(1.5);
}

/* ═══ TEAM HEADSHOTS ═══ */
.team-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-headshot-large {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
  border: var(--border);
}
.team-card-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: var(--border);
}

/* ═══ SOLUTION PAGE IMAGES ═══ */
.solution-hero-img {
  width: 100%;
  height: auto;
  border: var(--border);
}

/* ═══ TIMELINE ═══ */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  border-bottom: var(--border);
}
.timeline-item {
  padding: 2.5rem 2rem;
  border-right: var(--border);
  position: relative;
}
.timeline-item:last-child {
  border-right: none;
}
.timeline-year {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: #00E8A0;
  padding: 0.3rem 0.7rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}
.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.timeline-content p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══ FRACTIONAL COMPARISON ═══ */
.frac-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  border-bottom: var(--border);
  align-items: stretch;
}
.frac-compare-col {
  padding: 0;
}
.frac-compare-header {
  padding: 1.25rem 2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: var(--border);
}
.frac-compare-old .frac-compare-header {
  background: var(--bg-subtle);
  color: var(--gray);
}
.frac-compare-new .frac-compare-header {
  background: var(--accent);
  color: #00E8A0;
}
.frac-compare-body {
  padding: 1.5rem 2rem;
}
.frac-compare-new .frac-compare-body {
  background: var(--accent);
  color: #ffffff;
}
.frac-stat-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.frac-compare-new .frac-stat-row {
  border-color: rgba(255,255,255,0.08);
}
.frac-stat-row:last-child { border-bottom: none; }
.frac-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  color: #00E8A0;
}
.frac-compare-old .frac-stat-num {
  color: #00E8A0 !important;
}
.frac-compare-new .frac-stat-num {
  color: #00E8A0;
}
.frac-stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.4;
}
.frac-compare-new .frac-stat-label {
  color: rgba(255,255,255,0.7);
}
.frac-compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--gray);
  border-left: var(--border);
  border-right: var(--border);
  background: var(--bg-subtle);
}

/* ═══ FRACTIONAL ADVANTAGES ═══ */
.frac-advantages {
  border-bottom: var(--border);
}
.frac-adv {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.frac-adv:last-child { border-bottom: none; }
.frac-adv:hover { background: var(--bg-subtle); }
.frac-adv-num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1rem;
  font-size: 3rem;
  font-weight: 900;
  color: #00E8A0;
  line-height: 1;
  border-right: var(--border);
}
.frac-adv-content {
  padding: 3rem 2.5rem;
}
.frac-adv-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.frac-adv-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
}

/* ═══ FRACTIONAL PRICING ═══ */
.frac-pricing {
  padding: 4rem 2rem;
  border-bottom: var(--border);
  background: var(--bg-subtle);
}
.frac-pricing h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}
.frac-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
}
.frac-pricing-card {
  padding: 2.5rem 2rem;
  border: var(--border);
  border-right: none;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  background: var(--white);
}
.frac-pricing-card:last-child { border-right: var(--border); }
.frac-pricing-featured {
  background: var(--black);
  color: #ffffff;
  border-color: var(--black);
}
.frac-pricing-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}
.frac-pricing-featured .frac-pricing-num {
  color: rgba(255,255,255,0.5);
}
.frac-pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.frac-pricing-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.frac-pricing-featured p {
  color: rgba(255,255,255,0.8);
}
.frac-pricing-price {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00E8A0;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.frac-pricing-featured .frac-pricing-price {
  border-color: rgba(255,255,255,0.15);
  color: #00E8A0;
}

/* ═══ CONTACT PAGE ═══ */
.contact-expect-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--border);
  background: var(--bg-subtle);
}
.contact-expect-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-right: var(--border);
  align-items: flex-start;
}
.contact-expect-item:last-child { border-right: none; }
.contact-expect-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #00E8A0;
  line-height: 1;
  flex-shrink: 0;
}
.contact-expect-item h3 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.contact-expect-item p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}
.contact-form-section {
  padding: 3rem 2rem;
  border-bottom: var(--border);
}
.contact-form-inner {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form-header {
  margin-bottom: 2rem;
}
.contact-form-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.contact-form-header h2 .thin {
  font-weight: 300;
  font-style: italic;
  text-transform: none;
}
.contact-form-header p {
  font-size: 1rem;
  color: var(--gray);
}
.contact-form-embed .hs-form input[type="text"],
.contact-form-embed .hs-form input[type="email"],
.contact-form-embed .hs-form input[type="tel"],
.contact-form-embed .hs-form input[type="url"],
.contact-form-embed .hs-form textarea,
.contact-form-embed .hs-form select {
  width: 100% !important;
  background: var(--white) !important;
  border: 2px solid rgba(0,0,0,0.15) !important;
  border-radius: 0 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.85rem !important;
  padding: 0.6rem 0.8rem !important;
  color: var(--black) !important;
  transition: border-color 0.2s !important;
}
.contact-form-embed .hs-form input:focus,
.contact-form-embed .hs-form textarea:focus,
.contact-form-embed .hs-form select:focus {
  border-color: #00E8A0 !important;
  outline: none !important;
}
.contact-form-embed .hs-form label {
  font-family: 'Space Mono', monospace !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--black) !important;
  margin-bottom: 0.4rem !important;
}
.contact-form-embed .hs-form .hs-richtext {
  font-size: 0.85rem !important;
  color: var(--gray) !important;
  margin-bottom: 0.5rem !important;
}
.contact-form-embed .hs-form .hs-button {
  background: var(--black) !important;
  color: #ffffff !important;
  border: 3px solid var(--black) !important;
  border-radius: 0 !important;
  padding: 0.8rem 2rem !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  cursor: pointer !important;
  width: 100% !important;
  margin-top: 0.75rem !important;
  transition: all 0.2s !important;
}
.contact-form-embed .hs-form .hs-button:hover {
  background: #00E8A0 !important;
  color: var(--black) !important;
  border-color: #00E8A0 !important;
}
.contact-form-embed .hs-form fieldset {
  margin-bottom: 0.75rem !important;
  max-width: 100% !important;
}
.contact-form-embed .hs-form .hs-form-field {
  margin-bottom: 0.75rem !important;
}
.contact-form-embed .hs-form .inputs-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0.5rem 0 0 !important;
}
.contact-form-embed .hs-form .inputs-list li {
  padding: 0.5rem 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}
.contact-form-embed .hs-form .inputs-list li:last-child {
  border-bottom: none !important;
}
.contact-form-embed .hs-form .inputs-list label {
  display: flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer !important;
}
.contact-form-embed .hs-form .inputs-list input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  border: 2px solid var(--black) !important;
  border-radius: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}
.contact-form-embed .hs-form .inputs-list input[type="checkbox"]:checked {
  background: #00E8A0 !important;
  border-color: #00E8A0 !important;
}
.contact-form-embed .hs-form textarea {
  min-height: 100px !important;
  resize: vertical !important;
}
.contact-form-embed .hs-form .hs-error-msgs {
  font-size: 0.75rem !important;
  color: #FD9A9A !important;
  margin-top: 0.25rem !important;
}
.contact-form-embed .hs-form .hs-recaptcha {
  display: none !important;
}

/* ═══ GTM ENGINEERING JOURNEY ═══ */
.eng-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--border);
}
.eng-journey-phase {
  padding: 2.5rem 2rem 3rem;
  border-right: var(--border);
  position: relative;
}
.eng-journey-phase:last-child { border-right: none; }
.eng-journey-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
}
.eng-journey-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,0,0,0.5);
  line-height: 1;
}
.eng-journey-time {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--bg-subtle);
  padding: 0.2rem 0.5rem;
}
.eng-journey-bar {
  height: 4px;
  width: 100%;
  margin-bottom: 1.5rem;
}
.eng-journey-phase h3 {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.eng-journey-phase p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══ VC TIMELINE ═══ */
.vc-timeline {
  display: flex;
  align-items: stretch;
  border-bottom: var(--border);
}
.vc-timeline-step {
  flex: 1;
  padding: 2.5rem 2rem;
  border-right: var(--border);
  display: flex;
  flex-direction: column;
}
.vc-timeline-step:last-child { border-right: none; }
.vc-timeline-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00E8A0;
  line-height: 1;
  margin-bottom: 1rem;
}
.vc-timeline-step h3 {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.vc-timeline-step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}
.vc-timeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  font-size: 1.2rem;
  color: rgba(0,0,0,0.15);
  font-weight: 900;
  border-right: var(--border);
}

/* ═══ HUBSPOT PROOF BAR ═══ */
.hs-proof-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
  border-bottom: var(--border);
  background: var(--bg-subtle);
  flex-wrap: wrap;
}
.hs-proof-logo {
  height: 28px;
  width: auto;
}
.hs-proof-divider {
  width: 2px;
  height: 24px;
  background: rgba(0,0,0,0.15);
}
.hs-proof-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.hs-proof-hubs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hs-proof-hubs span {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  background: #00E8A0;
  padding: 0.2rem 0.5rem;
}

/* ═══ HUBSPOT PARTNER BADGE (legacy) ═══ */
.hs-partner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
}
.hs-logo {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
}
.hs-partner-divider {
  width: 40px;
  height: 2px;
  background: var(--black);
  margin-bottom: 1rem;
}
.hs-partner-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.hs-partner-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.hs-cert {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(0,0,0,0.15);
}

/* ═══ SOLUTIONS PATH CARDS ═══ */
.sol-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--border);
}
.sol-path {
  padding: 2.5rem 2rem;
  border-right: var(--border);
  text-decoration: none;
  color: var(--black);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.sol-path:last-child { border-right: none; }
.sol-path:hover { background: var(--bg-subtle); }
.sol-path-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.sol-path-num {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: #00E8A0;
}
.sol-path:nth-child(1) .sol-path-num {
  color: #00E8A0 !important;
}
.sol-path:nth-child(2) .sol-path-num {
  color: #00E8A0 !important;
}
.sol-path:nth-child(3) .sol-path-num {
  color: #00E8A0 !important;
}
.sol-path-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: #00E8A0;
  padding: 0.25rem 0.6rem;
}
.sol-path h2 {
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.sol-path h2 .thin {
  font-weight: 300;
  font-style: italic;
  text-transform: none;
}
.sol-path > p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.sol-path-symptoms {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.sol-path-symptoms li {
  font-size: 0.95rem;
  color: var(--gray);
  padding: 0.4rem 0 0.4rem 1rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.sol-path-symptoms li:last-child { border-bottom: none; }
.sol-path-symptoms li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #00E8A0;
  font-weight: 700;
}
.sol-path-who {
  padding: 1rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 1rem;
}
.sol-path-who-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.25rem;
}
.sol-path-who-name {
  font-size: 1rem;
  font-weight: 700;
}
.sol-path-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: auto;
}
.sol-path:hover .sol-path-link { color: #00E8A0; }

/* ═══ HOMEPAGE PATH CARDS ═══ */
.hp-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--border);
}
.hp-path-card {
  padding: 2.5rem 2rem;
  border-right: var(--border);
  text-decoration: none;
  color: var(--black);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}
.hp-path-card:last-child { border-right: none; }
.hp-path-card:hover {
  background: var(--black);
  color: #ffffff;
}
.hp-path-num {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}
.hp-path-card:hover .hp-path-num {
  color: rgba(0,232,160,0.6);
}
.hp-path-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.hp-path-card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.hp-path-card:hover p {
  color: rgba(255,255,255,0.8);
}
.hp-path-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
}
.hp-path-items li {
  font-size: 0.95rem;
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
  color: var(--gray);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hp-path-card:hover .hp-path-items li {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.08);
}
.hp-path-items li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #00E8A0;
  font-size: 0.7rem;
}
.hp-path-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.hp-path-card:hover .hp-path-link {
  color: #00E8A0;
  border-color: rgba(255,255,255,0.15);
}

/* ═══ MID-MARKET HELP ROWS ═══ */
.mm-help-grid {
  border-bottom: var(--border);
}
.mm-help-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.mm-help-row:last-child { border-bottom: none; }
.mm-help-row:hover {
  background: var(--bg-subtle);
  transform: translateX(4px);
}
.mm-help-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 1rem;
  border-right: var(--border);
  background: var(--bg-subtle);
}
.mm-help-num {
  font-size: 2rem;
  font-weight: 900;
  color: #00E8A0;
  line-height: 1;
}
.mm-help-icon {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}
.mm-help-right {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mm-help-right h3 {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.mm-help-right p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══ MID-MARKET SERVICE CARDS ═══ */
.mm-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--border);
}
.mm-svc-card {
  padding: 2.5rem 2rem;
  border-right: var(--border);
  text-decoration: none;
  color: var(--black);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.mm-svc-card:last-child { border-right: none; }
.mm-svc-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #00E8A0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.mm-svc-card:hover::before {
  transform: scaleX(1);
}
.mm-svc-card:hover {
  background: var(--bg-subtle);
}
.mm-svc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.mm-svc-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.5);
  line-height: 1;
}
.mm-svc-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0.3rem 0.7rem;
  background: #00E8A0;
}
.mm-svc-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.mm-svc-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.mm-svc-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  transition: color 0.2s;
}
.mm-svc-card:hover .mm-svc-link {
  color: #00E8A0;
}

/* ═══ MID-MARKET OUTCOME CARDS ═══ */
.mm-outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  border-bottom: var(--border);
}
.mm-outcome-card {
  border-right: var(--border);
  border-bottom: var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.mm-outcome-card:hover { background: var(--bg-subtle); }
.mm-outcome-before {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  color: var(--text-muted-strong);
  text-decoration: line-through;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.03em;
}
.mm-outcome-after {
  padding: 1.5rem;
  flex: 1;
}
.mm-outcome-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #00E8A0;
  margin-bottom: 0.75rem;
}
.mm-outcome-after h3 {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.mm-outcome-after p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}
.mm-outcome-card-accent {
  background: var(--black);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-outcome-card-accent:hover { background: var(--black); }
.mm-outcome-card-accent .mm-outcome-before { display: none; }
.mm-outcome-result {
  padding: 2rem 1.5rem;
  text-align: center;
}
.mm-outcome-stat {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #00E8A0;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.mm-outcome-result p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ═══ MID-MARKET PAIN GRID ═══ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--border);
}
.pain-card {
  padding: 2rem;
  border-right: var(--border);
  border-bottom: var(--border);
  transition: all 0.2s;
  position: relative;
}
.pain-card:nth-child(3n) { border-right: none; }
.pain-card:nth-child(n+4) { border-bottom: none; }
.pain-card:hover {
  background: var(--bg-subtle);
}
.pain-icon {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00E8A0;
  background: var(--black);
  display: inline-block;
  padding: 0.25rem 0.6rem;
  margin-bottom: 1rem;
}
.pain-card h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.pain-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}
.pain-card-result {
  background: var(--black);
  color: #ffffff;
}
.pain-card-result:hover {
  background: var(--black);
}
.pain-card-result p {
  color: rgba(255,255,255,0.85);
}
.pain-result-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00E8A0;
  margin-bottom: 1rem;
}
.pain-result-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.pain-result-stat {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00E8A0;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(0,232,160,0.3);
}

/* ═══ INFRASTRUCTURE TRANSFORM VISUAL ═══ */
.infra-visual {
  background: var(--bg-subtle);
  color: var(--black);
  padding: 0;
  border: var(--border);
  font-family: 'Space Mono', monospace;
}
.infra-header {
  padding: 1.25rem 1.5rem;
  border-bottom: var(--border);
  background: var(--black);
}
.infra-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00E8A0;
}
.infra-transforms {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.infra-transform {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.infra-transform:last-child {
  border-bottom: none;
}
.infra-transform:hover {
  background: rgba(0,232,160,0.06);
}
.infra-before {
  font-size: 0.75rem;
  color: var(--gray);
  text-decoration: line-through;
  text-align: right;
  opacity: 0.6;
}
.infra-arrow {
  color: #00E8A0;
  font-size: 1rem;
  font-weight: 900;
}
.infra-after {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--black);
}
.infra-footer {
  padding: 1rem 1.5rem;
  border-top: var(--border);
  background: var(--black);
}
.infra-result {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.infra-result strong {
  color: #00E8A0;
}

/* ═══ B2B GROWTH STAGE CARDS ═══ */
.stage-card {
  padding: 3rem 2rem 3rem 2.5rem;
  border-bottom: var(--border);
  background: var(--bg-subtle);
}
.stage-topline {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.stage-num {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  opacity: 1;
  color: #00E8A0;
  flex-shrink: 0;
}
#stage-1 .stage-num {
  color: #00E8A0 !important;
}
#stage-2 .stage-num {
  color: #00E8A0 !important;
}
#stage-3 .stage-num {
  color: #00E8A0 !important;
}
.stage-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.stage-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
}
.stage-meta {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.stage-arr {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.stage-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.stage-copy {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 800px;
  margin-bottom: 2rem;
}
.stage-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.stage-pain {
  padding: 2rem;
  background: var(--white);
  border: var(--border);
}
.stage-team {
  padding: 2rem;
  background: var(--black);
  color: #ffffff;
  border: var(--border);
  border-left: none;
}
.stage-pain h4,
.stage-team h4 {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.stage-team h4 {
  color: #00E8A0;
}
.stage-pain ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stage-pain li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray);
  padding: 0.5rem 0;
  padding-left: 1.2rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.stage-pain li:last-child { border-bottom: none; }
.stage-pain li::before {
  content: "—";
  position: absolute;
  left: 0;
  font-weight: 700;
}
.stage-who {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
.stage-what {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.stage-person {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.75rem;
}
.stage-person strong {
  color: #ffffff;
}

/* ═══ GROWTH FRAMEWORK PROGRESSION ═══ */
.fw-progression {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  padding: 0 2rem 3rem;
  align-items: stretch;
}
.fw-stage-col {
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.fw-stage-col:hover {
  border-color: rgba(0,0,0,0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.fw-col-header {
  padding: 2rem 1.5rem;
  text-align: center;
}
.fw-col-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.fw-col-header h3 {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fw-col-pmf .fw-col-header { background: #FD9A9A; color: #ffffff; }
.fw-col-pmf .fw-col-num { color: rgba(255,255,255,0.5); }
.fw-col-gtmf .fw-col-header { background: #F9C234; color: var(--black); }
.fw-col-gtmf .fw-col-num { color: rgba(0,0,0,0.5); }
.fw-col-growth .fw-col-header { background: #00E8A0; color: var(--black); }
.fw-col-growth .fw-col-num { color: rgba(0,0,0,0.5); }
.fw-col-expand .fw-col-header { background: #00E8A0; color: var(--black); }
.fw-col-expand .fw-col-num { color: rgba(0,0,0,0.5); }
.fw-col-body {
  padding: 0;
  flex: 1;
}
.fw-attr {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.fw-attr:last-child { border-bottom: none; }
.fw-attr-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.3rem;
}
.fw-attr-val {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--black);
}
.fw-attr-highlight {
  background: var(--black);
}
.fw-attr-highlight .fw-attr-label {
  color: #00E8A0;
}
.fw-attr-highlight .fw-attr-val {
  color: #ffffff;
  font-weight: 600;
}
.fw-stage-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(0,0,0,0.5);
  padding: 0 0.75rem;
  font-weight: 900;
}

/* ═══ ENGAGEMENT OPTIONS ═══ */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--border);
}
.engagement-card {
  padding: 2.5rem 2rem;
  border-right: var(--border);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.engagement-card:last-child {
  border-right: none;
}
.engagement-card:hover {
  background: rgba(0,0,0,0.02);
}
.engagement-card-accent {
  background: var(--accent);
  color: #ffffff;
}
.engagement-card-accent:hover {
  background: #00d490;
}
.engagement-num {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}
.engagement-card-accent .engagement-num {
  color: rgba(255,255,255,0.5);
}
.engagement-title {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.engagement-who {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}
.engagement-card-accent .engagement-who {
  color: rgba(255,255,255,0.9);
}
.engagement-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.engagement-card-accent .engagement-desc {
  color: rgba(255,255,255,0.95);
}
.engagement-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.engagement-details li {
  font-size: 0.8rem;
  color: var(--gray);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}
.engagement-card-accent .engagement-details li {
  color: rgba(255,255,255,0.95);
}
.engagement-details li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.engagement-card-accent .engagement-details li::before {
  color: #ffffff;
}
.engagement-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.engagement-card-accent .engagement-link {
  border-color: rgba(255,255,255,0.4);
  color: #ffffff;
}
.engagement-connector {
  padding: 1rem 2rem;
  background: var(--black);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
}

/* ═══ FAQ PAGE ═══ */
.faq-list {
  border-bottom: var(--border);
}
.faq-item {
  padding: 2rem;
  border-bottom: var(--border);
  transition: all 0.2s;
}
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: rgba(12, 53, 51, 0.03); }
.faq-question {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.faq-answer {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-answer a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

/* ═══ BRAND PAGE ═══ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: var(--border);
}
.brand-grid-3 { grid-template-columns: repeat(3, 1fr); }
.brand-grid-4 { grid-template-columns: repeat(4, 1fr); }
.brand-asset {
  border-right: var(--border);
  border-bottom: var(--border);
}
.brand-asset:last-child { border-right: none; }
.brand-asset-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  min-height: 200px;
  border-bottom: var(--border);
}
.brand-asset-img {
  max-width: 200px;
  max-height: 120px;
  object-fit: contain;
}
.brand-asset-info {
  padding: 1.5rem 2rem;
}
.brand-asset-info h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}
.brand-asset-info p {
  font-size: 0.8rem;
  color: var(--gray);
}
.brand-asset-downloads {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.brand-download-btn {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.3rem 0.8rem;
  border: 2px solid var(--black);
  color: var(--black);
  transition: all 0.15s;
}
.brand-download-btn:hover { background: var(--accent); color: #ffffff; border-color: var(--accent); }
.brand-color-card {
  border-right: var(--border);
  border-bottom: var(--border);
}
.brand-color-card:last-child { border-right: none; }
.brand-color-swatch {
  height: 120px;
  border-bottom: var(--border);
}
.brand-color-info {
  padding: 1rem 1.2rem;
}
.brand-color-info h3 {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.brand-color-hex {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.brand-color-meta {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* ═══ PROOF BLOCK ═══ */
.proof-block {
  background: var(--black);
  color: #ffffff;
  border: var(--border);
  display: flex;
  flex-direction: column;
}
.proof-header {
  padding: 1rem 1.5rem;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.proof-badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 1.5rem;
  gap: 0.5rem;
}
.proof-stat {
  text-align: center;
}
.proof-num {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}
.proof-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-top: 0.4rem;
}
.proof-divider {
  height: 2px;
  background: rgba(255,255,255,0.08);
  margin: 0 1.5rem;
}
.proof-quote {
  padding: 1.5rem;
}
.proof-quote p {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.proof-quote cite {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
  color: rgba(255,255,255,0.85);
  margin-top: 0.75rem;
}
.proof-target {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.proof-target-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.proof-target-value {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ═══ TECH STACK FLOW VISUAL ═══ */
.stack-flow {
  position: relative;
  background: var(--accent);
  border: var(--border);
  min-height: 420px;
  overflow: hidden;
}
.stack-flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sf-card {
  position: absolute;
  background: #ffffff;
  border: 3px solid var(--black);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sf-card:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  z-index: 2;
}
.sf-card-lg { width: 110px; height: 110px; }
.sf-card-md { width: 85px; height: 85px; }
.sf-card-sm { width: 70px; height: 60px; }
.sf-card-xs { width: 60px; height: 50px; }
.sf-icon {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.sf-icon-accent { color: var(--accent); }
.sf-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}
.sf-logo-lg { width: 48px; height: 48px; }
.sf-logo-sm { width: 24px; height: 24px; }
.sf-logo-xs { width: 20px; height: 20px; }
.sf-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  line-height: 1.1;
}
.solution-vertical-line {
  max-height: 400px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.coach-img {
  width: 100%;
  max-width: 300px;
  border: var(--border);
}

/* ═══ SPEAKING PAGE ═══ */
.speaking-hero {
  display: flex;
  gap: 3rem;
  padding: 8rem 2rem 3rem;
}
.speaking-hero-content {
  flex: 1;
}
.speaking-hero-image {
  flex: 0 0 40%;
  display: flex;
  align-items: flex-end;
}
.speaking-jess-img {
  width: 100%;
  height: auto;
  border: var(--border);
}
.speaking-headshot {
  width: 100%;
  height: auto;
  border: var(--border);
}

/* Speaking About section */
.speaking-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--border);
}
.speaking-about-text {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.speaking-about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.speaking-about-lead {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: #00E8A0;
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}
.speaking-about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1rem;
}
.speaking-about-tagline {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: var(--black) !important;
  font-style: italic;
  margin-top: 0.5rem;
}
.speaking-about-img {
  border-left: var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg-subtle);
}
.speaking-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* ═══ ABOUT PAGE ═══ */
.about-image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}
.about-mountain-img {
  width: 100%;
  height: auto;
  border: var(--border);
}
.about-vertical-line {
  max-height: 200px;
  width: auto;
}

/* ═══ CTA WITH IMAGE ═══ */
.cta-with-image {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cta-with-image .cta-content {
  flex: 1;
  min-width: 300px;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.cta-with-image .cta-image {
  flex: 0 0 40%;
  min-width: 300px;
  border-left: var(--border);
}
.cta-mountain-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══ CASE STUDY META ═══ */
.case-study-meta {
  display: flex;
  border-bottom: var(--border);
}
.cs-meta-item {
  flex: 1;
  padding: 1.5rem 2rem;
  border-right: var(--border);
}
.cs-meta-item:last-child { border-right: none; }
.cs-meta-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.3rem;
}
.cs-meta-value {
  font-size: 1rem;
  font-weight: 700;
}
.cs-meta-value a {
  color: var(--black);
  border-bottom: 2px solid var(--accent);
  text-decoration: none;
}
.cs-meta-value a:hover {
  background: var(--accent);
}
.cs-plus-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  opacity: 0.3;
  transition: all 0.2s;
}
.case-study-card:hover .cs-plus-icon {
  opacity: 1;
}
.cs-stats-mini {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--gray);
}
.cs-stats-mini strong {
  color: var(--black);
  font-size: 0.85rem;
}
.case-study-card:hover .cs-stats-mini { color: #ffffff; }

/* ═══ BLOG POST IMAGES ═══ */
.post-content img {
  border: var(--border);
  margin: 2rem 0;
  display: block;
  width: 100%;
  height: auto;
}
/* ═══ UTILITY ═══ */
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--border);
}
.split-layout > div {
  padding: 4rem 2rem;
}
.split-layout > div:first-child {
  border-right: var(--border);
}

/* ═══ RESPONSIVE ═══ */
/* ═══ TABLET (641–1024px) ═══ */
@media (max-width: 1024px) {
  .hero-title { font-size: clamp(2rem, 4vw, 3.5rem); }
  .hero-bottom { gap: 1.5rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card:nth-child(2) { border-right: none; }

  .test-slide { flex: 0 0 100%; }
  .test-carousel-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .case-study-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-home-grid { grid-template-columns: 1fr; max-width: 600px; }
  .challenges-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .press-item:nth-child(2n) { border-right: none; }
  .press-hero-premium { grid-template-columns: 3fr 2fr; }
  .press-featured-grid { grid-template-columns: repeat(2, 1fr); }
  .press-featured-card:nth-child(2n) { border-right: none; }
  .press-featured-card:nth-child(3n) { border-right: var(--border); }
  .press-awards-grid { grid-template-columns: repeat(3, 1fr); }
  .team-about-grid { grid-template-columns: 1fr; }
  .team-about-card { border-right: none; border-bottom: var(--border); }

  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-flow { min-height: 350px; }

  .stats-section { grid-template-columns: repeat(2, 1fr); }
  .cs-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-showcase-card:nth-child(2) { border-right: none; }

  .footer-main { gap: 2rem; padding: 3rem 1.5rem 2rem; }
}

/* ═══ MOBILE (max 768px) ═══ */
@media (max-width: 768px) {
  /* Nav — hamburger menu, dark green bg */
  nav { padding: 0.8rem 1rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #0c3533; border-bottom: 2px solid rgba(255,255,255,0.15);
  }
  .nav-links.open .nav-link {
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 1.5rem; width: 100%;
    color: #f9f9f9; font-size: 0.9rem;
    min-height: 44px; display: flex; align-items: center;
  }
  .nav-links.open .nav-dropdown { width: 100%; }
  .nav-links.open .dropdown-menu {
    position: static; border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #11433f;
  }
  .nav-links.open .dropdown-menu a {
    color: rgba(255,255,255,0.8);
    border-bottom-color: rgba(255,255,255,0.06);
    padding: 0.8rem 2rem;
    min-height: 44px; display: flex; align-items: center;
  }
  .nav-links.open .nav-dropdown .dropdown-menu { display: block; }
  .nav-links.open .nav-cta {
    background: #ffffff !important; color: #0c3533 !important;
    justify-content: center; margin: 0.5rem 1rem; width: auto;
    border: none;
  }
  .mobile-toggle { display: block; }

  /* Hero */
  .hero { padding: 5rem 1rem 1.5rem; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 3rem); }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-content-wrapper { flex-direction: column; }
  .hero-scale { display: none; }

  /* Logos */
  .logos-label { display: none; }
  .logos-section { flex-wrap: wrap; }
  .logos-list { flex-wrap: wrap; }
  .logos-list span,
  .logos-list .logo-item { flex: none; width: 50%; border-bottom: 2px solid var(--black); }

  /* Stats — stack vertically */
  .stats-section { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: var(--border); padding: 2rem 1.5rem; }
  .stat-block:last-child { border-bottom: none; }

  /* Services */
  .section-title-bar { flex-direction: column; gap: 0.5rem; padding: 1.5rem 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: var(--border); }
  .svc-card:last-child { border-bottom: none; }

  /* Testimonials */
  .test-title-bar { padding: 1.5rem 1rem; }
  .test-grid { grid-template-columns: 1fr; }
  .test-item:last-child { border-bottom: none; }

  /* Tabs */
  .tabs-menu { flex-direction: column; }
  .tabs-section { padding: 2rem 1rem; }

  /* CTA */
  .cta-section { padding: 3rem 1rem; }
  .cta-section::after { display: none; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .cta-mid { flex-direction: column; text-align: center; padding: 2rem 1rem; }
  .cta-with-image { flex-direction: column; }
  .cta-with-image .cta-image { border-left: none; border-top: var(--border); }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1rem; }
  .footer-columns { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; padding: 1rem; }
  .footer-legal { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Interior pages */
  .page-hero { padding: 5rem 1rem 2rem; }
  .speaking-hero { flex-direction: column; padding: 5rem 1rem 2rem; }
  .speaking-hero-image { flex: none; }
  .speaking-about { grid-template-columns: 1fr; }
  .speaking-about-img { border-left: none; border-top: var(--border); min-height: 300px; }
  .pain-grid { grid-template-columns: 1fr; }
  .sol-paths { grid-template-columns: 1fr; }
  .sol-path { border-right: none; border-bottom: var(--border); }
  .sol-path:last-child { border-bottom: none; }
  .hp-paths { grid-template-columns: 1fr; }
  .eng-journey { grid-template-columns: 1fr; }
  .eng-journey-phase { border-right: none; border-bottom: var(--border); }
  .eng-journey-phase:last-child { border-bottom: none; }
  .contact-expect-strip { grid-template-columns: 1fr; }
  .contact-expect-item { border-right: none; border-bottom: var(--border); }
  .contact-expect-item:last-child { border-bottom: none; }
  .vc-timeline { flex-direction: column; }
  .vc-timeline-step { border-right: none; border-bottom: var(--border); }
  .vc-timeline-step:last-child { border-bottom: none; }
  .vc-timeline-arrow { display: none; }
  .cs-hero-stats { flex-direction: column; gap: 0.75rem; }
  .cs-toolbar { flex-direction: column; gap: 0.75rem; align-items: flex-start; padding: 1rem; }
  .cs-filters { flex-direction: column; width: 100%; }
  .cs-filter { min-width: 100%; }
  .cs-index-grid { grid-template-columns: 1fr; }
  .cs-index-card { grid-template-columns: 100px 1fr; border-right: none; border-bottom: var(--border); }
  .cs-index-card:nth-child(n+3) { border-bottom: var(--border); }
  .cs-index-card:last-child { border-bottom: none; }
  .about-team-strip { grid-template-columns: 1fr; }
  .about-team-card { border-right: none; border-bottom: var(--border); grid-template-columns: 1fr; }
  .about-team-card:last-child { border-bottom: none; }
  .about-team-photo { border-right: none; border-bottom: var(--border); min-height: 200px; }
  .cs-hero { grid-template-columns: 1fr; }
  .cs-hero-stat { font-size: 4rem; }
  .cs-meta-bar { flex-direction: column; }
  .cs-meta-pill { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .cs-narrative-row { grid-template-columns: 1fr; }
  .cs-narrative-label { border-right: none; border-bottom: var(--border); flex-direction: row; padding: 1rem 1.5rem; }
  .mm-help-row { grid-template-columns: 1fr; }
  .mm-help-left { border-right: none; border-bottom: var(--border); flex-direction: row; padding: 1rem 1.5rem; }
  .mm-svc-grid { grid-template-columns: 1fr; }
  .mm-svc-card { border-right: none; border-bottom: var(--border); }
  .mm-svc-card:last-child { border-bottom: none; }
  .hp-path-card { border-right: none; border-bottom: var(--border); }
  .hp-path-card:last-child { border-bottom: none; }
  .frac-compare { grid-template-columns: 1fr; }
  .frac-compare-vs { border-left: none; border-right: none; border-top: var(--border); border-bottom: var(--border); padding: 1rem; }
  .frac-adv { grid-template-columns: 1fr; }
  .frac-adv-num { border-right: none; border-bottom: var(--border); padding: 1.5rem; }
  .pain-card { border-right: none; border-bottom: var(--border); }
  .pain-card:nth-child(n+4) { border-bottom: var(--border); }
  .pain-card:last-child { border-bottom: none; }
  .content-section { padding: 2rem 1rem; }

  /* Grids — single column */
  .card-grid { grid-template-columns: 1fr; }
  .card { border-right: none; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-card { border-right: none; }
  .partner-tab-bar { flex-direction: column; }
  .partner-tab-label { border-right: none; border-bottom: var(--border); }
  .brand-grid, .brand-grid-3, .brand-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .brand-asset:nth-child(2n) { border-right: none; }
  .brand-color-card:nth-child(2n) { border-right: none; }
  .case-study-grid { grid-template-columns: 1fr; }
  .case-study-card { border-right: none; }
  .case-study-meta { flex-direction: column; }
  .cs-meta-item { border-right: none; border-bottom: var(--border); }
  .cs-meta-item:last-child { border-bottom: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { border-right: none; }
  .split-layout { grid-template-columns: 1fr; }
  .split-layout > div:first-child { border-right: none; border-bottom: var(--border); }
  .story-layout { grid-template-columns: 1fr; }
  .story-main { border-right: none; border-bottom: var(--border); padding: 2.5rem 1.5rem; }
  .story-side { padding: 2.5rem 1.5rem; }
  .stack-flow { min-height: 320px; }
  .sf-card-lg { width: 90px; height: 90px; }
  .sf-card-md { width: 70px; height: 70px; }
  .sf-card-sm { width: 58px; height: 50px; }
  .sf-card-xs { width: 50px; height: 42px; }
  .sf-label { font-size: 0.4rem; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { border-right: none; }
  .team-home-grid { grid-template-columns: 1fr; }
  .team-home-card { flex-direction: column; gap: 1rem; }
  .team-home-section { padding: 3rem 1rem; }
  .challenges-grid { grid-template-columns: 1fr; }
  .challenges-section { padding: 3rem 1rem; }
  .press-grid { grid-template-columns: 1fr; }
  .press-item { border-right: none; }
  .press-hero-premium { grid-template-columns: 1fr; }
  .press-hero-left { padding: 5rem 1.5rem 2rem; }
  .press-hero-right { border-left: none; border-top: var(--border); max-height: 300px; }
  .press-hero-stats { flex-wrap: wrap; }
  .press-hero-stat { min-width: 45%; }
  .press-featured-grid { grid-template-columns: 1fr; }
  .press-featured-card { border-right: none; }
  .press-featured-card:nth-child(3n) { border-right: none; }
  .press-awards-grid { grid-template-columns: 1fr; }
  .press-award { border-right: none; border-bottom: var(--border); }
  .press-award:last-child { border-bottom: none; }

  /* Case study showcase */
  .cs-showcase-grid { grid-template-columns: 1fr; }
  .cs-showcase-card { border-right: none; border-bottom: 2px solid rgba(255,255,255,0.1); }
  .cs-showcase-card:last-child { border-bottom: none; }

  /* Blog filter — wrap on mobile */
  .blog-filter-bar { flex-wrap: wrap; }
  .blog-filter-btn { flex: 1 1 auto; min-width: 0; text-align: center; min-height: 44px; display: flex; align-items: center; justify-content: center; }

  /* Tabs — full-width buttons */
  .tab-btn { width: 100%; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }

  /* Values — stack on mobile */
  .value-item { flex-direction: column; gap: 0.5rem; }

  /* Footer links — touch-friendly */
  .footer-col a { padding: 0.4rem 0; min-height: 44px; display: flex; align-items: center; }
  .footer-social a { padding: 0.7rem; }

  /* HubSpot 2-col fields — stack on mobile */
  .form-section .hs-form fieldset.form-columns-2 .hs-form-field { width: 100% !important; float: none !important; }

  /* Forms & posts */
  .form-section { padding: 2rem 1rem; }
  .post-header { padding: 5rem 1rem 2rem; }
  .post-content { padding: 2rem 1rem; }
  .post-meta { flex-direction: column; gap: 0.5rem; }

  /* B2B Stages */
  .stage-split { grid-template-columns: 1fr; }
  .stage-team { border-left: var(--border); border-top: none; }
  .stage-card { padding: 2rem 1.5rem 2rem 2rem; }
  .stage-topline { flex-direction: column; gap: 0.5rem; }
  .stage-num { font-size: 3rem; }

  /* Engagement */
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-card { border-right: none; border-bottom: var(--border); }
  .engagement-card:last-child { border-bottom: none; }

  /* Framework table */
  .fw-progression { grid-template-columns: 1fr; gap: 1.5rem; padding: 0 1.5rem 2rem; }
  .fw-stage-arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══ SMALL MOBILE (max 480px) ═══ */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.5rem, 10vw, 2.5rem); }
  .logos-list span,
  .logos-list .logo-item { width: 100%; }
  .stat-num { font-size: 2.5rem; }
  .cs-stats-mini { flex-direction: column; gap: 0.5rem; }
  .cta-btn { width: 100%; text-align: center; }
  .hero-btn { width: 100%; text-align: center; }
}
