/* ============================================
   PICARO STUDIO v2 — Clean White Mode
   Clear typography. Rich animation. Zero noise.
   ============================================ */

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

:root {
  --white: #ffffff;
  --off-white: #f8f8f6;
  --surface: #f2f2ef;
  --surface-2: #ebebе7;
  --border: #e5e5e0;
  --border-dark: #d0d0c8;
  --ink: #0f0f0e;
  --ink-2: #2a2a28;
  --ink-3: #4a4a46;
  --ink-4: #7a7a74;
  --ink-5: #a8a8a0;
  --accent: #1a1a18;
  --accent-2: #2d2d2a;
  --highlight: #ff4d00;
  --highlight-soft: #fff0eb;
  --green: #0a7c4e;
  --green-soft: #e8f7f1;
  --blue: #1a56db;
  --blue-soft: #eff6ff;
  --font-sans: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 100px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ======= 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-sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
::selection { background: rgba(255, 77, 0, 0.12); color: var(--ink); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 3px; }

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.serif { font-family: var(--font-serif); }
.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* ======= LAYOUT ======= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: all 0.22s var(--ease-out);
  position: relative;
  white-space: nowrap;
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--highlight);
  color: var(--white);
}
.btn-accent:hover {
  background: #e04400;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,77,0,0.3);
}
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

.btn-arrow::after {
  content: '→';
  transition: transform 0.2s var(--ease-out);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ======= NAV ======= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s var(--ease-out);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Dark pill wraps the white logo so it's visible on white nav */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  border-radius: var(--r-full);
  padding: 6px 18px 6px 12px;
  transition: background 0.2s;
}
.nav-logo:hover { background: var(--ink-2); }
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  /* White-on-transparent logo: shows white text on the dark pill bg */
  transition: opacity 0.2s;
}
.nav-logo-img:hover { opacity: 0.85; }

/* ======= NAV BRAND WORDMARK ======= */
.nav-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
/* "Picaro" — Cormorant Garamond italic: refined, editorial, premium */
.nav-brand-picaro {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
  transition: color 0.2s;
}
/* "Studio" — DM Sans light, tight uppercase tracking: clean counterpoint */
.nav-brand-studio {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-4);
  line-height: 1;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-brand:hover .nav-brand-picaro { color: var(--ink-2); }
.nav-brand:hover .nav-brand-studio  { color: var(--ink-3); }

/* ======= NAV LOGO IMAGE ======= */
.nav-logo-img-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img-only {
  height: 38px;
  width: auto;
  display: block;
  border-radius: 6px;
  transition: opacity 0.2s;
}
.nav-logo-img-only:hover { opacity: 0.85; }

/* ======= NAV WORDMARK (text logo) ======= */
.nav-wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-wordmark-text {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0;
}
/* The letter i — hidden standard dot, replaced with pink triangle via ::after */
.nav-wordmark-i {
  display: inline-block;
  position: relative;
  font-style: normal;
  /* Hide the default dot via text-indent trick — use a dotless-i */
}
/* Pink dot above the i */
.nav-wordmark-i::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid #e040fb;
}
.nav-wordmark-studio {
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  margin-left: 6px;
  align-self: center;
}
.footer-logo-img {
  height: 192px;
  width: auto;
  display: block;
  /* White logo on transparent bg — perfect on dark footer */
  opacity: 1;
  margin-bottom: 16px;
}
.footer-logo-link {
  display: inline-block;
  line-height: 0;
}
/* Override — footer logo link should have no pill background */
.footer-logo {
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: inline-block;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--ink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
}
.logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* ======= FOUNDER SECTION ======= */
.founder-section {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.founder-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,77,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.founder-photo-wrap {
  position: relative;
}
/* Smart frame — shows face and upper body, not full-length */
.founder-photo-frame {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Top-center crop shows face and shoulders from the portrait */
  object-position: center 8%;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.founder-photo-frame:hover .founder-photo { transform: scale(1.04); }
.founder-photo-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: 14px 20px;
}
.founder-photo-badge-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.founder-photo-badge-title {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.founder-content {
  color: #fff;
}
.founder-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 20px;
}
.founder-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.3;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.founder-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}
.founder-vision-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.founder-vision-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.founder-vision-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--highlight);
  flex-shrink: 0;
  margin-top: 8px;
}
.founder-vision-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.founder-sig {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.founder-sig-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.founder-sig-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.founder-sig-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid rgba(255,255,255,0.15);
}
/* Founder signature circle — initials fallback */
.founder-sig-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
/* Team founder card — photo avatar cropped to face */
.team-card-founder .team-founder-av {
  width: 48px;
  height: 48px;
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1.5px solid var(--border-dark);
}
.team-founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-3);
  border-radius: var(--r-full);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ink);
  background: var(--off-white);
}
.nav-links .nav-cta {
  background: var(--ink);
  color: var(--white);
  padding: 9px 20px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--ink-2); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.2s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ======= HERO ======= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: rgba(255,77,0,0.06);
  top: -100px; right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: rgba(26,86,219,0.05);
  bottom: 0; left: -80px;
  animation: orbFloat2 15s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-30px, 40px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.97); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s var(--ease-out) both;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--highlight);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.hero-eyebrow-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  animation: fadeUp 0.7s var(--ease-out) 0.1s both;
}
.hero h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink-3);
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-3);
  max-width: 560px;
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 48px;
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease-out) 0.3s both;
}
.hero-proof {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease-out) 0.5s both;
}
.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-proof-icon {
  width: 40px; height: 40px;
  border-radius: var(--r);
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.hero-proof-label { font-size: 0.82rem; color: var(--ink-4); line-height: 1.4; }
.hero-proof-label strong { color: var(--ink); font-weight: 600; display: block; }

/* ======= HERO CAROUSEL ======= */
.hero-carousel {
  position: relative;
  min-height: 220px;
  margin-bottom: 24px;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.hero-slide h1 {
  animation: none;
}
.hero-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
}
.hero-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--border-dark);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active {
  background: var(--ink);
  width: 44px;
}

/* ======= MARQUEE ======= */
.marquee-section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.marquee-item::after {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--border-dark);
}

/* ======= WHO WE SERVE ======= */
.serve-section { background: var(--white); }
.serve-header {
  max-width: 700px;
  margin-bottom: 64px;
}
.serve-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}
.serve-header p {
  font-size: 1.05rem;
  color: var(--ink-3);
  line-height: 1.7;
}
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.serve-card {
  background: var(--white);
  padding: 40px 36px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.serve-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.serve-card:hover::before { transform: scaleX(1); }
.serve-card:hover { background: var(--off-white); }

.serve-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 12px;
}
.serve-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.serve-desc {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.7;
  margin-bottom: 24px;
}
.serve-pain-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.serve-pain {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.5;
}
.serve-pain::before {
  content: '—';
  color: var(--ink-4);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ======= WHY SECTION ======= */
.why-section { background: var(--ink); color: var(--white); }
.why-section .label { color: rgba(255,255,255,0.4); }
.why-section h2 { color: var(--white); }

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.why-header h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.why-header-right {
  padding-bottom: 4px;
}
.why-header-right p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.why-card {
  background: rgba(255,255,255,0.03);
  padding: 40px;
  transition: background 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.07); }
.why-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  margin-bottom: 24px;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.why-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ======= NUMBERS ======= */
.numbers-section {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.number-item {
  padding: 20px 32px;
  border-right: 1px solid var(--border);
}
.number-item:last-child { border-right: none; }
.number-value {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.number-label {
  font-size: 0.82rem;
  color: var(--ink-4);
  line-height: 1.4;
}

/* ======= CAPABILITIES ======= */
.cap-section { background: var(--white); }
.cap-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.cap-item {
  background: var(--white);
  padding: 0;
  transition: all 0.3s var(--ease-out);
  overflow: hidden;
}
.cap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px;
  cursor: pointer;
  user-select: none;
}
.cap-header:hover { background: var(--off-white); }
.cap-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cap-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-4);
  width: 28px;
  flex-shrink: 0;
}
.cap-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.cap-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--ink-3);
}
.cap-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: all 0.25s;
}
.cap-item.open .cap-toggle {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: rotate(45deg);
}
.cap-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.cap-item.open .cap-body { max-height: 500px; }
.cap-body-inner {
  padding: 0 40px 36px 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.cap-desc {
  font-size: 0.92rem;
  color: var(--ink-3);
  line-height: 1.75;
}
.cap-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cap-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-3);
}
.cap-feature-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 1px solid rgba(10,124,78,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.55rem;
  color: var(--green);
  margin-top: 2px;
}

/* ======= CASE STUDY ======= */
.cs-section { background: var(--off-white); }
.cs-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cs-visual {
  background: var(--ink);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.cs-visual-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,77,0,0.12), transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(26,86,219,0.1), transparent 60%);
}
.cs-visual-content { position: relative; z-index: 1; }
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.cs-visual h3 {
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.cs-visual-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.cs-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r);
  overflow: hidden;
}
.cs-metric {
  background: rgba(255,255,255,0.04);
  padding: 16px 14px;
  text-align: center;
}
.cs-metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.cs-metric-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  line-height: 1.3;
}
.cs-content {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs-client { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 12px; }
.cs-content h4 { font-size: 1.5rem; letter-spacing: -0.03em; margin-bottom: 20px; }
.cs-content p { font-size: 0.92rem; color: var(--ink-3); line-height: 1.75; margin-bottom: 28px; }
.cs-outcome {
  background: var(--green-soft);
  border: 1px solid rgba(10,124,78,0.15);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 28px;
  line-height: 1.5;
}
.cs-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.cs-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border-dark);
  color: var(--ink-3);
}

/* ======= TESTIMONIALS ======= */
.testimonials-section { background: var(--off-white); }

.testimonials-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
/* last row of 7: 4+3 — span last 3 to fill the row evenly */
.testimonials-grid .testimonial-compact:nth-child(5) { grid-column: span 1; }

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  transition: all 0.3s var(--ease-out);
}
.testimonial-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-featured {
  padding: 36px;
}
.testimonial-compact {
  padding: 24px;
}

.testimonial-stars {
  font-size: 0.9rem;
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.testimonial-stars-sm {
  font-size: 0.72rem;
  color: #f59e0b;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-2);
  font-style: italic;
  margin-bottom: 28px;
  flex: 1;
}
.testimonial-quote-sm {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--ink-2);
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-author-sm {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.testimonial-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.testimonial-av-sm {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1.5px solid var(--border-dark);
  color: var(--ink-3);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.testimonial-title {
  font-size: 0.78rem;
  color: var(--ink-3);
}
.testimonial-sector {
  font-size: 0.7rem;
  color: var(--highlight);
  font-weight: 600;
  margin-top: 3px;
}
.testimonial-name-sm {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.testimonial-company-sm {
  font-size: 0.7rem;
  color: var(--ink-4);
}

/* ======= TESTIMONIALS SLIDER ======= */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}
/* Track: flex row, width = number-of-slides × 100% of slider */
.testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  /* JS sets each slide to slider.offsetWidth px; track width auto-expands */
}
/* Each slide must be exactly the slider container width — set by JS */
.testimonial-slide {
  flex: 0 0 auto;   /* never shrink/grow — JS controls exact px width */
  box-sizing: border-box;
  /* DO NOT set width/min-width here — JS overrides with slider.offsetWidth */
}
.testimonials-row3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 4px;
  width: 100%;
  box-sizing: border-box;
}
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonials-prev,
.testimonials-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  background: var(--white);
  color: var(--ink);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  line-height: 1;
  padding-bottom: 2px;
}
.testimonials-prev:hover,
.testimonials-next:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.testimonials-dots {
  display: flex;
  gap: 8px;
}
.testimonials-dot {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--border-dark);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.testimonials-dot.active {
  background: var(--ink);
  width: 48px;
}

/* ======= PROCESS ======= */
.process-section { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 14%;
  right: 14%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step { padding: 0 24px; position: relative; z-index: 1; }
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  transition: all 0.3s;
}
.process-step:hover .process-num {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: scale(1.1);
}
.process-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.process-desc { font-size: 0.85rem; color: var(--ink-3); line-height: 1.65; }

/* ======= PAGE HERO ======= */
.page-hero {
  padding: 160px 0 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 100%, black 0%, transparent 80%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--ink-3);
  max-width: 580px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-4);
  margin-bottom: 28px;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--ink); }

/* ======= ABOUT SECTION ======= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink);
  padding: 48px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.about-visual-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(255,77,0,0.1), transparent 60%),
              radial-gradient(ellipse at 100% 100%, rgba(26,86,219,0.08), transparent 60%);
}
.about-visual-content { position: relative; z-index: 1; }
.about-manifesto {
  font-size: 1.8rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.about-visual-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.about-visual-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.about-visual-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.about-text h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); margin-bottom: 24px; }
.about-text p { font-size: 0.95rem; color: var(--ink-3); line-height: 1.8; margin-bottom: 20px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.3s var(--ease-out);
}
.team-card:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-initials {
  width: 48px; height: 48px;
  border-radius: var(--r);
  background: var(--off-white);
  border: 1.5px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.team-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.75rem; color: var(--highlight); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 0.82rem; color: var(--ink-3); line-height: 1.6; }

/* ======= CONTACT / AI CHAT ======= */
.contact-section { background: var(--off-white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin-bottom: 20px; }
.contact-info > p { font-size: 0.95rem; color: var(--ink-3); line-height: 1.7; margin-bottom: 40px; }
.contact-meta { display: flex; flex-direction: column; gap: 0; }
.contact-meta-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-meta-item:first-child { border-top: 1px solid var(--border); }
.contact-meta-label { font-size: 0.72rem; font-weight: 600; color: var(--ink-4); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.contact-meta-value { font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.contact-meta-value.green { color: var(--green); }

/* ===== AI CHAT WINDOW ===== */
.chat-window {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.chat-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
}
.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.chat-header-info { flex: 1; }
.chat-header-name { font-size: 0.9rem; font-weight: 700; }
.chat-header-status {
  font-size: 0.72rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-header-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.chat-header-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  color: var(--ink-3);
}
.chat-messages {
  padding: 24px 28px;
  min-height: 340px;
  max-height: 340px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}
.chat-msg {
  display: flex;
  gap: 10px;
  animation: msgIn 0.35s var(--ease-out) both;
}
.chat-msg.user { flex-direction: row-reverse; }
@keyframes msgIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 2px;
}
.msg-avatar.ai { background: var(--ink); color: var(--white); }
.msg-avatar.user-av { background: var(--blue-soft); color: var(--blue); border: 1px solid rgba(26,86,219,0.2); }
.msg-bubble {
  max-width: 78%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.chat-msg.ai .msg-bubble {
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--ink);
  border-top-left-radius: 4px;
}
.chat-msg.user .msg-bubble {
  background: var(--ink);
  color: var(--white);
  border-top-right-radius: 4px;
}
.chat-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  border-top-left-radius: 4px;
  width: fit-content;
}
.typing-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-4);
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-input-area {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.chat-input-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.chat-input {
  flex: 1;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--ink);
  resize: none;
  min-height: 46px;
  max-height: 120px;
  transition: border-color 0.2s;
  line-height: 1.5;
}
.chat-input:focus { outline: none; border-color: var(--ink); background: var(--white); }
.chat-input::placeholder { color: var(--ink-5); }
.chat-send-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
  flex-shrink: 0;
}
.chat-send-btn:hover { background: var(--ink-2); transform: scale(1.05); }
.chat-send-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.chat-hint {
  font-size: 0.68rem;
  color: var(--ink-5);
  margin-top: 8px;
  text-align: center;
}

.chat-summary {
  margin: 16px 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  display: none;
}
.chat-summary.show { display: block; animation: msgIn 0.4s var(--ease-out) both; }
.summary-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.summary-header::before {
  content: '✦';
  color: var(--highlight);
}
.summary-text {
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.7;
}
.summary-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ======= FAQ ======= */
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: var(--r-lg); overflow: hidden; }
.faq-item { background: var(--white); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--off-white); }
.faq-q-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.25s;
  color: var(--ink-3);
}
.faq-item.open .faq-q-icon {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 32px 24px 32px;
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.75;
}

/* ======= CTA BAND ======= */
.cta-band {
  background: var(--ink);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.cta-band-orb-1 {
  width: 500px; height: 500px;
  background: rgba(255,77,0,0.08);
  top: -100px; left: -100px;
}
.cta-band-orb-2 {
  width: 400px; height: 400px;
  background: rgba(26,86,219,0.06);
  bottom: -80px; right: -60px;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band .label { color: rgba(255,255,255,0.4); }
.cta-band h2 {
  font-size: clamp(2rem,4.5vw,3.8rem);
  color: var(--white);
  margin: 16px 0 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.cta-band-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.5); color: var(--white); transform: translateY(-2px); }

/* ======= FOOTER ======= */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo { color: var(--white); margin-bottom: 16px; }
.footer-logo .logo-mark { background: var(--white); color: var(--ink); }
.footer-logo .logo-text { color: var(--white); }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.35); line-height: 1.6; margin-bottom: 20px; max-width: 260px; }
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: rgba(34,197,94,0.8);
  padding: 5px 12px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: var(--r-full);
}
.footer-status::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulseDot 2s ease-in-out infinite;
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.footer-links-list { display: flex; flex-direction: column; gap: 10px; }
.footer-links-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links-list a:hover { color: var(--white); }
.footer-email {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer-locations { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-bottom: 20px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-build { font-size: 0.72rem; color: rgba(255,255,255,0.18); }

/* ======= ANIMATION UTILITIES ======= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ======= LINE DRAW ANIMATION ======= */
.draw-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.5s var(--ease-out);
}
.draw-line.visible { stroke-dashoffset: 0; }

/* ======= HOVER CARDS ======= */
.hover-lift { transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out); }
.hover-lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ======= DIVIDER ======= */
.divider { height: 1px; background: var(--border); }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .why-header { grid-template-columns: 1fr; gap: 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }
  .number-item:nth-child(3) { border-top: 1px solid var(--border); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .cs-card { grid-template-columns: 1fr; }
  .cs-visual { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .cap-body-inner { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-photo-frame { max-width: 360px; margin: 0 auto; }
  .testimonials-featured { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-row3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .hero h1 { font-size: 2.8rem; }
  .serve-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cap-body-inner { padding: 0 20px 28px 20px; }
  .testimonials-featured { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-row3 { grid-template-columns: 1fr; }
  .hero-carousel { min-height: 280px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--white);
    gap: 8px;
    z-index: 90;
    padding: 32px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; padding: 12px 24px; }
  .nav-toggle { display: flex; z-index: 101; position: relative; }
  .hero-proof { flex-direction: column; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 60px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .cap-header { padding: 24px 20px; }
  .why-card { padding: 28px 24px; }
  .cs-visual { padding: 36px 28px; }
  .cs-content { padding: 36px 28px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
}
