/* ============================================
   How We Deliver section (replaces Real Results)
   Honest, no fake social proof
   ============================================ */

#how-we-deliver {
  padding: clamp(64px, 8vw, 96px) 0;
  background: #000;
}

/* ===== Stats bar ===== */
.hwd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto clamp(48px, 7vw, 72px);
}
@media (max-width: 760px) {
  .hwd-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
.hwd-stat {
  padding: 24px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.hwd-stat:hover {
  border-color: rgba(0, 191, 255, 0.3);
  background: rgba(0, 191, 255, 0.03);
}
.hwd-stat__value {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #00bfff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hwd-stat__label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

/* ===== Process steps ===== */
.hwd-process {
  max-width: 1080px;
  margin: 0 auto clamp(48px, 7vw, 72px);
}
.hwd-process__head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
}
.hwd-process__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00bfff;
  font-weight: 600;
  margin-bottom: 12px;
}
.hwd-process__title {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  color: #fff;
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.hwd-process__sub {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto;
  max-width: 640px;
}

.hwd-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 900px) {
  .hwd-steps { grid-template-columns: 1fr; gap: 16px; }
}

.hwd-step {
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  position: relative;
  transition: all 0.2s ease;
}
.hwd-step:hover {
  border-color: rgba(0, 191, 255, 0.35);
  transform: translateY(-3px);
}
.hwd-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 191, 255, 0.12);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 50%;
  color: #00bfff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 18px;
}
.hwd-step__title {
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.hwd-step__time {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  font-weight: 600;
}
.hwd-step__desc {
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ===== Founder promise card ===== */
.hwd-promise {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 44px);
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(0, 191, 255, 0.18);
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 640px) {
  .hwd-promise { grid-template-columns: 1fr; text-align: center; gap: 18px; }
}

.hwd-promise__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00bfff 0%, #0080ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .hwd-promise__avatar { margin: 0 auto; }
}

.hwd-promise__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00bfff;
  font-weight: 600;
  margin-bottom: 10px;
}
.hwd-promise__quote {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px;
  font-weight: 400;
}
.hwd-promise__sig {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}
.hwd-promise__sig strong { color: #fff; font-weight: 600; }
.hwd-promise__sig a {
  color: #00bfff;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 191, 255, 0.3);
  transition: border-color 0.2s ease;
}
.hwd-promise__sig a:hover { border-color: #00bfff; }
