/* Pricing Quote section.
   Inline wrapper for the pricing-form embed on /amalgamy/pricing/.
   Two-column layout at desktop (intro copy left, form right);
   stacked on mobile. No card surface — the form's own inputs carry
   enough visual weight, and the glass-strip container the page
   already provides sets the surface. */

.pricing-quote {
  position: relative;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.pricing-quote > .container { position: relative; }

.pricing-quote__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.pricing-quote__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  position: sticky;
  top: 6rem;
}

.pricing-quote__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: var(--font-weight-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-foreground);
  max-width: 22ch;
  margin: 0;
  text-wrap: balance;
  text-transform: capitalize;
}

.pricing-quote__deck {
  font-size: var(--fs-lg);
  line-height: 1.45;
  color: var(--color-muted-foreground);
  margin: 0;
  max-width: 52ch;
}

/* Form container: sit on a white card so the inputs read crisp
   against the page's faintly tinted surface. Shadow + border match
   the site's card vocabulary. */
.pricing-quote__form {
  background: var(--color-card, #fff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  box-shadow:
    0 1px 2px rgb(16 17 20 / 4%),
    0 10px 28px -14px rgb(16 17 20 / 14%);
}

/* --- Responsive --------------------------------------------------- */

@media (max-width: 960px) {
  .pricing-quote__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pricing-quote__intro {
    position: static;
  }
}
