/* =============================================================================
   PRICING APPROACH — homepage framing-and-hub section. Explains how quotes are
   built and deep-links to each service page's #pricing anchor. Section-scoped
   stylesheet, loaded via the homepage pageCss bundle.
   ========================================================================== */
.quote-section {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(15, 187, 245, 0.06) 0%, transparent 55%),
    #141d2b;
  border-top: 1px solid rgba(15, 187, 245, 0.35);
  border-bottom: 1px solid rgba(15, 187, 245, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(15, 187, 245, 0.12),
    inset 0 -1px 0 rgba(15, 187, 245, 0.12);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.quote-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.25rem 1.4rem;
}

.quote-card__title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
}

.quote-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.55;
}

.quote-card__list li {
  position: relative;
  padding-left: 1.3rem;
}

.quote-card__list li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-right: 2px solid #0fbbf5;
  border-bottom: 2px solid #0fbbf5;
  transform: rotate(-45deg);
}

.quote-section__note {
  max-width: 840px;
  margin: 1.5rem auto 0;
  color: #aab4c2;
  font-size: 0.93rem;
  line-height: 1.65;
  text-align: center;
}

.quote-hub {
  max-width: 900px;
  margin: 1.75rem auto 0;
}

.quote-hub__lead {
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.9rem;
}

.quote-hub__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.quote-hub__chip {
  display: block;
}

.quote-hub__chip a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.quote-hub__chip--primary a {
  min-height: 52px;
  padding: 0.6rem 0.8rem;
  font-size: 0.95rem;
  background: rgba(15, 187, 245, 0.12);
  border: 1px solid rgba(15, 187, 245, 0.45);
  color: #0fbbf5;
}

.quote-hub__chip--primary a:hover,
.quote-hub__chip--primary a:focus-visible {
  background: rgba(15, 187, 245, 0.2);
  border-color: rgba(15, 187, 245, 0.7);
  color: #fff;
}

.quote-hub__chip--secondary a {
  min-height: 44px;
  padding: 0.5rem 0.7rem;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #aab4c2;
}

.quote-hub__chip--secondary a:hover,
.quote-hub__chip--secondary a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.quote-section__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

@media (max-width: 600px) {
  .quote-hub__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quote-card {
    padding: 1.1rem;
  }
}
