/* Static service / all-offers pricing cards (replaces AtCap widget) */
.amax-offers {
  width: 100%;
  margin: 0.5rem 0 2rem;
  font-family: "Open Sans", sans-serif;
}

.amax-offers--single {
  display: flex;
  justify-content: center;
}

.amax-offers--single .amax-offer-card {
  width: 100%;
  max-width: 440px;
}

.amax-offers--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.amax-offer-card {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(11, 43, 94, 0.1);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.amax-offer-card:hover {
  box-shadow: 0 12px 36px rgba(11, 43, 94, 0.14);
  transform: translateY(-2px);
}

.amax-offer-card__accent {
  height: 5px;
  background: linear-gradient(90deg, #0b2b5e 0%, #00b9f2 100%);
}

.amax-offer-card__body {
  padding: 1.5rem 1.5rem 1.25rem;
  text-align: center;
}

.amax-offer-card__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00b9f2;
}

.amax-offer-card__title {
  margin: 0 0 1rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0b2b5e;
}

.amax-offer-card__pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.amax-offer-card__was {
  font-size: 1.25rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
}

.amax-offer-card__now {
  font-family: Montserrat, sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: #e51a37;
}

.amax-offer-card__note {
  margin: -0.5rem 0 1rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.amax-offer-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.amax-offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-family: Montserrat, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.amax-offer-card .amax-offer-btn--primary,
.amax-offer-card a.amax-offer-btn--primary.launch-scheduler {
  background: #0b2b5e !important;
  color: #fff !important;
  border: 2px solid #0b2b5e !important;
}

.amax-offer-card .amax-offer-btn--primary:hover,
.amax-offer-card .amax-offer-btn--primary:focus,
.amax-offer-card .amax-offer-btn--primary:visited,
.amax-offer-card a.amax-offer-btn--primary.launch-scheduler:hover,
.amax-offer-card a.amax-offer-btn--primary.launch-scheduler:focus {
  background: #08305f !important;
  border-color: #08305f !important;
  color: #fff !important;
}

.amax-offer-btn--secondary {
  background: #fff;
  color: #0b2b5e;
  border: 2px solid #0b2b5e;
}

.amax-offer-btn--secondary:hover {
  background: #f5f8fc;
  color: #0b2b5e;
}

/* Offers section: space below Elementor heading */
.elementor-widget-shortcode .amax-offers,
.elementor-widget-html .amax-offers {
  margin-top: 0.25rem;
}

@media (max-width: 767px) {
  .amax-offer-card__now {
    font-size: 2.25rem;
  }

  .amax-offers--grid {
    grid-template-columns: 1fr;
  }
}
