/* Hero Section */
.prices-hero {
  background-color: #476DB0;
  color: white;
  text-align: left;
  padding: 2rem 0;
  width: 100%;
  margin: 0;
}

.prices-hero h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.prices-hero p {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.prices-hero .hero-content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.prices-hero .hero-text,
.prices-hero .hero-bullets {
  flex: 1;
  padding: 1rem;
}

.prices-hero .hero-bullets ul {
  list-style-type: none;
  padding: 0;
}

.prices-hero .hero-bullets ul li {
  font-size: 22px;
  margin: 0.5rem 0;
  position: relative;
  padding-left: 1.2rem;
}

.prices-hero .hero-bullets ul li::before {
  content: "•";
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.prices-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Brand accent (same green as home “How it works” underline) */
:root {
  --simplicity-accent-green: #4cb047;
  --simplicity-accent-green-hover: #3d9a3d;
}

/* Pricing cards — equal grid columns, aligned interiors */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
  padding: 1rem 0 0;
  align-items: stretch;
}

@media (max-width: 767.98px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  border: 3px solid #476db0;
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: #fff;
  min-height: 17rem;
}

.pricing-card h3 {
  font-size: 1.35rem;
  color: #333;
  font-weight: 700;
  margin: 0 0 1rem;
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.pricing-card .vat-inc {
  font-size: 0.85em;
  font-weight: 600;
  color: #5a6478;
  margin-left: 0.2rem;
}

.pricing-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.input-fields {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.input-label-group,
.cost-label-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 8.5rem;
  max-width: 12rem;
  min-width: 0;
}

.label-small {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  min-height: 3.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

.label-small .label-sub {
  font-weight: 500;
  font-size: 0.95rem;
  color: #555;
}

.label-total {
  min-height: 3.25rem;
  justify-content: flex-end;
}

.input-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.pricing-card .pricing-qty-input {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 4.5rem;
  min-width: 4.5rem;
  padding: 0.4rem 0.25rem;
}

.pricing-card .pricing-total-input {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 6.5rem;
  min-width: 6.5rem;
  padding: 0.45rem 0.35rem;
  color: #333;
}

/* Pay: grey until terms accepted, then brand green */
.pay-button {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.65rem 2rem;
  border: none;
  border-radius: 25px;
  margin-top: 1.25rem;
  align-self: center;
  width: 100%;
  max-width: 15rem;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.pay-button:disabled,
.pay-button:disabled:hover {
  background-color: #adb5bd !important;
  color: #fff !important;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.pay-button:not(:disabled) {
  background-color: var(--simplicity-accent-green);
  cursor: pointer;
}

.pay-button:not(:disabled):hover {
  background-color: var(--simplicity-accent-green-hover);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.pay-button:not(:disabled):active {
  transform: translateY(1px);
}

.card-checkout-terms {
  width: 100%;
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border: 2px solid #dce6f5;
  border-radius: 8px;
  background: #f8fafc;
  text-align: center;
}

.card-checkout-terms .form-check {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  max-width: 100%;
}

.card-checkout-terms .form-check-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a2d52;
  line-height: 1.4;
}

.card-checkout-terms .form-check-input {
  margin: 0.15rem 0 0;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid #476db0;
  float: none;
}

.card-checkout-terms .form-check-input:checked {
  background-color: #4cb047;
  border-color: #4cb047;
}

.card-checkout-terms-hint {
  font-size: 0.78rem;
  color: #5a6478;
  margin: 0.5rem 0 0;
  text-align: center;
}

.hero-bullets {
  line-height: 1.5rem;
  margin-bottom: 3rem;
}

.body-head {
  text-decoration: underline #4cb047;
  text-underline-offset: 0.6rem;
}

.vat-inc {
  font-size: 16px;
}
