/*
Theme Name: UnKommon Revolution
Theme URI: https://unkommonrevolution.com
Author: UnKommon Revolution
Description: Custom WordPress theme for UnKommon Revolution — AI & Digital Transformation consulting for legacy manufacturers.
Version: 5.0
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0e0e0e;
  --off-white:  #F4F1EB;
  --cream:      #EDE9DF;
  --red:        #C0392B;
  --red-dark:   #962d22;
  --mid:        #6b6b6b;
  --light:      #a8a4a0;
  --border:     #d0ccc3;
  --border-dk:  #2a2a2a;
  
  --ai-glow:    rgba(192,57,43,0.15);

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Libre Baskerville', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 0.95;
  font-weight: 400;
}
p { line-height: 1.7; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}
.eyebrow.red { color: var(--red); }
.eyebrow.blue { color: var(--red); }
.eyebrow.light { color: var(--light); }
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  flex-shrink: 0;
}
.eyebrow.red::before { background: var(--red); }
.eyebrow.blue::before { background: var(--red); }
.eyebrow.light::before { background: var(--light); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.btn-primary {
  background: var(--off-white);
  color: var(--black);
}
.btn-primary::after {
  content: '';
  position: absolute;
  bottom: -4px; right: -4px;
  width: 100%; height: 100%;
  border: 1px solid var(--red);
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--red); color: var(--off-white); }
.btn-primary:hover::after { border-color: var(--off-white); }

.btn-red { background: var(--red); color: var(--off-white); }
.btn-red:hover { background: var(--red-dark); }

.btn-ai {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
}
.btn-ai:hover { background: var(--red); color: var(--black); }

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1px solid #3a3a3a;
}
.btn-outline:hover { border-color: var(--off-white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(14,14,14,0.97);
  border-bottom: 1px solid #1a1a1a;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 28px; width: auto; }
.nav-logo .logo-circle { height: 36px; display: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--off-white); }
.nav-menu .ai-link a { color: var(--red); }
.nav-menu .ai-link a:hover { color: #962d22; }

.nav-cta-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  background: var(--red);
  padding: 9px 20px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--red-dark); color: var(--off-white); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--off-white);
  transition: all 0.25s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  padding: 3rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.04em;
  color: var(--off-white);
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 1.25rem;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .ai-link { color: var(--red); }

/* ============================================================
   PAGE WRAPPER (offset for fixed nav)
   ============================================================ */
#page { padding-top: 64px; }

/* ============================================================
   HERO — HOME
   ============================================================ */
.home-hero {
  min-height: calc(100vh - 64px);
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 60px,
    rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px
  );
  pointer-events: none;
}
/* AI pulse orb */
.home-hero::after {
  content: '';
  position: absolute;
  top: 20%; right: 8%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(192,57,43,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-orb 6s ease-in-out infinite;
}
@keyframes pulse-orb {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.15); opacity: 1; }
}

.home-hero-left { padding: 5rem 3rem 5rem 0; }

.hero-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.3);
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-ai-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.2; }
}

.home-hero h1 {
  font-size: clamp(58px, 6.5vw, 96px);
  color: var(--off-white);
  margin-bottom: 1.5rem;
}
.home-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red);
}
.home-hero h1 .red-word { color: var(--red); font-family: var(--font-display); }

.hero-sub {
  font-size: 17px;
  color: var(--light);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-sub strong { color: var(--off-white); font-weight: 500; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #1e1e1e;
  margin-bottom: 2.5rem;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--off-white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero-stat .num span { color: var(--red); }
.hero-stat .lbl {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  margin-top: 4px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.home-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0 4rem 3rem;
  position: relative;
  z-index: 1;
}
.hero-feature-card {
  background: #0d0d0d;
  border: 1px solid #222;
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  position: relative;
}
.hero-feature-card::before {
  content: 'AI-POWERED TRANSFORMATION';
  position: absolute;
  top: -11px; left: 1.5rem;
  background: var(--red);
  color: var(--black);
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 2px 10px;
}
.feature-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--off-white);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.feature-list { list-style: none; }
.feature-list li {
  font-size: 16px;
  color: var(--light);
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ============================================================
   AI SERVICES STRIP (homepage)
   ============================================================ */
.ai-strip {
  background: #060606;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 1.5rem 0;
  overflow: hidden;
}
.ai-strip-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.strip-item {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #444;
  font-weight: 500;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.strip-item::after {
  content: '';
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   HOMEPAGE SECTIONS
   ============================================================ */

/* — About / What We Do — */
.home-about { background: var(--off-white); }
.home-about h2 {
  font-size: clamp(42px, 5vw, 68px);
  color: var(--black);
  margin-bottom: 1.5rem;
}
.home-about h2 em { font-family: var(--font-serif); font-style: italic; color: var(--red); }
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.home-about-left {}
.home-about-body {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.home-about-body strong { color: var(--black); font-weight: 500; }
.home-about-right {}
.about-pillars { display: flex; flex-direction: column; gap: 2px; }
.pillar-item {
  background: var(--cream);
  padding: 1.5rem;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}
.pillar-item:hover { border-left-color: var(--red); }
.pillar-item h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: 0;
  line-height: 1.4;
}
.pillar-item p { font-size: 13px; color: var(--mid); line-height: 1.55; }

/* — AI Highlight Band — */
.ai-band {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.ai-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(192,57,43,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.ai-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ai-band h2 {
  font-size: clamp(42px, 5vw, 68px);
  color: var(--off-white);
  margin-bottom: 1.5rem;
}
.ai-band h2 em { font-family: var(--font-serif); font-style: italic; color: var(--red); }
.ai-band p { font-size: 15px; color: var(--light); line-height: 1.75; margin-bottom: 2rem; }
.ai-band p strong { color: var(--off-white); font-weight: 500; }
.ai-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #1a1a1a; }
.ai-stat-box {
  background: #0d0d0d;
  padding: 1.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.ai-stat-box:hover { border-bottom-color: var(--red); }
.ai-stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.ai-stat-lbl { font-size: 15px; color: #aaa; line-height: 1.4; }

/* — Services Preview — */
.home-services { background: var(--cream); }
.home-services h2 {
  font-size: clamp(42px, 5vw, 68px);
  color: var(--black);
  margin-bottom: 0.5rem;
}
.home-services h2 em { font-family: var(--font-serif); font-style: italic; color: var(--red); }
.services-intro { font-size: 15px; color: var(--mid); max-width: 540px; margin-bottom: 3rem; line-height: 1.7; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2.5rem;
}
.service-card {
  background: var(--off-white);
  padding: 2rem;
  border-top: 3px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.service-card:hover { border-top-color: var(--red); }
.service-card.ai-card { border-top-color: var(--red); background: #0d0d0d; }
.service-card.ai-card:hover { border-top-color: #962d22; }
.service-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.service-card.ai-card .service-num { color: #1a1a1a; }
.service-card-title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: 0;
}
.service-card.ai-card .service-card-title { color: var(--red); }
.service-card-desc { font-size: 15px; color: var(--mid); line-height: 1.6; }
.service-card.ai-card .service-card-desc { color: #666; }

/* ============================================================
   AI PAGE HERO — FULL BLEED
   ============================================================ */
.ai-hero {
  min-height: 90vh;
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ai-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(192,57,43,0.1) 0%, transparent 60%),
    repeating-linear-gradient(-45deg, transparent, transparent 80px, rgba(255,255,255,0.008) 80px, rgba(255,255,255,0.008) 81px);
  pointer-events: none;
}
/* Animated circuit grid lines */
.ai-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(#C0392B 1px, transparent 1px),
    linear-gradient(90deg, #C0392B 1px, transparent 1px);
  background-size: 80px 80px;
  animation: grid-drift 20s linear infinite;
}
@keyframes grid-drift {
  from { background-position: 0 0; }
  to   { background-position: 80px 80px; }
}
.ai-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.ai-hero h1 {
  font-size: clamp(60px, 7.5vw, 110px);
  color: var(--off-white);
  margin-bottom: 1.5rem;
}
.ai-hero h1 em { font-family: var(--font-serif); font-style: italic; color: var(--red); }
.ai-hero-sub {
  font-size: 18px;
  color: var(--light);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 3rem;
  font-weight: 300;
}
.ai-hero-sub strong { color: var(--off-white); font-weight: 500; }
.ai-hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid #1e1e1e;
  margin-bottom: 3rem;
}
.ai-hero-stat .n {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.02em;
}
.ai-hero-stat .l {
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #e8e8e8;
  margin-top: 4px;
}

/* ============================================================
   AI SERVICE CAPABILITIES GRID
   ============================================================ */
.ai-capabilities { background: #060606; }
.ai-capabilities h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  color: var(--off-white);
  margin-bottom: 0.75rem;
}
.ai-capabilities h2 em { font-family: var(--font-serif); font-style: italic; color: var(--red); }
.caps-intro { font-size: 15px; color: var(--light); max-width: 560px; margin-bottom: 3rem; line-height: 1.7; }
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #111;
}
.cap-card {
  background: #0a0a0a;
  padding: 2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.cap-card:hover { border-bottom-color: var(--red); background: #0d0d0d; }
.cap-icon {
  width: 40px; height: 40px;
  border: 1px solid #222;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 18px;
}
.cap-title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 0.75rem;
  letter-spacing: 0;
  line-height: 1.3;
}
.cap-desc { font-size: 15px; color: #888; line-height: 1.65; }
.cap-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(192,57,43,0.3);
  padding: 3px 8px;
}

/* ============================================================
   AI WHY UNKOMMON (differentiator section)
   ============================================================ */
.ai-why { background: var(--black); position: relative; overflow: hidden; }
.ai-why::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 0% 100%, rgba(192,57,43,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.ai-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.ai-why h2 {
  font-size: clamp(42px, 5vw, 68px);
  color: var(--off-white);
  margin-bottom: 1.5rem;
}
.ai-why h2 em { font-family: var(--font-serif); font-style: italic; color: var(--red); }
.ai-why-body { font-size: 15px; color: var(--light); line-height: 1.75; margin-bottom: 2rem; }
.ai-why-body strong { color: var(--off-white); font-weight: 500; }
.ai-differentiators { display: flex; flex-direction: column; gap: 1px; }
.diff-item {
  padding: 1.5rem;
  background: #0d0d0d;
  border-left: 2px solid transparent;
  transition: border-color 0.2s;
}
.diff-item:hover { border-left-color: var(--red); }
.diff-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.diff-desc { font-size: 14px; color: #888; line-height: 1.55; }

/* ============================================================
   AI PROCESS
   ============================================================ */
.ai-process { background: #060606; }
.ai-process h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  color: var(--off-white);
  margin-bottom: 0.75rem;
}
.ai-process h2 em { font-family: var(--font-serif); font-style: italic; color: var(--red); }
.process-intro { font-size: 15px; color: var(--light); max-width: 560px; margin-bottom: 3rem; line-height: 1.7; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #111;
  margin-bottom: 3rem;
}
.process-step {
  background: #0a0a0a;
  padding: 2rem 1.5rem;
  position: relative;
}
.process-step::after {
  content: '→';
  position: absolute;
  top: 2rem; right: -0.75rem;
  font-size: 18px;
  color: #2a2a2a;
  z-index: 1;
}
.process-step:last-child::after { display: none; }
.step-n {
  font-family: var(--font-display);
  font-size: 52px;
  color: #111;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.step-t {
  font-size: 17px;
  font-weight: 500;
  color: var(--red);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}
.step-d { font-size: 15px; color: #888; line-height: 1.6; }
.step-time {
  margin-top: 1rem;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-hero { background: var(--black); padding: 6rem 0 4rem; }
.services-hero h1 {
  font-size: clamp(52px, 6vw, 88px);
  color: var(--off-white);
  margin-bottom: 1rem;
}
.services-hero h1 em { font-family: var(--font-serif); font-style: italic; color: var(--red); }
.services-hero p { font-size: 16px; color: var(--light); max-width: 600px; line-height: 1.7; }

.services-list { background: var(--off-white); }
.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-row:last-child { border-bottom: none; }
.service-row-label {
  font-family: var(--font-display);
  font-size: 52px;
  color: #d0ccc3;
  letter-spacing: 0.02em;
  line-height: 0.95;
}
.service-row-label span { display: block; font-size: 11px; font-family: var(--font-body); letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.service-row.ai-service .service-row-label { color: #1a1a1a; }
.service-row.ai-service .service-row-label span { color: var(--red); }
.service-row-content h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.75rem;
  letter-spacing: 0;
  line-height: 1.3;
}
.service-row-content p { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 1rem; }
.service-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1rem;
}
.deliverable-tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--cream);
  color: var(--mid);
  font-weight: 500;
}
.service-row.ai-service .deliverable-tag { background: #0d0d0d; color: var(--red); }

/* ============================================================
   CASE STUDIES PAGE
   ============================================================ */
.cases-hero { background: var(--black); padding: 6rem 0 4rem; }
.cases-hero h1 {
  font-size: clamp(52px, 6vw, 88px);
  color: var(--off-white);
  margin-bottom: 1rem;
}
.cases-hero h1 em { font-family: var(--font-serif); font-style: italic; color: var(--red); }
.cases-hero p { font-size: 16px; color: var(--light); max-width: 600px; line-height: 1.7; }

.cases-grid { background: var(--off-white); }
.case-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.case-card:last-child { border-bottom: none; }
.case-left {}
.case-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(192,57,43,0.4);
  padding: 4px 10px;
  margin-bottom: 1rem;
  font-weight: 500;
}
.case-industry {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--black);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.case-age { font-size: 12px; color: var(--mid); letter-spacing: 0.06em; text-transform: uppercase; }
.case-right {}
.case-challenge { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 1.5rem; }
.case-results { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.result-stat .r-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.02em;
}
.result-stat .r-num span { color: var(--red); }
.result-stat .r-lbl { font-size: 14px; color: var(--mid); letter-spacing: 0.04em; margin-top: 2px; }
.case-insight {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--black);
  border-left: 3px solid var(--red);
  padding-left: 1rem;
  line-height: 1.65;
}

/* ============================================================
   ABOUT FOUNDER PAGE
   ============================================================ */
.founder-hero { background: var(--black); padding: 6rem 0 4rem; }
.founder-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.founder-hero h1 {
  font-size: clamp(48px, 5.5vw, 80px);
  color: var(--off-white);
  margin-bottom: 1.5rem;
}
.founder-hero h1 em { font-family: var(--font-serif); font-style: italic; color: var(--red); }
.founder-bio-lead { font-size: 17px; color: var(--light); line-height: 1.75; margin-bottom: 2rem; font-weight: 300; }
.founder-bio-lead strong { color: var(--off-white); font-weight: 500; }
.founder-img-box {
  background: #111;
  border: 1px solid #222;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.founder-img-box img { width: 100%; height: 100%; object-fit: cover; }
.founder-img-placeholder {
  font-family: var(--font-display);
  font-size: 80px;
  color: #222;
  letter-spacing: 0.04em;
  text-align: center;
}
.founder-img-placeholder span { display: block; font-size: 13px; font-family: var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; color: #333; margin-top: 8px; }

.founder-detail { background: var(--off-white); }
.founder-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.founder-detail h2 {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--black);
  margin-bottom: 1.5rem;
}
.founder-detail h2 em { font-family: var(--font-serif); font-style: italic; color: var(--red); }
.founder-body { font-size: 15px; color: #444; line-height: 1.8; }
.founder-body p { margin-bottom: 1.25rem; }
.founder-body strong { color: var(--black); font-weight: 500; }
.founder-credentials { display: flex; flex-direction: column; gap: 1px; }
.cred-item {
  background: var(--cream);
  padding: 1.25rem;
  border-left: 3px solid var(--red);
}
.cred-item .cred-n { font-family: var(--font-display); font-size: 36px; color: var(--black); letter-spacing: 0.02em; line-height: 1; }
.cred-item .cred-n span { color: var(--red); }
.cred-item .cred-l { font-size: 11px; color: var(--mid); margin-top: 2px; letter-spacing: 0.04em; }

/* ============================================================
   CONTACT / BOOK PAGE
   ============================================================ */
.contact-hero { background: var(--black); padding: 6rem 0 4rem; }
.contact-hero h1 {
  font-size: clamp(52px, 6vw, 88px);
  color: var(--off-white);
  margin-bottom: 1rem;
}
.contact-hero h1 em { font-family: var(--font-serif); font-style: italic; color: var(--red); }
.contact-hero p { font-size: 16px; color: var(--light); max-width: 580px; line-height: 1.7; }

.contact-body { background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--off-white);
  margin-bottom: 1rem;
}
.contact-left h2 em { font-family: var(--font-serif); font-style: italic; color: var(--red); }
.contact-desc { font-size: 14px; color: #888; line-height: 1.75; margin-bottom: 2rem; }
.contact-trust { display: flex; flex-direction: column; gap: 1rem; }
.trust-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #666;
}
.trust-line::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--red);
  flex-shrink: 0;
}

.contact-form-box {
  background: #0d0d0d;
  border: 1px solid #222;
  padding: 2.5rem;
}
.contact-form-box h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--off-white);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.contact-form-box > p {
  font-size: 13px;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 6px;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: #060606;
  border: 1px solid #222;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--red); }
.form-field select option { background: #111; }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--off-white);
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--red-dark); }
.form-fine { font-size: 11px; color: #333; margin-top: 1rem; text-align: center; line-height: 1.5; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #060606;
  border-top: 1px solid #111;
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #111;
}
.footer-brand img { height: 24px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 14px; color: #e8e8e8; line-height: 1.65; max-width: 280px; }
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 14px; color: #e8e8e8; transition: color 0.2s; }
.footer-col a:hover { color: var(--off-white); }
.footer-col .footer-red-link { color: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 12px; color: #bbb; letter-spacing: 0.04em; }
.footer-tagline { font-size: 12px; color: #bbb; font-style: italic; }

/* ============================================================
   STATS BAND (reusable)
   ============================================================ */
.stats-band { background: var(--black); border-top: 1px solid #111; border-bottom: 1px solid #111; }
.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #111;
}
.stat-cell { background: var(--black); padding: 2.5rem 2rem; text-align: center; }
.stat-cell .sc-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--off-white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat-cell .sc-num span { color: var(--red); }
.stat-cell .sc-lbl { font-size: 14px; letter-spacing: 0.07em; text-transform: uppercase; color: #e8e8e8; margin-top: 4px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .home-hero { grid-template-columns: 1fr; }
  .home-hero-right { display: none; }
  .home-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ai-band-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .caps-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .founder-hero-grid { grid-template-columns: 1fr; }
  .founder-detail-grid { grid-template-columns: 1fr; }
  .ai-why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .case-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-row { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
  .section-pad { padding: 4rem 0; }
  .nav-menu { display: none; }
  .nav-cta-btn { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo .logo-full { display: none; }
  .nav-logo .logo-circle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .caps-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .ai-hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .home-hero-left { padding: 3rem 0; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }
.fade-up-5 { animation-delay: 0.7s; }

/* ── COLOR CORRECTION OVERRIDES — all red, no blue ── */
.hero-ai-badge {
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.3);
  color: var(--red);
}
.hero-ai-badge::before { background: var(--red); }

.ai-hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(192,57,43,0.08) 0%, transparent 60%),
    repeating-linear-gradient(-45deg, transparent, transparent 80px, rgba(255,255,255,0.008) 80px, rgba(255,255,255,0.008) 81px);
}
.ai-hero-grid {
  background-image:
    linear-gradient(rgba(192,57,43,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,57,43,0.4) 1px, transparent 1px);
}
.home-hero::after {
  background: radial-gradient(circle, rgba(192,57,43,0.07) 0%, transparent 70%);
}
.hero-feature-card::before { background: var(--red); color: var(--off-white); }
.feature-list li::before { background: var(--red); }

.ai-stat-num { color: var(--red); }
.ai-stat-box:hover { border-bottom-color: var(--red); }
.ai-band h2 em { color: var(--red); }
.ai-band::before {
  background: radial-gradient(ellipse at 60% 50%, rgba(192,57,43,0.07) 0%, transparent 65%);
}

.ai-hero h1 em { color: var(--red); }
.ai-hero-stat .n { color: var(--red); }

.cap-card:hover { border-bottom-color: var(--red); }
.cap-tag-r {
  display: inline-block;
  margin-top: 1rem;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(192,57,43,0.35);
  padding: 3px 8px;
}
.cap-title { color: var(--off-white); }

.diff-item:hover { border-left-color: var(--red); }
.step-t { color: var(--red); }

.ai-hero-stat .n { color: var(--red); }
.ai-why h2 em { color: var(--red); }
.ai-capabilities h2 em { color: var(--red); }
.ai-process h2 em { color: var(--red); }

.service-card.ai-card { border-top-color: var(--red); background: #0d0d0d; }
.service-card.ai-card:hover { border-top-color: var(--red-dark); }
.service-card.ai-card .service-card-title { color: var(--red); }
.service-card.ai-card .service-num { color: #1a1a1a; }
.service-card.ai-card .deliverable-tag { background: #0d0d0d; color: var(--red); }

.service-row.ai-service .service-row-label { color: #1a1a1a; }
.service-row.ai-service .service-row-label span { color: var(--red); }
.service-row.ai-service .deliverable-tag { background: #0d0d0d; color: var(--red); }

.nav-menu .ai-link a { color: var(--off-white); }
.nav-menu .ai-link a:hover { color: var(--red); }
.footer-col .footer-red-link { color: var(--red); }

.ai-band .btn-ai,
.ai-hero .btn-ai,
.btn-ai {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
  position: relative;
}
.btn-ai::after { display: none; }
.btn-ai:hover { background: var(--red); color: var(--off-white); }

.mobile-menu .ai-link { color: var(--red); }

/* ══════════════════════════════════════════════
   PDF REVISION FIXES — v5
   ══════════════════════════════════════════════ */

/* Footer: all text white */
.footer-col a,
.footer-col ul li a { color: #e8e8e8 !important; font-size: 14px; }
.footer-col a:hover { color: var(--off-white) !important; }
.footer-brand p { color: #e8e8e8 !important; font-size: 15px; }
.footer-col h4 { color: #bbb !important; font-size: 12px; }
.footer-copy, .footer-tagline { color: #bbb !important; font-size: 13px; }
.footer-col .footer-red-link { color: var(--red) !important; }

/* Stats band label text: white + bigger everywhere */
.sc-lbl { font-size: 14px !important; color: #e8e8e8 !important; }

/* Home hero: feature card list bigger */
.feature-list li { font-size: 16px !important; line-height: 1.65 !important; }
.feature-card-title { font-size: 17px !important; }

/* Home AI band stat labels bigger */
.ai-stat-lbl { font-size: 15px !important; color: #ccc !important; }

/* Home services grid: numbers red, text bigger */
.service-num { color: var(--red) !important; }
.service-card-title { font-size: 17px !important; }
.service-card-desc { font-size: 15px !important; }

/* Hero stat labels bigger */
.hero-stat .lbl { font-size: 13px !important; color: #aaa !important; }

/* AI page hero stat labels: white + bigger */
.ai-hero-stat .l { font-size: 14px !important; color: #e8e8e8 !important; }

/* AI capabilities cards: bigger text */
.cap-title { font-size: 17px !important; }
.cap-desc { font-size: 15px !important; color: #999 !important; }

/* AI why section differentiator boxes: bigger */
.diff-title { font-size: 16px !important; }
.diff-desc { font-size: 14px !important; color: #999 !important; }

/* AI process steps: bigger */
.step-t { font-size: 17px !important; }
.step-d { font-size: 15px !important; color: #999 !important; }
.step-time { font-size: 13px !important; color: var(--red) !important; }

/* Case studies result stat labels bigger */
.result-stat .r-lbl { font-size: 14px !important; }

/* Landing page: stat labels bigger */
.lp-stat .lbl { font-size: 14px !important; color: #aaa !important; }
.lp-truth-item .stat span { color: var(--red); }
