/* ===== Pricing page — layers on styles.css and about.css ===== */

.pricing-section { padding: 48px 0 58px; background: linear-gradient(180deg, #fff 0%, #f8fcfe 100%); }
.pricing-intro { max-width: 720px; margin: 0 auto 35px; text-align: center; color: #34434d; font-size: 17px; line-height: 1.6; }
.pricing-intro p { margin: 0; }
.compact-heading { margin-bottom: 30px; }

.price-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.price-card {
  position: relative; padding: 29px 27px 26px; border: 1px solid #d7e3eb; border-top: 4px solid var(--green);
  border-radius: 10px; background: #fff; box-shadow: var(--shadow);
}
.price-card.featured { border-color: #aaca64; border-top-color: var(--green-dark); box-shadow: 0 15px 32px rgba(83, 124, 0, .15); }
.price-badge {
  position: absolute; top: -15px; right: 18px; margin: 0; padding: 6px 11px; border-radius: 999px;
  color: #fff; background: var(--green-dark); font-size: 11px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase;
}
.price-label { margin: 0; font-family: "Anton", Impact, sans-serif; font-size: 22px; letter-spacing: 1px; text-transform: uppercase; }
.price { margin: 7px 0 10px; color: var(--green-dark); font-family: "Anton", Impact, sans-serif; font-size: 50px; line-height: 1; }
.price span { margin-right: 2px; font-size: 25px; vertical-align: 15px; }
.price-summary { min-height: 69px; margin: 0 0 18px; color: #4d5a63; font-size: 14.5px; line-height: 1.52; }
.price-card ul { margin: 0; padding: 17px 0 0; border-top: 1px solid #e1e9ee; list-style: none; }
.price-card li { position: relative; margin: 0 0 10px; padding-left: 20px; color: #26343d; font-size: 14px; line-height: 1.4; }
.price-card li:last-child { margin-bottom: 0; }
.price-card li::before { content: ""; position: absolute; left: 1px; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.repair-section { padding: 51px 0 57px; background: var(--blue-soft); border-top: 1px solid #dbeaf1; border-bottom: 1px solid #dbeaf1; }
.repair-list { max-width: 860px; margin: 0 auto; overflow: hidden; border: 1px solid #cee0e9; border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.repair-row { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 15px 22px; border-bottom: 1px solid #e2ebf0; }
.repair-row:last-child { border-bottom: 0; }
.repair-row:nth-child(even) { background: #fbfdff; }
.repair-row span { color: #26343d; }
.repair-row strong { flex: none; color: #174d68; font-size: 15px; text-align: right; }

.pricing-notes { padding: 48px 0; background: #fff; }
.notes-panel { display: grid; grid-template-columns: .75fr 1.4fr; gap: 42px; max-width: 920px; margin: 0 auto; padding: 31px 34px; border-left: 5px solid var(--green); border-radius: 8px; background: #f6fbfd; }
.notes-kicker { margin: 0 0 7px; color: var(--green-dark); font-family: "Anton", Impact, sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.notes-panel h2 { margin: 0; font-family: "Anton", Impact, sans-serif; font-size: 29px; line-height: 1.08; letter-spacing: 1.3px; text-transform: uppercase; }
.notes-panel ul { margin: 0; padding-left: 20px; }
.notes-panel li { margin: 0 0 11px; color: #33424c; font-size: 14.5px; line-height: 1.5; }
.notes-panel li:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .price-card-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .price-summary { min-height: 0; }
  .notes-panel { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 560px) {
  .pricing-section, .repair-section { padding-block: 38px; }
  .price-card { padding: 26px 21px 23px; }
  .repair-row { align-items: flex-start; padding: 14px 16px; gap: 18px; font-size: 14px; }
  .repair-row strong { max-width: 45%; }
  .notes-panel { padding: 25px 22px; }
}

@media (max-width: 420px) {
  .pricing-intro { text-align: left; font-size: 16px; }
  .price { font-size: 46px; }
  .repair-row { flex-direction: column; gap: 4px; }
  .repair-row strong { max-width: none; text-align: left; }
  .notes-panel { padding: 22px 18px; border-left-width: 4px; }
  .notes-panel h2 { font-size: 25px; }
}
