/* ==== 3-Step Quoting Process (scoped) ==== */
.qp3 {
  --qp3-ink: #0f172a;
  --qp3-muted: #5b6778;
  --qp3-brand: #12616E;      /* unified brand color */
  
  font-family: 'Montserrat', sans-serif;
  padding: 64px 16px 72px;
  background: #f2fdf9;       /* mint green section background */

  position: relative;
  isolation: isolate;
  width: 100%;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.qp3 .qp3-wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.qp3 .qp3-h2 {
  margin: 0 0 6px;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: var(--qp3-ink);
}

.qp3 .qp3-sub {
  margin: 0 0 42px;
  color: var(--qp3-muted);
  font-size: clamp(14px, 2vw, 17px);
}

/* Steps grid */
.qp3 .qp3-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 860px) {
  .qp3 .qp3-steps {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Each step */
.qp3 .qp3-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Unified brand icon box — solid color, no gradient */
.qp3 .qp3-ico {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e4f5f2;          /* soft mint tint */
  color: var(--qp3-brand);
  transition: background .2s ease, transform .15s ease;
}

/* Subtle hover effect */
.qp3 .qp3-ico:hover {
  background: #d7eeeb;
  transform: translateY(-2px);
}

.qp3 .qp3-ico svg {
  width: 28px;
  height: 28px;
}

/* Titles & Text */
.qp3 .qp3-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--qp3-ink);
  margin: 0;
}

.qp3 .qp3-text {
  margin: 0;
  font-size: 15px;
  color: var(--qp3-muted);
  line-height: 1.6;
  max-width: 300px;
}
