/* ================================================
   HUMAN REPLACER — Design System
   Aesthetic: Parody Corporate. Confident. Direct.
   Fonts: Bebas Neue / Plus Jakarta Sans / JetBrains Mono
   Palette: Electric White, Corporate Navy, Signal Red,
            Chrome Silver, Money Green
   ================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --white: #FFFFFF;
  --navy: #1A1F3D;
  --navy-light: #252B4E;
  --navy-dark: #10142A;
  --red: #FF3B30;
  --red-dark: #D4281F;
  --silver: #C0C0C0;
  --silver-light: #E8E8E8;
  --green: #34C759;
  --gray-bg: #F5F5F7;
  --gray-mid: #E2E2E7;
  --gray-text: #6E6E73;
  --text: #1A1F3D;
  --text-muted: #6E6E73;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.16);

  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -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; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ---------- UTILITIES ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.money-green { color: var(--green); }
.signal-red { color: var(--red); }
.chrome-silver { color: var(--silver); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { font-size: 1.0625rem; line-height: 1.75; color: var(--text); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,59,48,0.35); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-large { padding: 18px 36px; font-size: 1.0625rem; }
.btn-full { width: 100%; }

/* ---------- SECTION SHARED ---------- */
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.section-tag.light { color: rgba(255,255,255,0.6); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 16px auto 0; font-size: 1.125rem; }

/* ---------- NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.circuit-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255,59,48,0.08) 0%, transparent 70%);
}
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px 60px;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-text { flex: 1; min-width: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.headline-accent { color: var(--red); }
.hero-subhead {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}
.proof-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); max-width: 100px; line-height: 1.3; margin-top: 4px; }
.proof-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero-visual { flex: 0 0 420px; display: flex; justify-content: center; align-items: center; }
.hero-robot { width: 100%; }
.robot-scene-img { width: 100%; max-width: 420px; border-radius: var(--radius-xl); }

/* ---------- HERO TICKER ---------- */
.hero-ticker {
  background: var(--red);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.ticker-track span { padding: 0 20px; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal, .reveal-child { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible, .reveal-child.visible { opacity: 1; transform: translateY(0); }
.reveal-child { transition-delay: var(--delay, 0s); }

/* ---------- SIGNAL SECTION ---------- */
.signal-section { padding: 100px 0; background: var(--gray-bg); }
.signal-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.signal-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.signal-quote {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--navy);
  border-left: 4px solid var(--red);
  padding-left: 24px;
  margin-bottom: 20px;
}
.signal-cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 32px;
}
.signal-cite span { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.875rem; margin-top: 4px; }
.signal-aftermath { display: flex; gap: 32px; }
.aftermath-item { text-align: center; }
.aftermath-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.aftermath-item span:last-child { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 4px; max-width: 90px; }
.signal-copy h2 { margin-bottom: 20px; }
.signal-copy p { margin-bottom: 16px; color: var(--text-muted); }
.signal-copy p:last-of-type { margin-bottom: 32px; }
.signal-copy em { color: var(--navy); font-style: italic; }
.signal-copy strong { color: var(--navy); }

/* ---------- SERVICES PREVIEW ---------- */
.services-preview { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--navy); }
.service-icon { background: var(--navy); padding: 32px; display: flex; justify-content: center; }
.service-robot { width: 140px; height: 140px; }
.service-card-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-step {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 700;
}
.service-card-content h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card-content p { color: var(--text-muted); font-size: 0.9375rem; flex: 1; margin-bottom: 16px; }
.service-card-stat {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 16px;
}
.service-link { color: var(--navy); font-weight: 700; font-size: 0.9375rem; transition: color var(--transition); }
.service-link:hover { color: var(--red); }
.services-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
}
.services-cta-bar p { font-size: 1.125rem; font-weight: 600; }

/* ---------- NUMBERS SECTION ---------- */
.numbers-section { background: var(--navy); padding: 0; }
.numbers-bg { padding: 100px 0; }
.numbers-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.numbers-inner h2 { color: var(--white); margin-bottom: 60px; }
.numbers-inner .section-tag { color: rgba(255,255,255,0.5); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 60px; }
.number-block { text-align: center; }
.number-val {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.number-label { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.4; }
.comparison-table { background: rgba(255,255,255,0.05); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.comparison-header { display: grid; grid-template-columns: 1fr 1fr; background: rgba(255,255,255,0.08); }
.comparison-header div { padding: 16px 24px; font-weight: 700; color: rgba(255,255,255,0.7); font-size: 0.875rem; font-family: var(--font-mono); letter-spacing: 0.05em; }
.comparison-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,0.08); }
.comparison-row div { padding: 16px 24px; color: rgba(255,255,255,0.75); font-size: 0.9375rem; }
.comp-x { color: var(--red); font-weight: 700; display: block; }
.comp-check { color: var(--green); font-weight: 700; display: block; }

/* ---------- HOW SECTION ---------- */
.how-section { padding: 100px 0; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
}
.step-number {
  flex: 0 0 64px;
  height: 64px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 1;
}
.step-connector {
  position: absolute;
  left: 32px;
  top: 64px;
  width: 2px;
  height: calc(100% + 32px);
  background: var(--gray-mid);
}
.step-content { padding: 12px 0 48px; }
.step-content h3 { margin-bottom: 8px; font-size: 1.375rem; }
.step-content p { color: var(--text-muted); max-width: 560px; }
.step-duration {
  display: inline-flex;
  margin-top: 12px;
  background: var(--gray-bg);
  border-radius: 100px;
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
}

/* ---------- FAQ ---------- */
.faq-section { padding: 100px 0; background: var(--gray-bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-mid); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 28px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-q::after { content: '+'; font-size: 1.4rem; font-weight: 300; flex-shrink: 0; color: var(--red); }
.faq-q[aria-expanded="true"]::after { content: '-'; }
.faq-q:hover { color: var(--red); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 0 28px 24px; color: var(--text-muted); font-size: 0.9375rem; }

/* ---------- CTA SECTION ---------- */
.cta-section { background: var(--navy); padding: 0; }
.cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.cta-robot { flex: 0 0 300px; display: flex; justify-content: center; }
.cta-robot-img { width: 260px; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  line-height: 0.95;
}
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.125rem; margin-bottom: 32px; max-width: 480px; }
.cta-sub { color: rgba(255,255,255,0.4); font-size: 0.875rem; margin-top: 16px !important; margin-bottom: 0 !important; }

/* ---------- PAGE HERO ---------- */
.page-hero { background: var(--navy); padding: 100px 0 80px; }
.page-hero .section-tag { color: rgba(255,255,255,0.5); }
.page-hero h1 { color: var(--white); margin-top: 12px; }
.page-hero-sub { color: rgba(255,255,255,0.65); margin-top: 20px; font-size: 1.125rem; max-width: 580px; }

/* ---------- SERVICES PAGE ---------- */
.service-detail { padding: 80px 0; }
.service-detail:nth-child(even), .service-detail-alt { background: var(--gray-bg); }
.service-detail-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.service-detail-flip { direction: rtl; }
.service-detail-flip > * { direction: ltr; }
.service-detail-visual { position: relative; }
.service-detail-robot { background: var(--navy); border-radius: var(--radius-xl); padding: 48px; display: flex; justify-content: center; margin-bottom: 24px; }
.service-detail-robot img { width: 200px; height: 200px; }
.service-price-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.price-tier {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.price-range { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.02em; color: var(--navy); margin-bottom: 4px; line-height: 1.1; }
.price-range small { font-family: var(--font-body); font-size: 0.8rem; }
.price-duration, .price-type { font-size: 0.875rem; color: var(--text-muted); }
.service-detail-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.badge-red { color: var(--red); }
.service-detail-lead { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.service-detail-content h2 { margin-bottom: 16px; }
.service-deliverables { margin-bottom: 24px; }
.service-deliverables h3 { font-size: 1rem; margin-bottom: 12px; color: var(--navy); }
.service-deliverables ul li { padding: 6px 0 6px 20px; position: relative; color: var(--text-muted); font-size: 0.9375rem; }
.service-deliverables ul li::before { content: '&#10003;'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.service-guarantee {
  background: rgba(52,199,89,0.08);
  border: 1px solid rgba(52,199,89,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.9375rem;
  margin-bottom: 28px;
  color: var(--text);
}
.service-guarantee strong { color: var(--green); }

/* DORSEY PACKAGE */
.service-dorsey { background: var(--navy); }
.service-dorsey .section-tag { color: rgba(255,255,255,0.5); }
.service-dorsey h2 { color: var(--white); }
.service-dorsey .service-detail-lead { color: rgba(255,255,255,0.65); }
.dorsey-header { text-align: center; margin-bottom: 60px; }
.dorsey-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.dorsey-price-block {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.price-large { font-family: var(--font-display); font-size: 2.2rem; color: var(--white); margin-bottom: 8px; line-height: 1; letter-spacing: 0.02em; }
.service-dorsey .price-duration, .service-dorsey .price-type { color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.dorsey-trigger { margin: 28px 0; }
.dorsey-trigger p { color: rgba(255,255,255,0.65); font-size: 0.9375rem; margin-bottom: 12px; }
.dorsey-trigger ul li { color: rgba(255,255,255,0.65); padding: 6px 0 6px 20px; position: relative; font-size: 0.9375rem; }
.dorsey-trigger ul li::before { content: '&rarr;'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.dorsey-deliverables h3 { color: var(--white); margin-bottom: 24px; }
.dorsey-list { display: flex; flex-direction: column; gap: 24px; }
.dorsey-list li { display: flex; gap: 20px; align-items: flex-start; }
.dl-icon {
  flex: 0 0 40px;
  height: 40px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}
.dorsey-list strong { display: block; color: var(--white); margin-bottom: 4px; }
.dorsey-list p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; }

/* COMPETITOR TABLE */
.competitor-section { padding: 100px 0; }
.competitor-table-wrap { overflow-x: auto; }
.competitor-table { width: 100%; border-collapse: collapse; }
.competitor-table th, .competitor-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--gray-mid); font-size: 0.9375rem; }
.competitor-table th { background: var(--navy); color: var(--white); font-size: 0.8125rem; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-mono); }
.competitor-table tr:hover td { background: var(--gray-bg); }
.winner-row td { background: rgba(52,199,89,0.06); color: var(--navy); font-weight: 600; border-top: 2px solid var(--green); }

/* ---------- ABOUT PAGE ---------- */
.about-philosophy { padding: 100px 0; }
.about-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.about-robot { width: 100%; max-width: 360px; border-radius: var(--radius-xl); }
.about-copy h2 { margin-bottom: 20px; }
.about-copy p { color: var(--text-muted); margin-bottom: 16px; }
.about-copy p:last-child { margin-bottom: 0; }

.about-moment { padding: 100px 0; background: var(--gray-bg); }
.moment-header { text-align: center; margin-bottom: 64px; }
.moment-header h2 { margin-bottom: 8px; }
.moment-header p { color: var(--text-muted); }
.timeline { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 54px;
  top: 48px;
  width: 2px;
  bottom: 0;
  background: var(--gray-mid);
}
.timeline-date {
  padding-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
  text-align: right;
}
.timeline-date-featured { color: var(--red); font-size: 0.875rem; }
.timeline-item-featured .timeline-content {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.timeline-item-featured .timeline-content h3 { color: var(--white); }
.timeline-item-featured .timeline-content blockquote { color: rgba(255,255,255,0.75); border-color: var(--red); margin: 12px 0; font-style: italic; padding-left: 16px; font-size: 0.9375rem; }
.timeline-item-featured .timeline-content p { color: rgba(255,255,255,0.6); }
.timeline-content h3 { margin-bottom: 8px; font-size: 1.125rem; }
.timeline-content p { color: var(--text-muted); font-size: 0.9375rem; }

.about-diff { padding: 100px 0; }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.diff-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 32px; transition: all var(--transition); }
.diff-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); }
.diff-icon {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.diff-card h3 { margin-bottom: 12px; font-size: 1.125rem; }
.diff-card p { color: var(--text-muted); font-size: 0.9375rem; }

.about-leaders { padding: 100px 0; background: var(--gray-bg); }
.leader-quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.leader-quote {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 4px solid var(--red);
}
.leader-quote blockquote { font-style: italic; font-size: 1.0625rem; color: var(--navy); line-height: 1.6; margin-bottom: 16px; }
.leader-quote cite { font-size: 0.875rem; color: var(--text-muted); font-style: normal; font-weight: 600; }

/* ---------- CONTACT PAGE ---------- */
.contact-section { padding: 80px 0 100px; }
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: start; }
.contact-form-header { margin-bottom: 32px; }
.contact-form-header h2 { margin-bottom: 8px; }
.contact-form-header p { color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,31,61,0.08);
}
.form-success { text-align: center; padding: 40px 20px; }
.success-icon { font-size: 3rem; color: var(--green); margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }
.form-error { background: rgba(255,59,48,0.06); border: 1px solid rgba(255,59,48,0.2); border-radius: var(--radius); padding: 12px 16px; color: var(--red); font-size: 0.875rem; margin-top: 12px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-block {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.sidebar-block h3 { font-size: 1rem; margin-bottom: 16px; }
.sidebar-steps { display: flex; flex-direction: column; gap: 20px; }
.sidebar-steps li { display: flex; gap: 16px; align-items: flex-start; }
.sidebar-step-num {
  flex: 0 0 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.sidebar-steps strong { display: block; font-size: 0.9375rem; margin-bottom: 4px; }
.sidebar-steps p { font-size: 0.875rem; color: var(--text-muted); }
.icp-list li { padding: 6px 0 6px 20px; position: relative; font-size: 0.875rem; color: var(--text-muted); }
.icp-list li::before { content: '&rarr;'; position: absolute; left: 0; color: var(--navy); font-weight: 700; }
.sidebar-quote blockquote { font-style: italic; font-size: 0.9375rem; color: var(--navy); border-left: 3px solid var(--red); padding-left: 16px; margin-bottom: 8px; line-height: 1.5; }
.sidebar-quote cite { font-size: 0.8125rem; color: var(--text-muted); }
.sidebar-cta-block { background: var(--navy); }
.sidebar-cta-block h3 { color: var(--white); }
.sidebar-cta-block p { color: rgba(255,255,255,0.65); font-size: 0.9375rem; margin-bottom: 16px; }

/* ---------- BLOG PAGE ---------- */
.blog-section { padding: 80px 0 100px; }
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start; }
.blog-post { margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid var(--gray-mid); }
.blog-post:last-child { border-bottom: none; }
.blog-post.featured { background: var(--gray-bg); padding: 40px; border-radius: var(--radius-xl); border: none; margin-bottom: 48px; }
.blog-post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.post-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
  background: rgba(255,59,48,0.08);
  padding: 4px 10px;
  border-radius: 4px;
}
.post-tag-featured { background: var(--navy); color: var(--white); }
.post-date { font-size: 0.8125rem; color: var(--text-muted); font-family: var(--font-mono); }
.post-title { font-size: 1.5rem; margin-bottom: 12px; color: var(--navy); line-height: 1.25; }
.post-excerpt { color: var(--text-muted); font-size: 1rem; margin-bottom: 20px; }
.post-body { margin-bottom: 24px; }
.post-body p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.9375rem; }
.post-body h3 { font-size: 1.125rem; margin: 24px 0 8px; color: var(--navy); }
.post-body em { color: var(--navy); font-style: italic; }
.blog-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.layoff-list li { padding: 8px 0; border-bottom: 1px solid var(--gray-mid); font-size: 0.875rem; color: var(--text-muted); }
.layoff-list li:last-child { border-bottom: none; }
.layoff-list strong { color: var(--navy); }
.sidebar-quote-list { display: flex; flex-direction: column; gap: 16px; }
.sidebar-quote-list blockquote { font-style: italic; font-size: 0.875rem; color: var(--navy); border-left: 3px solid var(--red); padding-left: 12px; margin-bottom: 4px; line-height: 1.5; }
.sidebar-quote-list cite { font-size: 0.75rem; color: var(--text-muted); display: block; }

/* ---------- 404 ---------- */
.error-section { padding: 100px 0; min-height: 70vh; display: flex; align-items: center; }
.error-content { display: flex; gap: 60px; align-items: center; }
.error-code { font-family: var(--font-display); font-size: 8rem; color: var(--red); line-height: 1; margin-bottom: 16px; }
.error-robot-img { width: 280px; }
.error-ctas { display: flex; gap: 16px; margin-top: 32px; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: 280px 1fr; gap: 60px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-mark { width: 48px; height: 48px; }
.footer-tagline { display: flex; flex-direction: column; gap: 4px; }
.footer-tagline strong { color: var(--white); font-size: 1rem; }
.footer-tagline span { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { color: var(--white); font-size: 0.875rem; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-quote { font-style: italic; font-size: 0.8125rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 8px; }
.footer-attr { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px; max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }
.footer-disclaimer { font-style: italic; }

/* ---------- CHATBOT ---------- */
.chatbot-widget { position: fixed; bottom: 24px; right: 24px; z-index: 1000; }
.chatbot-toggle {
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(255,59,48,0.4);
  transition: all var(--transition);
  position: relative;
}
.chatbot-toggle:hover { background: var(--red-dark); transform: scale(1.05); }
.chatbot-toggle svg { width: 26px; height: 26px; stroke: white; }
.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 5px;
  border-radius: 4px;
  border: 2px solid var(--white);
}
.chatbot-panel {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 380px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 560px;
}
.chatbot-panel[hidden] { display: none; }
.chatbot-header {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chatbot-agent-info { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; background: var(--navy-light); }
.chatbot-avatar img { width: 100%; height: 100%; }
.chatbot-header strong { display: block; color: var(--white); font-size: 0.9375rem; }
.chatbot-status { font-size: 0.7rem; color: var(--green); font-family: var(--font-mono); letter-spacing: 0.05em; }
.chatbot-close { color: rgba(255,255,255,0.6); font-size: 1.4rem; line-height: 1; transition: color var(--transition); }
.chatbot-close:hover { color: var(--white); }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 20px; max-height: 360px; }
.chatbot-intro { color: var(--navy); font-size: 0.9375rem; margin-bottom: 8px; }
.chatbot-prompt { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 20px; }
.lead-step { display: none; flex-direction: column; gap: 8px; }
.lead-step.active { display: flex; }
.lead-step label { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.lead-step input, .lead-step select {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
}
.lead-step input:focus, .lead-step select:focus { outline: none; border-color: var(--navy); }
.lead-next, .lead-submit {
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition);
}
.lead-next:hover, .lead-submit:hover { background: var(--red); }
.chat-messages-list { display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 80%; font-size: 0.9rem; line-height: 1.5; padding: 10px 14px; border-radius: var(--radius-lg); }
.msg-user { background: var(--navy); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
.msg-bot { background: var(--gray-bg); color: var(--navy); align-self: flex-start; border-bottom-left-radius: 4px; }
.chatbot-input-row { padding: 12px 16px; border-top: 1px solid var(--gray-mid); display: flex; gap: 8px; }
.chatbot-input-row input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--gray-mid); border-radius: var(--radius); font-size: 0.9rem; }
.chatbot-input-row input:focus { outline: none; border-color: var(--navy); }
#chat-send { background: var(--red); color: var(--white); padding: 10px 14px; border-radius: var(--radius); transition: all var(--transition); }
#chat-send:hover { background: var(--red-dark); }
#chat-send svg { width: 18px; height: 18px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; padding: 60px 24px 40px; }
  .hero-visual { flex: none; }
  .signal-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .dorsey-layout { grid-template-columns: 1fr; }
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-detail-flip { direction: ltr; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-content p { margin: 0 auto 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 20px; border-top: 1px solid rgba(255,255,255,0.1); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-headline { font-size: clamp(3rem, 10vw, 5rem); }
  .hero-proof { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .faq-grid { grid-template-columns: 1fr; }
  .leader-quotes { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 16px; }
  .timeline-item:not(:last-child)::after { left: 38px; }
  .error-content { flex-direction: column; text-align: center; }
  .services-cta-bar { flex-direction: column; gap: 16px; text-align: center; }
  .chatbot-panel { width: calc(100vw - 48px); }
  .comparison-header, .comparison-row { grid-template-columns: 1fr; }
  .comparison-header { display: none; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .numbers-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .aftermath-item span:last-child { max-width: 120px; }
}
