.home-estimate-callout {
  position: relative;
  z-index: 1;
  padding: 24px 0 28px;
  background: #08090b;
}

.home-estimate-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 24px 28px;
  border: 1px solid rgba(186,0,25, .48);
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(186,0,25, .22), transparent 48%),
    linear-gradient(115deg, #181012 0%, #0b0b0d 52%, #101114 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .035);
}

.home-estimate-badge {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 116px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .45);
  background:
    linear-gradient(118deg, transparent 0%, transparent 43%, rgba(255,255,255,.3) 49%, rgba(255,255,255,.08) 53%, transparent 59%, transparent 100%),
    linear-gradient(145deg, #f51d31 0%, #c9001d 28%, #71000d 52%, #d90020 73%, #65000b 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(170, 0, 18, .28), inset 0 1px rgba(255, 255, 255, .56), inset 0 -4px 7px rgba(45, 0, 0, .5);
  text-align: center;
}

.home-estimate-badge::after {
  position: absolute;
  inset: 2px 2px auto;
  height: 12%;
  border-radius: 14px 14px 55% 55%;
  background: linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,255,255,.06) 48%, transparent);
  content: "";
  pointer-events: none;
}

.home-estimate-badge span:first-child {
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: .06em;
  line-height: 1;
}

.home-estimate-badge span:last-child {
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
  line-height: 1.25;
}

.home-estimate-copy h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
  font-weight: 850;
  line-height: 1.15;
}

.home-estimate-copy p {
  max-width: 850px;
  margin: 0;
  color: #d0d5dc;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.home-estimate-action {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 12px;
  background:
    linear-gradient(118deg, transparent 0%, transparent 42%, rgba(255,255,255,.24) 49%, rgba(255,255,255,.05) 54%, transparent 61%, transparent 100%),
    linear-gradient(145deg, #e7192c 0%, #ba0019 38%, #71000e 100%);
  color: #fff;
  font-size: .96rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(130, 0, 12, .3), inset 0 1px rgba(255,255,255,.3), inset 0 -2px 3px rgba(45,0,0,.38);
  transition: background-color .18s ease, transform .18s ease;
}

.home-estimate-action:hover { filter: brightness(1.08); transform: translateY(-1px); }
.home-estimate-action:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

@media (max-width: 760px) {
  .home-estimate-callout { padding: 17px 0 21px; }
  .home-estimate-card { grid-template-columns: 86px minmax(0, 1fr); gap: 17px; padding: 18px; }
  .home-estimate-badge { min-height: 88px; border-radius: 13px; }
  .home-estimate-badge span:first-child { font-size: 1.25rem; }
  .home-estimate-badge span:last-child { font-size: .63rem; }
  .home-estimate-action { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 420px) {
  .home-estimate-card { grid-template-columns: 1fr; text-align: center; }
  .home-estimate-badge { min-height: 68px; }
}
