@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

:root {
  /* Color */
  --purple: #9960ea;
  --green: #b0e842;
  --white: #ffffff;
  --black: #323135;

  /* Font Size */
  --h1: 60px;
  --h2: 40px;
  --h3: 30px;
  --h4: 28px;
  --h5: 20px;
  --body: 21px;
  --small: 18px;

  /* Font Family */
  --space-grotesk: "Space Grotesk", sans-serif;

  /* Transition */
  --transition: all 0.3s ease-in-out;
}

/* Tag */
html, body {
    scroll-behavior: smooth;
}

body {
  font-size: var(--body);
  font-family: var(--space-grotesk);
  color: var(--black);
  line-height: 1.53;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.12;
  margin: 0px 0px 30px 0;
  font-weight: 400;
}

p {
  margin: 0px 0px 20px 0;
}

a {
  display: inline-block;
  transition: var(--transition);
  outline: none !important;
  color: var(--black);
  text-decoration: none;
}

a:not(.button):hover {
  color: var(--purple);
}

/* Font Class */
.h1,
h1 {
  font-size: var(--h1);
}

.h2,
h2 {
  font-size: var(--h2);
}

.h3,
h3 {
  font-size: var(--h3);
}

.h4,
h4 {
  font-size: var(--h4);
}

.h5,
h5 {
  font-size: var(--h5);
}

body,
.h6,
h6 {
  font-size: var(--body);
}

.small {
  font-size: var(--small);
}

section {
  padding: 150px 0 100px 0;
}
.featured-content {
  background-color: var(--bg-color, #ffffff);
}
.dark-mode .featured-content {
  background-color: var(--bg-color-dark, var(--bg-color, #121212));
}
/* Container */
.section_default-mrg100 {
  margin-bottom: 0px !important;
}
.container {
  max-width: 100%;
  padding: 0px 20px;
  margin: 0px auto;
}
.container-fuild {
  max-width: 1920px;
  padding: 0px 20px;
  margin: 0px auto;
}

/* Buttons */
.button {
  padding: 12px 30px;
  font-size: var(--body);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
  border: 2px solid;
  border-radius: 30px;
}

/* Primary Button */
.primary-button {
  background-color: var(--purple);
  border-color: var(--purple);
}

.primary-button:hover {
  background-color: transparent;
  color: var(--purple);
}

/* Secondary Button */
.secondary-button {
  background-color: var(--black);
  border-color: var(--black);
    margin-right: 20px !important;
}
.secondary-button-purple {
  background-color: var(--purple);
  border-color: var(--purple);
}

.secondary-button:hover {
  background-color: transparent;
  color: var(--black);
}
.secondary-button-purple:hover {
 background-color: transparent;
  color: var(--purple);
}
/* Third Button */
.third-button {
  background-color: var(--green);
  border-color: var(--green);
    margin-right: 20px !important;
}

.third-button:hover {
  background-color: transparent;
  color: var(--green);
}
.arrow-button {
  position: relative;
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  padding-right: 30px;
}

.arrow-button:after {
  content: "";
  background-image: url(../icons/double-arrow.svg);
  width: 18px;
  height: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: var(--transition);
}

.arrow-button:hover:after {
  right: -5px;
}
.button.primary-button.join-button {
  width: 100%;
  max-width: 60%;
  margin: 20px auto 0 auto;
  display: block;
  border-radius: 30px;
}
.text-center {
  text-align: center;
}

.slick-slider .slick-arrow {
  width: 25px;
  height: 25px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.slick-slider .slick-arrow::before {
  display: none;
}

.slick-slider .slick-prev {
  background-image: url(../icons/slider-prev.svg);
}

.slick-slider .slick-next {
  background-image: url(../icons/slider-next.svg);
}

html.offcanvas-active {
  overflow: hidden;
}

/* Main Header */
.main-header {
  padding: 40px 4px;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 5;
  transition: var(--transition);
}

.main-header:hover {
  background-color: var(--white);
}

.main-header.scrolled {
  background-color: var(--white);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.main-header .container-fuild {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.animated-main-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  filter: contrast(0) brightness(0);
}
.animated-footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  filter: brightness(0) invert(1) contrast(110%) saturate(0%);
}
.animated-main-logo .animated-img {
  max-width: 140px;
  transition: all 0.3s;
  border-radius: 0px;
}
.animated-footer-logo .animated-img {
  max-width: 100px;
  transition: all 0.3s;
  border-radius: 0px;
}
.animated-main-logo .animated-img:not(:hover) {
  opacity: 0;
}
.animated-footer-logo .animated-img:not(:hover) {
  opacity: 0;
}
.animated-main-logo .animated-img:is(.static) {
  opacity: 1;
  position: absolute;
  top: 0;
}
.animated-footer-logo .animated-img:is(.static) {
  opacity: 1;
  position: absolute;
  top: 0;
}
.animated-main-logo:hover .animated-img:is(.static) {
  opacity: 0;
}
.animated-footer-logo:hover .animated-img:is(.static) {
  opacity: 0;
}
.animated-main-logo:hover .animated-img:not(.static) {
  opacity: 1;
}
.animated-footer-logo:hover .animated-img:not(.static) {
  opacity: 1;
}
.main-header .menu {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.main-header .menu .menu-item {
  position: relative;
}

.main-header .menu a {
  text-decoration: none;
  color: var(--black);
  position: relative;
  padding: 22px 0;
}

.main-header .menu li:not(.button) a::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--purple);
  position: absolute;
  left: 0px;
  bottom: 0px;
  transition: var(--transition);
}

.main-header .menu li:not(.button) a:hover::after,
.main-header .menu li.current-menu-item a::after {
  width: 100%;
}

.main-header .menu .button a {
  color: var(--white);
  padding: 0px;
}

.main-header .menu .button:hover a {
  color: var(--purple);
}

.main-header .menu .menu-item .sub-menu {
  list-style: none;
  padding: 0px;
  margin: 0px;
  font-size: var(--small);
  position: absolute;
  top: calc(100% + 50px);
  width: max-content;
  background-color: var(--white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.main-header .menu .menu-item .sub-menu.active {
  top: 100%;
  opacity: 1;
  pointer-events: auto;
}

.main-header .menu .sub-menu a {
  padding: 0;
}

.main-header .menu .sub-menu .menu-item:not(:last-child) {
  margin-bottom: 10px;
}

.main-header .menu .menu-item.menu-item-has-children {
  position: relative;
  padding-right: 25px;
}

.main-header .menu .menu-item.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  width: 15px;
  height: 15px;
  background-image: url(../icons/arrow-down.svg);
  background-size: cover;
  transform: translateY(-50%);
  transition: var(--transition);
}

.main-header .menu .menu-item.menu-item-has-children.active:after {
  transform: translateY(-50%) rotate(180deg);
}

.main-header .menu .menu-item.menu-item-has-children.active > a:after {
  width: 100%;
}

.main-header .toggle-menu {
  display: none;
  position: relative;
  z-index: 1;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.main-header .toggle-menu span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--black);
  transition: var(--transition);
}

.main-header .toggle-menu span:nth-child(1) {
  top: 0px;
}

.main-header .toggle-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.main-header .toggle-menu span:nth-child(3) {
  bottom: 0px;
}

.main-header .toggle-menu.active span:nth-child(2) {
  opacity: 0;
}

.main-header .toggle-menu.active span:nth-child(1) {
  rotate: 45deg;
  top: 12px;
}

.main-header .toggle-menu.active span:nth-child(3) {
  rotate: -45deg;
  top: 12px;
}

/* Banner Section */
.hero-banner {
  background-size: cover;
  background-position: bottom center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.hero-banner .hero-hexagon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 101%;
  background-color: #fff;
  pointer-events: none;
  clip-path: polygon(
    20% 0%,
    80% 0%,
    100% 25%,
    100% 75%,
    80% 100%,
    20% 100%,
    0% 75%,
    0% 25%
  );
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}
.hero-banner .hero-contnet {
  max-width: 638px;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.hero-banner .hero-contnet * {
  margin: 0px;
}

.hero-banner .hero-contnet .btn-group {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

/* Featured Content */

.featured-content .featured-row {
  display: flex;
  gap: 135px;
  justify-content: space-between;
  align-items: center;
}

.featured-content .content {
  max-width: 417px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
}

.featured-content .content * {
  margin: 0px;
}

.featured-content .side-image {
  max-width: 746px;
}

.featured-content .quote-block {
  text-align: right;
  max-width: 300px;
  margin-left: auto;
  margin-top: 60px;
}

.featured-content .quote-block h3 {
  margin-bottom: 0px;
  color: var(--green);
  font-weight: 700;
}

.featured-content .quote-block p {
  margin: 10px 0 0;
}

/* Products */

.products .title-part {
  max-width: 858px;
  text-align: center;
  margin: 0px auto 60px;
}
.title-parts h2 {
    font-size: 44px;
  font-weight: 500;
  text-align: left;
}
.title-parts {
    width: 560px;
}
.products .title-part > *:not(:last-child) {
  margin-bottom: 40px;
}

.products .product-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.products .product-col {
  border: 2px solid var(--green);
  padding: 40px;
  display: flex !important;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
  transition: var(--transition);
}

.products .product-col * {
  margin: 0;
}

.products .product-col:hover {
  border-color: var(--black);
}

/* Featured Icon */
.featured-icon {
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
}

.featured-icon .title-part {
  max-width: 858px;
  text-align: center;
  margin: 0px auto 120px;
}

.featured-icon .icon-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 150px;
  max-width: 1078px;
  margin: 0px auto;
}

.featured-icon .icon-col {
  text-align: center;
}

.featured-icon .icon-col * {
  margin: 0;
}

.featured-icon .icon-col img {
  max-width: 100px;
  aspect-ratio: 1/1;
  display: block;
  margin: 0px auto 40px;
  object-fit: contain;
  object-position: center;
}

.featured-icon .icon-col h6 {
  font-weight: 700;
}

.featured-icon .featured-icon-cta {
  margin-top: 120px;
}

/* Icon Tab */
.icon-tab .title-part {
  margin-bottom: 80px;
}

.icon-tab .tabs {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.icon-tab .tabs :is(.tab-body, .tab-head) {
  width: 50%;
  max-width: 620px;
}

.icon-tab .tabs .tab-body:not(.active.active-content) {
  display: none;
}

.icon-tab .tab-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.icon-tab .tab-body .icon-img {
  border: 2px solid var(--green);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.icon-tab .tab-body .icon-img:hover {
  border-color: var(--black);
}

.icon-tab .tab-head .tab-link {
  text-decoration: none;
  color: var(--black);
  padding: 20px;
  width: 100%;
}

.icon-tab .tab-link:hover {
  background: #9960ea36;
}

.icon-tab .tab-link.active {
  color: var(--white);
  background: var(--purple);
}

.icon-tab .tab-link h3 {
  margin-bottom: 20px;
}

.icon-tab .icon-img img {
  max-width: 120px;
  aspect-ratio: 1/1;
  display: block;
  margin: 0px auto 20px;
  object-fit: contain;
  object-position: center;
}
/* Icon Tab */
.ic-tab .title-part {
  margin-bottom: 80px;
}

.ic-tab .tabs {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.ic-tab .tabs :is(.tab-body, .tab-head) {
  width: 50%;
  max-width: 620px;
}

.ic-tab .tabs .tab-body:not(.active.active-content) {
  display: none;
}

.ic-tab .tab-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ic-tab .tab-body .icon-img {
  border: 2px solid var(--green);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  border-radius: 20px;
}

.ic-tab .tab-body .icon-img:hover {
  border-color: var(--black);
}

.ic-tab .tab-head .tab-link {
  text-decoration: none;
  color: var(--black);
  padding: 20px;
  width: 100%;
}

.ic-tab .tab-link:hover {
  background: #9960ea36;
}

.ic-tab .tab-link.active {
  color: var(--white);
  background: var(--purple);
}

.ic-tab .tab-link h3 {
  margin-bottom: 20px;
}

.ic-tab .icon-img img {
  max-width: 120px;
  aspect-ratio: 1/1;
  display: block;
  margin: 0px auto 20px;
  object-fit: contain;
  object-position: center;
}
.map .title-part {
  margin-bottom: 80px;
}

.customers-sec {
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.customers-sec .title-part {
  margin-bottom: 80px;
}

.customers-sec .customers-slider .slider-inner {
  gap: 80px;
  align-items: center;
  display: flex;
  padding-bottom: 90px;
}

.customers-sec .slider-slide .slider-img {
  max-width: 525px;
  width: 50%;
  aspect-ratio: 1/1;
  position: relative;
}

.customers-sec .slider-slide .slider-img h3 {
  background-color: var(--purple);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: var(--white);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  position: absolute;
  top: 51px;
  right: 21px;
}

.customers-sec .customers-slider h3 {
  margin-bottom: 40px;
  color: var(--green);
  font-weight: 700;
}

.customers-sec .customers-slider .content {
  max-width: 320px;
  width: 50%;
}

.customers-sec .customers-slider {
  max-width: 925px;
}

.customers-sec .customers-slider.slick-slider .slick-prev {
  left: calc(50% + 145px);
  top: 100%;
}

.customers-sec .customers-slider.slick-slider .slick-next {
  left: calc(50% + 210px);
  top: 100%;
}

.team .team-row {
  display: flex;
  gap: 135px;
  align-items: center;
}

.team .team-slider {
  max-width: 525px;
  width: 50%;
}

.team .team-content {
  max-width: 638px;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.team .team-slider .slider-inner h4 {
  margin: 40px 0 0;
}

.team .team-slider .slider-inner {
  text-align: center;
}

.team .team-slider .slider-inner span.h4 {
  color: var(--green);
  font-weight: 700;
}

.team .team-content * {
  margin: 0px;
}

.team .team-slider {
  padding-bottom: 40px;
}

.team .team-slider .slick-prev {
  top: 100%;
  left: calc(50% - 30px);
  transform: translateX(-50%);
}

.team .team-slider .slick-next {
  top: 100%;
  left: calc(50% + 30px);
  transform: translateX(-50%);
}

.cta {
  background-size: cover;
  background-position: center;
}

.cta .cta-content {
  max-width: 858px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  margin: 0px auto;
  text-align: center;
}

.cta .cta-content h2 {
  margin-bottom: 0px;
  font-weight: 700;
  color: var(--purple);
}
.featured-content.image-margin .featured-row .content {
  margin-bottom: 233px;
}
.featured-row .side-image {
  flex: 1;
}
.featured-row .side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-row .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
}
.icon-content .content-row {
  display: flex;
  align-items: center;
  gap: 135px;
  max-width: 1078px;
  margin: 0px auto;
  justify-content: space-between;
}

.icon-content .content-row .slide-img {
  max-width: 305px;
  width: 100%;
}

.icon-content .content-row .content {
  max-width: 636px;
}

.icon-content .content-row:not(:last-child) {
  margin-bottom: 135px;
}

.icon-content .content-row:nth-child(even) {
  flex-direction: row-reverse;
}

.price-card .title-part {
  max-width: 858px;
  text-align: center;
  margin: 0px auto 60px;
}

.price-card .title-part h2 {
  margin-bottom: 40px;
}

.price-card .card-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.price-card-3 .card-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.price-card .card-row .card {
  border: 2px solid var(--green);
  padding-top: 40px;
  padding-right: 25px;
  padding-bottom: 40px;
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  border-radius: 20px;
}

.price-card .card-row .card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card .card-row .card li {
  font-size: 18px;
  padding-left: 34px;
  margin-bottom: 10px;
  background-image: url(../icons/check-icon.svg);
  background-position: center left;
  background-size: 24px;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.price-card .card-row .card .divider {
  border-bottom: 2px dashed var(--green);
  display: block;
  width: 100%;
}

.price-card .card-row .card.best-choise {
  background: var(--green);
  position: relative;
}

.price-card .card-row .card.best-choise .divider {
  border-color: var(--white);
}

.price-card .card-row .card.best-choise:after {
  content: "Best Choice";
  width: 109px;
  height: 109px;
  background: url(../icons/vector-icon.svg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  line-height: 1.1;
  color: var(--white);
  position: absolute;
  top: -34px;
  right: -26px;
}

.icon-accordion .tabs .tab-link h3 {
  margin-bottom: 0px;
}

.icon-accordion .accordion-main {
  max-width: 50%;
  width: 100%;
  display: block;
}

.icon-accordion .accordion-main .accordion {
  border-bottom: 2px solid var(--green);
}

.accordion-main .accordion:first-child .accordion-description {
  display: block;
}

.accordion-main .accordion:not(:first-child) .accordion-description {
  display: none;
}

.icon-accordion .accordion-main .accordion-title-trigger {
  padding: 23px 20px 10px 0px;
  position: relative;
  cursor: pointer;
}

.icon-accordion .accordion-main .accordion-title-trigger h4 {
  margin-bottom: 0px;
}

.icon-accordion .accordion-main .accordion-title-trigger::after {
  content: "";
  background: url(../icons/accordion-arrow.svg);
  position: absolute;
  width: 24px;
  height: 16px;
  right: 20px;
  top: 60%;
  transform: translateY(-50%) rotate(180deg);
  transition: var(--transition);
}

.icon-accordion
  .accordion-main
  .tab-body
  .accordion.open
  .accordion-title-trigger::after {
  transform: translateY(-50%);
}

.featured-content .container {
  max-width: calc(100% - 430px);
  margin: 0 auto;
}
.featured-content.contact-featured .side-image {
  max-width: 638px;
}

.contact-featured .quote-block {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.contact-featured .quote-block h3 {
  font-size: 21px;
  color: var(--black);
  font-weight: 400;
}

.contact-featured .quote-block p {
  color: var(--green);
  margin-top: 0;
  font-weight: 700;
}

.contact-featured .featured-row {
  align-items: center;
}

.contact-featured .content {
  max-width: 525px;
}

.wysiwyg-row {
  background-size: cover;
  background-position: 15% 50%;
}

.wysiwyg-row .inner-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.search-form input[type="search"] {
  border: 1px solid var(--purple);
  outline: none;
  height: 56px;
  padding: 10px 10px 10px 55px;
  max-width: 638px;
  width: 100%;
  font-family: var(--space-grotesk);
  font-size: 21px;
  color: var(--black);
  background-image: url(../icons/search.svg);
  border-radius: 0px;
  background-repeat: no-repeat;
  background-position: 15px 50%;
}

.search-form input[type="submit"] {
  display: none;
}

.tab-post .category-tab-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  margin: 0;
  flex-wrap: wrap;
}

.tab-post #category-posts {
  margin-top: 20px;
}
.tab-post .post-item {
  margin-bottom: 15px;
}

.products.tab-post .product-row {
  grid-template-columns: 1fr 1fr;
}

.tab-post .category-tab-list .primary-button {
  color: var(--white);
  background-color: var(--purple);
  border-color: var(--purple);
}

.tab-post .category-tab-list .primary-button:not(.active) {
  color: var(--black);
  background: transparent;
  border-color: transparent;
}

.featured-content.post-content .content,
.featured-content.post-content .side-image {
  max-width: 580px;
}

.featured-content.post-content .side-image img {
  margin-top: 60px;
}

.not-found .container {
  text-align: center;
}

.search .site-main {
  margin-top: 200px;
}

.search .site-main .search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.search .site-main .search-grid article {
  border: 2px solid var(--green);
  padding: 40px;
  margin: 0px;
}

.icon-tab #accordion-section.accordion-main {
  display: none;
}
.ic-tab #accordion-section.accordion-main {
  display: none;
}
.main-header .main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.dark-mode .animated-main-logo {
  filter: none;
}
.dark-mode .animated-footer-logo {
  filter: none;
}
.outer-slider .dot {
  width: 10px;
  height: 10px;
}

.pricing-tab section .back-sec {
  display: none;
}

.pricing-tab h3.sub-title {
  display: none;
}

.pricing-switches {
  padding: 0 15px;
  margin-top: 30px;
}
.pricing-switches .switcher-main {
  display: inline-flex;
  border: 2px solid #9960ea;
  border-radius: 100px;
  padding: 10px 15px;
}
.pricing-switches .switch {
  position: relative;
  display: inline-flex;
  gap: 20px;
}
.pricing-switches .switch-label {
  font-weight: 600;
  position: relative;
  z-index: 2;
  float: left;
  width: 100px;
  color: #676a6c;
  text-align: center;
  cursor: pointer;
}
.pricing-switches .switch-input {
  display: none;
}
.pricing-switches .switch-input:checked + .switch-label {
  color: #fff;
  transition: 0.15s ease-out;
  transition-property: color, text-shadow;
}
.pricing-switches .switch-input:checked + .switch-label-y ~ .switch-selector {
  transform: translateY(-50%) translateX(0%);
}
.pricing-switches .switch-input:checked + .switch-label-i ~ .switch-selector {
  transform: translateY(-50%) translateX(100%);
  left: 5px;
}
.pricing-switches .switch-input:checked + .switch-label-n ~ .switch-selector {
  transform: translateY(-50%) translateX(200%);
  left: -6px;
  width: 118px;
}
.pricing-switches .switch-selector {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -8px;
  display: block;
  width: 110px;
  height: 40px;
  border-radius: 32px;
  background-color: var(--purple);
  transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
/* Taner Dag aanpassingen begin */
/* WPForms Styling voor formulier ID 1272 */

.pc-hero-banner p {
    font-size: 64px;
    line-height: 150%;
    font-weight: 700;
}
.text-block {
        width: 46% !important;
    }
.mobile-only {
  display: none !important;
}
.content-contact .content {
  gap: 0px !important;
}
.content-contact .content p:first-of-type {
  padding-top: 60px;
}

.usp-desc {
  width: 740px;
  margin: 0 auto;
  text-align: left;
  font-size: var(--body);

}
#wpforms-1272 {
  width: 100%;
}

#wpforms-1272 input[type="text"],
#wpforms-1272 input[type="email"],
#wpforms-1272 input[type="tel"],
#wpforms-1272 input[type="url"],
#wpforms-1272 textarea,
#wpforms-1272 select {
  min-height: 56px;
  border: 1px solid var(--purple);
  width: 100%;
  outline: none;
  margin-top: 8px;
  border-radius: 20px;
  padding: 0px 15px;
  font-family: var(--space-grotesk);
  font-size: 21px;
  color: var(--black);
  background: transparent;
}

#wpforms-1272 textarea {
  height: 154px;
  padding: 15px;
  resize: vertical;
}

#wpforms-submit-1272 {
  background: var(--purple);
  color: var(--white);
  height: 75px;
  border: 2px solid var(--purple);
  font-size: 21px;
  width: 100%;
  border-radius: 20px;
  font-weight: 700;
  font-family: var(--space-grotesk);
  cursor: pointer;
  transition: var(--transition);
}

label.wpforms-field-label {
  font-size: var(--body) !important;
}

.map-image {
  position: relative;
}

.map-pin-wrapper {
  position: absolute;
  transform: translate(-50%, -50%);
}

.map-pin {
  position: relative;
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
  z-index: 2; /* PIN onder tooltip */
}

.map-pin-center {
  width: 10px;
  height: 10px;
  background: #9961ea;
  position: absolute;
  top: 0;
  left: 0;
}

.map-pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  background: rgba(153, 97, 234, 0.5);
  z-index: 1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(2.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Tooltip over pin */
.map-tooltip {
  position: absolute;
  transform: translate(-50%, -110%);
  background: white;
  padding: 15px 20px 20px;
  border: 2px solid var(--green);
  font-size: 13px;
  color: #000;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  text-align: center;
  display: none;
  z-index: 10; /* hoger dan pin-wrapper en pin */
}

/* Show tooltip when hovering pin */
.map-pin-wrapper:hover + .map-tooltip,
.map-tooltip:hover {
  display: block;
}
.map-pin {
  width: 10px;
  height: 10px;
  background: #9961ea;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.map-pin-wrapper:hover .map-pin{
  width: 15px;
  height: 15px;
}
.producten .title-parts {
  text-align: center;
  margin-bottom: 40px;
}
.mobile-icons-slider {
  display: flex;
  gap: 20px; /* ruimte tussen de blokken */
  overflow-x: auto;
  justify-content: left !important;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px;

  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.mobile-icons-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.icons-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px; /* afstand tussen titelblok en description */
}

.icons-col {
    padding-left: 0px !important;
}
.icons-col img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
}

.icons-col h6 {
  margin: 0;
  font-size: var(--body);
  font-weight: 700;
}

.icons-col .description p {
  margin: 0;
  font-size: var(--body);
}
.map-background {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.map-background .map-inner-wrapper {
  position: relative;
  width: 100%;
}

.map-background .map-image {
  width: 100%;
  height: auto;
  display: block;
}

.text-block-overlay {
  position: absolute;
  top: 40px;
  left: 40px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 30px;
  max-width: 450px;
  z-index: 2;
  border-radius: 10px;
}
/*header hero begin*/
/* Volle-breedte container exclusief voor de header-hero sectie */
.hero-container{
  width:100%;
  max-width:none;
  margin:0 auto;
  padding:0 20px; /* laat staan voor binnenmarge; op 0 voor edge-to-edge */
}

/* ===== Split background (Option B) ===== */
.header-hero{
  position: relative; /* nodig voor ::before */
}
.header-hero::before{
  content: "";
  position: absolute;
  inset: 0 0 0 50%;     /* rechter 50% van de section */
  background: #f9f9f9;  /* default basiskleur rechterkant */
  z-index: 0;
  pointer-events: none;
}
/* Alles erbóven de pseudo-laag */
.header-hero .hero-container,
.header-hero .header-hero-row,
.header-hero .header-hero-left,
.header-hero .header-hero-right{
  position: relative;
  z-index: 1;
}

/* Header Hero – 50/50 layout */
.header-hero .header-hero-row{
  display:flex;
  align-items:stretch;      /* laat beide kolommen even hoog meebewegen */
  column-gap:40px;
}
.header-hero .header-hero-left,
.header-hero .header-hero-right{
  flex:0 0 calc(50% - 20px);
  max-width:calc(50% - 20px);
}

/* Linkerkolom inhoud */
.header-hero .header-hero-left{
  display:flex;
  flex-direction:column;
  gap:28px;
  align-items:flex-start;
  padding-left: 50px;
}

/* Rechterkolom (GEEN eigen achtergrond hier meer!) */
.header-hero .header-hero-right{
  /* achtergrond via .header-hero::before */
  border-radius:12px;   /* optioneel, visueel subtiel */
  padding:20px;         /* lucht rondom de image */
}
.header-hero .header-hero-image{
  display:block;
  width:100%;
  height:auto;
  border-radius:8px;    /* optioneel */
}

/* Typo en kleine elementen */
.header-hero .header-hero-eyebrow{
  font-size: var(--body);
  font-weight: 500;
  color: var(--black);
  margin: 0 0 6px 0;
  padding: 12px 16px;
  border-radius: 100px;
  border: 1px solid rgba(161, 228, 73, 0.5);
  background: rgba(161, 228, 73, 0.1);
}
.header-hero .header-hero-badge-wrap{ margin:0 0 12px 0; }
.header-hero .header-hero-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:9999px;
  background:linear-gradient(180deg,#e8f8ea,#d9f2dc);
  color:#1c7c2d;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  box-shadow:0 1px 0 rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.6);
}
.header-hero .header-hero-title{ margin:0 0 8px 0; font-weight: 500; }
.header-hero .header-hero-text{ margin:0 0 14px 0; }

/* ============ Ormilon Tabs (module-orm-tabs) ============ */
.module-orm-tabs{
  background-color: var(--tabs-bg, transparent);
  padding: var(--tabs-padding, 80px) 0;
}
.dark-mode .module-orm-tabs{
  background-color: var(--tabs-bg-dark, var(--tabs-bg, transparent));
}

/* Container + headings */
.module-orm-tabs .orm-tabs__container{ max-width: 1200px; margin: 0 auto; }
.module-orm-tabs .orm-tabs__title{ margin: 0 0 40px; font-weight: 500; width: 660px; font-size: 46px; }
.module-orm-tabs .orm-tabs__subtitle{ margin: 0 0 40px; color: #000; width: 660px; }
.dark-mode .module-orm-tabs .orm-tabs__subtitle{ color: var(--white); }

/* Tabs head + links */
.module-orm-tabs .orm-tabs{ margin-top: 24px; }
.module-orm-tabs .orm-tabs__head{ display: flex; gap: 12px; flex-wrap: wrap; }
.module-orm-tabs .orm-tabs__link{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 16px; border-radius: 45px; text-decoration: none; color: inherit;
  white-space: nowrap; cursor: pointer;
}
.module-orm-tabs .orm-tabs__link.is-active{ background: var(--brand-purple); color: #fff; }

/* Panels */
.module-orm-tabs .orm-tabs__panel{ display: none; margin-top: 50px; --orb-header-h: auto; }
.module-orm-tabs .orm-tabs__panel.is-active{ display: block; }

/* Items */
.module-orm-tabs .orm-tabs__item{
  background: #fff; border-radius: 12px; padding: 22px 22px 26px; margin-bottom: 18px;
}
.dark-mode .module-orm-tabs .orm-tabs__item{ background: #121212; }
.module-orm-tabs .orm-tabs__item__header{ margin: 40px 0 12px; }
.module-orm-tabs .orm-tabs__item__header h4{ margin: 0 0 6px; font-size: 1.9rem; font-weight: 500; }
.module-orm-tabs .orm-tabs__item__header .sub{ color: #6b7280; }
.dark-mode .module-orm-tabs .orm-tabs__item__header .sub{ color: #a1a1aa; }

/* 40/60 layout */
.module-orm-tabs .orm-tabs__item__grid{ display: flex; gap: 40px; align-items: flex-start; }
.module-orm-tabs .orm-tabs__item__media{ flex: 0 0 40%; max-width: 40%; }
.module-orm-tabs .orm-tabs__item__content{
  flex: 0 0 60%; max-width: 60%;
  display: flex; flex-direction: column; justify-content: flex-start;
}

/* Afbeelding */
.module-orm-tabs .orm-tabs__item__media img{
  width: 100%; height: auto; display: block; border-radius: 14px; object-fit: cover;
}

/* Body-tekst */
.module-orm-tabs .orm-tabs__item__content .rich{ margin: 12px 0; }

/* Knop-variant: erft .button, blijft zwart op hover */
.module-orm-tabs .button.button-tab{
  background-color: #2C2C2F; border-color:#2C2C2F; color: #fff;
  padding: 8px 24px; font-size: 16px; border-radius: 30px; text-decoration: none;width: fit-content;
}
.module-orm-tabs .button.button-tab:hover{
  background-color: #333; border-color: #2C2C2F; color: #fff;
}

/* Ormilon – 2×2 icon features (scoped, no conflicts) */
:root{ --brand-purple: #9960EA; }

.module-orbit-icons .icon-row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 64px;                 /* rijen x kolommen */
  align-items: start;
}



.module-orbit-icons .icon-col{
  display: flex;
  flex-direction: column;   /* was: rij naast elkaar */
  align-items: flex-start;  /* of 'center' als je wil centreren */
  gap: 12px;                /* verticale ruimte tussen icoon en tekst */
}

.module-orbit-icons .icon-col > img{
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

.module-orbit-icons .icon-col h6{
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
}

.module-orbit-icons .icon-col p{
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #6b7280;
}

/* Dark mode */
.dark-mode .module-orbit-icons .icon-col p{ color: #a1a1aa; }
.dark-mode .module-orbit-icons .icon-col > img{ background: rgba(153,96,234,0.22); }

section.module-orbit-icons {
    padding-top: 30px;
    padding-bottom: 0px;
}
/* === FEATURED CONTENT BLOK MET GLOW ICON === */

/* === Layout structuur === */
.featured-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px; /* afstand tussen tekst en afbeelding */
}

.featured-row .feat-cont {
  flex: 0 0 55%; /* tekstkolom */
}

.featured-row .side-image {
  flex: 0 0 45%; /* afbeeldingkolom */
  position: relative;
  text-align: center;
}

/* === Tekstkolom === */
.featured-row h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000;
}

.featured-row .content-text {
  margin-bottom: 1.5rem;
  color: #333;
  line-height: 1.6;
}
/* == text/blok begin == */

/* ================= Ormilon Featured – final ================= */

/* Basis sectie */
.orm-feature{
  background-color: var(--bg-color, #ffffff);
  position: relative;
  z-index: 0; /* onder je header */
}

/* Layout */
.orm-feature .ormf-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Tekst 55% */
.orm-feature .ormf-content{
  flex: 0 0 55%;
  max-width: 45%;
  width: auto;
}

/* Media 40% */
.orm-feature .ormf-media{
  flex: 0 0 40%;
  max-width: 40%;
  width: auto;
  position: relative;
  text-align: center;
}

/* Typo */
.orm-feature h2{
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000;
}
.orm-feature .ormf-text{
  margin-bottom: 1.5rem;
  color: #333;
  line-height: 1.6;
}

/* Media wrapper + afbeelding */
.orm-feature .ormf-media-wrap{
  position: relative;
  display: inline-block;
  width: 100%;
  z-index: 0;
}
.orm-feature .ormf-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

/* ===== Glow (50% kleiner: 12.5%) ===== */
.orm-feature .ormf-glow{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12.5%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background: var(--purple, #9960EA);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  z-index: 1; /* niet boven de header */
  box-shadow: 0 0 20px rgba(153, 96, 234, 0.6);
  transition: box-shadow .35s ease, transform .25s ease, opacity .25s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Icoon binnen de glow — baseline: wit icoon */
.orm-feature .ormf-icon{
  width: 72%;
  height: auto;
  display: block;
  opacity: 1;
  transform: none;
  filter: invert(1) brightness(0.95) contrast(1.05) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  mix-blend-mode: normal !important;
}

/* Interactie: icóon iets feller wit */
.orm-feature .ormf-media-wrap:hover .ormf-icon,
.orm-feature .ormf-glow:hover .ormf-icon,
.orm-feature .ormf-glow:active .ormf-icon,
.orm-feature .ormf-glow:focus-visible .ormf-icon{
  filter: invert(1) brightness(1.12) contrast(1.08) !important;
}

/* Interactie: GLOW effect (revert automatisch zodra je weg bent) */
.orm-feature .ormf-media-wrap:hover .ormf-glow,
.orm-feature .ormf-glow:hover,
.orm-feature .ormf-glow:active,
.orm-feature .ormf-glow:focus-visible{
  box-shadow: 0 0 40px rgba(153, 96, 234, .9);
  transform: translate(-50%, -50%) scale(1.06);
}

/* Menu open (off-canvas): geen interactie/glow */
html.offcanvas-active .orm-feature .ormf-glow{
  pointer-events: none;
  box-shadow: none !important;
  transform: translate(-50%, -50%) scale(1) !important;
}
html.offcanvas-active .orm-feature .ormf-icon{
  opacity: 1 !important;
  filter: none !important;
}

/* Zorg dat header echt boven blijft */
.main-header{ z-index: 1000; }

/* == text/blok einde == */

.featured-content .button:hover {
  background-color: #B0E842;
  color: #000;
}

/* === Afbeelding === */
.image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.image-wrapper .main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

/* === Glow block met GIF icon (oude variant, kan blijven voor legacy) === */
.glow-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%; /* blok is 25% van afbeeldingbreedte */
  aspect-ratio: 1 / 1;
  background-color: #9960EA; /* vaste paarse achtergrond */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 5;
  box-shadow: 0 0 20px rgba(153, 96, 234, 0.6);
  transition: box-shadow 0.4s ease, transform 0.3s ease;
}

/* Icon zelf */
.glow-block .icon-image {
  width: 80%;
  height: auto;
  filter: brightness(0) invert(1); /* maakt zwart wit */
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: scale(0.9);
}

/* === Hover effecten === */
.image-wrapper:hover .glow-block {
  box-shadow: 0 0 40px rgba(153, 96, 234, 0.9);
  transform: translate(-50%, -50%) scale(1.05);
}

.image-wrapper:hover .glow-block .icon-image {
  transform: scale(1);
  opacity: 1;
}

/* === Glow animatie (subtiele pulsering) === */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(153, 96, 234, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(153, 96, 234, 0.8);
  }
}

/* Product Category - Start */
.pc-hero-banner {
  background-color: #ffffff;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pc-hero-banner h1 {
  font-size: 40px;
  line-height: 150%;
}
.pc-hero-banner.hero-banner .hero-contnet {
  max-width: 100%;
  gap: 5px;
  padding: 180px 0 195px;
}
section.pc-hero-banner.default {
  padding: 0;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
nav.breadcrumb {
  padding: 160px 0 0;
}
.breadcrumb li a {
  text-decoration: underline;
}
.current {
  color: #757575;
}
.products-sec-title h2,
.whitepaper-section h2.section-title,
.title-faq h2.section-title,
.pricing-title,
.cta-left p {
  font-size: 40px;
  line-height: 150%;
  font-weight: 500;
  margin: 0;
}
.products-sec-desc p {
  font-size: 24px;
  line-height: 150%;
  font-weight: 500;
}
.products-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.products-col {
  flex: 0 0 calc(50% - 10px); /* 2 columns with spacing */
  border: 1px solid #b0e842;
  border-radius: 20px;
  display: flex;
  padding: 20px;
  box-sizing: border-box;
  align-items: start;
}
.image-sec {
  flex: 0 0 20%;
  max-width: 20%;
}
.image-sec img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.product-info-inner {
  flex: 0 0 80%;
  max-width: 80%;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-info-inner h6 {
  font-size: 25px;
  font-weight: 700;
  line-height: 150%;
  margin: 0;
  width: 50%;
}
.product-info-inner .price {
  font-size: 17px;
  font-weight: bold;
  width: 50%;
  padding-top: 5px;
  text-align: right;
}
.product-info-inner .description p {
  font-size: 17px;
  margin: 0;
  font-weight: 500;
}
section.products-sec {
  padding: 70px 0 40px;
}
.products-sec h2,
.products-sec-desc p {
  padding-bottom: 10px;
}
.whitepaper-section {
  padding: 30px 0;
}
.whitepaper-section h2.section-title {
  padding-bottom: 20px;
}
.whitepaper-row {
  display: flex;
  gap: 30px;
  border: 1px solid #b0e842;
  border-radius: 20px;
  padding: 30px;
  box-sizing: border-box;
  align-items: center;
}
.image-col {
  width: 20%;
}
.content-col {
  width: 50%;
}
.highlights-col {
  width: 30%;
}
.image-col img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  max-width: 176px;
}
.content-col h3 {
  font-size: var(--h3);
  margin-bottom: 15px;
  font-weight: 700;
}
.content-col p {
  font-size: var(--body);
  font-weight: 500;
}
.highlights strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
}
.highlights ul {
  padding-left: 20px;
  margin: 0 0 20px;
}
.highlights ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

.whitepaper-button {
  text-align: left;
}
.whitepaper-button a.button.primary-button {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
.faq-sec.icon-accordion .accordion-main {
  max-width: 100%;
}
section.faq-sec.icon-accordion {
  padding-top: 35px;
}
.title-faq h2.section-title {
  margin-bottom: 15px;
}
.cta-section {
  padding: 0 0 60px;
}
.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.faq-sec.icon-accordion .accordion-main .accordion-title-trigger {
  padding: 23px 20px 23px 0px;
}
.products-col:hover {
  background: #9960ea36;
}
.icon-accordion
  .accordion-main
  .accordion.open
  .accordion-title-trigger::after {
  transform: unset;
}
/* Product Category - End */

/* Product Details - Start */
.subtext-button {
    font-size: 16px !important;
    padding-top: 10px;
}
.banner-btn {
  padding-top: 50px;
}
.tab-bar {
  background: #9960ea;
  padding: 12px 15px;
  border-radius: 30px;
  display: flex;
  width: 100%;
  margin: 24px auto;
  flex-wrap: wrap;
  max-width: 100vw;
  justify-content: space-between;
}
.tab {
  text-decoration: none;
  display: inline-block;
  background: transparent;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 24px;
  min-width: 120px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  text-align: center;
  color: #fff;
}
.tab.active,
.tab:active {
  background: #fff;
  font-weight: 600;
  color: #222;
}
.tab:not(.active):hover {
  background: #ededed;
}
section.producten.tabs-sec.default {
  padding: 50px 0 20px 0;
}
.feature-slider-fixed {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0 10px;
}
.feature-slider-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-width: 350px;
  max-width: 430px;
  flex: 1 1 500px;
}
.feature-descriptions {
  width: 100%;
  min-height: 240px;
  margin-bottom: 30px;
}
.feature-desc-slide {
  display: none;
}
.feature-desc-slide.active {
  display: block;
}
.feature-desc-slide ul {
  font-size: 2rem;
  padding-left: 24px;
  margin: 0;
}
.feature-desc-slide li {
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
}
.feature-desc-slide li strong {
  font-weight: 700;
  font-size: 1.1em;
}

.feature-arrows {
  display: flex;
  gap: 24px;
  margin-bottom: 8px;
}
.feature-arrows button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid #b0e842;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  cursor: pointer;
  transition: background 0.13s, border 0.13s;
  color: #b0e842;
  appearance: none;
  outline: none;
  margin: 0;
  padding: 0;
}
.feature-arrows button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.feature-arrows button:hover:not(:disabled) {
  background: #fff;
  border-color: #b0e842;
}
.feature-arrows span {
  pointer-events: none;
}
.feature-slider-images {
  flex: 1 1 1000px;
  min-width: 300px;
  max-width: 1000px;
  max-height: 450px;
}
.feature-slider-img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 3 / 2;
  display: flex !important;
  justify-content: center;
  min-height: 420px;
  padding-left: 50px;
}
.feature-slider-img img {
  max-width: 100%;
  max-height: 100%;
  height: 420px;
  width: 100%;
  border-radius: 6px;
  object-fit: contain;
  object-position: right;
}
section.products-sec.key-features-sec {
  padding: 0 0 40px;
}
.use-cases {
  width: 100%;
  margin: 0 auto;
  padding: 32px 0 0 0;
}
.use-cases-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 28px 4px;
  letter-spacing: -0.01em;
  color: #090909;
}
.use-cases-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.use-case-card {
  border-radius: 8px;
  padding: 20px 12px 18px 20px;
  flex: 1 1 415px;
  box-sizing: border-box;
  border: 1px solid #b0e842;
}
.use-cases-sec h4 {
  font-weight: 700;
  margin-bottom: 10px;
}
.use-cases-sec {
  padding: 0px 0 30px;
}
.use-cases-sec p {
  margin: 0;
}
.pricing-area {
  padding: 60px 0 25px 0;
}
.pricing-cpu-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  padding-top: 25px;
}
.pricing-cpu-label {
  font-weight: 500;
  font-size: 1.1rem;
  margin-right: 5px;
}
.pricing-cpu-list {
  background: #ececec;
  border-radius: 16px;
  padding: 3px 10px;
  display: flex;
  gap: 5px;
}
.pricing-cpu-btn {
  background: none;
  border: none;
  font-size: 1rem;
  padding: 7px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: #474747;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.pricing-cpu-btn.active {
  background: #fff;
  color: #9960ea;
  box-shadow: 0 0 0 2px #b0e842 inset;
}
.pricing-cpu-specs {
  margin-left: auto;
  font-size: 1.05rem;
}
.specs{font-size: 16px; font-weight: 400; color: #00000099;
}
.pricing-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  padding: 30px 15px 20px 15px;
  box-sizing: border-box;
  width: 100%;
  border-radius: 10px;
  overflow-x: auto;
  position: relative;
}
.pricing-bar-chart:after {
  content: "";
  display: block;
  border-top: 10px solid #000;
  width: 100%;
  height: 10px;
  position: absolute;
  top: 80%;
  left: 0;
  z-index: 1;
}
.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0px;
  position: relative;
}
.bar-label {
  font-size: 1.03rem;
  font-weight: 500;
  margin-top: 15px;
  text-align: center;
  height: 22px;
}
.bar-bar {
  width: 120px;
  border-radius: 7px 7px 0 0;
  background: #b0e842;
  /*transition: height 0.8s cubic-bezier(0.65, 1.95, 0.44, 0.87), background 0.2s;*/
  position: relative;
  height: 0;
}
.bar-item:nth-child(even) .bar-bar {
  background: #9960ea;
}
.bar-value {
  margin-bottom: 11px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #000;
  text-align: center;
  min-width: 66px;
  position: absolute;
  top: 25%;
  z-index: 1;
}
.pricing-bnt-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px 0 0;
}
.pricing-bnt1 a.button.secondary-button {
  background-color: #fff;
  color: #000;
}
.pricing-bnt1 a.button.secondary-button:hover {
  background-color: #000;
  color: #fff;
}
.knowledge-sec {
  padding: 60px 0;
}
.knowledge-iframe iframe {
  width: 100%;
  height: 500px;
}
.knowledge-iframe {
  padding-top: 25px;
}
#key-features,
#use-cases,
#pricing,
#knowledge-sec,
#get-started {
  scroll-margin-top: 150px;
}
/* Product Details - End */


/* =========================================================
   Header Hero — Dynamic Background, Right-Side Dim & Dark Mode
   (Overrides & enhancements — keep at the very end)
   ========================================================= */

/* 1) Hele sectie pakt (optioneel) een achtergrondkleur via PHP */
.header-hero{
  background-color: var(--hero-bg, transparent);
}

/* 2) Rechter helft (split background) blijft #f9f9f9 als er géén kleur is.
      Bij een ingestelde kleur dimmen we de afbeeldingskolom met een overlay. */
.header-hero .header-hero-right{
  position: relative;
}
/* 3) Image brightness (licht/donker) op basis van variabelen */
.header-hero .header-hero-image{
  position: relative;
  z-index: 0;
  filter: brightness(var(--hero-img-bright, 1));
}
/* 6) Desktop split (rechterhelft basis-kleur) blijft actief,
      maar overlay zorgt voor extra dim als er kleur is. */
.header-hero::before{
  /* laat bestaande #f9f9f9 staan als default, overlay regelt extra dim bij kleur */
  background: #f9f9f9;
}
.orm-uspnd{
  background-color: var(--uspnd-bg, var(--hero-bg, #111111));
}

/*  begin usp nieuw blok td */
/* ===== Basis en variabelen ===== */
section.orm-uspnd[data-block="uspnd"]{
  --uspnd-bg:#ffffff;
  --uspnd-bg-dark:#0e0e11;
  --brand:#9156E2;

  --hub-size:92px;
  --hub-gap:60px;

  --pcb-x:50%;
  --pcb-y:50%;
  --pcb-mask-fallback: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cg stroke='black' stroke-width='6' stroke-linecap='round' fill='none'%3E%3Cpath d='M40 60 H760 M40 200 H760 M40 340 H760'/%3E%3Cpath d='M80 20 V380 M260 20 V380 M420 20 V380 M580 20 V380 M740 20 V380'/%3E%3C/g%3E%3Cg fill='black'%3E%3Ccircle cx='80' cy='60' r='8'/%3E%3Ccircle cx='260' cy='200' r='8'/%3E%3Ccircle cx='420' cy='340' r='8'/%3E%3Ccircle cx='580' cy='200' r='8'/%3E%3Ccircle cx='740' cy='60' r='8'/%3E%3C/g%3E%3C/svg%3E");
}
section.orm-uspnd[data-block="uspnd"] .orm-uspnd__container{
  width:min(1240px,100%); margin:0 auto; padding:0 16px;
}

section.orm-uspnd[data-block="uspnd"] .orm-uspnd__head{
  text-align:center; max-width:660px; margin:0 auto 32px;
}
section.orm-uspnd[data-block="uspnd"] .orm-uspnd__h2{
  margin:0 0 8px; font-size:44px; line-height:1.2; font-weight: 500;
}
section.orm-uspnd[data-block="uspnd"] .orm-uspnd__lead{ opacity:.9; }

/* ===== Wit paneel ===== */
section.orm-uspnd[data-block="uspnd"] .uspnd-grid{
  position:relative;
  border-radius:24px; background:#fff; overflow:hidden;
  box-shadow:0 6px 24px rgba(0,0,0,.06);
  padding:40px 32px;
}

/* PCB-layer */
section.orm-uspnd[data-block="uspnd"][data-bg="pcb"] .uspnd-pcb{
  position:absolute; inset:0; pointer-events:none; opacity:.45; z-index:0;
  background:
    radial-gradient(circle at var(--pcb-x) var(--pcb-y),
      color-mix(in oklab, var(--brand) 45%, #ffffff) 0%,
      rgba(145,86,226,.15) 18%,
      rgba(145,86,226,0) 48%);
  -webkit-mask-image: var(--pcb-mask-url, var(--pcb-mask-fallback));
  mask-image: var(--pcb-mask-url, var(--pcb-mask-fallback));
  -webkit-mask-position:center; mask-position:center;
  -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat;
  -webkit-mask-size:cover; mask-size:cover;
}

/* Hub always centered */
section.orm-uspnd[data-block="uspnd"] .uspnd-hub{
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%); z-index:1; pointer-events:none;
}
section.orm-uspnd[data-block="uspnd"] .hub-inner{
  pointer-events:auto;
  width:var(--hub-size); height:var(--hub-size); border-radius:16px;
  background:var(--brand);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 22px rgba(145,86,226,.35), 0 0 0 2px rgba(145,86,226,.35) inset;
  transition:transform .25s ease, box-shadow .25s ease;
}
section.orm-uspnd[data-block="uspnd"] .hub-inner img{ width:54px; height:54px; filter:brightness(0) invert(1); }
section.orm-uspnd[data-block="uspnd"] .hub-inner:hover{
  transform:scale(1.03);
  box-shadow:0 0 30px rgba(145,86,226,.45), 0 0 0 2px rgba(145,86,226,.55) inset;
}

/* ===== Alleen de kaarten in een eigen grid ===== */
section.orm-uspnd[data-block="uspnd"] .uspnd-cards{
  position:relative; z-index:2;
  display:grid;
  column-gap:32px;
  row-gap:150px; /* afstand tussen rijen zoals gevraagd */
}

/* ------------- Layout: EXACT 4 (2x2 met spacer in het midden) ------------- */
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-4{
  grid-template-columns:
    minmax(340px,1fr)
    calc(var(--hub-size) + (2 * var(--hub-gap)))
    minmax(340px,1fr);
}
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-4 .tile-1{ grid-column:1; grid-row:1; }
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-4 .tile-2{ grid-column:3; grid-row:1; }
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-4 .tile-3{ grid-column:1; grid-row:2; }
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-4 .tile-4{ grid-column:3; grid-row:2; }

/* ------------- Layout: EXACT 5 (3 boven, 2 onder gecentreerd) ------------- */
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-5{
  grid-template-columns: repeat(3, minmax(340px,1fr));
}
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-5 .tile-1{ grid-column:1; grid-row:1; }
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-5 .tile-2{ grid-column:2; grid-row:1; }
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-5 .tile-3{ grid-column:3; grid-row:1; }
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-5 .tile-4{ grid-column:1; grid-row:2; } /* links onder */
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-5 .tile-5{ grid-column:3; grid-row:2; } /* rechts onder */

/* ------------- Layout: EXACT 6 (3 boven, 3 onder) ------------- */
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-6{
  grid-template-columns: repeat(3, minmax(340px,1fr));
}
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-6 .tile-1{ grid-column:1; grid-row:1; }
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-6 .tile-2{ grid-column:2; grid-row:1; }
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-6 .tile-3{ grid-column:3; grid-row:1; }
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-6 .tile-4{ grid-column:1; grid-row:2; }
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-6 .tile-5{ grid-column:2; grid-row:2; }
section.orm-uspnd[data-block="uspnd"] .uspnd-cards.count-6 .tile-6{ grid-column:3; grid-row:2; }

/* ===== Kaarten stijlen ===== */
section.orm-uspnd[data-block="uspnd"] .uspnd-card{
  background:#FAFAFA; border:1px solid #0000001A; border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  padding:18px; display:flex; align-items:center; justify-content:center;
  min-height:150px;
}
section.orm-uspnd[data-block="uspnd"] .uspnd-card .card-top{
  display:flex; align-items:center; gap:12px;
  background:#fff; padding:10px 20px 10px 10px;
  border-radius:16px; width:100%; max-width:520px; min-height:92px;
}
section.orm-uspnd[data-block="uspnd"] .card-icon{
  width:80px; height:80px; border-radius:14px; background:var(--brand);
  border:1px solid #575757; box-shadow:0 0 8.8px 0 #4800AE inset;
  display:flex; align-items:center; justify-content:center; flex:0 0 80px;
  transition:transform .25s ease, box-shadow .25s ease;
}
section.orm-uspnd[data-block="uspnd"] .card-icon img{ width:48px; height:48px; filter:brightness(0) invert(1); }
section.orm-uspnd[data-block="uspnd"] .uspnd-card:hover .card-icon{
  transform:scale(1.04);
  box-shadow:0 0 0 2px rgba(145,86,226,.5) inset, 0 0 28px 8px rgba(145,86,226,.35);
}
section.orm-uspnd[data-block="uspnd"] .card-text{ flex:1; min-width:0; }
section.orm-uspnd[data-block="uspnd"] .card-title{ margin:2px 0 4px; font-size:20px; line-height:1.25; font-weight: 500; }
section.orm-uspnd[data-block="uspnd"] .card-desc{ font-size:12px; opacity:.9; }

/* Ondertekst */
section.orm-uspnd[data-block="uspnd"] .uspnd-card .card-under{ display:none; }
section.orm-uspnd[data-block="uspnd"] .uspnd-card-wrap > .card-under.outside{ margin:10px 4px 0; }
section.orm-uspnd[data-block="uspnd"] .uspnd-card-wrap > .card-under.outside .under-title{ font-weight:500; font-size:20px; margin-bottom:6px;padding-top: 20px; }
section.orm-uspnd[data-block="uspnd"] .uspnd-card-wrap > .card-under.outside .under-desc{font-size:16px;opacity:.9;font-weight: 400;color: #000000B2;}
/* Compacte chip/badge */
.chip-mini{
  display:inline-flex;            /* zodat 'gap' werkt */
  align-items:center;
  gap:12px;

  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:500;                /* Medium */
  font-size:12px;
  line-height:1.2;                /* 120% */
  letter-spacing:-0.36px;         /* ~ -3% van 12px */
  text-transform:capitalize;

  padding:4px 6px;
  border:0.4px solid rgba(0,0,0,.2);
  border-radius:4px;

  height:22px;                    /* zoals in design */
  /* width:70px;  -> meestal weglaten, laat inhoud bepalen */
}

/* Zachte variant zoals je voorbeeld */
.chip-mini--soft{
  background:#f2f2f2;
  border-color:#e0e0e0;
  color:#1f1f1f;
}
/* Compacte Groen chip/badge */
.chip-mini-g{
  display:inline-flex;            /* zodat 'gap' werkt */
  align-items:center;
  gap:12px;
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight:500;                /* Medium */
  font-size:12px;
  line-height:1.2;                /* 120% */
  letter-spacing:-0.36px;         /* ~ -3% van 12px */
  text-transform:capitalize;
  padding: 4px 7px;
  border-radius:4px;
  height:22px;                    /* zoals in design */
  /* width:70px;  -> meestal weglaten, laat inhoud bepalen */
  margin-left: 40px;
}

/* Zachte variant zoals je voorbeeld */
.chip-mini--soft-g{
  background: #A2E44A;
  color: #000;
}
span.meta-count {
    color: #00000099;
    padding-left: 30px;
}
/* Progressbars — tekstloos, stacked */
.prog {margin: 0 0 2px 0;}

.prog__track{
  width: 100%;
  height: 8px;              /* hoogte van de balk */
  border-radius: 12px;
  overflow: hidden;
}

.prog__bar{
  --val: 0%;
  width: var(--val);
  height: 100%;
  border-radius: inherit;
  transition: width .35s ease;
}

/* Kleuren zoals gewenst */
.prog__bar.is-green{ background: #8BFF73; }
.prog__bar.is-red  { background: #FF7C36; }
/* ========= Ormilon – Benefits Grid (3 kolommen) ========= */
/* Sectieachtergrond: alleen instellen als via ACF gezet */
.orm-benefits3{
  background-color: var(--ormb3-bg, transparent);
}

/* Container */
.orm-benefits3 .ormb3-container{
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.orm-benefits3 .ormb3-head{
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}
.orm-benefits3 .ormb3-title{
  margin: 0 0 30px 0;
  font-weight: 500;                 /* past bij je tone */
  font-size: var(--h2, 40px);
  line-height: 1.2;
  color: var(--black, #323135);
}
.orm-benefits3 .ormb3-intro{
  margin: 0;
  color: #4b5563;
}

/* Grid – 3 kolommen desktop */
.orm-benefits3 .ormb3-items{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 36px;
  align-items: start;
}

/* Item */
.orm-benefits3 .ormb3-item{
  display: flex;
  flex-direction: column;           /* icoon boven, tekst eronder */
  align-items: flex-start;          /* links uitlijnen */
  gap: 18px;
}

/* Icoon */
.orm-benefits3 .ormb3-icon{
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: color-mix(in oklab, var(--green, #B0E842) 20%, #ffffff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Titel + omschrijving */
.orm-benefits3 .ormb3-item-title{
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--black, #323135);
}
.orm-benefits3 .ormb3-item-desc{
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #4b5563;
}

/* Hover (subtiel) */
.orm-benefits3 .ormb3-item:hover .ormb3-icon{
  box-shadow: 0 0 0 2px var(--green, #B0E842) inset, 0 8px 18px rgba(0,0,0,.06);
}
/* === Overrides: Benefits Grid heading & intro === */
.orm-benefits3 .ormb3-head{
  text-align: center;            /* centreren */
}

.orm-benefits3 .ormb3-title{
  font-size: 44px;               /* gevraagd */
  line-height: 1.2;
  max-width: 582px;              /* breedte beperken */
  width: 100%;
  margin: 0 auto 10px;           /* centreren binnen de head */
  text-align: center;            /* tekst centreren */
}

.orm-benefits3 .ormb3-intro{
  font-size: 18px;               /* gevraagd */
  font-weight: 400;              /* gevraagd */
  text-align: center;            /* centreren */
  margin: 0 auto;                /* netjes uitlijnen */
  max-width: 860px;              /* optioneel: leesbreedte */
}

/*  Einde usp nieuw blok td */
/* =========================
   FOOTER & SUBFOOTER STYLES
   ========================= */

/* Basis footer */
.site-footer{ background:#9960ea; color:#fff; padding:10px 0; }
.site-footer a{ color:#fff; opacity:.92; text-decoration:none; }
.site-footer a:hover{ opacity:1; text-decoration:underline; }
.footer-wrap{ background:#9960ea; }

/* Footer logo */
.footer-logo-row{ padding:24px 0 8px; display:flex; align-items:center; justify-content:flex-start; }
.footer-logo{ display:inline-block; }
.footer-logo img{ height:32px; width:auto; display:block; }

/* Footer widgets (6 kolommen desktop) */
.footer-widgets.footer-widgets--6{
  display:grid;
  grid-template-columns:repeat(6, minmax(0,1fr));
  gap:32px;
  padding:32px 0 40px;
}
.footer-col .widget{ background:transparent; border:0; padding:0; }
.footer-col .widget-title,
.footer-col h6{ color:#fff; margin:0 0 12px; font-size:18px; font-weight:600; }
.footer-col ul{ list-style:none; margin:0; padding:0; }
.footer-col li{ margin:0 0 10px; }

/* Subfooter basis */
section.subfooter{ padding:0; }
.subfooter{ background:#8351cd; color:#fff; }
.subfooter a{ color:#fff; }
.menu-footer-menu-container{ font-size:15px; }
.subfooter .menu a{ font-size:15px !important; line-height:1.5; }

/* Subfooter grid (3 kolommen) */
.subfooter-widgets.subfooter-widgets--3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
  padding:20px 0 0;
}
.subfooter-col .widget{ background:transparent; border:0; padding:0; }
.subfooter-col .widget-title,
.subfooter-col h6{ color:#fff; margin:0 0 10px; font-size:16px; font-weight:600; }

/* Subfooter lijsten horizontaal */
.subfooter .subfooter-widgets .subfooter-col ul,
.subfooter .subfooter-widgets .subfooter-col .menu,
.subfooter .subfooter-widgets .subfooter-col .wp-block-list{
  display:flex; flex-wrap:wrap; gap:0 20px; list-style:none; margin:0; padding:0; font-size:19px;
}
.subfooter .subfooter-widgets .subfooter-col li{ margin:0; padding:0; }
.subfooter .subfooter-widgets .subfooter-col li::marker{ content:none; }

/* Link hover kleuren */
.site-footer .footer-col a:hover,
.site-footer .f-links a:hover,
.site-footer .menu a:hover,
.site-footer .widget_text a:hover,
.subfooter a:hover{
  color:#b0e842 !important; text-decoration:none;
}

/* Footer accordion (mobiel) */
.site-footer .widget-title{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; margin:0 0 14px; font-size:18px; font-weight:600; color:#fff;
}
.site-footer .fw-acc-icon{
  width:18px; height:18px; flex:0 0 18px;
  background-repeat:no-repeat; background-position:center; background-size:18px 18px;
}
.site-footer .widget-panel{ overflow:hidden; transition:max-height .25s ease; }
/* Subfooter: afbeeldingen naast elkaar + maat */
.subfooter .subfooter-col .widget_media_image{
  display:inline-flex; align-items:center; margin:0 14px 0 0;
}
.subfooter .subfooter-col .widget_media_image:last-child{ margin-right:0; }
.subfooter .subfooter-col .wp-block-image{ margin:0; }
.subfooter .subfooter-col .wp-block-image img{
  height:55px; width:auto; display:block;
}
/* ===== Module: Products (grid 3 kolommen op desktop) ===== */
.module-products{
  /* achtergrond via variabelen uit PHP */
  background-color: var(--bg-color, transparent);
}

.module-products .title-parts > *:not(:last-child){
  margin-bottom: 10px;
}

/* Grid container */
.module-products .mp-items{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 kolommen desktop */
  gap: 24px;
}

/* Kolom/kaart */
.module-products .mp-item{ min-width: 0; }

.module-products .mp-card{
  display: block;
  border-radius: 12px;
  padding: 14px;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #FBFCFA;
  transition: box-shadow .2s ease, border-color .2s ease, transform .08s ease;
}
.module-products .mp-card:hover{
  border-color: #9960ea;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

/* Inhoud */
.module-products .mp-top{
  display: flex;
  align-items: center;
  gap: 12px;
}
.module-products .mp-top img{
  width: 80px; height: 80px; border-radius: 10px; object-fit: cover; flex: 0 0 80px;
}
.module-products .mp-texts{
  display: flex; flex-direction: column; gap: 6px; min-width: 0;
}
.module-products .mp-title{
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.module-products .mp-price{
  font-size: 14px; font-weight: 600; color: #555; line-height: 1; white-space: nowrap;
}
.module-products .mp-desc p{
  margin: 0; font-size: 16px;
}
/* product met links blok 3 kollomen eind */
/* Taner Dag aanpassingen einde */
/* ===== Chart style begin ===== */

/* De Section wrapper (krijgt de background color via PHP) */
.pricing-section {
    width: 100%;
    position: relative;
    background-color: var(--tabs-bg-dark, var(--bg-color, #454545));
}

/* Interne container */
.pricing-wrapper-inner {
    max-width: 1240px;
    margin: 0 auto;
}

/* Titel en Intro */
.pricing-intro {
    text-align: left;
    margin-bottom: 40px;
}
.pricing-intro h2 {
    margin-bottom: 15px;
}
.pricing-intro p {
    color: #666;
    max-width: 1240px;
}

/* De Chart Component zelf */
.pricing-chart-component {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Header Controls */
.chart-header {
    margin-bottom: 30px;
}
.top-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Container voor Label + Toggle */
.cpu-select {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cpu-select .label {
    font-weight: 700;
    color: #111;
    font-size: 1.1rem;
}

/* De grijze achtergrond container (de "pil") */
.cpu-toggle-container {
    position: relative;
    display: inline-flex;
    background-color: #FAFAFA;
    border-radius: 50px;
    padding: 5px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

/* De paarse cirkel die schuift */
.cpu-active-bg {
    position: absolute;
    top: 5px;
    left: 5px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

/* De knoppen zelf */
.cpu-btn {
    position: relative;
    border: none;
    border-radius: 50%;
    background: transparent;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin: 0 2px;
    font-size: 16px;
    font-weight: 600;
}

/* Actieve knop */
.cpu-btn.active {
    background-color: #8A56E4;
    color: #fff;
}

/* Hover effect voor niet-actieve knoppen */
.cpu-btn:not(.active):hover {
    color: #8A56E4;
}

/* Grafiek Vlak */
.chart-card {
    border: 1px solid #FAFAFA;
    border-radius: 16px;
    padding: 40px 20px 0 20px;
    margin-bottom: 30px;
    background: #FAFAFA; /* Wit binnen de stippellijn */
}

/* --- 5. Chart Container (De horizontale lijn fix) --- */
.chart-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 300px;
    padding-bottom: 0;
    position: relative;

    /* Scroll instellingen */
    overflow-x: auto;
    gap: 0;

    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
}

.chart-container::-webkit-scrollbar {
    height: 6px;
    display: block;
}
.chart-container::-webkit-scrollbar-track {
    background: transparent;
}
.chart-container::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 10px;
}

.chart-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 120px;
    flex-shrink: 0;
    min-width: 130px; /* Iets breder zodat grote bedragen passen */
}

.bar-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border: none;
}

.bar {
    width: 95%;
    margin: 0 auto;
    background-color: #CFC0FA;
    position: relative;
    display: flex;
    justify-content: center;
    transition: height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-height: 50px;
    /* Onderkant recht zodat het mooi op de lijn landt */
    border-radius: 12px 12px 0 0;
}

.price-tag {
    background-color: #8A56E4;
    color: #fff;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;

    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);

    margin-top: 0;
    font-size: 1rem;
    white-space: nowrap;

    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 10;
}

.chart-column.highlight .bar {
    background-color: #e6fa92;
    border: 2px solid #c2de4a;
    box-sizing: border-box;
}
.chart-column.highlight .price-tag {
    background-color: #798d25;
}

.provider-name {
    margin-top: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: #111;
    text-align: center;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Horizontale basislijn */
.chart-baseline {
    position: absolute;
    left: 0;
    bottom: 40px; /* afstemmen op hoogte van de labels */
    width: 100%;
    height: 3px;
    background-color: #b7b5b5;
    z-index: 1;
}

/* Footer Buttons */
.actions {
    display: flex;
    gap: 15px;
    justify-content: left;
}
.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    display: inline-block;
}
.btn-primary {
    background-color: var(--brand-purple);
    color: #fff;
    border: 1px solid #9960ea;
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--purple);
    border: 1px solid;
}
.btn-secondary {
    background-color: #fff;
    color: var(--purple);
    border: 1px solid;
}
.btn-secondary:hover {
    background-color: var(--purple);
    color: #fff !important;
    border: 1px solid;
}

/* ===== Chart style einde ===== */

/* ===== FAQ Accordion Styles Begin ===== */

.column-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;  
    gap: 15px;
}
.column-header-flex .col-title {
    margin-bottom: 0;
}
.faq-knowledge-section {
    width: 100%;
    position: relative;
    /* Padding wordt geregeld door je padding_option class */
}

/* Header Centered */
.faq-header {
    display: flex;
    justify-content: space-between; /* Duwt items uit elkaar */
    align-items: center; /* Centreert verticaal */
    margin-bottom: 50px;
    flex-wrap: wrap; /* Zodat het op mobiel netjes onder elkaar komt */
    gap: 20px;
}
.faq-header h2 {
    font-size: var(--h2);
    font-weight: 500;
    color: #111;
}

/* Grid Layout (2 Kolommen met lijn ertussen) */
.faq-grid {
    display: flex;
    gap: 40px;
    position: relative;
}

/* Verticale scheidingslijn in het midden */
.faq-grid::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #E5E7EB; /* Lichte grijze lijn */
    transform: translateX(-50%);
}

.faq-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.col-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #111;
}

/* Het blokje zelf (Witte kaart) */
.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px; /* Iets minder rond dan de paarse knop */
    overflow: hidden; /* Belangrijk voor animatie */
    transition: all 0.3s ease;
}

/* De Knop (Header van item) */
.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 15px;
}

.question-text {
    font-weight: 500;
    font-size: var(--small);
    color: #111;
}

/* Het paarse vierkantje met de + */
.icon-box {
    width: 36px;
    height: 36px;
    background-color: #F3E8FF; /* Lichtpaars achtergrond (zoals screenshot) */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.3s;
}

/* De Plus Tekens (gemaakt met CSS lijnen) */
.icon-line {
    position: absolute;
    background-color: #8A56E4; /* Donker paars */
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.icon-line.hor {
    width: 14px;
    height: 2px;
}
.icon-line.ver {
    width: 2px;
    height: 14px;
}

/* Actieve status (Open) */
.faq-item.active .icon-line.ver {
    transform: rotate(90deg); /* Draait de verticale streep plat -> Min teken */
    opacity: 0; /* Of verberg hem, dan blijft alleen horizontaal over (-) */
}
/* Optioneel: Achtergrond donkerder maken bij open? */
.faq-item.active .icon-box {
    background-color: #8A56E4;
}
.faq-item.active .icon-line {
    background-color: #fff; /* Wit streepje bij actieve paarse knop */
}

/* De verborgen tekst */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: white;
}
.faq-content-inner {
    padding: 0 20px 20px 20px;
    color: #555;
    line-height: 1.6;
    font-size: var(--small);
}

/* Knop rechts onderin */
.faq-footer-action {
    margin-top: 30px;
    text-align: right;
}
/* ===== FAQ Accordion Styles Einde ===== */

/* ===== Blog DETAIL pagina ===== */

/* HERO */
.post-hero {
  padding: 150px 80px;
  background: linear-gradient(
    181deg,
   #d7d7d7 -13.64%,
    rgba(11, 225, 255, 0) 95.32%
  );
  color: var(--black);
}
.post-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.post-hero-chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.post-hero-chip {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgb(12 12 12 / 14%);
}
.post-hero-title {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.post-hero-intro {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}
.post-hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--black);
}
.post-hero-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.post-hero-author-avatar img {
  border-radius: 999px;
}
.post-hero-author-text {
  text-align: left;
}
.post-hero-author-name {
  display: block;
  font-weight: 600;
  color: var(--black);
}
.post-hero-author-role {
  display: block;
  font-size: 12px;
}
.post-hero-separator {
  width: 1px;
  height: 24px;
  background: var(--black);
}
.post-hero-dot {
  font-size: 18px;
}

/* LAYOUT MET TOC */
.post-layout {
  padding: 60px 0 80px;
  color: var(--black);
}

/* Sticky mag niet geblokkeerd worden */
.post-layout > .container {
  overflow: visible !important;
}

.post-layout__inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  position: relative;
}

/* Linkerkolom */
.post-toc {
  flex: 0 0 220px;
}
.post-toc__inner {
  position: sticky;
  top: 140px;
  align-self: flex-start;
}
/* TOC */
.post-toc__title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  margin-bottom: 16px;
  font-weight: bold;
}
.post-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--green);
}
.post-toc__item {
  margin-bottom: 8px;
}
.post-toc__link {
  display: block;
  padding: 4px 0 4px 12px;
  font-size: 14px;
  color: #9ca3af;
  text-decoration: none;
}
a.post-toc__link.is-active {
  color: var(--brand-purple);
}

/* ARTICLE */
.post-article {
  max-width: 100%;
  flex: 1 1 auto;
}
/* Rechter kolom: Widget 1 (desktop) */
.post-side-widget {
  flex: 0 0 200px;
  align-self: flex-start;
  position: relative;   /* hier zit de ‘sticky’ */
}
.sidebar-blog.sidebar-blog--cta {
    background: var(--green);
    border-radius: 14px;
    padding: 15px;
}
section#widget-ls{margin: 0px;padding: 0px;}
section#widget-sb{margin: 0px;padding: 0px;text-align: center;}
section.single-between-widget{margin: 0px;padding: 0px;}
/* inner mag gewoon normaal zijn */
.post-side-widget__inner {
   position: relative;
}
/* ===== Widgets onder de tekst ===== */
.single-between-widget {
  margin-top: 24px;
  margin-bottom: 0;
}
.single-between-widget .container {
  display: flex;
  justify-content: center;
}

.single-between-widget .widget {
  text-align: center;
}
.single-toc-widget-mobile .widget,
.single-between-widget .widget {
  margin-bottom: 16px;
}
h3.sidebar-blog__title {
    font-weight: bold;
    font-size: larger;
    margin-bottom: 12px;
}
p.sidebar-blog__text {
    font-size: smaller;
}
.post-article h2 {
  font-size: 28px;
  margin: 40px 0 16px;
  scroll-margin-top: 160px;
}
.post-article h3 {
  font-size: 22px;
  margin: 32px 0 12px;
}
.post-article p {
  line-height: 1.7;
  margin-bottom: 16px;
}
.post-article blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 3px solid #8b5cf6;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 12px;
  color: #e5e7eb;
}
.post-article h2.is-active {
  color: var(--brand-purple);
}

/* LATEST INSIGHTS op detailpagina */
.post-latest {
  padding: 80px 0 100px;
  background: #f9fafb;
}
.post-latest__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.post-latest__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Cards (detail & generiek) */
.post-card {
  border-radius: 16px;
  overflow: hidden;
  background-color: #fbfcfa;
  border: 2px solid #eeeeee;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-card__image-link {
  display: block;
}
.post-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0px;
}

/* Body als flex-col */
.post-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

.post-card__meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.post-card__tag {
  padding: 4px 8px;
  border-radius: 999px;
      background: rgba(103, 58, 183, 0.09);
    color: var(--brand-purple);
  font-weight: 600;
}

.post-card__title {
  margin: 4px 0 15px;
  font-weight: bold;
  font-size: 25px;
}
/* Footer onderaan de kaart */
.post-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-size: 13px;
}

/* Read more link: altijd met paars pijltje */
.post-card__readmore {
  font-size: 15px;
  font-weight: bold;
  color: var(--brand-purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.post-card__readmore::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 2px;
  background-image: url("../icons/double-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}
.post-card__readmore:hover::after {
  transform: translateX(3px);
  opacity: 1;
}

/* Reading time */

.latest-blog__featured-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.latest-blog__featured-date {
  white-space: nowrap;
  color: #6b7280;
}
.latest-blog__featured-date::before{
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background-image: url("../icons/calendar.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.post-hero-reading-time::before,
.post-card__reading-time::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background-image: url("../icons/clock-time.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.post-hero-reading-time,
.post-card__reading-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.post-card__reading-time {
  white-space: nowrap;
  color: #6b7280;
}

/* Auteur direct onder footer */
.post-card__meta-bottom {
  font-size: 13px;
  color: #4b5563;
  margin-top: 4px;
}

/* evt niet meer gebruikt */
.post-card__excerpt {
  font-size: 14px;
  color: #6b7280;
}

/* Breadcrumbs verbergen op blogposts (alleen single) */
.single-post .rank-math-breadcrumb,
.single-post .yoast-breadcrumb,
.single-post #breadcrumbs,
.single-post nav.rank-math-breadcrumb {
  display: none !important;
}
nav.rank-math-breadcrumb {
  display: none !important;
}
/* ===== Blog DETAIL pagina einde ===== */

/* ==== Blog algemeen (overzicht) pagina ==== */

/* Algemene wrapper */
.latest-blog {
  padding: 80px 0 100px;
  background: linear-gradient(
      181deg,
      var(--purple) -13.64%,
      rgba(11, 225, 255, 0) 25.32%
    ) !important;
}
.latest-blog .title-part {
  margin-bottom: 40px;
}

/* BOVENSTE RIJ: FEATURED + SIDEBAR */
.latest-blog__top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: stretch;
}

/* Grote featured card links */
.latest-blog__featured {
  background: #fbfcfa;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid #eeeeee;
}
.latest-blog__featured-image-link {
  display: block;
}
.latest-blog__featured-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 0px;
}
.latest-blog__featured-body {
  padding: 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

/* Category chip */
.latest-blog__chip {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(103, 58, 183, 0.09);
  color: var(--brand-purple);
  font-weight: 600;
  align-self: flex-start;
  max-width: max-content;
}

/* Titel featured */
.latest-blog__featured-title {
  font-size: 28px;
  line-height: 1.2;
  margin: 4px 0;
}
.latest-blog__featured-title a {
  color: var(--black);
  text-decoration: none;
}
.latest-blog__featured-title a:hover {
  text-decoration: underline;
}

/* Intro */
.latest-blog__featured-excerpt {
  font-size: 15px;
  color: #4b5563;
}

/* Meta */
.latest-blog__featured-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}
.latest-blog__featured-author {
  font-weight: 500;
  color: #111827;
}
.latest-blog__featured-dot {
  font-size: 14px;
  line-height: 1;
}
.latest-blog__featured-reading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* SIDEBAR RECHTS */
.latest-blog__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Topics */
.blog-topics {
  background: #fbfcfa;
  border-radius: 20px;
  padding: 20px 22px;
  border: 2px solid #eeeeee;
}
.blog-topics__header h3,
.blog-latest-small h3 {
  font-weight: bold;
}
.blog-topics__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-topics__chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: #eef2ff;
  color: #3730a3;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.blog-topics__chip:hover {
  background: #e0e7ff;
}
.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
    border-radius: 0px;
}
/* Laatste 3 artikelen sidebar */
.blog-latest-small {
  background: #fbfcfa;
  border-radius: 20px;
  padding: 20px 22px;
  border: 2px solid #eeeeee;
}
.blog-latest-small__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-latest-small__item {
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
}
.blog-latest-small__item:first-child {
  border-top: none;
  padding-top: 0;
}
.blog-latest-small__title {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: bold;
}
.blog-latest-small__title a {
  color: #111827;
  text-decoration: none;
}
.blog-latest-small__title a:hover {
  text-decoration: unset;
}
.blog-latest-small__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
}
.blog-latest-small__dot {
  font-size: 13px;
  line-height: 1;
}

/* CATEGORIE-rijen onderaan */
.latest-blog__category-row {
  padding-top: 60px;
}

/* full-width container */
.latest-blog__category-row.container {
  max-width: 100%;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}
/* Header: titel + pijltjes */
.latest-blog__row-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.latest-blog__row-header-right {
    display: flex;
    align-items: center;
    gap: 12px; /* ruimte tussen pijltjes en button */
}
.latest-blog__row-title {
  font-weight: bold;
  font-size: 22px;
  color: var(--green);
  margin: 0;
}
.latest-blog__row-arrows {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* BLOG SLIDER ARROWS – paarse, niet transparant */
.latest-blog__arrow {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  border: 1.5px solid var(--brand-purple);
  background: var(--brand-purple);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
/* Basis: paarse bol met witte pijl */
.latest-blog__row-arrows .latest-blog__arrow {
  border-radius: 999px;
  border: 1.5px solid var(--brand-purple);
  background-color: var(--brand-purple);
  opacity: 1; /* slick default overrulen */
}

/* Icon in de pijl wit + iets zwaarder */
.latest-blog__row-arrows .latest-blog__arrow.slick-prev::before,
.latest-blog__row-arrows .latest-blog__arrow.slick-next::before {
  filter: brightness(0) invert(1) drop-shadow(0 0 1px rgba(0,0,0,.5));
}

/* Hover: lichtere paars */
.latest-blog__row-arrows .latest-blog__arrow:hover {
  background-color: #b99aee;
  border-color: #b99aee;
}

/* Actief klikken: klein tikje inzoomen */
.latest-blog__row-arrows .latest-blog__arrow:active {
  transform: scale(0.96);
}

/* Disabled: nog steeds zichtbaar, maar iets minder fel */
.latest-blog__row-arrows .latest-blog__arrow.slick-disabled {
  background-color: #b99aee;
  border-color: #b99aee;
  opacity: 0.65;   /* NIET transparant maken */
  cursor: default;
}
/* Arrow-knoppen in de header, niet absoluut */
.latest-blog__row-arrows .slick-prev,
.latest-blog__row-arrows .slick-next {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  margin: 0;
}

/* Iconen in de pijltjes */
.latest-blog__arrow.slick-prev::before,
.latest-blog__arrow.slick-next::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: brightness(0) invert(1); /* wit op paars */
  transition: transform 0.15s ease, filter 0.15s ease;
}
.latest-blog__arrow.slick-prev::before {
  background-image: url("../icons/arrow-left.svg");
}
.latest-blog__arrow.slick-next::before {
  background-image: url("../icons/arrow-right.svg");
}

/* Hover: lichter paars + iets dikkere arrow (scale) */
.latest-blog__arrow:hover {
  background: #b99aee;
  border-color: #b99aee;
  box-shadow: 0 0 0 2px rgba(185, 154, 238, 0.4);
}
.latest-blog__arrow:hover::before {
  transform: scale(1.08);
}
.latest-blog__arrow:active {
  transform: scale(0.96);
}

/* Slider-baan */
.latest-blog__category-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Slick actief */
.latest-blog__category-slider.slick-initialized {
  display: block;
}

/* Slick list/track */
.latest-blog__category-slider .slick-list {
  margin-left: -12px;
  margin-right: -12px;
  overflow: hidden;
}
.latest-blog__category-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}

/* Slides */
.latest-blog__category-slider .slick-slide {
  height: auto;
  padding: 0 12px;
  box-sizing: border-box;
}

/* Kaarten in de categorie-slider */
.latest-blog__card {
  background: #fbfcfa;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: none;
  border: 2px solid #eeeeee;
}
.latest-blog__card-image-link {
  display: block;
}
.latest-blog__card-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.latest-blog__card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 240px;
  flex: 1 1 auto;
}

/* Meta bovenin */
.latest-blog__card-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.latest-blog__card-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(103, 58, 183, 0.09);
  color: var(--brand-purple);
  font-weight: 600;
  white-space: nowrap;
}

/* Titels van kaarten in slider */
.latest-blog__category-slider .post-card__title,
.latest-blog__category-slider .latest-blog__card-title {
  font-size: 18px;
  line-height: 1.3;
  margin: 6px 0 0;
}
.latest-blog__category-slider .post-card__title a,
.latest-blog__category-slider .latest-blog__card-title a {
  color: #111827;
  text-decoration: none;
}
.latest-blog__category-slider .post-card__title a:hover,
.latest-blog__category-slider .latest-blog__card-title a:hover {
  text-decoration: unset;
  color: var(--brand-purple);
}

/* Meta onder titel */
.latest-blog__card-meta-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}
.latest-blog__card-author {
  font-weight: 500;
  color: #111827;
}
.latest-blog__card-dot {
  font-size: 14px;
  line-height: 1;
}

/* Read time */
.latest-blog__card-meta-bottom .post-card__reading-time {
  white-space: nowrap;
}

/* Read more in slider */
.latest-blog__category-slider .post-card__readmore {
  margin-top: auto;
  font-size: 14px;
  color: var(--brand-purple);
}

/* Footer onderaan de rij (View all) */
.latest-blog__row-footer {
  margin-top: 0px;
  text-align: left;
}
.latest-blog__view-all {
  font-size: 14px;
  color: var(--brand-purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
/* STATIC variant (≤ 4 posts) */
.latest-blog__category-slider.latest-blog__category-slider--static {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  align-items: stretch;
}
.latest-blog__category-slider.latest-blog__category-slider--static
  .latest-blog__card {
  flex: 0 0 calc(25% - 18px);
}

/* CTA onderaan blok */
.read-blog-cta {
  margin-top: 60px;
  text-align: center;
}
/* =======================================
   CATEGORY ARCHIVE (TOPIC-PAGINA'S)
   ======================================= */

/* Hero bovenaan categorie */
.category-hero {
  padding: 140px 0 60px;
  background: linear-gradient(
    181deg,
    var(--green) -13.64%,
    rgba(11, 225, 255, 0) 95.32%
  );
  color: var(--black);
}

.category-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.category-hero-label {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(12, 12, 12, 0.14);
  margin-bottom: 16px;
}

.category-hero-title {
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.category-hero-intro {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  color: rgba(17, 24, 39, 0.8);
}

/* Wrapper voor posts */
.category-archive {
  padding: 50px 0 90px;
  background: #fff;
}

.category-archive__inner {
  max-width: 1240px;
  margin: 0 auto;
}

/* Featured kaart */
.category-archive__featured {
  margin-bottom: 32px;
}

.category-archive__featured .post-card {
  border-radius: 24px;
  overflow: hidden;
  background-color: #fbfcfa;
  border: 2px solid #eeeeee;
}

.category-archive__featured .post-card__image {
  height: 260px;
  object-fit: cover;
}

.category-archive__featured .post-card__title {
  font-size: 28px;
  margin-bottom: 12px;
}

/* Grid met overige posts: 4 per rij op desktop */
.category-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.category-archive__grid-item .post-card {
  height: 100%;
}
.container.post-layout__inner {max-width: 90% !important;}
/* Kleine fine-tuning voor kaarten in het grid */
.category-archive__grid-item .post-card__image {
  height: 180px;
  object-fit: cover;
}

.category-archive__grid-item .post-card__title {
  font-size: 20px;
}

/* Extra meta element voor datum */
.post-card__meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.post-card__date {
  color: #6b7280;
  white-space: nowrap;
}

/* Paginatie onderaan */
.category-archive__pagination {
  margin-top: 40px;
  text-align: center;
}

.category-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  margin: 0 4px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  background: #ffffff;
}

.category-archive__pagination .page-numbers.current {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
  color: #ffffff;
  font-weight: 600;
}

.category-archive__pagination .page-numbers:hover {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
}
.blog-image{
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 16px;      /* optioneel */
  aspect-ratio: 16 / 9;     /* pas aan naar smaak (bijv. 21/9 of 4/3) */
}

.blog-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* pricing calculator begin */
.ormilon-pricing-calc{
  /* Brand + UI tokens */
  --pc-accent:#7a2cff;
  --pc-text:#fff;
  --pc-muted:rgba(255,255,255,.72);

  --pc-card:rgba(20,27,40,.85);
  --pc-card-border:rgba(255,255,255,.10);

  /* Slider tokens */
  --pc-thumb:18px;
  --pc-track:6px;

  background:var(--pc-bg,transparent);
}

@media (prefers-color-scheme:dark){
  .ormilon-pricing-calc{background:var(--pc-bg-dark,var(--pc-bg,transparent));}
}

.ormilon-pricing-calc .pc-wrap{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}

@media (max-width:980px){
  .ormilon-pricing-calc .pc-wrap{grid-template-columns:1fr;}
}

.ormilon-pricing-calc .pc-card{
  border-radius:18px;
  background:var(--pc-card);
  border:1px solid var(--pc-card-border);
  padding:22px;
  backdrop-filter:blur(10px);
}

.ormilon-pricing-calc .pc-card-title,
.ormilon-pricing-calc .pc-slider-label{
  font-weight:700;
  color:rgba(255,255,255,.92);
}

.ormilon-pricing-calc .pc-card-title{margin-bottom:8px;}

.ormilon-pricing-calc .pc-duration{
  position:relative;
  display:inline-flex;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  padding:4px;
  gap:4px;
  margin-bottom:18px;

  /* JS sets these for smooth sliding */
  --pc-duration-index:0;
  --pc-duration-count:5;
}

.ormilon-pricing-calc .pc-duration::before{
  content:"";
  position:absolute;
  top:4px; bottom:4px; left:4px;
  width:calc((100% - 8px) / var(--pc-duration-count));
  border-radius:999px;
  background:rgba(122,44,255,.25);
  box-shadow:inset 0 0 0 1px rgba(122,44,255,.45);
  transform:translateX(calc(var(--pc-duration-index) * 100%));
  transition:transform .22s ease;
  pointer-events:none;
}

.ormilon-pricing-calc .pc-duration-btn{
  appearance:none;
  border:0;
  background:transparent;
  color:rgba(255,255,255,.78);
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  font-weight:600;
  position:relative;
  z-index:1;
}
.ormilon-pricing-calc .pc-duration-btn.active{color:#fff;}

.ormilon-pricing-calc .pc-sliders{display:grid; gap:16px;}

.ormilon-pricing-calc .pc-slider{overflow:visible;}

.ormilon-pricing-calc .pc-slider-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  margin-bottom:8px;
}

.ormilon-pricing-calc .pc-slider-value{
  font-weight:800;
  color:#fff;
}

.ormilon-pricing-calc .pc-hint{
  margin-top:8px;
  font-size:12px;
  color:rgba(255,255,255,.62);
}

.ormilon-pricing-calc .pc-results{
  margin-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:16px;
}

.ormilon-pricing-calc .pc-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
}

.ormilon-pricing-calc .pc-row-label{
  color:rgba(255,255,255,.72);
  font-weight:600;
}

.ormilon-pricing-calc .pc-row-value{text-align:right;}

.ormilon-pricing-calc .pc-price-main{
  color:#fff;
  font-weight:800;
  font-size:18px;
}

.ormilon-pricing-calc .pc-price-sub{
  display:block;
  margin-top:4px;
  color:rgba(255,255,255,.60);
  font-size:12px;
}

.ormilon-pricing-calc .pc-actions{margin-top:14px;}

.ormilon-pricing-calc .pc-btn{
  width:100%;
  border:0;
  border-radius:999px;
  padding:12px 16px;
  background:rgba(255,255,255,.10);
  color:#fff;
  cursor:pointer;
  font-weight:700;
}
.ormilon-pricing-calc .pc-btn:hover{background:rgba(255,255,255,.14);}

/* ===== Range slider (stable cross-browser) ===== */
.ormilon-pricing-calc input[type="range"]{
  -webkit-appearance:none;
  appearance:none;
  width:100%;
  height:22px;
  background:transparent; /* fill for webkit/chromium is painted via JS */
  padding:0 calc(var(--pc-thumb)/2); /* makes thumb flush at min/max */
  box-sizing:border-box;
  outline:none;
  border:0;
}

/* WebKit track */
.ormilon-pricing-calc input[type="range"]::-webkit-slider-runnable-track{
  height:var(--pc-track);
  border-radius:999px;
  background:rgba(255,255,255,.22);
}

/* WebKit thumb */
.ormilon-pricing-calc input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:var(--pc-thumb);
  height:var(--pc-thumb);
  border-radius:999px;
  background:var(--pc-accent);
  border:2px solid rgba(255,255,255,.70);
  margin-top:calc((var(--pc-track) - var(--pc-thumb))/2);
  box-shadow:0 6px 16px rgba(0,0,0,.25);
}

/* Firefox track + progress */
.ormilon-pricing-calc input[type="range"]::-moz-range-track{
  height:var(--pc-track);
  border-radius:999px;
  background:rgba(255,255,255,.22);
}
.ormilon-pricing-calc input[type="range"]::-moz-range-progress{
  height:var(--pc-track);
  border-radius:999px;
  background:rgba(122,44,255,.90);
}

/* Firefox thumb */
.ormilon-pricing-calc input[type="range"]::-moz-range-thumb{
  width:var(--pc-thumb);
  height:var(--pc-thumb);
  border-radius:999px;
  background:var(--pc-accent);
  border:2px solid rgba(255,255,255,.70);
  box-shadow:0 6px 16px rgba(0,0,0,.25);
}
.ormilon-pricing-calc input[type="range"]::-moz-focus-outer{border:0;}

/* ===== Saving badge ===== */
.ormilon-pricing-calc .pc-savings-row{align-items:center;}

.ormilon-pricing-calc .pc-discount{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:12px;
  background:rgba(27,179,98,.14);
  border:1px solid rgba(27,179,98,.35);
  color:#bff7d6;
  font-weight:800;
  letter-spacing:.2px;
}

.ormilon-pricing-calc .pc-discount .pc-discount-sub{
  font-size:12px;
  font-weight:700;
  line-height:1;
  opacity:.95;
  white-space:nowrap;
  margin:0;
}

.ormilon-pricing-calc .pc-discount-badge{
  display:inline-flex;
  align-items:center;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid rgba(27,179,98,.55);
  background:rgba(27,179,98,.10);
  color:#bff7d6;
  font-weight:800;
  font-size:12px;
  line-height:1;
  margin-left:10px;
  white-space:nowrap;
}
/* pricing calculator end */

