/* Brand Promise — centered Office composition, equal value cards */

body section.ishi-promise,
section.ishi-promise {
  --office: #056066;
  --office-dark: #03474c;
  --office-ink: #102a2d;
  --office-muted: #5c7072;
  --office-line: rgba(5, 96, 102, 0.14);
  --office-warm: #f7fbfa;
  --office-accent: #f4a62a;
  --office-light: #e9f5f4;
  --office-max: 1180px;

  display: block !important;
  box-sizing: border-box !important;
  width: 100% !important;
  margin: 0 !important;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 !important;
  clear: both !important;
  float: none !important;
  background: #fff !important;
  color: var(--office-ink) !important;
  font-family: Poppins, Inter, "Segoe UI", system-ui, sans-serif !important;
}

.ishi-promise *,
.ishi-promise *::before,
.ishi-promise *::after {
  box-sizing: border-box !important;
}

.ishi-promise__wrap {
  width: min(var(--office-max), calc(100% - 40px)) !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.ishi-promise__logo {
  display: block !important;
  width: min(11.5rem, 42vw) !important;
  margin: 0 auto 1.75rem !important;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.ishi-promise__logo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
}

.ishi-promise__head {
  max-width: 46rem !important;
  margin: 0 auto 2.5rem !important;
  text-align: center !important;
}

body .ishi-promise .ishi-promise__kicker,
.ishi-promise__kicker {
  margin: 0 0 12px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  color: var(--office-accent) !important;
}

body .ishi-promise .ishi-promise__title,
.ishi-promise__title {
  margin: 0 0 1rem !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
  text-align: center !important;
  text-transform: none !important;
  color: var(--office-ink) !important;
}

body .ishi-promise .ishi-promise__lead,
.ishi-promise__lead {
  margin: 0 !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  text-align: center !important;
  color: var(--office-muted) !important;
}

.ishi-promise__grid {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ishi-promise__card {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 0.85rem !important;
  height: 100% !important;
  min-height: 8.5rem !important;
  margin: 0 !important;
  padding: 1.25rem 1.15rem !important;
  float: none !important;
  text-align: left !important;
  background: var(--office-warm) !important;
  border: 1px solid var(--office-line) !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 30px rgba(7, 63, 67, 0.06) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.ishi-promise__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(7, 63, 67, 0.1) !important;
}

.ishi-promise__num {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 2.1rem !important;
  height: 1.65rem !important;
  padding: 0 0.55rem !important;
  border-radius: 999px !important;
  background: linear-gradient(145deg, #08777e, var(--office)) !important;
  color: #fff !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
}

.ishi-promise__card strong {
  display: block !important;
  margin: 0 !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.015em !important;
  text-align: left !important;
  color: var(--office-ink) !important;
}

@media (max-width: 1100px) {
  .ishi-promise__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .ishi-promise__card:nth-child(4),
  .ishi-promise__card:nth-child(5) {
    grid-column: span 1 !important;
  }
}

@media (max-width: 720px) {
  .ishi-promise__wrap {
    width: min(var(--office-max), calc(100% - 28px)) !important;
  }

  .ishi-promise__grid {
    grid-template-columns: 1fr !important;
  }

  .ishi-promise__card {
    min-height: 0 !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.9rem !important;
    padding: 1rem 1.1rem !important;
  }

  .ishi-promise__head {
    margin-bottom: 1.75rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ishi-promise__card {
    transition: none !important;
  }

  .ishi-promise__card:hover {
    transform: none;
  }
}
