body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-dark-font);
}

h1, h2, h3,
.h1, .h2, .h3 {
  line-height: 1.1;
  font-weight: 600;
}

h1, .h1 {
  font-size: clamp(1.5rem, calc(0.9333rem + 1.6667vw), 70px);
}

h2, .h2 {
  font-size: clamp(1.2rem, calc(0.7467rem + 1.3333vw), 40px);
}

h3, .h3 {
  font-size: clamp(0.9rem, calc(0.56rem + 1vw), 1.5rem);
}

.bb-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.bb-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color, rgba(0, 0, 0, 0.4));
  opacity: var(--hero-overlay-opacity, 0.4);
  pointer-events: none;
  z-index: 1;
}
.bb-hero .container {
  position: relative;
  z-index: 2;
}

.usp-bar {
  background-color: var(--color-primary);
  padding: 10px 20px;
  color: #fff;
}
.usp-bar .usp-swiper {
  overflow: hidden;
}
.usp-bar .usps {
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.usp-bar .usp-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  height: auto;
}
.usp-bar .usp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-primary);
  flex-shrink: 0;
}
.usp-bar .usp-icon svg {
  width: 0.85rem;
  height: 0.7rem;
  fill: currentColor;
}
@media (min-width: 768px) {
  .usp-bar .usp-swiper {
    overflow: visible;
  }
  .usp-bar .usps {
    justify-content: space-between;
    gap: 1rem 2rem;
    flex-wrap: wrap;
    transform: none !important;
  }
  .usp-bar .usp-item {
    width: auto !important;
    margin-right: 0 !important;
    flex-shrink: 1;
  }
}

.site-header .utility-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.site-header .utility-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-dark-font, #333);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header .utility-links a svg {
  flex-shrink: 0;
}
.site-header .utility-links a:hover {
  color: var(--color-primary);
}
@media (max-width: 991px) {
  .site-header .utility-links {
    display: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-text, #1a1a2e);
  transition: box-shadow 0.3s ease;
}
.site-header .inner-header {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 40px;
  row-gap: 6px;
  align-items: center;
  padding: 14px 0;
}
@media (max-width: 991px) {
  .site-header .inner-header {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    gap: 16px;
    padding: 12px 0;
  }
}
.site-header .site-branding {
  grid-column: 1;
  grid-row: 1/3;
  align-self: center;
}
@media (max-width: 991px) {
  .site-header .site-branding {
    grid-row: auto;
  }
}
.site-header .site-branding a {
  color: var(--color-dark-font);
  text-decoration: none;
  font-weight: 400;
  font-size: 20px;
}
.site-header .site-branding a img {
  display: block;
  max-height: 100px;
  width: auto;
  height: auto;
}
@media (max-width: 991px) {
  .site-header .site-branding a img {
    max-height: 60px;
  }
}
.site-header .utility-links {
  grid-column: 2;
  grid-row: 1;
}
.site-header .header-bottom {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 991px) {
  .site-header .header-bottom {
    grid-column: 2;
    grid-row: auto;
    justify-content: flex-end;
  }
}
.site-header .main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header .main-menu a {
  color: var(--color-dark-font);
  text-decoration: none;
  font-weight: 400;
  font-size: 20px;
  transition: color 0.2s ease;
}
.site-header .main-menu a:hover {
  color: var(--color-primary);
}
.site-header .main-menu .current-menu-item > a,
.site-header .main-menu .current_page_item > a,
.site-header .main-menu .current-menu-ancestor > a {
  color: var(--color-primary);
  font-weight: 600;
}

.site-header--scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.site-header .main-navigation .sub-menu {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.site-header .main-navigation .sub-menu a {
  color: var(--color-text, #1a1a2e);
}
.site-header .main-navigation .sub-menu a:hover {
  color: var(--color-primary);
}

.site-header .main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-header .header-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--color-text, #1a1a2e);
  transition: color 0.2s ease;
}
.site-header .header-search-toggle:hover {
  color: var(--color-primary);
}
.site-header .menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: inherit;
  cursor: pointer;
}

.mobile-mega {
  display: none;
}

@media (max-width: 991px) {
  .site-header .inner-header {
    gap: 16px;
    padding: 12px 0;
  }
  .site-header .main-navigation {
    display: none;
  }
  .site-header .header-actions .bb-btn {
    display: none;
  }
  .site-header .header-search-toggle {
    display: none;
  }
  .site-header .menu-toggle {
    display: inline-flex;
  }
  .site-header.mobile-open .menu-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-mega {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: var(--color-primary);
    color: var(--color-secondary);
    overflow-y: auto;
    padding: 60px 20px 36px;
  }

  .mobile-close {
    position: fixed;
    top: 18px;
    right: 22px;
    border: 0;
    background: transparent;
    color: var(--color-secondary);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    z-index: 1201;
  }

  .mobile-menu,
.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu {
    margin-top: 12px;
  }

  .mobile-menu > li > a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: 600;
  }

  .mobile-menu .sub-menu {
    display: none;
    background-color: var(--color-primary);
    margin-top: 10px;
    border-radius: 0.75rem;
    padding: 12px 16px;
  }

  .mobile-menu .submenu-open > .sub-menu {
    display: block;
  }

  .mobile-menu .sub-menu a {
    display: block;
    padding: 10px 0;
    color: var(--color-secondary);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-mega .contact {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mobile-mega .phone-and-email {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
  }

  .mobile-mega .phone-and-email li + li {
    margin-top: 10px;
  }

  .mobile-mega .phone-and-email a {
    text-decoration: none;
    color: var(--color-secondary);
  }

  body.mobile-open .mobile-mega {
    display: block;
  }

  body.no-scroll {
    overflow: hidden;
  }
}
.bb-cta {
  align-items: center;
}
@media (min-width: 768px) {
  .bb-cta .container {
    display: grid;
    grid-template-columns: 1fr auto;
  }
}

.bb-story .container {
  column-gap: 100px;
  row-gap: 50px;
}
.bb-story__image {
  width: 100%;
}
.bb-story__content {
  width: 100%;
}

.bb-seo-text__content {
  margin-bottom: 1.5rem;
}

.bb-reviews__title {
  text-align: center;
  margin-bottom: 2rem;
}
.bb-reviews .swiper {
  padding-bottom: 2.5rem;
}
.bb-reviews__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  border-radius: var(--radius-block, 1rem);
  border: 1px solid #ddd;
  background-color: var(--bb-reviews-card-bg, #fff);
  color: var(--bb-reviews-card-text, inherit);
}
.bb-reviews__logo {
  display: block;
  max-height: 2rem;
  margin-bottom: 0.25rem;
}
.bb-reviews__logo-label {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  display: block;
}
.bb-reviews__stars {
  color: #f5c518;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.bb-reviews__text {
  flex: 1;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.bb-reviews__text p:last-child {
  margin-bottom: 0;
}
.bb-reviews__author {
  display: block;
  font-weight: 600;
}
.bb-reviews__company {
  display: block;
  opacity: 0.7;
  font-size: 0.9rem;
}

.bb-posts-grid__card {
  border-radius: var(--radius-block, 1rem);
}

.bb-faq__question button {
  background: none;
  border: none;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.bb-faq__question button::after {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.bb-faq__question button[aria-expanded=true]::after {
  transform: rotate(-135deg);
}
.bb-faq__answer {
  transition: grid-template-rows 0.3s ease;
}
.bb-faq__answer-inner {
  line-height: 1.6;
}

.bb-link-blocks__card {
  text-decoration: none;
  border: none;
  border-radius: var(--radius-block, 1rem);
  padding: 2rem;
}
.bb-link-blocks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.bb-link-blocks__icon .dashicons {
  font-size: 2rem;
}
.bb-link-blocks__text {
  margin-bottom: 1.5rem;
}
.bb-link-blocks--grid .bb-link-blocks__card {
  border-radius: var(--radius-block, 1rem);
}
.bb-link-blocks--horizontal .bb-link-blocks__card {
  border-radius: var(--radius-block, 1rem);
}
.bb-link-blocks--horizontal .bb-link-blocks__item-title {
  font-size: 20px;
  font-weight: 700;
}

.bb-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .bb-contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.bb-contact .bb-contact__title {
  color: inherit;
}
.bb-contact__form-wrapper {
  background-color: var(--contact-form-bg, var(--color-primary));
  color: var(--color-light-font);
  padding: 40px;
  border-radius: var(--radius-block, 1.25rem);
}
.bb-contact__form-wrapper input:not([type=submit]),
.bb-contact__form-wrapper textarea,
.bb-contact__form-wrapper select {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background-color: #fff;
  color: #333;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  box-shadow: none;
  box-sizing: border-box;
}
.bb-contact__form-wrapper input:not([type=submit])::placeholder,
.bb-contact__form-wrapper textarea::placeholder,
.bb-contact__form-wrapper select::placeholder {
  color: #aaa;
}
.bb-contact__form-wrapper label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--contact-label-color, inherit);
}
.bb-contact__form-wrapper .wpcf7-form-control-wrap,
.bb-contact__form-wrapper p,
.bb-contact__form-wrapper .form-field {
  margin-bottom: 18px;
}
.bb-contact__form-wrapper input[type=submit],
.bb-contact__form-wrapper button[type=submit],
.bb-contact__form-wrapper .ff-btn,
.bb-contact__form-wrapper .wpcf7-submit {
  background-color: var(--contact-btn-bg, var(--color-accent, #3b82f6)) !important;
  color: var(--contact-btn-color, #fff) !important;
  border: 1px solid var(--contact-btn-border, transparent) !important;
  border-radius: var(--radius-btn, 0.5rem) !important;
  padding: 12px 28px !important;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.bb-contact__form-wrapper input[type=submit]:hover,
.bb-contact__form-wrapper button[type=submit]:hover,
.bb-contact__form-wrapper .ff-btn:hover,
.bb-contact__form-wrapper .wpcf7-submit:hover {
  background-color: var(--contact-btn-hover-bg, var(--contact-btn-bg, var(--color-accent, #3b82f6))) !important;
  color: var(--contact-btn-hover-color, var(--contact-btn-color, #fff)) !important;
  border-color: var(--contact-btn-hover-border, var(--contact-btn-border, transparent)) !important;
}
.bb-contact__title {
  margin: 0 0 28px;
  color: inherit;
}
.bb-contact__form-placeholder {
  background-color: var(--color-light, #f5f5f5);
  padding: 40px;
  border-radius: var(--radius-block, 1.25rem);
  text-align: center;
  color: #999;
}
.bb-contact__info-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.bb-contact__info-block, .bb-contact__hours-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bb-contact__info-title, .bb-contact__hours-title {
  margin: 0 0 8px;
  color: var(--color-primary);
}
.bb-contact__address p {
  margin: 0;
  line-height: 1.7;
}
.bb-contact__contact-links {
  margin-top: 4px;
}
.bb-contact__contact-links p {
  margin: 0;
  line-height: 1.9;
}
.bb-contact__contact-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bb-contact__contact-links a:hover {
  text-decoration: none;
}
.bb-contact__hours-table {
  width: 100%;
  border-collapse: collapse;
}
.bb-contact__hours-table td {
  vertical-align: top;
  line-height: 1.6;
}
.bb-contact__hours-table td:first-child {
  padding-right: 40px;
  min-width: 120px;
}

.bb-steps__title {
  text-align: center;
  font-weight: 800;
  margin: 0 0 3rem;
}
.bb-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 0;
}
@media (min-width: 768px) {
  .bb-steps__list {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}
.bb-steps__item {
  position: relative;
  text-align: center;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .bb-steps__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(70px / 2);
    left: calc(50% + 70px / 2);
    right: calc(-50% + 70px / 2);
    height: 2px;
    background-color: var(--bb-steps-line-color, var(--color-accent));
    z-index: 0;
  }
}
.bb-steps__media {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.bb-steps__icon, .bb-steps__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--bb-steps-icon-bg, var(--color-accent));
  color: var(--bb-steps-icon-color, #fff);
  font-weight: 700;
  font-size: 1.25rem;
}
.bb-steps__icon .dashicons {
  width: 32px;
  height: 32px;
  font-size: 32px;
  line-height: 1;
}
.bb-steps__icon img,
.bb-steps__icon svg {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.bb-steps__icon svg {
  fill: currentColor;
}
.bb-steps__item-title {
  font-weight: 700;
  margin: 0 0 0.75rem;
}
.bb-steps__desc p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

.site-footer {
  background-color: var(--color-footer-bg, #01313d);
  color: var(--color-footer-text, #fff);
  padding: 75px 20px 20px;
}
.site-footer a {
  color: var(--color-footer-text, #fff);
  text-decoration: none;
}
.site-footer a:hover {
  opacity: 0.8;
}
.site-footer .footer-top {
  grid-template-columns: 1.4fr repeat(3, 1fr) 1.6fr;
  border-bottom-color: #BCBDFF;
}
@media (max-width: 1024px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer-newsletter {
  min-height: 1px;
}
.site-footer .footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}
.site-footer .footer-logo {
  font-size: 2.2rem;
  font-weight: 900;
  font-style: italic;
}
.site-footer .footer-slogan {
  font-size: 30px;
  color: #fff;
  font-weight: 200;
  line-height: 1.2;
}
.site-footer .keurmerken {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.site-footer .keurmerken > div {
  border-right: 1px solid #BCBDFF;
  padding-right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-footer .keurmerken > div:last-child {
  border-right: none;
  padding-right: 0;
}
.site-footer .keurmerken img {
  display: block;
  max-height: 40px;
  width: auto;
  height: auto;
}
.site-footer .footer-social-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer .footer-social-row > * {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-left: 1px solid #BCBDFF;
  line-height: 1;
}
.site-footer .footer-social-row > *:first-child {
  border-left: none;
  padding-left: 0;
}
.site-footer .footer-social-row .social-link {
  color: #fff;
  text-decoration: none;
}
.site-footer .footer-social-row .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.site-footer .footer-social-row .social-icon svg,
.site-footer .footer-social-row .social-icon svg path {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.site-footer .footer-heading {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
}
.site-footer .footer-menu a {
  opacity: 1;
}
.site-footer .footer-menu a:hover {
  color: #fff;
}
.site-footer .footer-contact {
  opacity: 0.85;
}
.site-footer .footer-contact a:hover {
  opacity: 1;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0.6;
}
.site-footer .footer-logos svg {
  fill: #ffffff;
}
.site-footer .footer-logos svg path[fill=none] {
  stroke: #ffffff;
}
.site-footer .footer-logos #tpom-regeltante-logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}