/* ============================================================
   THOUGHT BY DESIGN — Design System v2
   Boutique AI Creative Studio | Toronto + San Francisco
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --bg: #08090F;
  --bg-2: #0D0F1C;
  --bg-3: #121421;
  --surface: #16192A;
  --surface-2: #1C2035;
  --border: rgba(108, 99, 255, 0.12);
  --border-2: rgba(255, 255, 255, 0.07);
  --border-3: rgba(255, 255, 255, 0.04);

  --indigo: #6C63FF;
  --indigo-light: #8B84FF;
  --indigo-dim: rgba(108, 99, 255, 0.15);
  --purple: #A78BFA;
  --gold: #E8C97A;

  --text: #EDEEF8;
  --text-muted: #7A8BAA;
  --text-dim: #434C65;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  --shadow-glow: 0 0 50px rgba(108, 99, 255, .16);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, .45);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --t-fast: 150ms var(--ease);
  --t-base: 250ms var(--ease);
  --t-slow: 380ms var(--ease);

  --max-w: 1180px;
  --nav-h: 68px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

img,
video {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

ul,
ol {
  list-style: none
}

input,
textarea,
select {
  font-family: inherit
}

/* ── Typography ─────────────────────────────────────────────── */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.03em
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em
}

.heading-2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.015em
}

.heading-3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.01em
}

.label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase
}

.body-lg {
  font-size: 1.1rem;
  line-height: 1.75
}

.text-muted {
  color: var(--text-muted)
}

.text-indigo {
  color: var(--indigo-light)
}

.text-gold {
  color: var(--gold)
}

.text-center {
  text-align: center
}

.gradient-text {
  background: linear-gradient(130deg, var(--indigo-light) 0%, var(--purple) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6)
}

.section {
  padding: var(--sp-24) 0
}

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

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto var(--sp-16)
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 5px 14px;
  background: rgba(108, 99, 255, .09);
  border: 1px solid rgba(108, 99, 255, .22);
  border-radius: var(--r-full);
  color: var(--indigo-light);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4)
}

.section-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--indigo-light);
  animation: pulse-dot 2s ease infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.7)
  }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: .75rem 1.75rem;
  border-radius: var(--r-lg);
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  transition: all var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: -.01em
}

.btn-primary {
  background: var(--indigo);
  color: #fff
}

.btn-primary:hover {
  background: var(--indigo-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(108, 99, 255, .35)
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--text)
}

.btn-outline:hover {
  border-color: rgba(108, 99, 255, .4);
  background: rgba(108, 99, 255, .07);
  transform: translateY(-2px)
}

.btn-lg {
  padding: .95rem 2.2rem;
  font-size: .95rem;
  border-radius: var(--r-xl)
}

.btn svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
  flex-shrink: 0
}

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden
}

.card:hover {
  border-color: rgba(108, 99, 255, .22);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-card)
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all var(--t-base)
}

.nav.scrolled {
  background: rgba(8, 9, 15, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-2)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.015em
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.logo-mark svg {
  width: 17px;
  height: 17px;
  stroke: white;
  stroke-width: 2.2
}

.logo-name {
  color: var(--text)
}

.logo-name span {
  color: var(--indigo-light)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8)
}

.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t-fast);
  position: relative
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--indigo-light);
  transition: width var(--t-base)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 3px
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t-base)
}

.nav-hamburger.open span:first-child {
  transform: translateY(7px) rotate(45deg)
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.nav-hamburger.open span:last-child {
  transform: translateY(-7px) rotate(-45deg)
}

.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(8, 9, 15, .98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-2);
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  transform: translateY(-8px);
  opacity: 0;
  transition: all var(--t-base);
  pointer-events: none;
  z-index: 999
}

.nav-mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all
}

.nav-mobile a {
  display: block;
  padding: var(--sp-3) 0;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-3);
  transition: color var(--t-fast)
}

.nav-mobile a:last-of-type {
  border-bottom: none;
  margin-bottom: var(--sp-4)
}

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

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + var(--sp-8)) 0 var(--sp-16);
  position: relative;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .3
}

.orb-1 {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, var(--indigo) 0%, transparent 70%);
  top: -80px;
  left: -80px;
  animation: drift-1 22s ease-in-out infinite
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  top: 25%;
  right: -40px;
  opacity: .18;
  animation: drift-2 28s ease-in-out infinite
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #221655 0%, transparent 70%);
  bottom: 0;
  left: 42%;
  opacity: .45;
  animation: drift-3 18s ease-in-out infinite
}

@keyframes drift-1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(55px, 35px) scale(1.04)
  }

  66% {
    transform: translate(-25px, 55px) scale(.97)
  }
}

@keyframes drift-2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-38px, -48px)
  }
}

@keyframes drift-3 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(45px, -28px)
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(108, 99, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(108, 99, 255, .03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, black 20%, transparent 100%)
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 14px;
  background: rgba(108, 99, 255, .08);
  border: 1px solid rgba(108, 99, 255, .18);
  border-radius: var(--r-full);
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 500;
  margin-bottom: var(--sp-8)
}

.hero-tag strong {
  color: var(--indigo-light);
  font-weight: 600
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--indigo-light);
  margin-bottom: var(--sp-4)
}

.hero h1 {
  margin-bottom: var(--sp-6)
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: var(--sp-10)
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-16)
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-2);
  flex-wrap: wrap
}

.hero-proof-text {
  font-size: .78rem;
  color: var(--text-dim);
  font-weight: 500
}

.proof-logo {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: -.01em;
  padding: 4px 12px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: all var(--t-base)
}

.proof-logo:hover {
  border-color: rgba(108, 99, 255, .3);
  color: var(--text-muted)
}

/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  background: var(--bg-2)
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  flex-wrap: wrap
}

.trust-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
  justify-content: center
}

.trust-logo {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-dim);
  transition: color var(--t-base);
  white-space: nowrap;
  letter-spacing: -.01em
}

.trust-logo:hover {
  color: var(--text-muted)
}

/* ── Services ────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5)
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--purple));
  transform: scaleX(0);
  transition: transform var(--t-slow);
  transform-origin: left
}

.service-card:hover {
  border-color: rgba(108, 99, 255, .2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  background: var(--surface-2)
}

.service-card:hover::after {
  transform: scaleX(1)
}

.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(108, 99, 255, .1);
  border: 1px solid rgba(108, 99, 255, .18);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--indigo-light)
}

.service-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.6
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: var(--sp-3);
  line-height: 1.35
}

.service-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-5)
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.tag {
  padding: 3px 10px;
  background: rgba(108, 99, 255, .08);
  border: 1px solid rgba(108, 99, 255, .14);
  border-radius: var(--r-full);
  font-size: .68rem;
  font-weight: 500;
  color: var(--text-muted)
}

/* ── Clients Section ─────────────────────────────────────────── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.client-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-4);
  text-decoration: none;
}

.client-card:hover {
  border-color: rgba(108, 99, 255, .25);
  background: var(--surface-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card)
}

.client-card-top {}

.client-industry {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--indigo-light);
  margin-bottom: var(--sp-2)
}

.client-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.015em;
  line-height: 1.3;
  margin-bottom: var(--sp-2)
}

.client-desc {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.6
}

.client-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: color var(--t-fast);
  margin-top: var(--sp-3)
}

.client-card:hover .client-link {
  color: var(--indigo-light)
}

.client-link svg {
  width: 10px;
  height: 10px;
  stroke-width: 2.5;
  transition: transform var(--t-fast)
}

.client-card:hover .client-link svg {
  transform: translate(2px, -2px)
}

/* ── Process ─────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  position: relative
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(33.3% - 10px);
  width: calc(33.3% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--indigo), var(--purple));
  opacity: .25
}

.process-step {
  text-align: center;
  padding: var(--sp-8)
}

.step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), #3D34CC);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 0 22px rgba(108, 99, 255, .38);
  position: relative;
  z-index: 1
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: var(--sp-3)
}

.process-step p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.75
}

/* ── Why section ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center
}

.why-visual {
  position: relative
}

.why-card-stack {
  position: relative;
  height: 320px
}

.why-small-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-card)
}

.why-small-card:first-child {
  top: 0;
  left: 0;
  right: 56px;
  border-color: rgba(108, 99, 255, .2)
}

.why-small-card:last-child {
  bottom: 0;
  right: 0;
  left: 56px;
  border-color: rgba(232, 201, 122, .2);
  background: linear-gradient(135deg, var(--surface), rgba(232, 201, 122, .04))
}

.why-card-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3)
}

.why-card-label.indigo {
  color: var(--indigo-light)
}

.why-card-label.gold {
  color: var(--gold)
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: var(--sp-2)
}

.why-card-text {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.6
}

.why-content h2 {
  margin-bottom: var(--sp-5)
}

.why-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4)
}

.why-stat-row {
  display: flex;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-2)
}

.why-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 3px;
  background: linear-gradient(135deg, var(--indigo-light), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.why-stat .lbl {
  font-size: .76rem;
  color: var(--text-muted);
  font-weight: 400
}

/* ── Team ────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
  max-width: 820px;
  margin: 0 auto
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  transition: all var(--t-slow);
  text-align: center
}

.team-card:hover {
  border-color: rgba(108, 99, 255, .2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card)
}

.team-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto var(--sp-5);
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  position: relative
}

.team-avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(108, 99, 255, .3)
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 3px
}

.team-role {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--indigo-light);
  margin-bottom: var(--sp-4)
}

.team-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  color: var(--text-dim);
  margin-bottom: var(--sp-5);
  font-weight: 500
}

.team-bio {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-5)
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center
}

/* ── FAQ — completely redesigned ─────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-16);
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-sticky {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-8));
}

.faq-sticky-tag {
  margin-bottom: var(--sp-4)
}

.faq-sticky h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: var(--sp-6);
}

.faq-sticky p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-8);
}

.faq-cta-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-6);
  background: rgba(108, 99, 255, .07);
  border: 1px solid rgba(108, 99, 255, .15);
  border-radius: var(--r-lg);
}

.faq-cta-block span {
  font-size: .75rem;
  color: var(--text-dim);
  font-weight: 500;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base);
}

.faq-item.open {
  border-color: rgba(108, 99, 255, .25);
  background: var(--surface-2);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--t-fast);
  gap: var(--sp-4);
  letter-spacing: -.01em
}

.faq-q:hover {
  color: var(--indigo-light)
}

.faq-item.open .faq-q {
  color: var(--indigo-light)
}

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-base);
  color: var(--text-muted)
}

.faq-arrow svg {
  width: 13px;
  height: 13px;
  transition: transform var(--t-base)
}

.faq-item.open .faq-arrow {
  background: rgba(108, 99, 255, .12);
  border-color: rgba(108, 99, 255, .3);
  color: var(--indigo-light)
}

.faq-item.open .faq-arrow svg {
  transform: rotate(180deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow)
}

.faq-a-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.85;
  border-top: 1px solid var(--border-3)
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-16);
  align-items: start
}

.contact-info h2 {
  margin-bottom: var(--sp-4)
}

.contact-info>p {
  color: var(--text-muted);
  margin-bottom: var(--sp-10);
  line-height: 1.8
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5)
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: rgba(108, 99, 255, .1);
  border: 1px solid rgba(108, 99, 255, .14);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo-light);
  flex-shrink: 0
}

.contact-detail-icon svg {
  width: 15px;
  height: 15px
}

.contact-detail-text .label-sm {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: .875rem;
  color: var(--text-muted)
}

.contact-detail-text a:hover {
  color: var(--indigo-light)
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: var(--sp-8)
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4)
}

.form-group {
  margin-bottom: var(--sp-4)
}

.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: .01em
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .7rem .95rem;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: .875rem;
  transition: all var(--t-fast);
  outline: none
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(108, 99, 255, .5);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, .1)
}

.form-group textarea {
  resize: vertical;
  min-height: 110px
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim)
}

.form-honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px
}

.form-submit {
  width: 100%
}

.form-note {
  text-align: center;
  font-size: .72rem;
  color: var(--text-dim);
  margin-top: var(--sp-3)
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-8);
  color: var(--text-muted)
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-3)
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  padding: var(--sp-12) 0 var(--sp-8)
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-10)
}

.footer-brand p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 240px;
  margin-top: var(--sp-4)
}

.footer-heading {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--sp-4)
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3)
}

.footer-links a {
  font-size: .82rem;
  color: var(--text-muted);
  transition: color var(--t-fast)
}

.footer-links a:hover {
  color: var(--indigo-light)
}

.footer-bottom {
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4)
}

.footer-bottom p {
  font-size: .75rem;
  color: var(--text-dim)
}

.footer-locations {
  display: flex;
  gap: var(--sp-5)
}

.footer-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  color: var(--text-dim)
}

/* ── Utilities ───────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--ease), transform .55s var(--ease)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

.reveal-delay-4 {
  transition-delay: .4s
}

/* ── Responsive ──────────────────────────────────────────────── */
@media(max-width:1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-8)
  }

  .faq-sticky {
    position: static
  }
}

@media(max-width:900px) {
  .process-steps {
    grid-template-columns: 1fr
  }

  .process-steps::before {
    display: none
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .why-visual {
    display: none
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 460px
  }
}

@media(max-width:768px) {
  :root {
    --nav-h: 62px
  }

  .nav-links,
  .nav-cta {
    display: none
  }

  .nav-hamburger {
    display: flex
  }

  .section {
    padding: var(--sp-16) 0
  }

  .section-header {
    margin-bottom: var(--sp-10)
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .clients-grid {
    grid-template-columns: 1fr 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer-inner {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start
  }

  .hero-proof {
    flex-wrap: wrap
  }

  .trust-inner {
    gap: var(--sp-5);
    flex-direction: column
  }

  .why-stat-row {
    gap: var(--sp-5)
  }
}

@media(max-width:480px) {
  .container {
    padding: 0 var(--sp-4)
  }

  .card,
  .contact-form,
  .team-card,
  .service-card {
    padding: var(--sp-6)
  }

  .clients-grid {
    grid-template-columns: 1fr
  }
}