:root {
  --bg: #fafaf8;
  --bg-elev: #efeeeb;
  --bg-card: rgba(255, 255, 255, 1);
  --bg-card-strong: rgba(255, 255, 255, 1);
  --border: #ddd9d3;
  --border-soft: #ddd9d3;
  --border-glass: #ddd9d3;
  --text: #1a1a1a;
  --text-dim: #000000;
  --text-mute: #777777;
  --accent: #1a1a1a;
  --accent-warm: #1a1a1a;
  --glass-shadow: 0 4px 8px rgba(0,0,0,0.05), 0 20px 48px rgba(0,0,0,0.09);
  --glass-shadow-lg: 0 4px 8px rgba(0,0,0,0.05), 0 20px 48px rgba(0,0,0,0.09);
  --font: 'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

a, button, input, select, textarea { touch-action: manipulation; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

/* === GLOBAL BACKGROUND === */
.glass-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: #fafaf8;
}
.glass-bg::before,
.glass-bg::after,
.glass-bg .orb {
  display: none;
}
.glass-bg .orb-3,
.glass-bg .orb-4 {
  display: none;
}

.glass-bg-grain {
  display: none;
}

::selection { background: var(--text); color: #ffffff; }

.container { max-width: 1300px; margin: 0 auto; padding: 0; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 64px; }

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 72px;
  padding: 0 5%;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: #ddd9d3;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.logo { font-family: 'Space Grotesk', var(--font); font-size: 20px; font-weight: 700; letter-spacing: -0.03em; text-decoration: none; color: var(--text); }
.logo em { color: var(--accent); font-weight: 700; font-style: normal; }
.logo .logo-tag { font-weight: 700; color: var(--text); margin-left: 6px; letter-spacing: -0.03em; }

.nav-links {
  display: flex; gap: 32px;
  list-style: none; font-size: 16px; font-weight: 500;
  margin: 0; padding: 0;
}
.nav-links a { color: var(--text-dim); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px; font-weight: 600;
  color: #ffffff; background: #000000;
  padding: 5px 5px 5px 20px; border-radius: 100px; min-height: 44px;
  text-decoration: none; transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.25);
}
.nav-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #ffffff;
  border-radius: 50%;
  color: #1a1a1a;
  transition: transform 0.3s;
}
.nav-cta:hover {
  background: #333333;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.3);
}
.nav-cta:hover .nav-cta-icon {
  transform: scale(1.08);
}

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s;
}
.hamburger:hover {
  background: rgba(0, 0, 0, 0.04);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}
/* Hamburger -> X animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu — drops down from nav */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #ddd9d3;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.1);
  z-index: 49;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0.3s;
  padding: 24px 0 32px;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu-links a {
  display: block;
  padding: 14px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  border-bottom: 1px solid #ddd9d3;
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:active {
  color: var(--accent);
  padding-left: 6px;
}
.mobile-menu-cta {
  display: block;
  text-align: center;
  background: #000000;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
  margin-top: 8px;
}
.mobile-menu-cta:hover {
  background: #333333;
  transform: translateY(-2px);
}

/* Overlay behind dropdown */
.mobile-menu-overlay {
  position: fixed;
  inset: 64px 0 0 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 48;
}
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Show hamburger / hide nav-links + nav-cta on tablet & smaller */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  nav { height: 64px; }
}

/* === HERO === */
.hero {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(100px, 14vw, 140px) 5% clamp(20px, 3vw, 40px);
  min-height: 85dvh;
}

/* Animated mesh gradient background — kept hidden in glass mode (global orbs in body do the work) */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  display: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  pointer-events: none;
  will-change: transform;
}
.blob-1 {
  width: 600px; height: 600px;
  background: #ddd9d3;
  top: -150px; left: -150px;
  animation: drift1 22s ease-in-out infinite;
}
.blob-2 {
  width: 700px; height: 700px;
  background: #d0d0d0;
  bottom: -250px; right: -200px;
  animation: drift2 26s ease-in-out infinite;
  opacity: 0.4;
}
.blob-3 {
  width: 500px; height: 500px;
  background: #c0c0c0;
  top: 20%; right: 10%;
  animation: drift3 20s ease-in-out infinite;
  opacity: 0.5;
}
.blob-4 {
  width: 450px; height: 450px;
  background: var(--accent);
  bottom: 10%; left: 30%;
  animation: drift4 28s ease-in-out infinite;
  opacity: 0.2;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(120px, 80px) scale(1.15); }
  66% { transform: translate(60px, 150px) scale(0.9); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-100px, -120px) scale(1.1); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-150px, 100px) scale(0.85); }
}
@keyframes drift4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(180px, -80px) scale(1.2); }
}

/* Subtle grain over the mesh */
.hero-bg::after {
  content: '';
  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.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: center;
}
.hero-text { text-align: left; min-width: 0; }
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 56px; }
  .hero-text { text-align: left; max-width: 640px; margin: 0; }
  .hero-ctas { justify-content: flex-start; }
  .hero-proof { align-items: flex-start; }
  .hero-graphic { margin: 0 auto; }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  background: #f2f1ee;
  border: 1px solid #ddd9d3;
  padding: 8px 18px;
  border-radius: 8px;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}

.mobile-br { display: none; }
.hero h1 {
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: clamp(16px, 2vw, 24px);
  animation: fadeUp 1s ease 0.4s both;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .desktop-br { display: none; }
  .mobile-br { display: inline; }
  .hero h1 { font-size: 40px; }
}
.hero h1 em {
  font-style: normal;
  font-weight: 500;
  color: #1a1a1a;
}

.hero p.lead {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 0 clamp(24px, 3vw, 36px);
  line-height: 1.55;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.8s both;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  animation: fadeUp 1s ease 1s both;
}
.hero-proof-faces {
  display: flex;
}
.proof-face {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}
.proof-face:first-child {
  margin-left: 0;
}
.hero-proof-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.proof-rating {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.proof-rating strong {
  font-weight: 600;
}
.proof-stars {
  color: #1a1a1a;
  letter-spacing: 1px;
}
.proof-sub {
  font-size: 13px;
  color: var(--text-mute);
}
.hero-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  align-self: center;
  padding: 12px 0;
}
.hero-link:hover {
  color: var(--accent);
}
.hero-trust {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-mute);
  animation: fadeUp 1s ease 1.1s both;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 6px 6px 24px;
  background: #000000;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.25);
}
.btn-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  color: #1a1a1a;
  transition: transform 0.3s;
}
.btn-pill:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.3);
}
.btn-pill:hover .btn-pill-icon {
  transform: scale(1.08);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: #000000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.25);
}
.btn-primary:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: #ffffff;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid #ddd9d3;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: #f2f1ee;
  transform: translateY(-2px);
}

/* === Hero Graphic: Analytics Card === */
.hero-graphic {
  position: relative;
  width: 100%;
  max-width: 514px;
  margin-left: auto;
  animation: fadeUp 1.2s ease 0.7s both;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: 77%;
  max-height: 690px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.hg-glow {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ddd9d3;
  border-radius: 999px 999px 300px 300px;
  z-index: 0;
  pointer-events: none;
}

/* Dark Comparison Card */
.dark-comparison {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: fit-content;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #ddd9d3;
  padding: 28px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  box-shadow: var(--glass-shadow);
  animation: dashFloat 9s ease-in-out infinite;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  will-change: transform;
}
.dark-comparison.tilting {
  animation: none;
  transition: transform 0.1s ease-out, box-shadow 0.4s ease;
}
.dark-comparison.tilting:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.08), 0 24px 56px rgba(0,0,0,0.12);
}

/* Specular highlight that follows the cursor */
.dark-comparison.tilting::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 200px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.3),
    transparent 40%
  );
  border-radius: 28px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  mix-blend-mode: overlay;
}
.dark-comparison.tilting:hover::after {
  opacity: 1;
}

@keyframes dashFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.dark-comparison::before {
  display: none;
}

/* Header */
.dc-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid #ddd9d3;
  position: relative;
  z-index: 1;
}

.dc-header-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.3);
}

.dc-header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.dc-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.dc-subtitle {
  font-size: 13px;
  color: #666666;
  font-weight: 500;
}

/* Rows */
.dc-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.dc-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  background: #f2f1ee;
  border: 1px solid #ddd9d3;
  border-radius: 8px;
  transition: all 0.3s ease;
  animation: rowFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.dc-row:nth-child(1) { animation-delay: 0.5s; }
.dc-row:nth-child(2) { animation-delay: 0.65s; }
.dc-row:nth-child(3) { animation-delay: 0.85s; }

@keyframes rowFadeIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

.dc-row:hover {
  background: #eeeeee;
  border-color: #ccc;
}

.dc-row-active {
  background: #000000;
  border-color: #000000;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.2);
  position: relative;
}
.dc-row-active .dc-num,
.dc-row-active .dc-label {
  color: #ffffff;
}

.dc-row-active:hover {
  background: #111111;
}

.dc-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.dc-label {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.dc-meta {
  font-size: 13px;
  font-weight: 600;
  color: #666666;
}

.dc-row-active .dc-meta {
  color: #ffffff;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Stats footer */
.dc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #ddd9d3;
  text-align: center;
  position: relative;
  z-index: 1;
}

.dc-stat-num {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.dc-stat-num.accent {
  color: var(--accent);
}

.dc-stat-label {
  font-size: 11px;
  color: #666666;
  font-weight: 500;
}

/* Floating pill (Image 1 style — bottom-left, dark, with green icon) */
.float-pill-bl {
  position: absolute;
  top: -14px;
  right: -12px;
  background: #ffffff;
  border: 1px solid #ddd9d3;
  padding: 10px 18px 10px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  box-shadow: var(--glass-shadow);
  animation: pillFloatB 6s ease-in-out infinite;
}

@keyframes pillFloatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.fp-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.3);
}

.float-pill-bl .fp-text .t1 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1;
}

.float-pill-bl .fp-text .t2 {
  font-size: 11px;
  color: #666666;
  font-weight: 500;
  margin-top: 3px;
}

/* Hero Graphic responsive */
.hero-graphic {
  width: 100%;
}
@media (max-width: 1024px) {
  .hero-graphic {
    max-width: 540px;
    aspect-ratio: 1 / 0.85;
  }
}

@media (max-width: 640px) {
  .hero-graphic {
    max-width: 370px;
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
  }
  .hero-photo {
    width: 74%;
  }
  .dark-comparison {
    position: relative;
    inset: auto;
    padding: 20px 18px;
    border-radius: 20px;
  }
  .dc-header { gap: 12px; padding-bottom: 14px; margin-bottom: 12px; }
  .dc-header-icon { width: 40px; height: 40px; border-radius: 8px; }
  .dc-header-icon svg { width: 18px; height: 18px; }
  .dc-title { font-size: 17px; }
  .dc-subtitle { font-size: 12px; }
  .dc-rows { gap: 6px; margin-bottom: 14px; }
  .dc-row { padding: 11px 14px; grid-template-columns: 24px 1fr auto; gap: 10px; }
  .dc-num { font-size: 12px; }
  .dc-label { font-size: 13px; }
  .dc-meta { font-size: 12px; }
  .dc-row-active .dc-meta { font-size: 10px; padding: 3px 8px; }
  .dc-stats { padding-top: 14px; gap: 8px; }
  .dc-stat-num { font-size: 17px; }
  .dc-stat-label { font-size: 10px; }

  .float-pill-bl {
    top: -10px;
    right: 8px;
    padding: 7px 12px 7px 7px;
  }
  .fp-icon-circle { width: 28px; height: 28px; }
  .fp-icon-circle svg { width: 13px; height: 13px; }
  .float-pill-bl .fp-text .t1 { font-size: 12px; }
  .float-pill-bl .fp-text .t2 { font-size: 10px; }
}

@media (max-width: 380px) {
  .dark-comparison { padding: 18px 16px; }
  .dc-title { font-size: 15px; }
  .dc-row { padding: 10px 12px; }
  .dc-label { font-size: 12.5px; }
  .dc-meta { font-size: 11px; }
  .dc-stat-num { font-size: 15px; }
}

/* Scroll indicator removed */

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === LOGO STRIP === */
.logo-strip {
  padding: 48px 0;
  position: relative;
  background: transparent;
}
.logo-eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 40px;
}
.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
  -webkit-mask-image: linear-gradient(to right, transparent max(0px, calc(50% - 640px)), black max(24px, calc(50% - 600px)), black min(calc(100% - 24px), calc(50% + 600px)), transparent min(100%, calc(50% + 640px)));
  mask-image: linear-gradient(to right, transparent max(0px, calc(50% - 640px)), black max(24px, calc(50% - 600px)), black min(calc(100% - 24px), calc(50% + 600px)), transparent min(100%, calc(50% + 640px)));
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 120px;
  width: max-content;
  padding: 0 40px;
  animation: logoScroll 40s linear infinite;
}
.logo-track:hover {
  animation-play-state: paused;
}
@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
}
.logo-item img {
  width: auto;
  max-height: 40px;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: brightness(0);
  opacity: 1;
  transition: opacity 0.3s ease;
}
/* Svalehus is shorter than other wide logos so it appears closer in size */
.logo-item img[alt="Svalehus"] { max-height: 18px; max-width: 90px; }
.logo-item img[alt="BlackLogo"] { max-height: 28px; max-width: 140px; }
.logo-item img[alt="Group32"]  { max-height: 28px; max-width: 30px; }
.logo-item:hover img {
  opacity: 1;
}

@media (max-width: 768px) {
  .logo-track { gap: 60px; padding: 0 16px; animation-duration: 30s; }
  .logo-item img { max-height: 36px; max-width: 160px; }
  .logo-item img[alt="Svalehus"] { max-height: 18px; max-width: 85px; }
  .logo-item img[alt="BlackLogo"] { max-height: 26px; max-width: 130px; }
  .logo-item img[alt="Group32"]  { max-height: 26px; max-width: 28px; }
  .logo-eyebrow { font-size: 11px; margin-bottom: 28px; }
}

/* === SECTIONS (CENTERED, STACKED) === */
section {
  padding: 112px 5%;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 72px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.section-title {
  font-weight: 500;
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  color: #1a1a1a;
  font-weight: 500;
}

.section-sub {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* === PROBLEM SECTION === */
.problem {
  background: transparent;
}
.problem-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.problem-header-left .section-eyebrow {
  margin-bottom: 20px;
}
.problem-header-left .section-title {
  margin-bottom: 0;
}
.problem-header-left .section-title em {
  color: #1a1a1a;
}
.problem-header-right {
  display: flex;
  align-items: flex-end;
}
.problem-header-right p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.65;
}
.problem-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #ddd9d3;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}
.problem-card {
  padding: 36px 32px;
  border-right: 1px solid #ddd9d3;
}
.problem-card:last-child {
  border-right: none;
}
.problem-num {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 20px;
  display: block;
}
.problem-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .problem-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .problem-header-left .section-title {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .problem-grid-wrap {
    grid-template-columns: 1fr;
  }
  .problem-card {
    border-right: none;
    border-bottom: 1px solid #ddd9d3;
    padding: 28px 24px;
  }
  .problem-card:last-child {
    border-bottom: none;
  }
}

/* === SOLUTION / TWO TIER === */
.solution {
  background: transparent;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.solution-card {
  background: #ffffff;
  border: 1px solid #ddd9d3;
  border-radius: 20px;
  padding: 48px 40px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
}
.solution-card-featured {
  background: #000000;
  border: 1px solid #000000;
}
.solution-card-featured .solution-tier,
.solution-card-featured h3,
.solution-card-featured .solution-desc,
.solution-card-featured .solution-includes li {
  color: #ffffff;
}
.solution-card-featured .solution-includes li::before {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}
.solution-card-featured .solution-includes {
  border-top-color: rgba(255, 255, 255, 0.15);
}
.solution-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 24px;
  width: fit-content;
}
.solution-tier {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.solution-card h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.solution-desc {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 32px;
}
.solution-includes {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  border-top: 1px solid #ddd9d3;
  flex: 1;
}
.solution-includes li {
  font-size: 15px;
  color: var(--text-dim);
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.solution-includes li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border: 1px solid #ddd9d3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  color: var(--text);
}
.solution-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 9px 9px 22px;
  background: #ffffff;
  border: 1px solid #ddd9d3;
  border-radius: 100px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}
.solution-cta:hover {
  border-color: #000000;
}
.solution-cta-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.solution-cta-primary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.solution-cta-primary:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
.solution-cta-primary .solution-cta-icon {
  background: #ffffff;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { padding: 36px 28px; border-radius: 20px; }
  .solution-card h3 { font-size: 24px; }
}

/* === CASE STUDIES === */
.case-studies {
  background: transparent;
}
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.case-study-card {
  background: #ffffff;
  border: 1px solid #ddd9d3;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08), 0 24px 56px rgba(0,0,0,0.12);
}
.case-study-image {
  aspect-ratio: 16 / 9;
  background: #f2f1ee;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.case-study-image::before {
  display: none;
}
.case-study-placeholder {
  color: var(--accent);
  opacity: 0.3;
  z-index: 1;
}
.case-study-content {
  padding: 24px 24px 28px;
}
.case-study-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.case-study-content h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.case-study-content p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}
.case-study-stats {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid #ddd9d3;
}
.case-study-stat {
  flex: 1;
}
.case-study-stat-num {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.case-study-stat-label {
  font-size: 11px;
  color: var(--text-mute);
  font-weight: 500;
}
.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.case-study-link:hover {
  opacity: 0.7;
}
.case-study-link--soon {
  color: var(--text-mute);
  text-decoration: none;
  cursor: default;
}

/* Honeypot field — off-screen for humans, visible to bots */
.form-row--hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.case-study-link--soon:hover {
  opacity: 1;
}
@media (max-width: 1024px) {
  .case-study-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .case-study-grid { grid-template-columns: 1fr; }
  .case-study-card { max-width: 480px; margin: 0 auto; width: 100%; }
}

/* === THE FIT (WHO THIS IS FOR) === */
.the-fit {
  background: transparent;
}
.fit-industries {
  max-width: 940px;
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}
.fit-industries-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mute);
}
.fit-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.fit-chip {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  transition: border-color 0.3s, transform 0.3s;
}
.fit-chip:hover {
  border-color: var(--text-mute);
  transform: translateY(-2px);
}

.fit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}
.fit-col {
  background: #ffffff;
  border: 1px solid #ddd9d3;
  border-radius: 16px;
  padding: 48px 44px;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.fit-col-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.fit-col-header h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.fit-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fit-col-yes {
  background: #ffffff;
  border-width: 2px;
  border-color: #1a1a1a;
  padding: 47px 43px;
}
.fit-col-no {
  background: #ffffff;
  border-color: #ddd9d3;
}
.fit-col-no .fit-list li {
  color: var(--text-dim);
}
.fit-icon-yes {
  background: #1a1a1a;
  color: #ffffff;
}
.fit-icon-no {
  background: #ece9e4;
  color: #8a857d;
}
.fit-col-yes:hover {
  border-color: #000000;
}
.fit-col-no:hover {
  border-color: #c9c4bc;
}
.fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  flex: 1;
}
.fit-list li {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.55;
  padding-left: 34px;
  position: relative;
}
.fit-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 600;
  font-size: 14px;
}
.fit-col-yes .fit-list li::before {
  content: '✓';
  color: #1a1a1a;
}
.fit-col-no .fit-list li::before {
  content: '✕';
  color: #a8a39b;
}
@media (max-width: 768px) {
  .fit-columns { grid-template-columns: 1fr; }
  .fit-col { padding: 32px 26px; border-radius: 16px; }
}

/* === BOOK A CALL PAGE === */
.book-page {
  padding: 160px 0 96px;
  background: transparent;
}
.book-page .section-head {
  margin-bottom: 40px;
}
.book-page-title {
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.book-page-title em {
  font-style: normal;
  font-weight: 500;
}
.book-cal-wrap {
  max-width: 1080px;
  margin: 0 auto;
  min-height: 720px;
}
.book-cal-wrap iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: none;
}
@media (max-width: 768px) {
  .book-page { padding: 128px 0 64px; }
  .book-cal-wrap iframe { min-height: 640px; }
}

/* === ABOUT === */
.about {
  background: transparent;
  position: relative;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.about-text .section-eyebrow {
  margin-bottom: 20px;
}
.about-heading {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.about-heading em {
  font-style: normal;
  font-weight: 500;
  color: #1a1a1a;
}
.about-text p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #efeeeb;
  border-radius: 20px;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 4;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.about-tag {
  padding: 8px 20px;
  border: 1px solid #ddd9d3;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { max-width: 400px; margin: 0 auto; }
  .about-text { text-align: left; }
  .about-tags { justify-content: flex-start; }
  .about-link { display: inline-block; text-align: left; }
}

/* === PORTFOLIO === */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.project-card {
  background: #ffffff;
  border: 1px solid #ddd9d3;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
  box-shadow: var(--glass-shadow);
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08), 0 24px 56px rgba(0,0,0,0.12);
}
.project-visual {
  aspect-ratio: 16/10;
  background: #f2f1ee;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-visual::before {
  display: none;
}
.project-visual span {
  font-size: 56px;
  font-weight: 600;
  font-style: italic;
  color: var(--accent);
  opacity: 0.5;
  z-index: 1;
  letter-spacing: -0.04em;
}
.project-meta {
  padding: 24px 28px;
}
.project-meta h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.project-meta p {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}
@media (max-width: 800px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* === TESTIMONIALS === */
.testimonials {
  background: transparent;
  overflow: hidden;
}
.testimonial-slider {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  overflow: visible;
}
.testimonial-track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: transform 0.4s ease;
  overflow: visible;
}
.testimonial {
  flex: 0 0 554px;
  min-width: 0;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #ddd9d3;
  border-radius: 16px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.testimonial-dots {
  display: flex;
  gap: 8px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd9d3;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.testimonial-dot.active {
  background: #000000;
}
.testimonial-nav {
  display: flex;
  gap: 12px;
}
.testimonial-prev,
.testimonial-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ddd9d3;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--text);
}
.testimonial-prev:hover,
.testimonial-next:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.stars {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-style: italic;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info p:first-child {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.author-info p:last-child {
  font-size: 12px;
  color: var(--text-mute);
}
@media (max-width: 900px) {
  .testimonial { padding: 32px 24px; }
}
@media (max-width: 900px) {
  .testimonial-track { gap: 0; }
  .testimonial { flex: none; width: 100%; }
  .testimonial-slider { overflow: hidden; }
  .testimonial-controls { margin-top: 24px; }
}

/* === PROCESS === */
.process {
  background: transparent;
}
.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}
.process-title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.process-title em {
  font-style: normal;
  font-weight: 500;
  color: #1a1a1a;
}
.process-header-right p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
}
.process-steps {
  display: flex;
  align-items: stretch;
  border: 1px solid #ddd9d3;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}
.process-step {
  flex: 1;
  padding: 36px 32px;
  position: relative;
}
.process-step + .step-arrow + .process-step {
  border-left: 1px solid #ddd9d3;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  position: relative;
  z-index: 1;
  color: var(--text-mute);
}
.step-arrow svg {
  position: absolute;
  background: var(--bg);
  border-radius: 50%;
  padding: 6px;
  width: 32px;
  height: 32px;
}
.step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #efeeeb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--text);
}
.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .process-header { grid-template-columns: 1fr; gap: 24px; }
  .process-steps { flex-direction: column; }
  .process-step + .step-arrow + .process-step { border-left: none; border-top: 1px solid #ddd9d3; }
  .step-arrow { width: 100%; height: 0; }
  .step-arrow svg { top: -16px; left: 32px; transform: rotate(90deg); }
}

/* === FAQ === */
.faq {
  background: transparent;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-left .section-eyebrow {
  margin-bottom: 20px;
}
.faq-heading {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.faq-heading em {
  font-style: normal;
  font-weight: 500;
}
.faq-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
}
.faq-list {
  margin: 0;
}
@media (max-width: 768px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.faq-item {
  border-bottom: 1px solid #ddd9d3;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary:hover { color: var(--accent); }
.faq-answer {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 640px;
}

/* === FINAL CTA === */
.final-cta {
  background: transparent;
  padding: 80px 0;
}
.final-cta-content {
  background: var(--text);
  color: #ffffff;
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-content::before {
  display: none;
}
.final-cta-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.final-cta-content h2 em {
  font-style: normal;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.final-cta-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.55;
}
.final-cta-content .btn-pill {
  margin-bottom: 20px;
}
.final-cta-content .btn-primary {
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.3);
}
.final-cta-content .btn-primary:hover {
  background: #f2f1ee;
}
.final-cta-content .btn-pill {
  background: #ffffff;
  color: #1a1a1a;
}
.final-cta-content .btn-pill .btn-pill-icon {
  background: #000000;
  color: #ffffff;
}
.final-cta-content .btn-pill:hover {
  background: #f2f1ee;
}
.final-cta-trust {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}
.final-cta-content .section-eyebrow {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .final-cta { padding: 40px 0; }
  .final-cta-content { padding: 48px 24px; border-radius: 22px; }
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.price-card {
  background: #ffffff;
  border: 1px solid #ddd9d3;
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.4s;
  position: relative;
  text-align: left;
  box-shadow: var(--glass-shadow);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08), 0 24px 56px rgba(0,0,0,0.12);
}
.price-card.featured {
  background: #f2f1ee;
  border: 1px solid #000000;
  box-shadow: var(--glass-shadow);
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--accent);
  color: var(--bg);
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
}
.price-tier {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.price-name {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.price-name em { font-style: italic; font-weight: 500; }
.price-amount {
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}
.price-amount sup {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-mute);
  margin-right: 3px;
  vertical-align: top;
  top: 10px;
  position: relative;
}
.price-period {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mute);
  margin-bottom: 28px;
}
.price-features {
  list-style: none;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid #ddd9d3;
}
.price-features li {
  font-size: 14px;
  color: var(--text-dim);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.price-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}
.price-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #ddd9d3;
  border-radius: 100px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}
.price-cta:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-1px);
}
.price-card.featured .price-cta {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.25);
}
.price-card.featured .price-cta:hover {
  background: #333333;
  border-color: #333333;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* === CONTACT === */
.contact {
  background: transparent;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #ddd9d3;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: var(--glass-shadow);
}
.form-row { margin-bottom: 22px; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row.two-col > div { margin-bottom: 0; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: #f2f1ee;
  border: 1px solid #ddd9d3;
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  padding: 13px 16px;
  transition: all 0.3s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 2px solid #000000;
  outline-offset: -1px;
  border-color: #000000;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}
.form-row textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23000000' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-submit {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 16px 40px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.25);
}
.form-submit:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.3);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Privacy checkbox */
.form-privacy { margin-bottom: 20px; }
.privacy-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-dim);
  user-select: none;
}
.privacy-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.privacy-checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 1.5px solid #ddd9d3;
  border-radius: 6px;
  background: #f2f1ee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.privacy-checkbox input:checked + .checkmark {
  background: var(--accent);
  border-color: var(--accent);
}
.privacy-checkbox input:checked + .checkmark::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.privacy-checkbox input:focus-visible + .checkmark {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.privacy-checkbox a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-checkbox a:hover { color: var(--accent); }

/* Form status messages */
.form-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
}
.form-status.success { color: #16a34a; }
.form-status.error { color: #dc2626; }

@media (max-width: 600px) {
  .contact-form { padding: 32px 24px; }
  .form-row.two-col { grid-template-columns: 1fr; gap: 0; }
  .form-row.two-col > div { margin-bottom: 22px; }
  .form-submit { width: 100%; }
}

/* === CONTACT PAGE === */
.contact-page {
  padding: 160px 0 100px;
}
.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-head {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.contact-page-title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-page-title em {
  font-style: normal;
  font-weight: 500;
  color: #1a1a1a;
}
.contact-page-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: none;
}
.contact-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-glass);
}
.contact-detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #f2f1ee;
  border-radius: 10px;
  color: #1a1a1a;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}
a.contact-detail-value:hover {
  color: var(--accent);
}
.contact-callout {
  margin-top: 32px;
  padding: 20px 24px;
  background: #f2f1ee;
  border-left: 3px solid #000000;
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
}
.contact-callout strong {
  color: var(--text);
}

/* === ABOUT PAGE === */
.about-page-hero {
  padding: clamp(120px, 14vw, 160px) 5% 112px;
}
.about-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.about-page-photo-wrap {
  border-radius: 20px;
  overflow: hidden;
}
.about-page-photo {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 20px;
}
.about-page-title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.about-page-title em {
  font-style: normal;
  font-weight: 500;
}
.about-page-lead {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
}
.about-page-story,
.about-page-how,
.about-page-skills {
  padding: 80px 5%;
  border-top: 1px solid #ddd9d3;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  max-width: 1080px;
}
.about-story-left h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.about-story-right p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-story-right p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .about-page-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-page-photo-wrap {
    max-width: 400px;
    margin: 0 auto;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* === ABOUT PAGE: CREATIVE SECTIONS === */

/* Anti-Agency Manifesto */
.about-manifesto {
  padding: 100px 5%;
  border-top: 1px solid #ddd9d3;
}
.manifesto-header {
  text-align: center;
  margin-bottom: 64px;
}
.manifesto-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.manifesto-col {
  padding: 48px 40px;
}
.manifesto-col--them {
  background: var(--bg-elev);
}
.manifesto-col--me {
  background: var(--bg-card);
}
.manifesto-col-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-bottom: 32px;
}
.manifesto-col--me .manifesto-col-label {
  color: var(--text);
}
.manifesto-item {
  font-size: 17px;
  line-height: 1.5;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-dim);
}
.manifesto-col--them .manifesto-item {
  text-decoration: line-through;
  opacity: 0.6;
}
.manifesto-col--me .manifesto-item {
  font-weight: 500;
  color: var(--text);
}
.manifesto-item:last-child {
  border-bottom: none;
}

/* Journey Timeline */
.about-journey {
  padding: 100px 5%;
  border-top: 1px solid #ddd9d3;
}
.journey-header {
  margin-bottom: 64px;
}
.journey-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.journey-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 48px;
}
.journey-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--border), var(--text));
}
.journey-item {
  position: relative;
  padding-bottom: 48px;
}
.journey-item:last-child {
  padding-bottom: 0;
}
.journey-dot {
  position: absolute;
  left: -44px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--text-mute);
  transition: border-color 0.3s, transform 0.3s;
}
.journey-item:last-child .journey-dot {
  border-color: var(--text);
  background: var(--text);
}
.journey-item:hover .journey-dot {
  border-color: var(--text);
  transform: scale(1.3);
}
.journey-year {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.journey-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.journey-desc {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* By the Numbers */
.about-numbers {
  padding: 100px 5%;
  border-top: 1px solid #ddd9d3;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.number-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.number-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow);
}
.number-value {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.number-label {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.4;
}

/* Tools / Stack Bento */
.about-tools {
  padding: 100px 5%;
  border-top: 1px solid #ddd9d3;
}
.tools-header {
  margin-bottom: 48px;
}
.tools-header h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.tools-header p {
  font-size: 17px;
  color: var(--text-dim);
  margin-top: 12px;
}
.tools-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 16px;
  max-width: 1080px;
}
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--glass-shadow);
}
.tool-card--wide {
  grid-column: span 2;
}
.tool-card-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.tool-card-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.tool-card-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* About page responsive */
@media (max-width: 900px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
  }
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tools-bento {
    grid-template-columns: 1fr 1fr;
  }
  .tool-card--wide {
    grid-column: span 2;
  }
  .journey-timeline {
    padding-left: 40px;
  }
}
@media (max-width: 600px) {
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .number-card {
    padding: 28px 20px;
  }
  .tools-bento {
    grid-template-columns: 1fr;
  }
  .tool-card--wide {
    grid-column: span 1;
  }
  .manifesto-col {
    padding: 32px 24px;
  }
}

/* === CASE STUDY PAGE === */
.cs-page-hero {
  padding: clamp(120px, 14vw, 160px) 5% 80px;
}
.cs-page-header {
  max-width: 720px;
}
.cs-page-title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cs-page-title em {
  font-style: normal;
  font-weight: 500;
}
.cs-page-sub {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.6;
}
.cs-detail {
  padding: 0 0 80px;
}
.cs-detail-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  border: 1px solid #ddd9d3;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
}
.cs-detail-image {
  aspect-ratio: 4 / 3;
  background: #f2f1ee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-detail-image .case-study-placeholder {
  color: var(--accent);
  opacity: 0.3;
}
.cs-detail-content {
  padding: 48px 48px 48px 0;
}
.cs-detail-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.cs-detail-content h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.cs-detail-stats {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid #ddd9d3;
  border-bottom: 1px solid #ddd9d3;
  margin-bottom: 32px;
}
.cs-detail-stat-num {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.cs-detail-stat-label {
  font-size: 12px;
  color: var(--text-mute);
  font-weight: 500;
}
.cs-detail-body h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  margin-top: 24px;
}
.cs-detail-body h3:first-child {
  margin-top: 0;
}
.cs-detail-body p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .cs-detail-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cs-detail-image {
    aspect-ratio: 16 / 9;
  }
  .cs-detail-content {
    padding: 28px 24px 32px;
  }
  .cs-detail-content h2 {
    font-size: 22px;
  }
  .cs-detail-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
  .cs-detail-stat {
    min-width: 0;
  }
  .cs-detail-stat-num {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .cs-detail-stats {
    flex-direction: column;
    gap: 16px;
  }
}

.form-privacy {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-mute);
}
.contact-form-wrap .contact-form {
  max-width: none;
}

@media (max-width: 768px) {
  .contact-page { padding: 120px 0 80px; }
  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-page-sub { max-width: none; }
  .contact-details {
    margin-top: 32px;
  }
}
@media (max-width: 480px) {
  .contact-page { padding: 110px 0 60px; }
  .contact-details { flex-direction: column; gap: 20px; }
  .contact-detail-item {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 20px;
  }
  .contact-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* === FOOTER === */
footer {
  background: #000000;
  color: #ffffff;
  padding: 80px 64px 40px;
  text-align: center;
}
.footer-logo {
  font-family: 'Space Grotesk', var(--font);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  display: inline-block;
  color: #ffffff;
}
.footer-logo em {
  font-style: normal;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}
.footer-logo .logo-tag {
  font-weight: 700;
  color: #ffffff;
  margin-left: 8px;
  letter-spacing: -0.04em;
}
.footer-tag {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 36px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 500;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover { color: #ffffff; }
.footer-social {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 48px;
  font-size: 14px;
  font-weight: 500;
}
.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-social a:hover { color: #ffffff; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Section head children stagger */
.section-head.reveal > *,
.problem-header.reveal > *,
.process-header.reveal > *,
.ab-story-header.reveal > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-head.reveal.in > *,
.problem-header.reveal.in > *,
.process-header.reveal.in > *,
.ab-story-header.reveal.in > * {
  opacity: 1;
  transform: translateY(0);
}
.section-head.reveal.in > *:nth-child(1),
.problem-header.reveal.in > *:nth-child(1),
.process-header.reveal.in > *:nth-child(1),
.ab-story-header.reveal.in > *:nth-child(1) { transition-delay: 0s; }
.section-head.reveal.in > *:nth-child(2),
.problem-header.reveal.in > *:nth-child(2),
.process-header.reveal.in > *:nth-child(2),
.ab-story-header.reveal.in > *:nth-child(2) { transition-delay: 0.12s; }
.section-head.reveal.in > *:nth-child(3),
.problem-header.reveal.in > *:nth-child(3),
.process-header.reveal.in > *:nth-child(3),
.ab-story-header.reveal.in > *:nth-child(3) { transition-delay: 0.24s; }

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.18s; }

/* Card hover lifts */
.solution-card,
.case-study-card,
.testimonial,
.about-photo-wrap {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.solution-card:hover,
.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.about-photo-wrap:hover {
  transform: translateY(-3px);
}

/* Button hover scale */
.btn-pill,
.nav-cta,
.solution-cta {
  transition: all 0.25s ease;
}

/* Link underline slide (case-study links keep their static underline instead) */
.nav-links a,
.footer-nav a {
  position: relative;
}
.nav-links a::after,
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.footer-nav a:hover::after {
  width: 100%;
}

/* Step icon hover */
.step-icon {
  transition: transform 0.3s ease, background 0.3s ease;
}
.process-step:hover .step-icon {
  transform: scale(1.08);
  background: #1a1a1a;
  color: #ffffff;
}

/* About tag hover */
.about-tag {
  transition: all 0.2s ease;
}
.about-tag:hover {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}
.about-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s;
}
.about-link:hover {
  opacity: 0.6;
}

/* FAQ smooth open/close */
.faq-answer {
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

/* CTA button glow pulse */
.btn-pill {
  position: relative;
}
.btn-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(26, 26, 26, 0.25);
  animation: ctaPulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 26, 26, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(26, 26, 26, 0); }
}

/* Step icon reveal spin */
.process-steps.in .step-icon {
  animation: iconSpin 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.process-steps.in .process-step:nth-child(1) .step-icon { animation-delay: 0s; }
.process-steps.in .process-step:nth-child(3) .step-icon { animation-delay: 0.15s; }
.process-steps.in .process-step:nth-child(5) .step-icon { animation-delay: 0.3s; }
.process-steps.in .process-step:nth-child(7) .step-icon { animation-delay: 0.45s; }
@keyframes iconSpin {
  from { opacity: 0; transform: scale(0.5) rotate(-90deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Smooth image reveal */
.about-img,
.hero-photo {
  transition: transform 0.4s ease;
}
.about-photo-wrap:hover .about-img {
  transform: scale(1.02);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > *,
  .solution-card,
  .case-study-card,
  .testimonial,
  .about-photo-wrap,
  .step-icon,
  .about-tag,
  .about-img,
  .hero-photo {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* === GLOBAL MOBILE FIXES === */
@media (max-width: 768px) {
  .logo { font-size: 18px; }

  section { padding: 80px 0; }
  .logo-strip { padding: 48px 0 0; }
  .services { padding-top: 48px; }
  .container { padding: 0 24px; }
  .container-narrow { padding: 0 24px; }
  nav { padding: 0 24px; }
  .nav-inner { padding: 0; }
  .hero { padding-left: 0; padding-right: 0; }
  .hero-content { padding: 0 24px; }
  footer { padding-left: 24px; padding-right: 24px; }

  .hero-content { gap: 40px; }

  .section-head { margin-bottom: 48px; }

  .services-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .portfolio-grid { grid-template-columns: 1fr; gap: 16px; }

  .service-card,
  .price-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .about-content {
    padding: 36px 22px;
    border-radius: 22px;
  }
  .about-stats { grid-template-columns: 1fr; gap: 20px; padding-top: 28px; margin-top: 36px; }
  .stat-num { font-size: 36px; }

  .contact-form {
    padding: 32px 22px;
    border-radius: 22px;
  }
  .form-row.two-col { grid-template-columns: 1fr; gap: 0; }
  .form-row.two-col > div { margin-bottom: 22px; }

  .price-name { font-size: 24px; }
  .price-amount { font-size: 38px; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-link { align-self: flex-start; }
  .btn-pill, .btn-primary, .btn-secondary {
    justify-content: center;
    padding: 16px 24px;
    min-height: 48px;
  }
  .btn-pill {
    padding: 6px 6px 6px 24px;
  }
}

@media (max-width: 480px) {
  nav { padding: 0; }
  .nav-inner { padding: 0 24px; }
  .mobile-menu-inner { padding: 0 24px; }
  .logo { font-size: 17px; }
  .hamburger { width: 38px; height: 38px; }

  section { padding: 64px 0; }
  .logo-strip { padding: 40px 0 0; }
  .services { padding-top: 40px; }

  .section-title { font-size: clamp(28px, 8vw, 36px) !important; }
  .section-sub { font-size: 15px !important; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* === FOCUS STATES === */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
