/* Public page blocks — builder output */
.pb-page {
  --pb-green: #16a873;
  --pb-green-dark: #0f6b4d;
  --pb-navy: #0f2744;
  --pb-muted: #5b7084;
  --pb-line: rgba(15, 39, 68, 0.12);
  --pb-max: 1120px;
  --pb-radius: 16px;
}

.pb-shell {
  width: min(var(--pb-max), calc(100% - 40px));
  margin-inline: auto;
}

.pb-block {
  padding-block: clamp(18px, 3vw, 36px);
}

.pb-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pb-green-dark);
  background: rgba(22, 168, 115, 0.1);
}

.pb-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #061a16, #06121f);
  color: #f3fff9;
}

.pb-hero.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pb-hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}

.pb-hero.has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 18, var(--pb-hero-overlay, 0.55));
}

.pb-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.pb-align-center .pb-hero-inner,
.pb-align-center.pb-heading .pb-shell,
.pb-align-center.pb-button-row .pb-shell {
  text-align: center;
  margin-inline: auto;
}

.pb-align-right .pb-hero-inner,
.pb-align-right.pb-heading .pb-shell,
.pb-align-right.pb-button-row .pb-shell {
  text-align: right;
  margin-left: auto;
}

.pb-hero-title {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.pb-hero-lead {
  margin: 0 0 18px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: rgba(243, 255, 249, 0.86);
}

.pb-heading-text {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  color: var(--pb-navy);
}

.pb-rich {
  color: var(--pb-navy);
  line-height: 1.7;
}

.pb-rich p,
.pb-rich ul,
.pb-rich ol {
  margin: 0 0 12px;
}

.pb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 11px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

.pb-btn-primary {
  color: #06150e;
  background: linear-gradient(135deg, #f5c542, #2fd889);
}

.pb-btn-outline {
  color: var(--pb-navy);
  border-color: var(--pb-line);
  background: #fff;
}

.pb-btn-ghost {
  color: var(--pb-green-dark);
  background: rgba(22, 168, 115, 0.08);
}

.pb-image-el {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.pb-image-el.is-rounded {
  border-radius: var(--pb-radius);
}

.pb-image-el.has-shadow {
  box-shadow: 0 24px 60px rgba(15, 39, 68, 0.14);
}

.pb-image-caption {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--pb-muted);
  text-align: center;
}

.pb-columns-grid {
  display: grid;
  gap: 20px;
}

.pb-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pb-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pb-cta {
  background: linear-gradient(135deg, rgba(22, 168, 115, 0.08), rgba(15, 111, 184, 0.08));
}

.pb-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--pb-line);
  border-radius: var(--pb-radius);
  background: rgba(255, 255, 255, 0.82);
}

.pb-cta-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.5vw, 30px);
}

.pb-cta-copy p {
  margin: 0;
  color: var(--pb-muted);
}

.pb-features-title,
.pb-faq-title {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.5vw, 30px);
}

.pb-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.pb-feature-card {
  padding: 18px;
  border: 1px solid var(--pb-line);
  border-radius: 14px;
  background: #fff;
}

.pb-feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.pb-feature-card p {
  margin: 0;
  color: var(--pb-muted);
  line-height: 1.55;
}

.pb-faq-item {
  border: 1px solid var(--pb-line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}

.pb-faq-item + .pb-faq-item {
  margin-top: 10px;
}

.pb-faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.pb-faq-item p {
  margin: 10px 0 0;
  color: var(--pb-muted);
  line-height: 1.55;
}

.pb-spacer-sm { height: 16px; }
.pb-spacer-md { height: 32px; }
.pb-spacer-lg { height: 56px; }
.pb-spacer-xl { height: 88px; }

.pb-divider span {
  display: block;
  height: 1px;
  background: var(--pb-line);
}

.pb-divider-dots span {
  height: auto;
  text-align: center;
  color: var(--pb-muted);
  letter-spacing: 0.5em;
}

.pb-divider-dots span::before {
  content: "• • •";
}

html.theme-dark .pb-page {
  --pb-navy: #eef7f2;
  --pb-muted: #9db0bf;
  --pb-line: rgba(255, 255, 255, 0.1);
}

html.theme-dark .pb-feature-card,
html.theme-dark .pb-faq-item,
html.theme-dark .pb-cta-inner {
  background: rgba(16, 24, 38, 0.72);
}

@media (max-width: 760px) {
  .pb-cols-2,
  .pb-cols-3 {
    grid-template-columns: 1fr;
  }

  .pb-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
