/* ================================================================
   home.css  —  Homepage-only styles (index.html only)
   Never override global design tokens or break BEM globals.
   All class names are prefixed to avoid collisions.
   ================================================================ */

/* ── Hero overrides ────────────────────────────────────────────── */
.hero--v2 {
  padding-top: 96px;
  padding-bottom: 80px;
}

.hero-split--v2 {
  gap: 40px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.07);
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: var(--radius-full);
  padding: 7px 16px 7px 10px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.hero-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

/* Headline */
.hero-headline {
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-headline__accent {
  color: var(--primary);
}

/* Sub */
.hero-sub {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}

/* Actions row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-text-link {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}
.hero-text-link:hover { color: var(--primary); }

/* Trust pills */
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
.trust-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.trust-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ── Mobile hero stats strip (visible only on mobile, replaces hidden dashboard) ── */
.hero-mobile-stats {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 32px;
}

.hero-mobile-stat {
  background: var(--bg-secondary);
  padding: 16px 12px;
  text-align: center;
}

.hero-mobile-stat__value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-mobile-stat__value span {
  color: var(--primary);
}

.hero-mobile-stat__label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.3;
}

/* ── Dashboard collage ─────────────────────────────────────────── */
.dashboard-collage {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dc-row {
  display: grid;
  gap: 12px;
}

.dc-row--top {
  grid-template-columns: 1.35fr 1fr;
}

.dc-row--bottom {
  grid-template-columns: repeat(3, 1fr);
}

.dc-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.dc-card--small {
  padding: 14px;
}

.dc-card__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.dc-card__value {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.dc-card__change {
  font-size: 11px;
  color: #22c55e;
  font-weight: 600;
  margin-top: 2px;
}

.dc-card__sub {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 4px;
}

.dc-card__metric {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin: 5px 0 2px;
}

/* Mini bar chart */
.dc-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
  margin: 12px 0 6px;
}

.dc-bar {
  flex: 1;
  background: var(--border-light);
  border-radius: 2px 2px 0 0;
  min-width: 0;
  transform-origin: bottom center;
  animation: dcBarGrow 4.5s cubic-bezier(.22,1,.36,1) infinite;
  animation-delay: calc(var(--i, 0) * 0.09s);
}

.dc-bar--hi { background: var(--primary); }

.dc-bar--h30 { height: 30%; }
.dc-bar--h42 { height: 42%; }
.dc-bar--h36 { height: 36%; }
.dc-bar--h58 { height: 58%; }
.dc-bar--h50 { height: 50%; }
.dc-bar--h72 { height: 72%; }
.dc-bar--h86 { height: 86%; }
.dc-bar--h100 { height: 100%; }

/* AI workflow mini */
.dc-workflow {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.dc-workflow__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: var(--text-secondary);
  padding: 3px 0;
}

.dc-workflow__item {
  transition: color 0.3s ease;
  animation: dcStepText 5s linear infinite;
  animation-delay: calc(var(--step, 0) * 0.7s);
}

.dc-workflow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-medium);
  flex-shrink: 0;
  animation: dcDotPulse 5s ease-in-out infinite;
  animation-delay: calc(var(--step, 0) * 0.7s);
}

.dc-workflow__line {
  position: relative;
  width: 2px;
  height: 9px;
  background: var(--border-light);
  margin-left: 2.5px;
  flex-shrink: 0;
  overflow: hidden;
}
.dc-workflow__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  animation: dcLineFill 5s ease-in-out infinite;
  animation-delay: calc(var(--step, 0) * 0.7s + 0.35s);
}

/* Live indicator dot next to AI label */
.dc-card__label--live {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dc-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: dcLivePulse 1.8s ease-in-out infinite;
}

/* Speed ring — animated conic fill */
@property --ring-deg {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
.dc-speed-ring {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 6px 0 4px;
  background: conic-gradient(#22c55e var(--ring-deg, 338deg), var(--border-light) 0deg);
  animation: dcRingFill 4.5s ease-in-out infinite;
}
.dc-speed-ring::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--bg-secondary);
}
.dc-speed-ring__num {
  position: relative;
  z-index: 1;
}

/* ── Hero dashboard live animations ─────────────────────────────── */
@keyframes dcBarGrow {
  0%   { transform: scaleY(0.15); }
  35%  { transform: scaleY(1); }
  85%  { transform: scaleY(1); }
  100% { transform: scaleY(0.15); }
}

@keyframes dcDotPulse {
  0%, 100% { background: var(--border-medium); box-shadow: none; transform: scale(1); }
  8%       { background: var(--primary); box-shadow: 0 0 0 4px rgba(255,107,0,0.18); transform: scale(1.5); }
  16%      { background: var(--primary); box-shadow: 0 0 0 0 rgba(255,107,0,0); transform: scale(1); }
}

@keyframes dcStepText {
  0%, 100% { color: var(--text-secondary); }
  8%, 16%  { color: var(--text-primary); }
}

@keyframes dcLineFill {
  0%, 100% { transform: scaleY(0); }
  10%      { transform: scaleY(1); }
  90%      { transform: scaleY(1); }
}

@keyframes dcLivePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); opacity: 1; }
  50%      { box-shadow: 0 0 0 5px rgba(34,197,94,0); opacity: 0.6; }
}

@keyframes dcRingFill {
  0%   { --ring-deg: 0deg; }
  55%  { --ring-deg: 338deg; }
  90%  { --ring-deg: 338deg; }
  100% { --ring-deg: 338deg; }
}

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

.dc-card {
  animation: dcCardFloat 6s ease-in-out infinite;
}
.dc-row--top .dc-card:nth-child(2) { animation-delay: -3s; }
.dc-row--bottom .dc-card:nth-child(1) { animation-delay: -1.5s; }
.dc-row--bottom .dc-card:nth-child(2) { animation-delay: -4.5s; }
.dc-row--bottom .dc-card:nth-child(3) { animation-delay: -2.2s; }

@media (prefers-reduced-motion: reduce) {
  .dc-bar,
  .dc-workflow__item,
  .dc-workflow__dot,
  .dc-workflow__line::after,
  .dc-live-dot,
  .dc-speed-ring,
  .dc-card {
    animation: none !important;
  }
  .dc-speed-ring { --ring-deg: 338deg; }
  .dc-workflow__dot { background: var(--primary); }
  .dc-workflow__line::after { transform: scaleY(1); }
}

/* ── Section header split (heading + CTA inline) ───────────────── */
.section-header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

/* ── Who We Help ───────────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 56px;
}

.who-card {
  background: var(--bg-dark-2);
  padding: 36px 26px;
  transition: background var(--transition-base);
}

.who-card:hover { background: rgba(255,107,0,.1); }

.who-card__icon {
  font-size: 30px;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

.who-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}

.who-card__desc {
  font-size: var(--text-sm);
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

/* ── Services V2 ───────────────────────────────────────────────── */
.services-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card-v2 {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.service-card-v2:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--border-medium);
}

.service-card-v2--ai {
  background: var(--bg-dark);
  border-color: rgba(255,107,0,.2);
}

.service-card-v2__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.service-card-v2--ai .service-card-v2__icon-wrap {
  background: rgba(255,107,0,.15);
}

.service-card-v2__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.service-card-v2--ai .service-card-v2__title {
  color: var(--text-on-dark);
}

.service-card-v2__benefit {
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 16px;
}

.service-card-v2__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  flex: 1;
}

.service-card-v2__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.service-card-v2--ai .service-card-v2__item {
  color: rgba(255,255,255,.65);
}

.service-card-v2__check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,107,0,.1);
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-v2__metric {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34,197,94,.1);
  color: #15803d;
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
  width: fit-content;
}

.service-card-v2__cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: gap var(--transition-fast);
}

.service-card-v2:hover .service-card-v2__cta { gap: 8px; }

/* ── Free Audit section ────────────────────────────────────────── */
.audit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 48px 0 40px;
}

.audit-point {
  background: rgba(255,255,255,.03);
  padding: 28px 24px;
  transition: background var(--transition-base);
}

.audit-point:hover { background: rgba(255,107,0,.06); }

.audit-point__icon {
  font-size: 26px;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.audit-point__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 6px;
}

.audit-point__desc {
  font-size: var(--text-sm);
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

.audit-cta-row {
  text-align: center;
}

/* ── Proof / Case study cards ──────────────────────────────────── */
.proof-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.proof-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.proof-card__screen {
  aspect-ratio: 16 / 9;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-card__screen::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(255,107,0,.1), transparent);
  pointer-events: none;
}

/* Browser chrome bar decoration */
.proof-card__chrome {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: var(--bg-dark-2);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}

.proof-card__chrome-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.proof-card__chrome-dot--r { background: #ef4444; }
.proof-card__chrome-dot--y { background: #f59e0b; }
.proof-card__chrome-dot--g { background: #22c55e; }

.proof-card__screen-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 16px;
}

.proof-card__before {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.proof-card__kpi {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.proof-card__kpi-label {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  margin-top: 5px;
}

.proof-card__body {
  padding: 20px 22px;
}

.proof-card__category {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 6px;
}

.proof-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.proof-card__result {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.proof-cta-row {
  text-align: center;
  margin-top: 40px;
}

/* ── AI Workflow ───────────────────────────────────────────────── */
.workflow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px auto 40px;
  max-width: 860px;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.workflow-step__bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.workflow-step__bubble:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,107,0,.08);
}

.workflow-step__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  max-width: 72px;
  line-height: 1.3;
}

.workflow-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--border-medium), rgba(255,107,0,.6));
  position: relative;
  margin-bottom: 36px;
}

.workflow-connector::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(255,107,0,.6);
}

.workflow-cta-row {
  text-align: center;
}

/* ── Technology stack ──────────────────────────────────────────── */
.tech-categories {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.tech-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.tech-row__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  min-width: 100px;
  padding-top: 6px;
  flex-shrink: 0;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-badge {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: border-color var(--transition-fast), color var(--transition-fast);
  cursor: default;
}

.tech-badge:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ── Founder V2 ────────────────────────────────────────────────── */
.founder-photo-frame {
  aspect-ratio: 4 / 5;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border-light); /* TODO: Remove border once a real founder photo is added */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.founder-photo-frame__icon {
  font-size: 40px;
  opacity: 0.2;
  line-height: 1;
}

.founder-photo-frame__hint {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  max-width: 160px;
  line-height: 1.5;
  opacity: 0.6;
}

.founder-name-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
}

.founder-name-card__role {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.founder-name-card__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.founder-name-card__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.founder-li-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #0a66c2;
  background: rgba(10,102,194,.08);
  border: 1px solid rgba(10,102,194,.2);
  border-radius: var(--radius-sm);
  padding: 3px 8px;
  transition: background var(--transition-fast);
}
.founder-li-btn:hover { background: rgba(10,102,194,.15); }

.founder-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
}

.founder-quote {
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.founder-quote__text {
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.founder-quote__attr {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.founder-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 28px;
}

.founder-metric__value {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--text-primary);
}

.founder-metric__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.founder-metric-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

.founder-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Delivery model mini-cards */
.delivery-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.delivery-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.delivery-card:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.delivery-card__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.delivery-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.delivery-card__desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Mobile sticky CTA ─────────────────────────────────────────── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 10px 16px 14px;
  gap: 10px;
}

.mobile-sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 12px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 700;
  transition: opacity var(--transition-fast);
}

.mobile-sticky-cta__btn:hover { opacity: 0.88; }

.mobile-sticky-cta__btn--wa {
  background: #25D366;
  color: white;
}

.mobile-sticky-cta__btn--audit {
  background: var(--primary);
  color: white;
}

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

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

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

  .dc-row--top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .mobile-sticky-cta {
    display: flex;
  }

  /* Extra room so footer isn't hidden under sticky bar */
  #footer-placeholder {
    padding-bottom: 68px;
  }

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

  .who-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .audit-grid {
    grid-template-columns: 1fr;
  }

  /* Workflow goes vertical on mobile */
  .workflow-visual {
    flex-direction: column;
    align-items: flex-start;
    margin: 32px 0;
  }

  .workflow-step {
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    flex: none;
    width: 100%;
  }

  .workflow-step__label {
    max-width: 100%;
    text-align: left;
    padding-top: 10px;
  }

  .workflow-step__bubble { flex-shrink: 0; }

  .workflow-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, var(--border-medium), rgba(255,107,0,.6));
    margin-bottom: 0;
    margin-left: 28px;
  }

  .workflow-connector::after {
    top: auto;
    right: -4px;
    bottom: 0;
    border-top: 7px solid rgba(255,107,0,.6);
    border-bottom: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
  }

  .tech-row {
    flex-direction: column;
    gap: 10px;
  }

  .delivery-cards {
    grid-template-columns: 1fr;
  }

  .founder-metrics {
    gap: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  /* Push WhatsApp floating button above the sticky CTA bar */
  .whatsapp-btn {
    bottom: 78px !important;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-mobile-stats {
    display: grid;
  }
}

@media (max-width: 479px) {
  .who-grid {
    grid-template-columns: 1fr;
  }

  .trust-pills {
    gap: 6px;
  }

  .dc-row--bottom {
    grid-template-columns: 1fr;
  }
}
