/* ============================================
   SEVEN CAPITAL — BLACK & WHITE MINIMAL
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --off-white: #f6f6f4;
  --light: #eeeeec;
  --border: #e2e2e0;
  --mid: #999997;
  --sub: #555553;
  --nav-h: 68px;
  --max: 1300px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: 0.25s ease;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* TYPOGRAPHY */
h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
p {
  color: var(--sub);
  line-height: 1.8;
  font-size: 0.9375rem;
}

.label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

/* LAYOUT */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
}
.section {
  padding: 8rem 0;
}
.section-sm {
  padding: 5rem 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.75rem;
  border-radius: 2px;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-black {
  background: var(--black);
  color: var(--white);
}
.btn-black:hover {
  background: #2a2a2a;
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--off-white);
}
.btn-outline {
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn-outline-w {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
}
.btn-outline-w:hover {
  border-color: var(--white);
  color: var(--white);
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--black);
}
.nav__logo-mark {
  width: 18px;
  height: 28px;
  flex-shrink: 0;
}
.nav__logo-divider {
  width: 1px;
  height: 30px;
  background: currentColor;
  opacity: 0.18;
  flex-shrink: 0;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav__logo-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
}
.nav__logo-rule {
  height: 1px;
  background: var(--black);
  opacity: 0.15;
}
.nav__logo-sub {
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--sub);
  line-height: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--sub);
  transition: color var(--ease);
  letter-spacing: 0.01em;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width var(--ease);
}
.nav__link:hover {
  color: var(--black);
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}
.nav__link.active {
  color: var(--black);
}
.nav__cta-btn {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--border);
  color: var(--black);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav__cta-btn:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.nav__cta-btn::after {
  display: none !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  color: var(--black);
}
.nav__hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: all var(--ease);
}
.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 999;
}
.nav__mobile.open {
  display: flex;
}
.nav__mobile .nav__link {
  padding: 1.1rem 3rem;
  border-bottom: 1px solid var(--border);
  color: var(--sub);
  font-size: 0.9375rem;
}
.nav__mobile .nav__link:hover {
  color: var(--black);
  background: var(--off-white);
}
.nav__mobile .nav__link::after {
  display: none;
}

/* HERO */
.hero {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 3rem 6rem;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.hero__top-label {
  display: flex;
  align-items: center;
  padding: 6rem 3rem 0;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.hero h1 {
  color: var(--white);
  max-width: 900px;
}
.hero h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
}
.hero__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 4rem;
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.hero__scroll-text {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

/* MARQUEE STRIP */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 1.1rem 0;
  background: var(--white);
}
.strip__track {
  display: flex;
  align-items: center;
  animation: marquee 30s linear infinite;
  width: max-content;
  gap: 4rem;
}
.strip__track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.strip__item {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
}
.strip__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

/* SECTION HEADER */
.sec-head {
  margin-bottom: 5rem;
}
.sec-head .label {
  display: block;
  margin-bottom: 1.5rem;
}
.sec-head h2 {
  margin-bottom: 1.25rem;
}
.sec-head p {
  max-width: 520px;
}
.sec-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  flex-wrap: wrap;
}
.sec-head--split p {
  text-align: right;
  max-width: 380px;
}

/* SERVICES — LIST STYLE */
.svc-list {
  border-top: 1px solid var(--border);
}
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
  cursor: default;
}
.svc-row:hover {
  background: var(--off-white);
  margin: 0 -3rem;
  padding: 2rem 3rem;
}
.svc-row:hover .svc-row__arrow {
  opacity: 1;
  transform: translateX(0);
}
.svc-num {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--mid);
}
.svc-name {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--black);
}
.svc-desc {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.6;
}
.svc-row__arrow {
  font-size: 1.1rem;
  color: var(--black);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--ease);
}

/* SERVICES — GRID (homepage overview) */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.svc-cell {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
  position: relative;
}
.svc-cell:hover {
  background: var(--off-white);
}
.svc-cell:hover .svc-cell__arrow {
  opacity: 1;
}
.svc-cell__num {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 2rem;
  display: block;
}
.svc-cell__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.svc-cell__text {
  font-size: 0.8125rem;
  color: var(--mid);
  line-height: 1.7;
}
.svc-cell__arrow {
  position: absolute;
  top: 2.5rem;
  right: 2rem;
  font-size: 0.9rem;
  color: var(--black);
  opacity: 0;
  transition: opacity var(--ease);
}

/* FULL SERVICE DETAIL (what-we-do page) */
.svc-detail-list {
}
.svc-detail-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-bottom: 1px solid var(--border);
}
.svc-detail-row:first-child {
  border-top: 1px solid var(--border);
}
.svc-detail-left {
  padding: 3.5rem 3rem;
  border-right: 1px solid var(--border);
  background: var(--off-white);
  display: flex;
  flex-direction: column;
}
.svc-detail-left__num {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.1em;
  margin-bottom: auto;
}
.svc-detail-left__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.35;
  margin-top: 3rem;
}
.svc-detail-right {
  padding: 3.5rem 4rem;
  background: var(--white);
}
.svc-detail-lead {
  font-size: 1.125rem;
  color: var(--black);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.svc-detail-body {
  font-size: 0.875rem;
  color: var(--sub);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.svc-detail-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 3rem;
}
.svc-detail-point {
  font-size: 0.8125rem;
  color: var(--sub);
  display: flex;
  gap: 0.75rem;
  line-height: 1.5;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-detail-point::before {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background: var(--mid);
  flex-shrink: 0;
  margin-top: 0.65em;
}

/* ABOUT / PRINCIPAL */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-split__img {
  background: var(--off-white);
  min-height: 560px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-split__initials {
  font-size: 10rem;
  font-weight: 300;
  color: var(--border);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
}
.about-split__content {
  padding: 6rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-split__content .label {
  margin-bottom: 1.5rem;
  display: block;
}
.about-split__content h2 {
  margin-bottom: 0.25rem;
}
.about-split__role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 3rem;
}
.about-split__bio {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-bottom: 3rem;
}
.about-split__bio p {
  font-size: 0.9375rem;
}

/* WHO WE WORK WITH */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.client-cell {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.client-cell:hover {
  background: var(--off-white);
}
.client-cell__num {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.5rem;
}
.client-cell__title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}
.client-cell__text {
  font-size: 0.8125rem;
  color: var(--mid);
  line-height: 1.7;
}

/* DIFFERENTIATORS */
.diff-list {
}
.diff-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.diff-item:first-child {
  border-top: 1px solid var(--border);
}
.diff-item:hover {
  background: var(--off-white);
  margin: 0 -3rem;
  padding: 2.25rem 3rem;
}
.diff-item__num {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--mid);
  padding-top: 0.2rem;
}
.diff-item h4 {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.diff-item p {
  font-size: 0.8125rem;
  color: var(--mid);
  line-height: 1.75;
}

/* APPROACH STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.step-cell {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.step-cell:hover {
  background: var(--off-white);
}
.step-cell__num {
  font-size: 2rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.step-cell h4 {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.625rem;
}
.step-cell p {
  font-size: 0.8125rem;
  color: var(--mid);
  line-height: 1.75;
}

/* TESTIMONIALS */
.testi-section {
  background: var(--black);
  padding: 8rem 0;
  overflow: hidden;
}
.testi-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.testi-head h2 {
  color: var(--white);
}
.testi-head .label {
  color: rgba(255, 255, 255, 0.3);
}
.testi-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all var(--ease);
}
.testi-btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.testi-btn svg {
  width: 16px;
  height: 16px;
}
.testi-counter {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.25);
  min-width: 44px;
  text-align: center;
}
.testi-track-wrap {
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testi-card {
  flex: 0 0 calc(33.333% - 1rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: border-color var(--ease);
}
.testi-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.testi-card__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  flex: 1;
  font-style: italic;
}
.testi-card__author {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.testi-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.2rem;
}
.testi-card__role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}
.testi-dots {
  display: flex;
  gap: 6px;
  margin-top: 2.5rem;
}
.testi-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  border: none;
  transition: all var(--ease);
}
.testi-dot.active {
  background: var(--white);
  width: 16px;
  border-radius: 2px;
}

/* CASE STUDIES / INSIGHTS */
.cs-list {
  border-top: 1px solid var(--border);
}
.cs-item {
  display: grid;
  grid-template-columns: 120px 1fr 200px;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.cs-item:hover {
  background: var(--off-white);
  margin: 0 -3rem;
  padding: 2rem 3rem;
}
.cs-item:hover .cs-item__arrow {
  opacity: 1;
  transform: translateX(0);
}
.cs-item__tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.cs-item__title {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.35;
}
.cs-item__excerpt {
  display: none;
}
.cs-item__meta {
  font-size: 0.75rem;
  color: var(--mid);
  text-align: right;
}
.cs-item__arrow {
  font-size: 1rem;
  color: var(--black);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--ease);
  justify-self: end;
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.cs-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem;
  transition: background var(--ease);
}
.cs-card:hover {
  background: var(--off-white);
}
.cs-card__tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
  display: block;
}
.cs-card__title {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 1rem;
}
.cs-card__excerpt {
  font-size: 0.8125rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.cs-card__meta {
  font-size: 0.75rem;
  color: rgba(153, 153, 151, 0.6);
}

/* CTA SECTION */
.cta-block {
  background: var(--black);
  padding: 8rem 0;
}
.cta-block__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.cta-block h2 {
  color: var(--white);
  max-width: 540px;
}
.cta-block p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9375rem;
  max-width: 400px;
  margin-top: 1rem;
}
.cta-block__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.contact-info {
  padding: 5rem 4rem 5rem 0;
  border-right: 1px solid var(--border);
}
.contact-info .label {
  display: block;
  margin-bottom: 2rem;
}
.contact-info h2 {
  margin-bottom: 1.5rem;
}
.contact-info p {
  font-size: 0.9375rem;
  margin-bottom: 3rem;
}
.contact-detail {
  margin-bottom: 2rem;
}
.contact-detail .label {
  color: var(--mid);
  margin-bottom: 0.35rem;
}
.contact-detail__val {
  font-size: 0.9375rem;
  color: var(--black);
}
.contact-form {
  padding: 5rem 0 5rem 4rem;
}

/* FORM */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.form-input,
.form-textarea,
.form-select {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--black);
  width: 100%;
  outline: none;
  transition: border-color var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(153, 153, 151, 0.6);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--black);
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath stroke='%23999997' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m1 1 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* PAGE HEADER */
.page-header {
  background: var(--black);
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.page-header .label {
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 1.5rem;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.page-header .sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  max-width: 580px;
  line-height: 1.8;
}

/* FOOTER */
.footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer__logo-new {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.25rem;
}
.footer__logo-mark {
  width: 22px;
  height: 34px;
  flex-shrink: 0;
}
.footer__logo-divider {
  width: 1px;
  height: 34px;
  background: #ccccca;
  flex-shrink: 0;
}
.footer__logo-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__logo-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #0d0d0d;
  line-height: 1;
}
.footer__logo-rule {
  height: 1px;
  background: #ccccca;
}
.footer__logo-sub {
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #777775;
  line-height: 1;
}
.footer__brand-desc {
  font-size: 0.8125rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 260px;
}
.footer__col h5 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.25rem;
}
.footer__col a {
  display: block;
  font-size: 0.8125rem;
  color: var(--sub);
  margin-bottom: 0.6rem;
  transition: color var(--ease);
}
.footer__col a:hover {
  color: var(--black);
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.75rem;
  color: var(--mid);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.75rem;
  color: var(--mid);
  transition: color var(--ease);
}
.footer__legal a:hover {
  color: var(--black);
}

/* ABOUT PAGE */
.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.about-val {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
}
.about-val .label {
  display: block;
  margin-bottom: 0.625rem;
  color: var(--mid);
}
.about-val p {
  font-size: 0.8125rem;
  color: var(--mid);
  line-height: 1.65;
}

/* FADE ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}

/* STAT BAR */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.stat-cell {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.stat-cell__num {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-cell .label {
  display: block;
  margin-top: 0.25rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .wrap {
    padding: 0 2rem;
  }
  .nav__inner {
    padding: 0 2rem;
  }
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .clients-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-split__img {
    min-height: 340px;
  }
  .about-split__content {
    padding: 4rem 3rem;
  }
  .svc-detail-row {
    grid-template-columns: 1fr;
  }
  .svc-detail-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 3rem;
  }
  .svc-detail-left__title {
    margin-top: 0;
  }
  .svc-detail-points {
    grid-template-columns: 1fr;
  }
  .cs-list .cs-item {
    grid-template-columns: 100px 1fr;
  }
  .cs-item__meta {
    display: none;
  }
  .about-values {
    grid-template-columns: 1fr 1fr;
  }
  .stat-bar {
    grid-template-columns: 1fr 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 4rem 0;
  }
  .contact-form {
    padding: 4rem 0;
  }
  .svc-row {
    grid-template-columns: 60px 1fr auto;
  }
  .svc-desc {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .section {
    padding: 5rem 0;
  }
  .wrap {
    padding: 0 1.5rem;
  }
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .hero__content {
    padding: 0 1.5rem 4rem;
  }
  .hero__top-label {
    padding: 3rem 1.5rem 0;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .clients-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cs-grid {
    grid-template-columns: 1fr;
  }
  .cs-list .cs-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .cs-item__num {
    display: none;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .stat-bar {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .testi-card {
    flex: 0 0 calc(100% - 0px);
  }
  .svc-row:hover {
    margin: 0;
    padding: 2rem 0;
  }
  .diff-item:hover {
    margin: 0;
    padding: 2.25rem 0;
  }
  .cta-block__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-block__right {
    flex-direction: row;
  }
  .sec-head--split {
    flex-direction: column;
  }
  .sec-head--split p {
    text-align: left;
  }
  .svc-row {
    grid-template-columns: 50px 1fr;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
  .stat-bar {
    grid-template-columns: 1fr;
  }
  .cta-block__right {
    flex-direction: column;
  }
}

/* ============================================
   INNER PAGE HELPERS
   ============================================ */

/* btn-dark alias */
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: #2a2a2a;
}

/* page-header subtitle */
.page-header__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 580px;
  line-height: 1.8;
  margin-top: 0.5rem;
}

/* svc-detail aliases for new markup */
.svc-detail-num {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.1em;
  margin-bottom: auto;
  display: block;
  margin-bottom: 0.5rem;
}
.svc-detail-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.svc-detail-tagline {
  font-size: 0.85rem;
  color: var(--sub);
  line-height: 1.6;
  font-style: italic;
}

/* svc-detail-points as ul */
ul.svc-detail-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
ul.svc-detail-points li {
  font-size: 0.875rem;
  color: var(--sub);
  line-height: 1.6;
  padding: 0.65rem 0 0.65rem 1.25rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
ul.svc-detail-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0.65rem;
  font-size: 0.75rem;
  color: var(--mid);
}

/* contact form native inputs (no .form-input class needed) */
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--black);
  width: 100%;
  outline: none;
  transition: border-color var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
  display: block;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(153, 153, 151, 0.55);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--black);
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}
.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath stroke='%23999997' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m1 1 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-form label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.35rem;
  display: block;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 0;
}
.contact-form .form-row .form-group {
  margin-bottom: 1.25rem;
}

/* inner page responsive adjustments */
@media (max-width: 1024px) {
  .svc-detail-num {
    margin-bottom: 0.25rem;
  }
}
@media (max-width: 768px) {
  .page-header {
    padding-bottom: 3.5rem;
  }
  .page-header__sub {
    font-size: 0.9rem;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   GET A QUOTE NAV BUTTON
   ============================================ */
.nav__quote-btn {
  background: var(--black);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: background var(--ease);
  margin-left: 0.25rem;
  white-space: nowrap;
}
.nav__quote-btn:hover {
  background: #2a2a2a;
}
.nav__quote-btn::after {
  display: none !important;
}

/* ============================================
   HERO V2
   ============================================ */
.hero2 {
  background: var(--black);
  padding-top: calc(var(--nav-h) + 6rem);
  padding-bottom: 0;
  overflow: hidden;
}
.hero2__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 3rem;
}
.hero2__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2rem;
  display: block;
}
.hero2__headline {
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 2rem;
}
.hero2__headline--compact {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
  max-width: none;
  margin-bottom: 0;
}
.hero2__headline strong {
  font-weight: 700;
}
.hero2__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 3rem;
}
.hero2__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.hero2__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}
.hero2__trust-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  position: relative;
  transition: background 0.3s ease;
}
.hero2__trust-item:last-child {
  border-right: none;
}
.hero2__trust-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
}
.hero2__trust-num {
  display: block;
  font-size: 3.5rem;
  font-weight: 200;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.hero2__trust-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero2__trust {
    grid-template-columns: 1fr;
  }
  .hero2__trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 2rem 2rem;
  }
  .hero2__trust-item:last-child {
    border-bottom: none;
  }
  .hero2__trust-num {
    font-size: 2.8rem;
  }
}

/* ============================================
   SERVICES GRID (homepage what we do)
   ============================================ */
.svc2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.svc2-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background var(--ease);
  cursor: default;
}
.svc2-card:hover {
  background: var(--off-white);
}
.svc2-card__num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--mid);
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.svc2-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.svc2-card__desc {
  font-size: 0.8125rem;
  color: var(--sub);
  line-height: 1.65;
}

/* ============================================
   APPROACH / DIFFERENTIATORS
   ============================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.diff-cell {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.diff-cell__num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--mid);
  display: block;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.diff-cell__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.diff-cell__text {
  font-size: 0.875rem;
  color: var(--sub);
  line-height: 1.75;
}

/* ============================================
   PROCESS (3-step)
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.process-step {
  padding: 3rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-step__num {
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}
.process-step__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.process-step__text {
  font-size: 0.875rem;
  color: var(--sub);
  line-height: 1.75;
}

/* ============================================
   SERVICES PAGE V2
   ============================================ */
.svc3-section {
  border-bottom: 1px solid var(--border);
  padding: 6rem 0;
}
.svc3-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 6rem;
  align-items: start;
}
.svc3-left__num {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 1.5rem;
}
.svc3-left__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.svc3-left__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.svc3-right p {
  color: var(--sub);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.svc3-points {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.svc3-points li {
  font-size: 0.85rem;
  color: var(--sub);
  line-height: 1.6;
  padding: 0.7rem 1rem 0.7rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
}
.svc3-points li::before {
  content: "—";
  color: var(--mid);
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* ============================================
   ABOUT PAGE V2
   ============================================ */
.about2-bio {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 6rem;
  align-items: start;
}
.about2-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-top: 3rem;
}
.about2-stat {
  padding: 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about2-stat__num {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
}
.about2-stat__label {
  font-size: 0.75rem;
  color: var(--mid);
  line-height: 1.4;
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 1024px) {
  .about2-stat-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .svc2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .svc3-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about2-bio {
    grid-template-columns: 1fr;
  }
  .svc3-points {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero2__headline--compact {
    font-size: 2.2rem;
  }
  .hero2__headline {
    font-size: 2.4rem;
  }
  .about2-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc2-grid {
    grid-template-columns: 1fr 1fr;
  }
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .nav__quote-btn {
    display: none;
  }
}
@media (max-width: 480px) {
  .svc2-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CLIENT LOGOS STRIP
   ============================================ */
.logos-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
  overflow: hidden;
}
.logos-strip__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center;
  margin-bottom: 2.5rem;
  display: block;
}
.logos-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 4rem;
}
.logo-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
}
.logo-img {
  width: 100%;
  max-width: 100px;
  height: 36px;
  object-fit: contain;
  opacity: 0.5;
  transition: opacity var(--ease);
}
.logo-item:hover .logo-img {
  opacity: 1;
}
.logo-img--invert {
  filter: invert(1);
}
.logo-img--large {
  max-width: 160px;
  height: 56px;
}
@media (max-width: 1024px) {
  .logos-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .logo-item {
    flex: 0 0 20%;
    padding: 1.25rem 1rem;
  }
  .logo-img {
    max-width: 90px;
    height: 32px;
  }
}
@media (max-width: 600px) {
  .logo-item {
    flex: 0 0 33.333%;
    padding: 1rem 0.75rem;
  }
  .logo-img {
    max-width: 72px;
    height: 26px;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 1.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: var(--font);
  transition: color var(--ease);
}
.faq-item__q:hover {
  color: var(--sub);
}
.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--black);
  transition:
    transform var(--ease),
    opacity var(--ease);
}
.faq-item__icon::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  width: 1px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.faq-item.open .faq-item__a {
  max-height: 200px;
}
.faq-item__a p {
  padding-bottom: 1.75rem;
  font-size: 0.9375rem;
  color: var(--sub);
  line-height: 1.8;
}

/* ============================================
   LAYOUT UTILITIES (replaces inline grid styles)
   ============================================ */

/* Section split: narrow label col + wide content col (1fr 2fr) */
.sec-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
}

/* Contact page: info col + form col */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

/* Generic 50/50 two-column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
.two-col--5rem {
  gap: 5rem;
}

/* Inner expertise/industry grid with borders, no gap */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

/* Case study stat rows */
.cs-stats-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-bottom: 5rem;
}
.cs-stats-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-bottom: 5rem;
}

/* Case study page components */
.cs-stat {
  text-align: center;
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cs-stat__num {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--black);
  display: block;
  margin-bottom: 0.3rem;
  line-height: 1;
}
.cs-stat__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.compare-table th,
.compare-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.compare-table th {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  background: var(--off-white);
}
.compare-table td:first-child,
.compare-table td.before {
  color: var(--sub);
}
.compare-table td.after,
.compare-table td.delta {
  color: var(--black);
  font-weight: 600;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.achieved-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.achieved-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--sub);
  line-height: 1.6;
}
.achieved-list li::before {
  content: "✓";
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 0.05rem;
}
.achieved-list li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .sec-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .cs-stats-4 {
    grid-template-columns: 1fr 1fr;
  }
  .cs-stats-5 {
    grid-template-columns: 1fr 1fr;
  }
  .cs-stat {
    padding: 1.5rem 1rem;
  }
  .cs-stat__num {
    font-size: 2rem;
  }
  .compare-table th,
  .compare-table td {
    padding: 0.75rem 0.75rem;
    font-size: 0.8rem;
  }
  .hero2__inner {
    padding: 0 1.5rem;
  }
}
@media (max-width: 480px) {
  .cs-stats-4 {
    grid-template-columns: 1fr 1fr;
  }
  .cs-stats-5 {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   STICKY CTA BAR
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  background: var(--black);
  z-index: 998;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sticky-cta.visible {
  bottom: 0;
}
.sticky-cta__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sticky-cta__text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.sticky-cta__btn {
  background: var(--white);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--ease);
}
.sticky-cta__btn:hover {
  background: var(--off-white);
}
@media (max-width: 768px) {
  .sticky-cta__inner {
    padding: 0.75rem 1.5rem;
  }
  .sticky-cta__text {
    display: none;
  }
  .sticky-cta__btn {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.5rem;
  }
}

/* ============================================
   EXIT INTENT MODAL
   ============================================ */
.exit-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.exit-modal.active {
  display: flex;
}
.exit-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.exit-modal__card {
  position: relative;
  background: var(--white);
  max-width: 440px;
  width: 90%;
  padding: 3rem;
  z-index: 1;
}
.exit-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.5rem;
  color: var(--mid);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.exit-modal__close:hover {
  color: var(--black);
}

/* ============================================
   CLICKABLE SERVICE CARDS
   ============================================ */
a.svc2-card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}
a.svc2-card::after {
  content: "\2192";
  position: absolute;
  top: 2.5rem;
  right: 2rem;
  font-size: 1rem;
  color: var(--mid);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--ease);
}
a.svc2-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
