/* ==========================================================================
   NORVANE — Framer-style consulting concept
   Tokens: Overused Grotesk Medium (display) + Inter (body)
   White / #F7F7F7 / Black / Coal #161512
   ========================================================================== */

@font-face {
  font-family: "Overused Grotesk";
  src: url("../assets/fonts/OverusedGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("../assets/fonts/OverusedGrotesk-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Overused Grotesk";
  src: url("../assets/fonts/OverusedGrotesk-Roman.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --off: #f7f7f7;
  --black: #000000;
  --coal: #161512;
  --coal-2: #211f1b;
  --ink-90: rgba(0, 0, 0, 0.9);
  --ink-70: rgba(0, 0, 0, 0.7);
  --ink-60: rgba(0, 0, 0, 0.6);
  --wht-90: rgba(255, 255, 255, 0.9);
  --wht-70: rgba(255, 255, 255, 0.7);
  --wht-60: rgba(255, 255, 255, 0.6);
  --line: rgba(0, 0, 0, 0.08);
  --line-dark: rgba(255, 255, 255, 0.12);
  --radius: 4px;
  --display: "Overused Grotesk", "Inter", sans-serif;
  --body: "Inter", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-flip: cubic-bezier(0.76, 0, 0.24, 1);
  --card-shadow: rgba(0, 0, 0, 0.17) 0px 0.6px 1.57px -1.5px,
    rgba(0, 0, 0, 0.14) 0px 2.29px 5.95px -3px,
    rgba(0, 0, 0, 0.02) 0px 10px 26px -4.5px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-90);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ---------- type ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink-90);
}
h2 { font-size: clamp(34px, 3.4vw, 48px); }

/* ---------- badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-70);
  white-space: nowrap;
}
.badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.badge-glass {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--wht-90);
}
.badge-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--wht-70);
}

/* ---------- buttons (flip-label roll hover) ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out);
}
.btn:active { transform: scale(0.98); }
.btn-flip {
  display: block;
  height: 1.5em;
  overflow: hidden;
}
.btn-flip span {
  display: block;
  height: 1.5em;
  transition: transform 0.5s var(--ease-flip);
}
.btn:hover .btn-flip span { transform: translateY(-100%); }
.btn-arrow {
  width: 15px; height: 15px;
  flex: 0 0 auto;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-light { background: var(--white); color: var(--ink-90); }
.btn-light:hover { background: #ececec; }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #262626; }
.btn-ghost {
  background: transparent;
  color: var(--wht-90);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55); }
.btn-header { padding: 10px 16px; background: var(--white); color: var(--ink-90); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.45s ease, box-shadow 0.45s ease;
}
.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  transition: color 0.45s ease;
}
.logo-mark { width: 26px; height: 26px; }
.logo-word {
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.header-divider {
  width: 1px; height: 26px;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.45s ease;
}
.main-nav { display: flex; gap: 4px; }
.main-nav a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--wht-90);
  transition: color 0.45s ease, background 0.3s ease;
}
.main-nav a:hover { background: rgba(255, 255, 255, 0.12); }
.header-cta { margin-left: auto; }
.btn-header { transition: background 0.45s ease, color 0.45s ease; }

.site-header.scrolled { background: var(--white); box-shadow: 0 1px 0 var(--line); }
.site-header.scrolled .logo { color: var(--ink-90); }
.site-header.scrolled .header-divider { background: rgba(0, 0, 0, 0.15); }
.site-header.scrolled .main-nav a { color: var(--ink-70); }
.site-header.scrolled .main-nav a:hover { background: rgba(0, 0, 0, 0.05); color: var(--ink-90); }
.site-header.scrolled .btn-header { background: var(--black); color: var(--white); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease-out), background 0.45s ease;
}
.site-header.scrolled .nav-toggle span,
.site-header.menu-open .nav-toggle span { background: var(--ink-90); }
.site-header.menu-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--white);
  padding: 120px 40px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .mm-cta { color: var(--ink-60); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg, .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg img { transform: scale(1.06); animation: heroZoom 2.4s var(--ease-out) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 13, 19, 0.82) 0%, rgba(9, 13, 19, 0.45) 48%, rgba(9, 13, 19, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 13, 19, 0.55) 0%, rgba(9, 13, 19, 0) 40%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 72px;
}
.hero-title {
  margin: 24px 0 24px;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.04;
  color: var(--white);
}
.line-mask { display: block; overflow: hidden; }
.line { display: block; }
.hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--wht-90);
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* hero entrance */
.hero-in {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}
body.loaded .hero-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
body.loaded .hero-in[data-hi="1"] { transition-delay: 0.12s; }
body.loaded .hero-in[data-hi="2"] { transition-delay: 0.22s; }
body.loaded .hero-in[data-hi="3"] { transition-delay: 0.38s; }
body.loaded .hero-in[data-hi="4"] { transition-delay: 0.5s; }

/* ---------- clients ticker ---------- */
.clients { padding: 20px 0; }
.ticker {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-set { display: flex; }
.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 80px;
  margin-right: 0;
  background: var(--white);
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  transition: color 0.3s ease;
}
.client-card:hover { color: var(--ink-90); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- intro statement ---------- */
.intro { padding: 90px 0 120px; }
.intro-statement {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.32;
  letter-spacing: -0.015em;
  max-width: 1280px;
}
.intro-statement .ch {
  color: rgba(0, 0, 0, 0.16);
  transition: color 0.25s linear;
}
.intro-statement .ch.on { color: var(--ink-90); }

/* ---------- reveal system ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

.img-reveal { overflow: hidden; }
.img-reveal img {
  transform: scale(1.08);
  transition: transform 1.4s var(--ease-out);
}
[data-reveal].revealed .img-reveal img,
.img-reveal.revealed img { transform: scale(1); }

/* ---------- values ---------- */
.values { padding: 100px 0; }
.values-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 90px;
}
.values-title h2 { max-width: 560px; margin-top: 24px; }
.values-note {
  max-width: 350px;
  color: var(--ink-60);
  font-size: 15px;
  padding-bottom: 6px;
}
.values-bottom {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 96px;
  align-items: start;
}

.acc-item { border-bottom: 1px solid var(--line); }
.acc-item:first-child { border-top: 1px solid var(--line); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
}
.acc-head h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.acc-chevron {
  position: relative;
  width: 14px; height: 14px;
  flex: 0 0 auto;
  opacity: 0.55;
}
.acc-chevron::before, .acc-chevron::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px; height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out);
}
.acc-chevron::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc-item.open .acc-chevron::after { transform: translate(-50%, -50%) rotate(0deg); }
.acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.55s var(--ease-out);
}
.acc-body-inner { padding: 0 0 28px; }
.acc-body p {
  color: var(--ink-60);
  font-size: 15.5px;
  max-width: 480px;
  margin-bottom: 20px;
}
.points { list-style: none; display: grid; gap: 12px; }
.points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-70);
}
.points svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--ink-70); }

.values-visual { position: relative; }
.values-img { border-radius: var(--radius); }
.values-img img { width: 100%; height: 640px; object-fit: cover; }
.founder-card {
  position: absolute;
  right: -24px;
  bottom: 32px;
  width: 360px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 28px;
}
.founder-card blockquote {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-90);
  margin-bottom: 20px;
}
.founder-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.founder-card figcaption img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.founder-card strong { display: block; font-size: 15px; font-weight: 600; }
.founder-card em { font-style: normal; font-size: 13px; color: var(--ink-60); }

/* ---------- services ---------- */
.services { padding: 100px 0 120px; background: var(--white); }
.section-head.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 80px;
}
.section-head.center h2 { margin-top: 24px; }
.section-sub {
  margin-top: 24px;
  max-width: 600px;
  color: var(--ink-60);
  font-size: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--off);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 10px 10px 20px -10px;
}
.service-icon svg { width: 24px; height: 24px; color: var(--ink-90); }
.service-text { margin-top: 90px; }
.service-text h5 {
  font-size: 22px;
  margin-bottom: 10px;
}
.service-text p { color: var(--ink-60); font-size: 15px; line-height: 1.55; }

/* ---------- industries ---------- */
.industries { padding: 80px 0 120px; }
.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 96px;
  align-items: start;
}
.industries-left h2 { margin: 24px 0 40px; max-width: 460px; }
.industries-left p {
  color: var(--ink-60);
  font-size: 15.5px;
  max-width: 380px;
  margin-bottom: 40px;
}
.industries-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ind-card {
  background: var(--off);
  border-radius: var(--radius);
  padding: 24px;
  transition: background 0.35s ease, transform 0.5s var(--ease-out);
}
.ind-card:hover { background: #efefef; transform: translateY(-4px); }
.ind-card h5 { font-size: 20px; margin-bottom: 6px; }
.ind-card p { font-size: 14px; color: var(--ink-60); }

/* ---------- stats band ---------- */
.stats-band {
  position: relative;
  isolation: isolate;
  padding: 200px 0 140px;
  background-image:
    linear-gradient(0deg, rgba(17, 15, 12, 0.92) 0%, rgba(17, 15, 12, 0.45) 40%, rgba(17, 15, 12, 0.55) 100%),
    url("../assets/statsbg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.stats-lead {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--white);
  max-width: 1000px;
  margin-bottom: 180px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-num {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 4.4vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  color: var(--wht-70);
}

/* ---------- approach (dark) ---------- */
.approach {
  background: var(--coal);
  padding: 120px 0;
  color: var(--wht-90);
}
.approach h2 { color: var(--white); }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 96px;
  align-items: start;
  margin-top: 20px;
}
.approach-intro {
  color: var(--wht-70);
  font-size: 15.5px;
  max-width: 480px;
  margin-bottom: 56px;
}
.check-list { display: grid; gap: 44px; }
.check-item { display: flex; gap: 18px; align-items: flex-start; }
.check-ico {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  color: var(--wht-90);
}
.check-ico svg { width: 22px; height: 22px; }
.check-item h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
}
.check-item p {
  color: var(--wht-60);
  font-size: 15px;
  line-height: 1.6;
  max-width: 400px;
  border-left: 1px solid var(--line-dark);
  padding-left: 0;
}
.check-item > div { border-left: 1px solid var(--line-dark); padding-left: 18px; margin-left: -18px; padding-left: 18px; }
.approach-visual { position: relative; }
.approach-img { border-radius: var(--radius); }
.approach-img img { width: 100%; height: 720px; object-fit: cover; }
.approach-cta {
  position: absolute;
  left: 20px;
  bottom: 20px;
}

/* ---------- testimonials ---------- */
.testimonials { padding: 120px 0 100px; background: var(--off); overflow: hidden; }
.testimonials > .container > h2 { margin-top: 24px; }
.testi-viewport { margin-top: 64px; }
.testi-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 0.7s var(--ease-out);
}
.testi-card {
  flex: 0 0 auto;
  width: min(1180px, 82vw);
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}
.testi-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}
.quote-mark { width: 40px; height: 28px; color: var(--ink-90); margin-bottom: 28px; }
.testi-quote p {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 1.95vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink-90);
  max-width: 720px;
}
.testi-meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-meta strong { font-size: 17px; font-weight: 600; }
.testi-meta span { font-size: 14px; color: var(--ink-60); }
.testi-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
}
.slider-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--card-shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s var(--ease-out);
}
.slider-arrow svg { width: 18px; height: 18px; }
.slider-arrow:hover { background: var(--black); color: var(--white); transform: scale(1.05); }
.slider-arrow:disabled { opacity: 0.35; pointer-events: none; }

/* ---------- case studies ---------- */
.cases { padding: 120px 0; }
.case-slider { position: relative; }
.case-track {
  display: flex;
  overflow: hidden;
  border-radius: var(--radius);
}
.case-slide {
  position: relative;
  flex: 0 0 100%;
  height: 620px;
  transition: transform 0.85s var(--ease-flip);
}
.case-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.case-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 10, 0.88) 0%, rgba(8, 8, 10, 0.55) 42%, rgba(8, 8, 10, 0.12) 75%, rgba(8, 8, 10, 0.05) 100%);
}
.case-panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(480px, 82%);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
}
.case-panel .badge-glass { align-self: flex-start; }
.case-panel h3 {
  color: var(--white);
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.15;
}
.case-panel p {
  color: var(--wht-70);
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
}
.case-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
}
.case-link svg { width: 15px; height: 15px; transition: transform 0.35s var(--ease-out); }
.case-link:hover svg { transform: translateX(4px); }
.case-dashes {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 6px;
  z-index: 3;
}
.dash {
  width: 34px; height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.3s ease, width 0.3s ease;
}
.dash.active { background: var(--white); width: 44px; }

/* trusted strip */
.trusted-strip {
  margin-top: 24px;
  background: var(--off);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.trusted-left { display: flex; align-items: center; gap: 20px; }
.trusted-avatars { display: flex; }
.trusted-avatars img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--off);
}
.trusted-avatars img + img { margin-left: -14px; }
.trusted-text { display: flex; flex-direction: column; gap: 2px; }
.trusted-text strong { font-size: 17px; font-weight: 600; }
.trusted-text span { font-size: 14px; color: var(--ink-60); }
.trusted-strip .btn-dark { padding: 12px 18px; flex: 0 0 auto; }

/* ---------- about ---------- */
.about-block { padding: 60px 0 120px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: center;
}
.about-img { border-radius: var(--radius); }
.about-img img { width: 100%; height: 620px; object-fit: cover; }
.about-copy h2 { margin: 24px 0 28px; max-width: 480px; }
.about-copy p {
  color: var(--ink-60);
  font-size: 15.5px;
  max-width: 520px;
  margin-bottom: 40px;
}

/* ---------- faq ---------- */
.faq { padding: 100px 0 120px; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: start;
}
.faq-left h2 { margin: 24px 0 28px; max-width: 380px; }
.faq-left p {
  color: var(--ink-60);
  font-size: 15.5px;
  max-width: 320px;
  margin-bottom: 40px;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  text-align: left;
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
  transition: background 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1.6px;
  background: var(--ink-90);
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out), background 0.3s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-icon { background: var(--black); box-shadow: none; }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: var(--white); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.55s var(--ease-out);
}
.faq-body-inner { padding: 0 60px 28px 0; }
.faq-body p { color: var(--ink-60); font-size: 15.5px; }

/* ---------- insights ---------- */
.insights { padding: 60px 0 140px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-img { border-radius: var(--radius); display: block; }
.blog-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.blog-card h4 {
  font-size: 22px;
  line-height: 1.25;
  margin: 22px 0 26px;
  max-width: 360px;
}
.blog-card:hover h4 { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.blog-meta i {
  flex: 0 0 auto;
  width: 28px; height: 1px;
  background: rgba(0, 0, 0, 0.25);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--coal);
  color: var(--wht-70);
  padding: 96px 0 40px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 96px;
  padding-bottom: 72px;
}
.logo-light { color: var(--white); }
.footer-brand p {
  margin: 24px 0 32px;
  max-width: 300px;
  font-size: 15px;
  color: var(--wht-70);
}
.footer-social { display: flex; gap: 10px; margin-top: 36px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wht-90);
  transition: background 0.3s ease, transform 0.3s var(--ease-out);
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-col h6 {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wht-60);
  margin-bottom: 22px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  color: var(--wht-90);
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
}
.footer-col a:hover { color: var(--white); transform: translateX(4px); }
.footer-contact a, .footer-addr {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
}
.footer-contact svg {
  width: 18px; height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  opacity: 0.7;
}
.footer-addr { padding: 6px 0; color: var(--wht-90); }
.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line-dark);
  font-size: 13.5px;
  color: var(--wht-60);
}
.footer-disclaimer {
  margin-top: 22px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.38);
  max-width: 760px;
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .values-bottom, .approach-grid, .about-grid, .faq-grid, .industries-grid { gap: 56px; }
  .founder-card { right: 16px; }
}

@media (max-width: 960px) {
  .main-nav, .header-divider, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  /* reference shows a solid white mobile header from the top of the page */
  .site-header { background: var(--white); box-shadow: 0 1px 0 var(--line); }
  .site-header .logo { color: var(--ink-90); }
  .site-header .nav-toggle span { background: var(--ink-90); }
  .values-header { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 56px; }
  .values-bottom { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 48px 32px; }
  .stats-lead { margin-bottom: 110px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-img img { height: 540px; }
  .testi-card { grid-template-columns: 1fr; gap: 28px; }
  .testi-img img { height: 320px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img img { height: 440px; }
  .faq-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-main { grid-template-columns: 1fr; gap: 56px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .case-slide { height: 560px; }
}

@media (max-width: 640px) {
  .container { padding-left: 24px; padding-right: 24px; }
  .header-inner { padding: 0 24px; }
  .hero-content { padding-bottom: 48px; }
  .hero-sub br { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-text { margin-top: 56px; }
  .industries-cards { grid-template-columns: 1fr; }
  .stats-band { background-attachment: scroll; padding: 130px 0 90px; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-img img { height: 460px; }
  .founder-card { position: static; width: auto; margin-top: -60px; margin-left: 16px; margin-right: 16px; }
  .case-slide { height: 640px; }
  .case-panel { width: 100%; padding: 28px; }
  .trusted-strip { flex-direction: column; align-items: flex-start; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; gap: 8px; }
  .approach-cta { left: 12px; bottom: 12px; right: 12px; justify-content: center; }
  .testi-controls { justify-content: flex-start; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-in, [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .intro-statement .ch { color: var(--ink-90); }
}
