/* ==========================================================================
   PRICING PAGE DESIGN REFRESH
   Keeps existing content/data; styling only
   ========================================================================== */

body.page .wp-site-blocks {
  background: #f5f7fb;
}

/* Main pricing wrapper */
body.page main {
  padding-top: 24px;
  padding-bottom: 40px;
}

/* Heading + intro */
body.page main .wp-block-heading {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  color: #0f172a;
  letter-spacing: -0.02em;
}

body.page main .wp-block-group > .wp-block-heading {
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 800 !important;
  text-align: center;
  margin-bottom: 10px;
}

body.page main .wp-block-group > .wp-block-paragraph {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  text-align: center;
  font-size: 1rem;
  color: #64748b;
  margin-top: 0;
}

/* Card grid spacing */
body.page main .wp-block-columns.alignwide {
  gap: 20px;
}

/* Pricing cards */
body.page main .wp-block-columns.alignwide > .wp-block-column {
  background: #ffffff;
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.page main .wp-block-columns.alignwide > .wp-block-column:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.4) !important;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.12);
}

/* Plan name */
body.page main .wp-block-columns.alignwide > .wp-block-column h3 {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 1.25rem;
  font-weight: 700 !important;
  color: #0f172a;
}

/* Price line */
body.page main .wp-block-columns.alignwide > .wp-block-column .has-large-font-size,
body.page main .wp-block-columns.alignwide > .wp-block-column .has-text-align-right {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  color: #1d4ed8;
  font-weight: 800 !important;
}

/* Body copy and feature list */
body.page main .wp-block-columns.alignwide > .wp-block-column p,
body.page main .wp-block-columns.alignwide > .wp-block-column li {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Checkmark list color */
body.page main .is-style-checkmark-list li::marker {
  color: #2563eb;
}

/* Buttons */
body.page main .wp-block-button .wp-element-button {
  width: 100%;
  border-radius: 10px !important;
  border: none !important;
  background: #2563eb !important;
  color: #ffffff !important;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 0.9rem;
  font-weight: 600 !important;
  padding: 11px 16px !important;
  line-height: 1.2;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease;
}

body.page main .wp-block-button .wp-element-button:hover {
  background: #1d4ed8 !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.2);
}

/* Mobile spacing */
@media (max-width: 781px) {
  body.page main {
    padding-top: 12px;
    padding-bottom: 28px;
  }

  body.page main .wp-block-columns.alignwide > .wp-block-column {
    border-radius: 14px !important;
  }
}
