.pb-root {
  font-family: var(--f-body);
  color: var(--ink, #1e293b);
  min-width: 0;
  max-width: 100%;
}

.pb-root,
.pb-root *,
.pb-root *::before,
.pb-root *::after { box-sizing: border-box; }

.pb-section,
.pb-section-inner,
.pb-column,
.pb-widget { min-width: 0; max-width: 100%; }

.pb-widget,
.pb-widget :is(h1, h2, h3, h4, h5, h6, p, a, span, div, li, figcaption),
.pb-heading,
.pb-paragraph,
.pb-paragraph :is(p, a, span, li) {
  overflow-wrap: anywhere;
  word-wrap: break-word;
  word-break: break-word;
}

.pb-widget > * { max-width: 100%; }
.pb-widget :is(img, video, iframe, svg, canvas) { max-width: 100%; }
.pb-widget :is(a, button) { white-space: normal; }

.pb-section {
  padding: 2.5rem 1.5rem;
}
.pb-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.pb-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 720px) {
  .pb-section-inner {
    flex-direction: column;
  }
}

.pb-heading {
  font-family: var(--f-display, inherit);
  margin: 0;
  line-height: 1.25;
}
.pb-paragraph {
  margin: 0;
  line-height: 1.7;
  color: var(--ink, #1e293b);
}
.pb-paragraph > p + p { margin-top: var(--pb-paragraph-spacing, 1rem); }
.pb-paragraph a { color: var(--pb-link-color, inherit); text-decoration: underline; }
.pb-paragraph:hover { color: var(--pb-text-hover, inherit); }
.pb-paragraph a:hover { color: var(--pb-link-hover, var(--pb-link-color, inherit)); }
.pb-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 0;
}

.pb-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem;
  border-radius: var(--r-card, 20px);
  background-color: var(--dark, #071b34);
}
.pb-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.pb-hero h1 {
  font-family: var(--f-display, inherit);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
}
.pb-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin: 0 0 1.5rem;
}

.pb-richtext {
  font-size: 1.05rem;
  line-height: 1.8;
}
.pb-richtext img {
  max-width: 100%;
  border-radius: 14px;
}

.pb-image img {
  width: 100%;
  border-radius: var(--r-card, 20px);
  display: block;
}
.pb-image figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
}

.pb-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.pb-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}

.pb-icon-box {
  background: #fff;
  border-radius: var(--r-card, 16px);
  box-shadow: var(--sh-card, 0 10px 30px rgba(15, 23, 42, 0.08));
  padding: 1.5rem;
}
.pb-icon-box h3 {
  margin: 0 0 0.5rem;
}
.pb-icon-box p {
  margin: 0;
  color: #64748b;
}

.pb-tabs-item,
.pb-accordion .pb-faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 0.85rem 0;
}
.pb-tabs-item summary,
.pb-accordion summary {
  cursor: pointer;
  font-weight: 600;
}
.pb-tabs-item p {
  margin: 0.6rem 0 0;
  color: #64748b;
}

.pb-features h2,
.pb-faq h2,
.pb-testimonials h2,
.pb-cta h2,
.pb-newsletter h2,
.pb-dynamic-grid h2 {
  font-family: var(--f-display, inherit);
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 1.75rem;
}
.pb-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.pb-feature-card {
  background: #fff;
  border-radius: var(--r-card, 18px);
  box-shadow: var(--sh-card, 0 10px 30px rgba(15, 23, 42, 0.08));
  padding: 1.5rem;
  text-align: center;
}
.pb-feature-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.6rem;
}
.pb-feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
}
.pb-feature-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

.pb-faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 0.85rem 0;
}
.pb-faq-item summary {
  cursor: pointer;
  font-weight: 600;
}
.pb-faq-item p {
  margin: 0.6rem 0 0;
  color: #64748b;
}

.pb-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.pb-testimonial-card {
  background: #fff;
  border-radius: var(--r-card, 18px);
  box-shadow: var(--sh-card, 0 10px 30px rgba(15, 23, 42, 0.08));
  padding: 1.25rem;
}
.pb-testimonial-card img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.6rem;
}
.pb-testimonial-name {
  font-weight: 600;
  margin-top: 0.4rem;
}

.pb-cta {
  text-align: center;
  background: var(--grad, linear-gradient(115deg, #5b3df5 0%, #7b61ff 55%, #8b5cf6 100%));
  color: #fff;
  border-radius: var(--r-card, 20px);
  padding: 2.5rem 1.5rem;
}
.pb-cta p {
  opacity: 0.9;
  margin: 0 0 1.25rem;
}
.pb-cta .btn {
  background: #fff;
  color: var(--primary, #5b3df5);
}

.pb-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--r-card, 16px);
  overflow: hidden;
}
.pb-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pb-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.25rem;
  text-align: center;
}
.pb-stat b {
  display: block;
  font-family: var(--f-display, inherit);
  font-size: 1.85rem;
  color: var(--primary, #5b3df5);
}
.pb-stat span {
  color: #64748b;
  font-size: 0.88rem;
}

.pb-newsletter {
  text-align: center;
  background: #f8fafc;
  border-radius: var(--r-card, 20px);
  padding: 2.25rem 1.5rem;
}

.pb-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.pb-social-icons a {
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--ink, #1e293b);
  text-decoration: none;
}

.pb-dynamic-grid .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.pb-dynamic-empty {
  color: #94a3b8;
  text-align: center;
}
