/* ============================================================
   pricing.blade.php — page-specific styles
   The plan grid, feature list and enterprise band themselves live in
   styles.css (.pricing-*) because the homepage teaser renders the same
   cards. Only the page hero and its spacing are page-local.
   ============================================================ */

/* ----- Hero ----- */
.pricing-hero {
    padding: 48px 0 8px;
}
.pricing-hero .pricing-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}
.pricing-hero .display {
    font-size: 66px;
    line-height: 1.05;
    text-wrap: balance;
    margin: 0;
}
.pricing-hero .lede {
    margin: 0 auto;
    max-width: 720px;
}

/* The hero already carries the eyebrow + title, so the grid below it does
   not need the standard section top padding. */
.pricing-page-section {
    padding: 8px 0 24px;
}

@media (max-width: 980px) {
    .pricing-hero .display { font-size: 52px; }
}
@media (max-width: 640px) {
    .pricing-hero { padding: 32px 0 4px; }
    .pricing-hero .display { font-size: 40px; }
}
