/* =====================================================
   GUARANTEE CARDS SECTION
   Zero Box-Shadow - Swiss Clean Aesthetics
===================================================== */

.ibr-guarantee {
  padding: 90px 0;
  background: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #334155;
  border-top: none;
  border-bottom: none;
  position: relative;
}

.ibr-guarantee__container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* Header */
.ibr-guarantee__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.ibr-guarantee__title {
  font-size: clamp(28px, 3.3vw, 38px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}

.ibr-guarantee__title span {
  background: linear-gradient(135deg, #0a64c4 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ibr-guarantee__subtitle {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Grid Layout */
.ibr-guarantee__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Guarantee Card */
.ibr-guarantee__card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.ibr-guarantee__card:hover {
  transform: translateY(-4px);
  border-color: #0a64c4;
}

.ibr-guarantee__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #0a64c4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background 0.25s ease, color 0.25s ease;
}

.ibr-guarantee__card:hover .ibr-guarantee__card-icon {
  background: #0a64c4;
  color: #ffffff;
}

.ibr-guarantee__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #059669;
  background: #d1fae5;
  padding: 3px 9px;
  border-radius: 4px;
  align-self: flex-start;
}

.ibr-guarantee__card-title {
  font-size: 17.5px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
}

.ibr-guarantee__card-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}
