
.ab-promise {
  position: relative;
  overflow: hidden;
  background: #F9F5F5;
  padding: 78px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

/* Diagonal lines pattern - same treatment as .vm-hero-wrap */
.ab-promise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(144, 25, 28, 0.03) 0px,
    rgba(144, 25, 28, 0.03) 1px,
    transparent 1px,
    transparent 11px
  );
  pointer-events: none;
}

/* Soft gold glow, top-right */
.ab-promise::after {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(201, 166, 86, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.ab-promise-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ab-promise-eyebrow {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0;
}

.ab-promise-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  margin: 18px auto 30px;
}

.ab-promise-quote {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 27px;
  line-height: 1.55;
  color: #1a1a1a;
  max-width: 940px;
  margin: 0 auto 54px;
  padding: 0;
  border: 0;
  quotes: none;
}

.ab-promise-quote span {
  color: #90191c;
}

/* Tiles */
.ab-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ab-promise-card {
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 34px 24px 30px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Gold rule that draws in on hover, matching .vm-why-card */
.ab-promise-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.ab-promise-card:hover {
  transform: translateY(-5px);
  border-color: #e6d9d9;
  box-shadow: 0 14px 32px rgba(26, 26, 26, 0.08);
}

.ab-promise-card:hover::after {
  width: 50px;
}

.ab-promise-num {
  display: block;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #c9a656;
  margin: 0 0 16px;
}

.ab-promise-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fdf2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.35s ease, transform 0.35s ease;
}

.ab-promise-icon svg {
  stroke: #90191c;
  transition: stroke 0.35s ease;
}

.ab-promise-card:hover .ab-promise-icon {
  background: #90191c;
  transform: translateY(-3px);
}

.ab-promise-card:hover .ab-promise-icon svg {
  stroke: #fff;
}

.ab-promise-name {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.45;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .ab-promise-quote { font-size: 23px; }
  .ab-promise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .ab-promise { padding: 56px 16px; }
  .ab-promise-quote {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 38px;
  }
  .ab-promise-card { padding: 28px 18px 26px; }
}

@media (max-width: 480px) {
  .ab-promise-grid { grid-template-columns: 1fr; gap: 16px; }
  .ab-promise-quote { font-size: 17.5px; }
}
