:root {
  --purple: #722BFF;
  --font-color: #6A7298;
  --header-color: #061454;
  --header-color-purple: #1C3BF4;
  --very-light-background: #F3F7FB;
  --very-dark-background: #040C32;
  --button-green: #1CE55F;
  --button-green-hover: linear-gradient(180deg, #16B74C 0%, #1CE55F 100%);
  --button-blue: #1C3BF4;
  --button-blue-hover: linear-gradient(180deg, #162FC3 0%, #1C3BF4 100%);
  --button-purple: #722BFF;
  --button-purple-hover: linear-gradient(180deg, #5B22CC 0%, #722BFF 100%);
  --background-teal-light: #D2F0FD;
  --background-green-light: #D2FADF;
  --background-purple-light: #E3D5FF;
  --background-teal: #1CB3F4;
  --background-green: #1CE55F;
  --background-red: #FF1E56;
  --button-radius: 8px;
  --border-radius: 16px;
  --element-padding-desktop: 80px 0;
  --element-padding-desktop-large: 100px 0;
  --element-margin-mobile: 0 0 60px 0;
  --element-margin-desktop: 0 0 100px 0;
  --smaller-section-padding: 80px 0;
  --desktop-header-height: 120px;
  --desktop-footer-height: 260px;
  --hero-logo-strip-height: 80px;
  
  --desktop-margin: 150px 0;  --input-border: #0632417A;

  
}

* {
  padding: 0;
  margin: 0;
}

p strong {
  font-weight: 600;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}


img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

body {
  position: relative;
  font-family:"Inter", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  color: var(--font-color);
  transition: all 0.3s;
}

body .wpb-content-wrapper {
  transition: all 0.3s;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  --bs-gutter-x: 1.5rem;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1400px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
  }
}

@media (min-width: 3840px) {
  html {
    font-size: 24px;
  }

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 3000px;
  }
}

hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}


h1 {
  font-size: clamp(32px, 3vw, 64px);
  font-weight: 700;
  margin-bottom: 20px;
  text-wrap: balance;
  line-height: 72px;
}

h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: clamp(32px, 3.5vw, 57px);

  color: black;
  font-weight: 700;
}

h3 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 22px;
}

h4 {
  font-size: clamp(17px, 3.5vw, 19px);
  line-height: 28px;
}

h5 {
  font-size: clamp(14px, 2vw, 14px);
}

h6 {
  font-size: clamp(12px, 1.5vw, 14px);
}

p {
  font-size: clamp(16px, 1.5vw, 16px);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 25.6px;
}

a:not(header a):not(footer a) {
  font-size: clamp(16px, 1.5vw, 16px);
  line-height: 25.6px;
  font-weight: 400;
  text-decoration: underline;

}

a:hover {
  text-decoration: none;
  color: var(--font-color);
}

/* Site Header / Navbar
----------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.site-header .announcement-bar {
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.site-header__navbar {
  padding: 24px 0;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled .site-header__navbar {
  background-color: rgba(4, 12, 50, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 0;
}

.site-header--faq .site-header__navbar {
  background-color: var(--very-light-background);
}

.site-header--faq.is-scrolled .site-header__navbar {
  background-color: var(--very-light-background);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* WordPress admin bar offset */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .is-scrolled.site-header {
  top: 0;
}
}

/* Mobile: announcement bar scrolls away, only the navbar stays sticky */
@media (max-width: 991.98px) {
  .site-header {
    position: absolute;
  }

  .site-header__navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .admin-bar .site-header__navbar {
    top: 118px;
  }

  .site-header__navbar {
    top: 72px;
  }

  .admin-bar.is-scrolled .site-header__navbar,
  .site-header.is-scrolled .site-header__navbar {
    top: 0;
  }
}




.site-header__row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.site-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__logo {
  flex-shrink: 0;
  width: 220px;
  display: flex;
  align-items: center;
}

.site-header__logo img {
  width: auto;
}

.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.site-header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__nav-list li a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
  transition: opacity 0.2s;
}

.site-header--faq .site-header__nav-list li a {
  color: var(--header-color);
}

.site-header--faq .site-header__nav-list li a:hover {
  color: #051041;
}

.site-header__nav-list li a:hover {
  opacity: 0.75;
  color: #fff;
  text-decoration: none;
}

.site-header__nav-list li.current-menu-item > a {
  font-weight: 600;
}

.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 1100;
}

.site-header__hamburger-bar {
  display: block;
  width: 32px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header--faq .site-header__hamburger-bar {
  background-color: var(--header-color);
}

.site-header__hamburger.is-active .site-header__hamburger-bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.site-header__hamburger.is-active .site-header__hamburger-bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile panel (full-screen overlay) */
.site-header__mobile-panel {
  position: fixed;
  inset: 0;
  background-color: #040c32;
  z-index: 1050;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  display: none;
}

.admin-bar .site-header__mobile-panel {
  top: 46px;
}

.site-header__mobile-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}

.site-header__mobile-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: 24px;
  padding-bottom: 32px;
  padding-right: 24px;
  padding-left: 24px;
}

.site-header__mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.site-header__mobile-logo {
  display: inline-flex;
  align-items: center;
}

.site-header__mobile-logo img {
  width: 160px;
  height: auto;
}

.site-header__mobile-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.site-header__mobile-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.site-header__mobile-eyebrow-label {
  color: #9ba1bb;
  font-size: 13px;
  line-height: 1.4;
}

.site-header__mobile-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--button-green);
  background: linear-gradient(180deg, rgba(1, 4, 17, 0.4) 0%, rgba(4, 12, 50, 0.4) 100%);
  font-size: 12px;
  font-weight: 600;
  line-height: 19.2px;
}

.site-header__mobile-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--button-green);
  box-shadow: 0 0 0 rgba(28, 229, 95, 0.45);
  animation: livePulse 1.8s ease-out infinite;
}

.site-header__mobile-nav {
  flex: 1 0 auto;
}

.site-header__mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__mobile-nav-list li:last-child {
  border-bottom: none;
}

.site-header__mobile-nav-list li a {
  display: block;
  padding: 18px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

.site-header__mobile-nav-list li.current-menu-item > a {
  font-weight: 700;
}

.site-header__mobile-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.site-header__mobile-chat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-header__mobile-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #1a2350;
}

.site-header__mobile-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-header__mobile-chat-text {
  margin: 0;
  color: #d2d8fd;
  font-size: 14px;
  line-height: 1.4;
}

.site-header__mobile-chat-text strong {
  color: #fff;
  font-weight: 700;
}

.site-header__mobile-cta-button {
  min-width: 220px;
  justify-content: center;
}

/* Language switcher (shared between desktop nav and mobile menu) */
.site-header__languages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__languages li {
  margin: 0;
  height: 24px;
}

.site-header__languages a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  background-color: transparent;
  border: none;
  transition: filter 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
  filter: grayscale(1);
  opacity: 0.5;
}

.site-header__languages a:hover {
  opacity: 0.85;
  filter: grayscale(0.5);
  text-decoration: none;
}

.site-header__languages .current-lang a,
.site-header__languages li.current-lang a {
  opacity: 1;
  filter: none;
}

.site-header__flag {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.site-header__flag--text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: inherit;
}

/* Mobile-specific overrides */
.site-header__languages--mobile {
  margin-top: 32px;
  justify-content: center;
  gap: 16px;
}

.site-header__languages--mobile a {
  width: 36px;
  height: 36px;
}

/* Hide desktop switcher on mobile, mobile switcher on desktop */
@media (max-width: 991.98px) {
  .site-header__languages--desktop {
    display: none;
  }
}

@media (min-width: 992px) {
  .site-header__languages--mobile {
    display: none;
  }

  .site-header__languages--desktop {
    margin-left: 16px;
  }
}

@media (max-width: 991.98px) {
  .site-header__hamburger {
    display: flex;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__mobile-panel {
    display: block;
  }
}

body.has-mobile-menu-open {
  overflow: hidden;
}

body.has-mobile-menu-open .site-header__hamburger {
  visibility: hidden;
  pointer-events: none;
}

/* Announcement Bar
----------------------------------------------- */

.announcement-bar {
  background-color: var(--purple);
  padding: 4px 0;
}

.announcement-bar__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-right: clamp(24px, 4vw, 64px);
  padding-left: clamp(24px, 4vw, 64px);
}

.announcement-bar__text {
  color: #fff;
  margin-bottom: 0;
}

.announcement-bar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background-color: var(--button-green);
  color: var(--header-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 15.4px;
  border-radius: var(--button-radius);
  border: 1px solid var(--button-green);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.announcement-bar__button::before,
.button--primary::before,
.button--secondary::before,
.button--purple::before,
.contact-page .gform_wrapper input[type="submit"]::before,
.contact-page .gform_wrapper button[type="submit"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--button-green-hover);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: -1;
}

.announcement-bar__button:hover::before,
.button--primary:hover::before,
.button--secondary:hover::before,
.button--purple:hover::before,
.contact-page .gform_wrapper input[type="submit"]:hover::before,
.contact-page .gform_wrapper button[type="submit"]:hover::before {
  opacity: 1;
}

.announcement-bar__button:hover {
  border-color: var(--button-green);
  opacity: 1;
  color: var(--header-color);
  text-decoration: none;
}

/* FAQ Page
----------------------------------------------- */

.faq-page__hero {
  background-color: var(--very-light-background);
  padding: 190px 0 40px;
}

.faq-page__hero h1 {
  color: var(--header-color);
  margin-bottom: 0;
}

.faq-page__hero-container {
  position: relative;
}

.faq-page__hero-row {
  --bs-gutter-x: clamp(24px, 4vw, 88px);
  gap: 0;
}

.faq-page__hero-content {
  min-width: 0;
}

.faq-page__eyebrow {
  font-size: 14px;
  font-weight: 700;
  line-height: 19.2px;
  color: var(--header-color-purple);
  margin-bottom: 48px;
}

.faq-page__title {
  font-size: 52px;
  line-height: 57.2px;
  color: var(--header-color);
  margin-bottom: 48px !important;
}

.faq-page__description p {
  font-size: 18px;
  line-height: 28.8px;
  color: var(--font-color);
  margin-bottom: 0;
}


.faq-page__chat img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-page__list-wrap {
  position: relative;
  padding: 0 24px 0;
  background: var(--very-light-background);
  overflow: visible;
}

.faq-page__list-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -56px;
  width: 760px;
  height: 210px;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  background: #1cb3f4;
  opacity: 0.26;
  filter: blur(75px);
  pointer-events: none;
  z-index: 1;
}

.faq-page__list-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: #040c32;
  z-index: 0;
}

.faq-page__list-container {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 32px;
  padding: 80px 60px;
  margin-bottom: -108px;
}

.faq-page__list-row {
  --bs-gutter-x: 24px;
}

.faq-page__list-card {
  min-width: 0;
}

.faq-page__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-page__item {
  background: var(--very-light-background);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 24px;
  cursor: pointer;
}

.faq-page__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 20px;
  line-height: 22px;
  color: var(--button-blue);
  font-weight: 700;
  text-align: left;
}

.faq-page__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--button-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.faq-page__icon::before,
.faq-page__icon::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--button-blue);
  transform-origin: center;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
}

.faq-page__icon::after {
  transform: rotate(90deg) scaleY(1);
}

.faq-page__item.is-open .faq-page__icon::after {
  transform: rotate(90deg) scaleY(0);
  opacity: 0;
  transition-delay: 0.13s;
}

.faq-page__item.is-open .faq-page__icon {
  transform: rotate(180deg) scale(1.03);
  /* background: rgba(255, 255, 255, 0.65); */
  border-color: #2451ff;
}

.faq-page__answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding-top 0.35s ease;
}

.faq-page__item.is-open .faq-page__answer {
  max-height: 360px;
  opacity: 1;
  padding-top: 24px;
}

.faq-page__answer p {
  font-size: 18px;
  line-height: 28.8px;
  color: var(--font-color);
  margin-bottom: 0;
}

.faq-page__ask-kevin {
  margin-top: 80px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.faq-page__ask-avatar-wrap {
  width: 60px;
  height: 60px;
  position: relative;
  flex-shrink: 0;
}

.faq-page__ask-avatar-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  object-fit: cover;
}

.faq-page__ask-dot {
  position: absolute;
  top: 7px;
  right: 2px;
  width: 8px;
  height: 8px;
  background: #1ce55f;
  border-radius: 50%;
}

.faq-page__ask-kevin p {
  /* width: 120px; */
  font-size: 12px;
  line-height: 19.2px;
  color: var(--header-color);
  margin-bottom: 0;
}

.faq-page__ask-kevin p strong {
  font-weight: 700;
}

.faq-page .cta-block {
  padding-top: 227px;
}

@media (max-width: 1199.98px) {
  .faq-page__title {
    font-size: 42px;
    line-height: 46px;
    margin-bottom: 24px;
  }

  .faq-page__list-container {
    padding: 48px 24px;
  }
}

@media (max-width: 991.98px) {
  .faq-page__hero {
    padding: 160px 0 56px;
  }

  .faq-page__hero-row {
    gap: 24px;
  }

  .faq-page__chat {
    max-width: 100%;
  }

  .faq-page__list-wrap {
    padding: 16px 16px 0;
  }

  .faq-page__list-wrap::before {
    top: -52px;
    width: 460px;
    height: 150px;
    opacity: 0.24;
    filter: blur(58px);
  }

  .faq-page__list-wrap::after {
    height: 40%;
  }

  .faq-page__list-container {
    border-radius: 24px;
    margin-bottom: -76px;
  }

  .faq-page .cta-block {
    padding-top: 180px;
  }

  .faq-page__question {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 575.98px) {
  .faq-page__hero {
    padding: 221px 0 40px;
  }

  .faq-page__eyebrow {
    margin-bottom: 24px;
  }

  .faq-page__title {
    line-height: 38px;
    margin-bottom: 24px !important;
  }

  .faq-page__ask-kevin {
    margin-top: 40px;
  }

  .faq-page__description p {
    font-size: 16px;
    line-height: 25.6px;
  }

  .faq-page__item {
    padding: 14px 16px;
  }

  .faq-page__icon {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .faq-page__answer p {
    font-size: 16px;
    line-height: 25.6px;
  }

  .faq-page__list-container {
    margin-bottom: -56px;
  }

  .faq-page .cta-block {
    padding-top: 120px;
  }
}

/* Vacatures
----------------------------------------------- */

.vacatures-page,
.single-vacature {
  background: #ffffff;
}

.vacatures-page {
  box-sizing: border-box;
  min-height: calc(100vh - var(--desktop-header-height) - var(--desktop-footer-height));
  min-height: calc(100svh - var(--desktop-header-height) - var(--desktop-footer-height));
}

.single-vacature__hero {
 background: radial-gradient(30% 40% at 20% 60%, rgba(28, 179, 244, 0.54) 0%, rgba(4, 12, 50, 0) 80%), radial-gradient(40% 60% at 62% 52%, rgba(114, 43, 255, 0.7) 0%, rgba(4, 12, 50, 0) 62%), radial-gradient(42% 64% at 72% 63%, rgba(28, 229, 95, 0.6) 5%, rgba(4, 12, 50, 0) 60%), var(--very-dark-background);
}

.single-vacature__intro p {
  color: white;
}

.vacatures-page__hero,
.single-vacature__hero {
  padding: 180px 0 100px;
}

.vacatures-page__hero {
  box-sizing: border-box;
  min-height: inherit;
}

.vacatures-page__heading {
  margin: 0 auto 44px;
}

.vacatures-page__title {
  color: var(--header-color);
  margin-bottom: 0;
}

.vacatures-page__list {
  margin: 0 auto;
}

.vacature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  overflow: hidden;
  margin-bottom: 40px;
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 18px 42px rgba(4, 12, 50, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vacature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(4, 12, 50, 0.16);
}

.vacature-card__link {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  text-decoration: none;
}

.vacature-card__content {
  position: relative;
  z-index: 1;
  padding: 42px 48px;
}

.vacature-card--no-media {
  grid-template-columns: 1fr;
}

.vacature-card__title {
  color: var(--header-color);
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.18;
  margin-bottom: 20px;
}

.vacature-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
  padding: 0 0 24px;
  margin: 0 0 30px;
  border-bottom: 1px solid rgba(6, 20, 84, 0.12);
  list-style: none;
}

.vacature-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #000000;
  font-size: 14px;
  line-height: 20px;
}

.vacature-meta__item i {
  width: 15px;
  color: var(--purple);
  font-size: 15px;
  text-align: center;
  flex-shrink: 0;
}

.single-vacature .vacature-meta__item i {
  color: var(--button-green) !important;
}

.single-vacature .vacature-meta__item {
  color: white;
}

.vacature-card__intro {
  color: var(--font-color);
}

.single-vacature__intro {
  color: white;
}

.vacature-card__intro p,
.single-vacature__intro p {
  color: white;
  margin-bottom: 0;
}

.vacature-card__media {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0 32px 32px 0;
}

.vacature-card__media img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.vacatures-page__pagination {
  max-width: 1120px;
  margin: 20px auto 0;
}

.vacatures-page__pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.vacatures-page__pagination a,
.vacatures-page__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 14px;
  color: var(--header-color);
  border: 1px solid rgba(6, 20, 84, 0.14);
  border-radius: var(--button-radius);
  text-decoration: none;
}

.vacatures-page__pagination .current {
  color: #ffffff;
  background: var(--button-blue);
  border-color: var(--button-blue);
}

.vacatures-page__empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px;
  color: var(--header-color);
  text-align: center;
  background: #f3f7fb;
  border-radius: var(--border-radius);
}

.vacatures-page__empty-title {
  color: var(--header-color);
  margin-bottom: 16px;
}

.vacatures-page__empty p {
  max-width: 540px;
  margin: 0 auto 28px;
  color: var(--font-color);
}

.vacatures-page__empty-button {
  border: 0;
}

.single-vacature__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.single-vacature__back:hover {
  color: white;
  text-decoration: underline;
}

.single-vacature__hero-container {
  padding-left: 0;
  padding-right: 0;
}

.single-vacature__hero-row {
  --bs-gutter-x: clamp(24px, 4vw, 88px);

}

.single-vacature__hero-content h1 {
  color: white;
  line-height: 1.08;
  margin-bottom: 28px;
}

.single-vacature__hero-content .vacature-meta {
  margin-bottom: 28px;
}

.single-vacature__intro {
  max-width: 720px;
  margin-bottom: 20px;
}

.single-vacature__apply-button {
  margin-top: 10px;
}

.single-vacature__hero-media {
  overflow: hidden;
  border-radius: var(--border-radius);
}

.single-vacature__hero-media img {
  width: 100%;
  height: clamp(320px, 34vw, 520px);
  object-fit: contain;
  display: block;
}

.single-vacature__main {
  padding: 100px 0;
  background-color: var(--very-light-background);
}

.single-vacature__article {
  max-width: 900px;
  margin: 0 auto;
}

.single-vacature__body {
  color: var(--font-color);
}

.single-vacature__body h2,
.single-vacature__body h3,
.single-vacature__body h4 {
  color: var(--header-color);
}

.single-vacature__body ul,
.single-vacature__body ol {
  margin: 0 0 24px 20px;
}

.single-vacature__overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 50, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.single-vacature__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.single-vacature__popup-shell {
  --bs-gutter-x: clamp(24px, 4vw, 120px);
  width: 100%;
}

.single-vacature__popup-col {
  min-width: 0;
}

.single-vacature__popup {
  position: relative;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 40px 40px;
  background: #ffffff;
  border-radius: 24px;
}

.single-vacature__popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #e1ebf4;
  background: transparent;
  color: var(--header-color);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.single-vacature__popup-close span {
  display: block;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.single-vacature__popup-close:hover {
  border-color: var(--button-blue);
  color: var(--button-blue);
}

.single-vacature__popup-label {
  color: var(--button-blue);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.single-vacature__popup-title {
  color: var(--header-color);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  margin-bottom: 28px;
}

.single-vacature__form .gform_wrapper {
  margin-bottom: 0;
}

.single-vacature .gform_wrapper {
  margin: 0;
}

.single-vacature .gform_wrapper .gform_body {
  margin: 0;
}

.single-vacature .gform_wrapper ul.gform_fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-vacature .gform_wrapper .gfield {
  margin: 0;
  padding: 0;
}

.single-vacature .gform_wrapper .gfield_label {
  color: var(--button-blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
  display: block;
}

.single-vacature .gform_wrapper .gfield_required {
  color: var(--button-blue);
}

.single-vacature .gform_wrapper input[type="text"],
.single-vacature .gform_wrapper input[type="email"],
.single-vacature .gform_wrapper input[type="tel"],
.single-vacature .gform_wrapper input[type="url"],
.single-vacature .gform_wrapper input[type="number"],
.single-vacature .gform_wrapper select,
.single-vacature .gform_wrapper textarea {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
  background: var(--very-light-background) !important;
  border: 1px solid #e1ebf4 !important;
  border-radius: 16px !important;
  padding: 20px 16px !important;
  color: var(--header-color) !important;
  font-size: 16px !important;
  font-family: inherit !important;
  line-height: 1.6 !important;
  transition: border-color 0.2s ease !important;
  box-shadow: none !important;
  outline: none !important;
}

.home-selection-funnel {
    padding: 0 0 32px;
    overflow: hidden;
    background-color: var(--very-light-background);
}

.single-vacature .gform_wrapper input[type="text"]::placeholder,
.single-vacature .gform_wrapper input[type="email"]::placeholder,
.single-vacature .gform_wrapper input[type="tel"]::placeholder,
.single-vacature .gform_wrapper input[type="url"]::placeholder,
.single-vacature .gform_wrapper input[type="number"]::placeholder,
.single-vacature .gform_wrapper textarea::placeholder {
  color: #9ba1bb !important;
}

.single-vacature .gform_wrapper input[type="text"]:focus,
.single-vacature .gform_wrapper input[type="email"]:focus,
.single-vacature .gform_wrapper input[type="tel"]:focus,
.single-vacature .gform_wrapper input[type="url"]:focus,
.single-vacature .gform_wrapper input[type="number"]:focus,
.single-vacature .gform_wrapper select:focus,
.single-vacature .gform_wrapper textarea:focus {
  border-color: var(--button-blue) !important;
  box-shadow: none !important;
  outline: none !important;
}

.single-vacature .gform_wrapper textarea {
  min-height: 156px !important;
  resize: vertical;
}

.single-vacature .gform_wrapper .ginput_complex {
  display: flex;
  gap: 8px;
}

.single-vacature .gform_wrapper .ginput_complex > span {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.single-vacature .gform_wrapper .ginput_complex .name_first label,
.single-vacature .gform_wrapper .ginput_complex .name_last label,
.single-vacature .gform_wrapper .ginput_complex > span > label,
.single-vacature .gform_required_legend {
  display: none !important;
}

.single-vacature__form .gform_footer {
  margin-bottom: 0;
}

.single-vacature .gform_wrapper .gform_footer,
.single-vacature .gform_wrapper .gform_page_footer {
  margin-top: 8px;
  padding: 0;
}

.single-vacature .gform_wrapper input[type="submit"],
.single-vacature .gform_wrapper button[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  background: var(--button-green) !important;
  border: 1px solid var(--button-green) !important;
  border-radius: 16px !important;
  color: var(--header-color) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  padding: 18px 32px !important;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.single-vacature .gform_wrapper input[type="submit"]:hover,
.single-vacature .gform_wrapper button[type="submit"]:hover {
  border-color: var(--button-green) !important;
  opacity: 1;
  color: var(--header-color) !important;
}

.single-vacature .gform_wrapper .gfield_error input,
.single-vacature .gform_wrapper .gfield_error textarea,
.single-vacature .gform_wrapper .gfield_error select {
  border-color: var(--background-red);
}

.single-vacature .gform_wrapper .validation_message,
.single-vacature .gform_wrapper .gfield_description.validation_message {
  color: var(--background-red);
  font-size: 12px;
  margin-top: 6px;
}

.single-vacature .gform_confirmation_wrapper {
  color: var(--header-color);
  font-size: 16px;
  text-align: center;
  padding: 40px 0;
}

.single-vacature__sticky-apply {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(6, 20, 84, 0.1);
  box-shadow: 0 -12px 30px rgba(4, 12, 50, 0.1);
  backdrop-filter: blur(12px);
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.single-vacature__sticky-apply.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.single-vacature__sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.single-vacature__sticky-title {
  color: var(--header-color);
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
}

.single-vacature__sticky-button {
  flex-shrink: 0;
}

@media (max-width: 1199.98px) {
  .vacatures-page__list,
  .vacatures-page__pagination {
    max-width: 100%;
  }

  .vacature-card {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .vacature-card__content {
    padding: 32px;
  }

}

@media (max-width: 991.98px) {
  .vacatures-page__hero,
  .single-vacature__hero {
    padding: 140px 0 70px;
  }

  .vacatures-page__hero {
    padding: 200px 0 70px;
  }

  .single-vacature__hero-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .vacature-card {
    grid-template-columns: 1fr;
  }

  .vacature-card__media {
    order: -1;
    border-radius: 32px 32px 0 0;
  }

  .vacature-card {
    border-radius: 32px;
  }

  .single-vacature__hero-media {
    order: -1;
    margin-bottom: 16px;
  }

  .single-vacature__hero-media img {
    min-height: 340px;
  }

  .single-vacature__sticky-title {
    display: none;
  }

  .single-vacature__sticky-button {
    width: 100%;
  }
}

@media (max-width: 575.98px) {

  .single-vacature__hero {
    padding: 120px 0 56px;
  }

  .vacatures-page__hero {
    padding: 200px 0 56px;
  }

  .single-vacature__hero-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .vacatures-page__list,
  .vacatures-page__pagination {
    max-width: 100%;
  }

  .vacature-card__content {
    padding: 28px 22px;
  }

  .vacature-meta {
    grid-template-columns: 1fr;
  }

  .vacature-card__media img {
    min-height: 240px;
  }

  .single-vacature__main {
    padding: 50px 0;
  }

  .single-vacature__hero-media img {
    height: 280px;
    min-height: 0;
  }

  .single-vacature__popup {
    padding: 44px 22px 28px;
  }
}

/* Home Hero
----------------------------------------------- */

.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(47% 58% at 22% 60%, rgba(120, 178, 255, 0.52) 0%, rgba(120, 178, 255, 0) 72%),
    radial-gradient(62% 82% at 72% 33%, rgba(28, 229, 95, 0.58) 0%, rgba(4, 12, 50, 0) 58%),
    radial-gradient(65% 80% at 65% 50%, rgba(114, 43, 255, 0.65) 0%, rgba(4, 12, 50, 0) 68%),
    var(--very-dark-background);
}

@media screen and (min-width: 992px) {
  .home-hero,
  .solutions-hero {
    min-height: calc(100vh - var(--desktop-header-height) - var(--hero-logo-strip-height));
    min-height: calc(100svh - var(--desktop-header-height) - var(--hero-logo-strip-height));
  }
}

.home-hero__row  {
  --bs-gutter-x: clamp(24px, 4vw, 88px);
  gap: 0;
}

.home-hero__bg {
  display: none;
}

.home-hero__container {
  position: relative;
  z-index: 1;
  padding-top: 160px;
  padding-bottom: 70px;
}

.home-hero__content {
  flex: 1;
  min-width: 0;
}

.home-hero__eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.home-hero__eyebrow {
  margin-bottom: 0;
  color: #9ba1bb;
  font-size: 12px;
  font-weight: 700;
  line-height: 19.2px;
}

.home-hero__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--button-green);
  background: linear-gradient(180deg, rgba(1, 4, 17, 0.4) 0%, rgba(4, 12, 50, 0.4) 100%);
  box-shadow: 0 8px 16px rgba(4, 12, 50, 0.5);
  font-size: 12px;
  line-height: 19.2px;
}

.home-hero__live-dot {
  width: 6px;
  height: 6px;
  margin-bottom: 1px;
  border-radius: 50%;
  background-color: var(--button-green);
}

.home-hero__live-dot,
.faq-page__ask-dot,
.contact-page__kevin-dot {
  box-shadow: 0 0 0 rgba(28, 229, 95, 0.45);
  animation: livePulse 1.8s ease-out infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(28, 229, 95, 0.45);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(28, 229, 95, 0);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(28, 229, 95, 0);
    transform: scale(1);
  }
}

.home-hero__content h1 {
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.12;
}

.home-hero__text {
  color: #cdd0dd;
  margin-bottom: 32px;
}

.home-hero__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: opacity 0.2s ease;
}

.button:hover {
  text-decoration: none;
  opacity: 0.9;
}

.button--primary {
  padding: 16px 24px;
  background-color: var(--button-green);
  border: 0;
  border-radius: var(--border-radius);
  color: var(--header-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 19.8px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.button--primary:hover {
  border-color: var(--button-green);
  opacity: 1;
  color: var(--header-color);
}

.button--secondary {
  padding: 8px 24px;
  background-color: var(--button-blue);
  border-color: var(--button-blue);
  border-radius: var(--button-radius);
  color: #d2d8fd;
  font-size: 14px;
  font-weight: 600;
  line-height: 15.4px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.button--secondary:hover {
  color: #d2d8fd;
}

.button--secondary::before {
  background: var(--button-blue-hover);
}

.home-hero__video-icon {
  width: 13px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.home-hero__video-icon::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid currentColor;
}

.home-hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.home-hero__trust-image {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  object-fit: cover;
}

.home-hero__trust-text {
  margin-bottom: 0;
  color: #9ba1bb;
  font-size: 12px;
  line-height: 19.2px;
}

.home-hero__trust-text strong {
  color: #fff;
}

.home-hero__media {
  max-width: none;
  margin-left: auto;
}

.home-hero__media img,
.home-hero__media svg {
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
}

.home-logo-strip {
  background-color: #fff;
}

.home-logo-strip__container {
  padding-right: 0;
  padding-left: 0;
}

.home-logo-strip__row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 0;
}

.home-logo-strip__inner {
  position: relative;
  overflow: hidden;
}

.home-logo-strip__inner::before,
.home-logo-strip__inner::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}

.home-logo-strip__inner::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.home-logo-strip__inner::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.home-logo-strip__track {
  display: flex;
}

.home-logo-strip:hover .home-logo-strip__track {
  animation-play-state: paused;
}

.home-logo-strip__item {
  flex-shrink: 0;
  height: 80px;
  padding: 0 24px;
  /* opacity: 0.75; */
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.home-logo-strip__item img {
  display: block;
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.home-selection-funnel {
  background: #F3F7FB;
  padding: 0 0 32px;
  overflow: hidden;
}

.home-selection-funnel__container {
  max-width: none;
}

.home-selection-funnel__row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 0;
}

.home-selection-funnel__media {
  max-width: 100%;
  margin: 0 auto;
}

.home-selection-funnel__media svg {
  display: block;
  width: 100%;
  height: auto;
}

.home-selection-funnel__media svg * {
  animation-play-state: paused !important;
}

.home-selection-funnel__container.is-revealed .home-selection-funnel__media svg * {
  animation-play-state: running !important;
}

@media screen and (max-width: 991px) {
  .home-hero {
    background:
      radial-gradient(circle 300px at 42% 60%, rgba(120, 178, 255, 0.42) 0%, rgba(120, 178, 255, 0) 90%),
      radial-gradient(circle 300px at 70% 38%, rgba(28, 229, 95, 0.55) 0%, transparent 80%),
      radial-gradient(circle 300px at 30% 40%, rgba(114, 43, 255, 0.55) 0%, transparent 82%),
      var(--very-dark-background);
  }

  .home-hero__container {
    padding-top: 96px;
    padding-bottom: 64px;
  }

  .admin-bar .home-hero__container {
    padding-top: 120px;
  }

  .home-hero__row {
    gap: 0;
  }

  .home-hero__content {
    max-width: 100%;
    order: 2;
  }

  .home-hero__media {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 8px;
  }

  .home-hero__eyebrow-wrap {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 575px) {

  .announcement-bar__content {
    padding: 0 12px;
    gap: 5px;
    flex-direction: column;
  }

  .home-hero__content h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .home-hero__text {
    font-size: 16px;
    line-height: 1.6;
  }

  .home-hero__buttons {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
  }

  .home-hero__buttons .button--primary {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
  }

  .home-hero__buttons .button--secondary {
    flex: 0 0 auto;
    justify-content: center;
  }

  .home-hero__trust {
    align-items: center;
    margin-top: 24px;
  }

  .single-vacature__overlay {
    padding: 0;
  }
}

/* ── Button: purple ─────────────────────────────────── */

.button--purple {
  padding: 8px 24px;
  background-color: var(--button-purple);
  border-color: var(--button-purple);
  border-radius: var(--button-radius);
  color: var(--background-purple-light);
  font-size: 14px;
  font-weight: 600;
  line-height: 15.4px;
  width: fit-content;
  margin: auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.button--purple:hover {
  border-color: var(--button-purple);
  opacity: 1;
  color: var(--background-purple-light);
}

.button--purple::before {
  background: var(--button-purple-hover);
}

.home-hero__media {
  margin-top: 100px;
}

.announcement-bar__text {
    font-size: 14px;
    text-align: center;
}

/* ── About Page Hero ─────────────────────────────────── */

.about-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(30% 40% at 20% 60%, rgba(28, 179, 244, 0.34) 0%, rgba(4, 12, 50, 0) 80%),
    radial-gradient(40% 60% at 62% 52%, rgba(114, 43, 255, 0.7) 0%, rgba(4, 12, 50, 0) 62%),
    radial-gradient(42% 54% at 72% 63%, rgba(28, 229, 95, 0.6) 0%, rgba(4, 12, 50, 0) 60%),
    var(--very-dark-background);
}

.about-hero__row {
  --bs-gutter-x: clamp(24px, 4vw, 88px);
  gap: 0;
}

.about-hero__container {
  position: relative;
  z-index: 1;
  padding-top: 200px;
  padding-bottom: 100px;
  height: 100vh;
}

.about-hero__content {
  flex: 1;
  min-width: 0;
}

.about-hero__eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  --bs-gutter-y: 0;
  margin-bottom: 10px;
}

.about-hero__eyebrow {
  margin-bottom: 0;
  color: #9ba1bb;
  font-size: 12px;
  font-weight: 700;
  line-height: 19.2px;
}

.about-hero__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--button-green);
  background: linear-gradient(180deg, rgba(1, 4, 17, 0.4) 0%, rgba(4, 12, 50, 0.4) 100%);
  box-shadow: 0 8px 16px rgba(4, 12, 50, 0.5);
  font-size: 12px;
  line-height: 19.2px;
}

.about-hero__live-dot {
  width: 6px;
  height: 6px;
  margin-bottom: 1px;
  border-radius: 50%;
  background-color: var(--button-green);
  box-shadow: 0 0 0 rgba(28, 229, 95, 0.45);
  animation: livePulse 1.8s ease-out infinite;
}

.about-hero__content h1 {
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.12;
}

.about-hero__text {
  color: #cdd0dd;
  margin-bottom: 32px;
}

.about-hero__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.about-hero__buttons .home-hero__trust {
  margin-top: 0;
}

.about-hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.about-hero__trust-image {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  object-fit: cover;
}

.about-hero__trust-text {
  margin-bottom: 0;
  color: #9ba1bb;
  font-size: 12px;
  line-height: 19.2px;
}

.about-hero__trust-text strong {
  color: #fff;
}

.about-hero__media {
  max-width: none;
  margin-left: auto;
}

.about-hero__media img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  margin-left: auto;
}

@media screen and (max-width: 991px) {
  .about-hero, .single-vacature__hero {
    background:
      radial-gradient(circle 360px at 22% 43%, rgba(114, 43, 255, 0.6) 0%, transparent 72%),
      radial-gradient(circle 340px at 78% 31%, rgba(28, 229, 95, 0.5) 0%, transparent 70%),
      radial-gradient(circle 280px at 50% 45%, rgba(28, 179, 244, 0.28) 0%, transparent 75%),
      var(--very-dark-background);
  }

  .about-hero__container {
    padding: 220px 15px 50px 15px;
    height: auto;
  }

  .about-hero__row {
    gap: 0;
  }

  .about-hero__content,
  .about-hero__media {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .about-hero__media {
    margin: 24px auto 0;
  }

  .about-hero__media img {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .about-hero__eyebrow-wrap {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 575px) {

  .about-results__review-text {
    font-size: 18px;

  }

  .about-hero__buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero__buttons .button {
    justify-content: center;
  }

  .about-hero__trust {
    align-items: flex-start;
  }
}

/* ── About Intro ────────────────────────────────────── */

.about-intro {
  background-color: var(--very-light-background);
  padding: 80px 0 120px 0;
}

.about-intro__row {
  --bs-gutter-x: 24px;
}

.about-intro__inner {
  text-align: center;
}

.about-intro__wysiwyg > p:first-child {
  color: var(--header-color-purple);
  font-size: 14px;
  font-weight: 700;
  line-height: 19.2px;
  margin-bottom: 40px;
}

.about-intro__wysiwyg h2 {
  color: var(--header-color);
  margin-bottom: 48px;
}

.about-intro__wysiwyg p {
  color: var(--font-color);
  font-size: 18px;
  line-height: 28.8px;
  margin-bottom: 0;
}

/* ── Solutions Intro ────────────────────────────────── */

.solutions-intro {
  background-color: var(--very-light-background);
  padding: 80px 0;
}

.solutions-intro__inner {
  max-width: 684px;
  margin: 0 auto;
  text-align: center;
}

.solutions-intro__wysiwyg > p:first-child {
  color: var(--background-red);
  font-size: 14px;
  font-weight: 700;
  line-height: 19.2px;
  margin-bottom: 40px;
}

.solutions-intro__wysiwyg h2 {
  color: var(--header-color);
  margin-bottom: 40px;
}

.solutions-intro__wysiwyg p {
  color: var(--font-color);
  font-size: 18px;
  line-height: 28.8px;
  margin-bottom: 0;
}

/* ── Solutions Problem ──────────────────────────────── */

.solutions-problem {
  background-color: var(--very-dark-background);
  padding: 0;
  border-radius: 24px 24px 0 0;
}

.solutions-problem__panel {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0 0;
  border-radius: 32px 32px 0 0;
  /* background:
    radial-gradient(42% 72% at 66% 72%, rgba(255, 30, 86, 0.35) 0%, rgba(255, 30, 86, 0) 68%),
    radial-gradient(46% 60% at 55% 46%, rgba(114, 43, 255, 0.28) 0%, rgba(114, 43, 255, 0) 72%),
    linear-gradient(90deg, #040c32 0%, #051147 100%); */
}

.solutions-problem__row {
  align-items: center;
}

.solutions-problem__content {
  flex: 1;
  min-width: 0;
}

.solutions-problem__text {
  color: #cdd0dd;
}

.solutions-problem__text h2 {
  color: #fff;
  margin-bottom: 24px;
}

.solutions-problem__text p {
  color: #cdd0dd;
  font-size: 18px;
  line-height: 28.8px;
  margin-bottom: 24px;
}

.solutions-problem__text p:last-child {
  margin-bottom: 0;
}

.solutions-problem__text strong {
  color: var(--background-red);
}

.solutions-problem__media-wrap {
  position: relative;
  max-width: 100%;
  margin-left: auto;
}

.solutions-problem__content  {
  margin-top: 0;
}

/* .solutions-problem__media-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -82px;
  width: 560px;
  height: 250px;
  transform: translateX(-42%);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(64% 82% at 50% 52%, rgba(255, 30, 86, 0.42) 0%, rgba(255, 30, 86, 0) 72%),
    radial-gradient(64% 82% at 50% 40%, rgba(114, 43, 255, 0.32) 0%, rgba(114, 43, 255, 0) 74%);
} */

.solutions-problem__image-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.solutions-problem__media-col,
.solutions-problem__image,
.solutions-problem__image-shell svg {
  min-width: 0;
}

.solutions-problem__image,
.solutions-problem__image-shell svg {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 1199px) {
  .solutions-problem__panel {
    padding: 64px 40px;
  }

  .solutions-problem__row {
    gap: 40px;
  }

  .solutions-problem__media-wrap {
    width: min(100%, 720px);
    margin: 24px auto 0;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .solutions-problem__panel {
    padding: 50px 0;
    border-radius: 24px 24px 0 0;
  }

  .solutions-problem__row {
    gap: 24px;
  }

  .solutions-problem__media-wrap::before {
    width: 420px;
    height: 200px;
    bottom: -50px;
    transform: translateX(-50%);
  }
}

/* ── Solutions Feature ──────────────────────────────── */

.solutions-feature {
  background-color: var(--very-dark-background);
  padding: 0 0 100px;
}

.solutions-feature__top {
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 80px 0 72px;
  margin-bottom: 0;
  overflow: hidden;
}

.solutions-feature__top-shell,
.solutions-feature__bottom-shell,
.solutions-feature__slider-row,
.solutions-feature__bottom-row {
  --bs-gutter-x: 24px;
}

.solutions-feature__top-head {
  margin-bottom: 34px;
  text-align: center;
}

.solutions-feature__title {
  margin-bottom: 0;
  color: var(--header-color);

  line-height: 1.08;
}

.solutions-feature__title--secondary {
  margin-top: 10px;
  color: var(--button-purple);
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 50px;
}

.solutions-feature__slider-wrap {
  position: relative;
  margin-right: 0;
  padding-bottom: 52px;
}

.solutions-feature__slider .slick-list {
  overflow: hidden;
  margin-right: -12px;
  padding-right: 20px;
}

.solutions-feature__slide {
  width: auto;
  margin-right: 0;
  padding-right: 12px;
  box-sizing: border-box;
}

.solutions-feature__slide-inner {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solutions-feature__slide-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
}

.solutions-feature__slide-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions-feature__slide-text,
.solutions-feature__slide-text p {
  margin-bottom: 0;
  color: #1f2f69;
  font-size: 18px;
  line-height: 1.32;
}

.solutions-feature__nav {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
}

.solutions-feature__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.solutions-feature__nav-btn img {
  display: block;
  width: 24px;
  height: 24px;
}

.solutions-feature__nav-btn--prev img {
  transform: rotate(180deg);
}

.solutions-feature__nav-btn:hover {
  opacity: 0.7;
}

.solutions-feature__nav-btn.slick-disabled {
  opacity: 0.35;
  filter: grayscale(1) brightness(1.12);
  cursor: default;
  pointer-events: none;
}

.solutions-feature__bottom {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  background: #fff;
  padding: 64px 0;
}

.solutions-feature__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(28% 38% at 82% 72%, rgba(28, 229, 95, 0.44) 0%, rgba(28, 229, 95, 0) 70%),
    radial-gradient(32% 46% at 55% 33%, rgba(120, 178, 255, 0.72) 0%, rgba(120, 178, 255, 0) 72%),
    radial-gradient(46% 60% at 55% 50%, rgba(196, 222, 255, 0.38) 0%, rgba(196, 222, 255, 0) 70%);
  filter: blur(2px);
}

.solutions-feature__bottom-row {
  position: relative;
  z-index: 1;
}

.solutions-feature__image-wrap {
  position: relative;
  width: min(100%, 520px);
  margin-left: auto;
}

.solutions-feature__image-shell {
  position: relative;
  z-index: 1;
}

.solutions-feature__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.solutions-feature__content {
  color: var(--font-color);
}

.solutions-feature__pretitle {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #9ba1bb;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.solutions-feature__content h3 {
  color: var(--header-color);
  font-family: Inter, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.solutions-feature__content p {
  margin-bottom: 16px;
}

.solutions-feature__list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.solutions-feature__list-item {
  position: relative;
  padding-left: 34px;
  color: var(--header-color);
  line-height: 1.5;
}

.solutions-feature__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: url("../images/crossmediahouse/check-circle-green.svg") no-repeat center / contain;
}

@media screen and (max-width: 1199px) {
  .solutions-feature__top,
  .solutions-feature__bottom {
    padding: 48px 0 48px 0;
  }

  .solutions-feature__content {
    padding: 0 15px;
  }

  .solutions-feature__slider-wrap {
    margin-right: 0;
  }

  .solutions-feature__slide {
    width: auto;
  }

  .solutions-feature__slide-text,
  .solutions-feature__slide-text p {
    font-size: 29px;
  }

  .solutions-feature__bottom-row {
    row-gap: 32px;
  }

  .solutions-feature__bottom::before {
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 55%;
    background:
      radial-gradient(circle 260px at 78% 73%, rgba(28, 229, 95, 0.34) 0%, rgba(28, 229, 95, 0) 70%),
      radial-gradient(circle 280px at 22% 20%, rgba(120, 178, 255, 0.42) 0%, rgba(120, 178, 255, 0) 72%),
      radial-gradient(circle 260px at 50% 55%, rgba(196, 222, 255, 0.28) 0%, rgba(196, 222, 255, 0) 70%);
  }

  .solutions-feature__image-shell {
    margin: 0 15px;
  }

  .solutions-feature__image-wrap {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .solutions-feature {
    padding-bottom: 50px;
  }

  .solutions-feature__title {
    margin-bottom: 0;
    font-size: clamp(28px, 7.6vw, 44px);
  }

  .solutions-feature__title--secondary {
    font-size: 18px;
  }

  .solutions-feature__top-head {
    margin-bottom: 20px;
  }

  .solutions-feature__slider-wrap {
    margin-right: 0;
    padding-bottom: 50px;
  }

  .solutions-feature__slide {
    width: auto;
    margin-right: 0;
    padding-right: 10px;
  }

  .solutions-feature__slider .slick-list {
    margin-right: -10px;
    padding-left: 15px;
  }

  .solutions-feature__slide-image-wrap {
    border-radius: 12px;
  }

  .solutions-feature__slide-text,
  .solutions-feature__slide-text p {
    font-size: 16px;
  }

  .solutions-feature__nav {
    left: 15px;
    bottom: 0;
  }

  .solutions-feature__image-wrap {
    margin: 0 auto;
  }

  .solutions-feature__list-item {
    font-size: 16px;
    padding-left: 28px;
  }

  .solutions-feature__content h3 {
    font-size: 28px;
  }
}

/* ── About Benefits ─────────────────────────────────── */

.about-benefits {
  background: var(--very-light-background);
  padding: 0;

}

.about-benefits__container {
  position: relative;
}

.about-benefits__container::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 50%;
  width: 600px;
  height: 140px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(62% 78% at 50% 58%, rgba(114, 43, 255, 0.22) 0%, rgba(255, 255, 255, 0) 74%);
  opacity: 0;
  transform: translateX(-50%) translateY(48px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.about-benefits__container:has(.about-benefits__panel.is-revealed)::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.no-js .about-benefits__container::before {
  opacity: 1;
  transform: translateX(-50%);
}

.about-benefits__panel {
  position: relative;
  overflow: hidden;
  z-index: 1;
    background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 100px 0 48px 0;
}

.about-benefits__panel::before {
  content: none;
}

.about-benefits__heading {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.about-benefits__eyebrow {
  margin-bottom: 16px;
  color: var(--purple);
  font-size: 18px;
  font-weight: 700;
  line-height: 19.2px;
}

.about-benefits__title {
  margin-bottom: 0;
  color: var(--header-color);
  line-height: 1.06;
}

.about-benefits__grid {
  position: relative;
  z-index: 1;
}

.about-benefits__card {
  height: 100%;
  text-align: left;
}

.about-benefits__card.is-reveal-init {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(3px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.about-benefits__card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.about-benefits__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.about-benefits__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-benefits__icon-wrap {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(6, 20, 84, 0.16);
}

.about-benefits__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.about-benefits__text {
  margin-bottom: 0;
  color: var(--header-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .about-benefits__card.is-reveal-init {
    opacity: 0;
    transform: none;
    filter: none;
    transition: none;
  }

  .about-benefits__card.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media screen and (max-width: 991px) {
  .about-benefits {
    padding-bottom: 80px;
  }

  .about-benefits__panel {
    padding: 86px 28px 40px;
  }

  .about-benefits__container::before {
    width: 340px;
    height: 120px;
    top: -34px;
  }

  .about-benefits__text {
    font-size: 17px;
  }

  /* Op mobiel: geen per-card animatie meer — cards meteen zichtbaar.
     De hele panel slidet als één geheel mee via .is-revealed. */
  .about-benefits__card,
  .about-benefits__card.is-reveal-init {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

@media screen and (max-width: 575px) {
  .about-benefits {
    padding-bottom: 56px;
  }

  .about-benefits__panel {
    border-radius: 18px;
    padding: 72px 16px 28px;
  }

  .about-benefits__heading {
    margin-bottom: 32px;
  }

  .about-benefits__text{
    font-size: 16px;
    line-height: 1.6;
  }
}

/* ── About Results ──────────────────────────────────── */

.about-results {
  background: var(--very-light-background);
  padding: 0;
}

.about-results__panel {
  background: #fff;
  border-radius: 0 0 24px 24px;
  padding: 100px 0 120px 0;
}

.about-results__left {
  max-width: 560px;
}

.about-results__text h2,
.about-results__text h3 {
  margin-bottom: 24px;
  color: var(--header-color);
  font-weight: 700;
  line-height: 1.08;
}

.about-results__text {
  color: var(--font-color);
}

.about-results__text p {
  margin-bottom: 20px;
}

.about-results__text p:last-child {
  margin-bottom: 0;
}

.about-results__review-shell {
  position: relative;
  min-height: 268px;
  padding: 24px 24px 22px;
  background: linear-gradient(90deg, #dfe8f5 0%, #f8fafc 100%);
  border-radius: 32px;
}

.about-results__slider .slick-list {
  overflow: hidden;
}

.about-results__slide {
  display: block !important;
}

.about-results__slide-inner {
  min-height: 206px;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.about-results__review-text {
  margin-bottom: 0;
  color: #6d7aa5;
  font-size: 22px;
  line-height: 1.45;
}

.about-results__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-results__author-name {
  margin-bottom: 0;
  color: #1c3bf4;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.about-results__author-role {
  margin-bottom: 0;
  color: #9ba1bb;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.about-results__nav {
  position: absolute;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-results__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}

.about-results__nav-btn img {
  display: block;
  width: 24px;
  height: 24px;
}

.about-results__nav-btn--prev img {
  transform: rotate(180deg);
}

.about-results__nav-btn:hover {
  opacity: 0.7;
}

.about-results__nav-btn.slick-disabled {
  opacity: 1;
  cursor: default;
}

.about-results__nav-btn.slick-disabled img {
  opacity: 0.35;
  filter: grayscale(1) brightness(1.12);
}

@media screen and (max-width: 1199px) {
  .about-results__panel {
    padding: 64px 48px;
  }
}

@media screen and (max-width: 991px) {
  .about-results {
    padding-bottom: 80px;
  }

  .about-results__panel {
    padding: 48px 28px;
  }

  .about-results__left {
    max-width: none;
  }

  .about-results__slide-inner {
    min-height: 220px;
    padding-right: 98px;
  }
}

@media screen and (max-width: 575px) {
  .about-results {
    padding-bottom: 56px;
  }

  .about-results__panel {
    border-radius: 20px;
    padding: 36px 16px;
  }

  .about-results__text h2,
  .about-results__text h3 {
    margin-bottom: 16px;
  }

  .about-results__review-shell {
    min-height: 238px;
    padding: 18px 16px 18px;
    border-radius: 18px;
  }

  .about-results__slide-inner {
    min-height: 184px;
    padding-right: 0;
  }

  .about-results__nav {
    right: 16px;
    bottom: 14px;
  }
}

/* ── Home AI Engine ──────────────────────────────────── */

.home-solution-block {
  background-color: var(--very-light-background);
  padding: var(--element-padding-desktop-large);
  text-align: center;
}

.home-solution-block__container {
  max-width: none;
}

.home-solution-block__row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 32px;
}

.home-solution-block__content {
  display: grid;
  gap: 48px 24px;
}

.home-solution-block__label {
  margin-bottom: 0;
  color: var(--purple);
  font-size: 14px;
  font-weight: 700;
  line-height: 19.2px;
}

.home-solution-block__title {
  margin-bottom: 0;
  color: var(--header-color);
  font-size: 52px;
  font-weight: 700;
  line-height: 57.2px;
  text-align: center;
}

.home-solution-block__text {
  margin-bottom: 0;
  color: var(--font-color);
  font-size: 18px;
  line-height: 28.8px;
  text-align: center;
}

@media screen and (max-width: 991.98px), screen and (max-device-width: 575px) {
  .home-solution-block {
    padding: 50px 0;
    overflow: hidden;
  }

  .home-solution-block__container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-solution-block__row {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .home-solution-block .home-solution-block__row > [class*="col-"] {
    flex: 0 0 auto;
    width: 100%;
    max-width: 560px;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .home-solution-block__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .home-solution-block__label {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .home-solution-block__title {
    max-width: 100%;
    min-width: 0;
    font-size: 36px;
    line-height: 43.2px;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .home-solution-block__text,
  .home-solution-block__text p {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .home-solution-block .button {
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

@media screen and (max-width: 767.98px), screen and (max-device-width: 575px) {
  .home-solution-block__content {
    gap: 32px 16px;
  }

  .home-solution-block__title {
    font-size: 28px;
    line-height: 33.6px;
  }

  .about-results__review-text {
    font-size: 18px;
    line-height: 1.45;
  }

  .home-solution-block__text,
  .home-solution-block__text p {
    font-size: 16px;
    line-height: 25.6px;
  }

  .home-solution-block__text p {
    margin-bottom: 0;
  }
}

.home-ai-benefits {
  background-color: var(--very-light-background);
  padding: 50px 0;
  overflow: hidden;
}

.home-ai-benefits__container {
  position: relative;
}

.home-ai-benefits__row {
  --bs-gutter-x: clamp(24px, 5vw, 120px);
  --bs-gutter-y: 32px;
  justify-content: space-between;
}




.home-ai-benefits__label {
  margin-bottom: 16px;
  color: #cdd0dd;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
}

.home-ai-benefits__tabs {
  display: flex;
  flex-direction: column;
}

.home-ai-benefits__item {
  border-bottom: 1px solid #e1ebf4;
  padding: 22px 0;
}

.home-ai-benefits__tab {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--header-color);
  text-align: left;
  cursor: pointer;
}

.home-ai-benefits__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--background-purple-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple);
  font-size: 16px;
  font-weight: 700;
}

.home-ai-benefits__item:nth-child(2) .home-ai-benefits__icon {
  background: var(--background-teal-light);
  color: var(--background-teal);
}

.home-ai-benefits__item:nth-child(3) .home-ai-benefits__icon {
  background: var(--background-green-light);
  color: var(--background-green);
}

.home-ai-benefits__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.home-ai-benefits__tab-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 35.2px;
  letter-spacing: 0;
}

.home-ai-benefits__panel {
  padding: 0 0 0 56px;
  overflow: hidden;
}

.home-ai-benefits__panel.is-active {
  padding-top: 16px;
}

.home-ai-benefits__panel-text,
.home-ai-benefits__panel-text p {
  margin-bottom: 0;
  color: var(--font-color);
  font-size: 16px;
  line-height: 25.6px;
}

.home-ai-benefits__panel-text {
  display: block;
}

.home-ai-benefits__panel-image {
  display: none;
  width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 16px;
  object-fit: contain;
}

.home-ai-benefits__media {
  position: relative;
  height: clamp(560px, 46vw, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.home-ai-benefits__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-ai-benefits__media::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 520px;
  left: 30%;
  top: 41%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(28, 229, 95, 0.52) 0%, rgba(28, 229, 95, 0.34) 30%, rgba(28, 229, 95, 0.16) 52%, rgba(28, 229, 95, 0) 78%);
  filter: blur(74px);
  border-radius: 50%;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.home-ai-benefits__media::after {
  content: '';
  position: absolute;
  width: 640px;
  height: 600px;
  left: 72%;
  top: 82%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%, rgba(114, 43, 255, 0.56) 0%, rgba(134, 78, 255, 0.38) 32%, rgba(160, 134, 255, 0.18) 54%, rgba(114, 43, 255, 0) 80%);
  filter: blur(88px);
  border-radius: 50%;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.home-ai-benefits__image {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.home-ai-benefits__image svg {
  display: block;
  width: 100%;
  height: 100%;
}

.home-ai-benefits__image.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media screen and (max-width: 991px) {
  .home-ai-benefits {
    padding: 50px 0;
  }

  .home-ai-benefits__row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 40px;
  }

  .home-ai-benefits__content {
    min-height: 0;
    max-width: 100%;
  }

  .home-ai-benefits__tab-title {
    font-size: 28px;
    line-height: 33.6px;
  }

  .home-ai-benefits__content {
    min-height: 400px;
  }

  .home-ai-benefits__media {
    display: none;
  }

  .home-ai-benefits__panel.is-active .home-ai-benefits__panel-image {
    display: block;
  }
}

@media screen and (max-width: 575px) {

  .solutions-intro__wysiwyg h2, .solutions-intro__wysiwyg > p:first-child {
    margin-bottom: 20px;
  }

  .home-ai-benefits__tab-title {
    font-size: 24px;
    line-height: 30px;
  }

  .home-ai-benefits__panel {
    padding-left: 0;
  }
}

.home-stats {
  position: relative;
  background-color: var(--very-light-background);
  padding: 160px 0;
}

.home-stats__container {
  position: relative;
}

.home-stats__row {
  --bs-gutter-x: clamp(24px, 3vw, 40px);
  --bs-gutter-y: 24px;
}

@media screen and (min-width: 992px) {
  .home-stats__image-col,
  .home-stats__cards-col {
    display: flex;
    flex-direction: column;
  }

  .home-stats__image-wrap,
  .home-stats__cards {
    flex: 1;
  }
}

.home-stats__image-wrap {
  position: relative;
  height: 100%;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
}

.home-stats__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-stats__cards {
  position: relative;
  align-content: flex-start;
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.home-stats__cards::before {
content: '';
    position: absolute;
    width: 750px;
    height: 640px;
    left: 54%;
    top: 35%;
    transform: translate(-65%, -42%);
    background: #1cb3f4;
    filter: blur(125px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.home-stats__cards > .col-12 {
  position: relative;
  z-index: 1;
}

.home-stats__card {
  min-height: 220px;
  border-radius: 32px;
  padding: 24px;
  /* border: 1px solid rgba(255, 255, 255, 0.5); */
  background: linear-gradient(180deg, #e1ebf4 0%, rgba(255, 255, 255, 0.5) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  height: 100%;
}

.home-stats__card--quote {
  align-items: center;
  justify-content: center;
}

.home-stats__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-stats__card-title {
  margin-bottom: 0;
  color: #061454;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

.home-stats__card-icon {
  width: 35px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.home-stats__card-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.home-stats__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  border-radius: 4px;
  border: 1px solid transparent;
  background-color: var(--background-teal);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
}

.home-stats__value {
  color: #061454;
  font-size: clamp(34px, 3.2vw, 40px);
  font-weight: 900;
  line-height: 44px;
}

.home-stats__description {
  margin-bottom: 0;
  color: #6a7298;
  font-size: 12px;
  font-weight: 500;
  line-height: 19.2px;
}

.home-stats__quote p {
  margin-bottom: 0;
  color: #061454;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 35.2px;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .home-stats__card-title {
    font-size: 24px;
    line-height: 30px;
  }

  .home-stats__cards::before {
    left: 50%;
    top: 50%;
  }
}

@media screen and (max-width: 991px) {
  .home-stats {
    padding: 50px 0;
  }

  .home-stats__image-wrap {
    min-height: 360px;
    display: none;
  }

  .home-stats__cards::before {
    width: 300px;
    height: 480px;
    filter: blur(95px);
  }
}

@media screen and (max-width: 575px) {
  .home-stats__card {
    min-height: 160px;
    padding: 20px;
    border-radius: 24px;
  }

  .home-stats__card-title,
  .home-stats__quote {
    font-size: 24px;
    line-height: 30px;
  }

  .home-stats__value {
    font-size: 34px;
    line-height: 38px;
  }
}

/* ── Home Testimonials
----------------------------------------------- */

.home-testimonials {
  position: relative;
  background: linear-gradient(180deg, #f3f7fb 0%, #e8f1f9 30%, #f3f7fb 42%, #040c32 42%, #040c32 100%);
  padding: 0;
}

.home-testimonials::after {
  content: none;
}

.home-testimonials__container {
  position: relative;
  z-index: 1;
  padding-inline: 0;
}

.home-testimonials__row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.home-testimonials__card {
  background: #fff;
  border-radius: 32px;
  padding: 80px 142px;
  display: flex;
  align-items: flex-end;
  gap: 48px;
}

.home-testimonials__left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-testimonials__review-shell {
  position: relative;
  min-height: 248px;
  padding: 24px 24px 20px;
  background: linear-gradient(180deg, #eef3f9 0%, #eef3f9 72%, #e2e9f8 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 32px;
  overflow: hidden;
}

.home-testimonials__review-shell::before {
  content: '';
  position: absolute;
  left: -8%;
  bottom: -28%;
  width: 280px;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(196, 209, 255, 0.7) 0%, rgba(196, 209, 255, 0) 68%);
  pointer-events: none;
}

.home-testimonials__title {
  margin-bottom: 20px;
  color: #1c3bf4;
  font-family: Inter, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
}

.home-testimonials__slider .slick-list {
  overflow: hidden;
}

.home-testimonials__slide {
  display: block !important;
  position: relative;
  z-index: 1;
}

.home-testimonials__slide-inner {
  min-height: 204px;
  padding-right: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.home-testimonials__review-text {
  margin-bottom: 0;
  color: var(--font-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

.home-testimonials__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-testimonials__author-name {
  margin-bottom: 0;
  color: #1c3bf4;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

.home-testimonials__author-function {
  margin-bottom: 0;
  color: #9ba1bb;
  font-size: 12px;
  font-weight: 500;
  line-height: 19.2px;
}

.home-testimonials__nav {
  position: absolute;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.home-testimonials__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}

.home-testimonials__nav-btn img {
  display: block;
  width: 24px;
  height: 24px;
}

.home-testimonials__nav-btn--prev img {
  transform: rotate(180deg);
}

.home-testimonials__nav-btn:hover {
  opacity: 0.7;
}

.home-testimonials__nav-btn.slick-disabled {
  opacity: 1;
  cursor: default;
}

/* ── Solutions Hero ─────────────────────────────────── */

.solutions-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(52% 72% at 33% 34%, rgba(114, 43, 255, 0.62) 0%, rgba(114, 43, 255, 0) 62%),
    radial-gradient(35% 65% at 44% 75%, rgba(28, 229, 95, 0.45) 0%, rgba(28, 229, 95, 0) 75%),
    radial-gradient(34% 44% at 80% 48%, rgba(28, 179, 244, 0.24) 0%, rgba(28, 179, 244, 0) 75%),
    linear-gradient(90deg, #01093a 0%, #061a57 56%, #04124e 100%);
}



.solutions-hero__row {
  --bs-gutter-x: clamp(24px, 4vw, 88px);
  gap: 0;
}

.solutions-hero__container {
  --solutions-hero-padding-top: 200px;
  --solutions-hero-padding-bottom: 100px;
  position: relative;
  z-index: 1;
  padding-top: var(--solutions-hero-padding-top);
  padding-bottom: var(--solutions-hero-padding-bottom);
}

.solutions-hero__content {
  flex: 1;
  min-width: 0;
}

.solutions-hero__eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.solutions-hero__eyebrow {
  margin-bottom: 0;
  color: #9ba1bb;
  font-size: 12px;
  font-weight: 700;
  line-height: 19.2px;
}

.solutions-hero__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: var(--button-green);
  background: linear-gradient(180deg, rgba(1, 4, 17, 0.4) 0%, rgba(4, 12, 50, 0.4) 100%);
  box-shadow: 0 8px 16px rgba(4, 12, 50, 0.5);
  font-size: 12px;
  line-height: 19.2px;
}

.solutions-hero__live-dot {
  width: 6px;
  height: 6px;
  margin-bottom: 1px;
  border-radius: 50%;
  background-color: var(--button-green);
  box-shadow: 0 0 0 rgba(28, 229, 95, 0.45);
  animation: livePulse 1.8s ease-out infinite;
}

.solutions-hero__content h1 {
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.12;
}

.solutions-hero__text {
  color: #cdd0dd;
  margin-bottom: 32px;
}

.solutions-hero__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.solutions-hero__buttons .home-hero__trust {
  margin-top: 0;
}

.solutions-hero__media {
  display: flex;
  align-items: center;
  max-width: none;
  margin-right: auto;
}

.solutions-hero__media img,
.solutions-hero__media svg {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 992px) {
  .solutions-hero {
    min-height: calc(100vh - var(--hero-logo-strip-height));
    min-height: calc(100svh - var(--hero-logo-strip-height));
  }

  .solutions-hero__row {
    min-height: calc(100vh - var(--hero-logo-strip-height) - var(--solutions-hero-padding-top) - var(--solutions-hero-padding-bottom));
    min-height: calc(100svh - var(--hero-logo-strip-height) - var(--solutions-hero-padding-top) - var(--solutions-hero-padding-bottom));
  }

  .solutions-hero__media {
    align-self: stretch;
    justify-content: center;
    height: auto;
    min-height: 0;
  }

  .solutions-hero__media img,
  .solutions-hero__media svg {
    width: 100%;
    height: calc(100vh - var(--hero-logo-strip-height) - var(--solutions-hero-padding-top) - var(--solutions-hero-padding-bottom));
    height: calc(100svh - var(--hero-logo-strip-height) - var(--solutions-hero-padding-top) - var(--solutions-hero-padding-bottom));
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    object-fit: contain;
  }
}

@media screen and (max-width: 991px) {
  .solutions-hero {
    background:
      radial-gradient(circle 340px at 24% 53%, rgba(114, 43, 255, 0.62) 0%, transparent 72%),
      radial-gradient(circle 300px at 76% 60%, rgba(28, 179, 244, 0.28) 0%, transparent 74%),
      radial-gradient(circle 320px at 52% 78%, rgba(28, 229, 95, 0.52) 0%, transparent 85%),
      linear-gradient(180deg, #01093a 0%, #061a57 58%, #04124e 100%);
  }

  .solutions-hero__container {
    --solutions-hero-padding-top: 240px;
    --solutions-hero-padding-bottom: 50px;
  }

  .solutions-hero__media {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .solutions-hero__eyebrow-wrap {
    flex-wrap: wrap;
  }

  .solutions-hero__row {
    flex-direction: column;
    gap: 40px;
  }

  .solutions-intro {
    padding: 50px 0;
  }
}

@media screen and (max-width: 575px) {

  .solutions-hero__buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .solutions-hero__buttons .button {
    justify-content: center;
  }
}

.home-testimonials__nav-btn.slick-disabled img {
  opacity: 0.35;
  filter: grayscale(1) brightness(1.12);
}

.home-testimonials__image-wrap {
  position: relative;
  width: 364px;
  height: 454px;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
}

.home-testimonials__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.home-testimonials__image.is-active {
  opacity: 1;
  transform: scale(1);
}

@media screen and (max-width: 1199px) {
  .home-testimonials__card {
    padding: 60px 60px;
    gap: 32px;
  }

  .home-testimonials__title {
    font-size: 32px;
    line-height: 36px;
  }

  .home-testimonials__image-wrap {
    width: 280px;
    height: 360px;
  }

  .home-testimonials__slide-inner {
    padding-right: 88px;
  }
}

@media screen and (max-width: 991px) {
  .home-testimonials__container {
    padding-inline: 16px;
  }

  .home-testimonials__card {
    flex-direction: column;
    align-items: stretch;
    padding: 40px 32px;
  }

  .home-testimonials__left {
    width: 100%;
  }

  .home-testimonials__review-shell {
    min-height: 220px;
  }

  .home-testimonials__review-shell::before {
    width: 220px;
    height: 150px;
  }

  .home-testimonials__slide-inner {
    min-height: 176px;
  }

  .home-testimonials__image-wrap {
    width: 100%;
    height: 280px;
  }
}

@media screen and (max-width: 575px) {
  .home-testimonials {
    padding: 0 0 50px;
  }

  .home-testimonials__container {
    padding-inline: 12px;
  }

  .home-testimonials__card {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .home-testimonials__review-shell {
    padding: 20px 20px 56px;
    border-radius: 24px;
    min-height: 240px;
  }

  .home-testimonials__title {
    font-size: 26px;
    line-height: 30px;
  }

  .home-testimonials__slide-inner {
    min-height: 164px;
    padding-right: 0;
  }

  .home-testimonials__review-text {
    font-size: 16px;
    line-height: 25.6px;
  }

  .home-testimonials__nav {
    right: 20px;
    bottom: 20px;
  }
}

/* =============================================
   CTA BLOCK
   ============================================= */

.cta-block {
  position: relative;
  background:
    radial-gradient(55% 75% at 68% 65%, rgba(28, 229, 95, 0.45) 0%, rgba(4, 12, 50, 0) 60%),
    radial-gradient(50% 65% at 32% 55%, rgba(114, 43, 255, 0.5) 0%, rgba(4, 12, 50, 0) 65%),
    #040c32;
  padding: 100px 0 50px;
  overflow: hidden;
}

.cta-block__container {
  position: relative;
  z-index: 1;
}

.cta-block__row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 32px;
}

.cta-block__content {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.ph-hero {
  max-width: 577px;
  margin-inline: auto;
}

.ph-hero svg {
  display: block;
  width: 100%;
  height: auto;
}

.cta-block__container .ph-hero svg * {
  animation-play-state: paused !important;
}

.cta-block__container.is-revealed .ph-hero svg * {
  animation-play-state: running !important;
}

.cta-block__eyebrow {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  color: #1ce55f;
  margin-bottom: 0;
}

.cta-block__title {
  font-family: Inter, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 57.2px;
  color: #fff;
  margin-bottom: 0;
}

.cta-block__description p {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  color: #9ba1bb;
  margin-bottom: 30px;
}

.cta-block__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-block__chat-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}

.cta-block__chat-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.cta-block__chat-avatar {
  width: 60px;
  height: 60px;
  border-radius: 40px;
  overflow: hidden;
}

.cta-block__chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-block__chat-dot {
  position: absolute;
  top: 7px;
  right: 2px;
  width: 8px;
  height: 8px;
  background: #1ce55f;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(28, 229, 95, 0.45);
  animation: livePulse 1.8s ease-out infinite;
}

.cta-block__chat-name {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 19.2px;
  color: #fff;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .cta-block {
    padding: 80px 0 120px;
    background:
      radial-gradient(circle 280px at 70% 39%, rgba(28, 229, 95, 0.5) 0%, transparent 70%),
      radial-gradient(circle 300px at 30% 39%, rgba(114, 43, 255, 0.55) 0%, transparent 72%),
      #040c32;
  }

  .cta-block__title {
    font-size: 40px;
    line-height: 44px;
  }
}

@media screen and (max-width: 575px) {
  .cta-block {
    padding: 50px 0;
  }

  .cta-block__title {
    font-size: 30px;
    line-height: 34px;
  }

  .cta-block__description {
    font-size: 16px;
    line-height: 25.6px;
  }

}

@media screen and (min-width: 3500px) {
  h1,
  .faq-page__title,
  .about-hero__content h1,
  .solutions-hero__content h1,
  .home-hero__content h1,
  .home-solution-block__title,
  .cta-block__title {
    font-size: 80px;
    line-height: 1.08;
  }

  h2,
  .about-intro__wysiwyg h2,
  .solutions-intro__wysiwyg h2,
  .solutions-problem__text h2,
  .home-testimonials__title {
    font-size: 56px;
    line-height: 1.12;
  }

  h3,
  .solutions-feature__content h3,
  .home-ai-benefits__tab-title {
    font-size: 42px;
    line-height: 1.14;
  }

  h4 {
    font-size: 24px;
    line-height: 1.45;
  }

  h5 {
    font-size: 18px;
    line-height: 1.45;
  }

  h6,
  .home-stats__card-title,
  .home-testimonials__author-name {
    font-size: 16px;
    line-height: 1.45;
  }

  p,
  a:not(header a):not(footer a),
  .site-header__nav-list li a,
  .announcement-bar__text,
  .faq-page__description p,
  .faq-page__answer p,
  .about-intro__wysiwyg p,
  .solutions-intro__wysiwyg p,
  .solutions-problem__text p,
  .solutions-feature__slide-text p,
  .solutions-feature__content p,
  .home-hero__text,
  .home-solution-block__text,
  .home-ai-benefits__panel-text,
  .home-ai-benefits__panel-text p,
  .home-testimonials__review-text,
  .cta-block__description p {
    font-size: 24px;
    line-height: 38px;
  }

  .button--primary {
    padding: 18px 30px;
    font-size: 22px;
    line-height: 24px;
  }

  .button--secondary,
  .button--purple,
  .announcement-bar__button {
    padding: 10px 28px;
    font-size: 18px;
    line-height: 20px;
  }

  .announcement-bar__button {
    padding: 10px 28px;
  }

  .site-header__nav-list li a {
    font-size: 20px;
    line-height: 1.6;
  }

  .faq-page__eyebrow,
  .home-hero__eyebrow,
  .about-hero__eyebrow,
  .solutions-hero__eyebrow,
  .home-solution-block__label,
  .about-benefits__eyebrow,
  .cta-block__eyebrow,
  .home-testimonials__author-function,
  .cta-block__chat-name,
  .home-stats__description {
    font-size: 18px;
    line-height: 28px;
  }

  .home-hero__trust-text,
  .about-hero__trust-text,
  .faq-page__ask-kevin p {
    font-size: 18px;
    line-height: 28px;
  }

  .home-stats__value {
    font-size: 56px;
    line-height: 60px;
  }

  .solutions-intro__wysiwyg > p:first-child {
    font-size: 18px;
  }

  .about-intro__wysiwyg > p:first-child {
    font-size: 18px;
  }

  .about-hero__container {
    padding-top: 240px;
    padding-bottom: 140px;
  }

  .about-hero__row {
    --bs-gutter-x: 140px;
  }

  .about-hero__content {
    max-width: 980px;
  }

  .about-hero__media img {
    width: min(100%, 1180px);
  }

  .about-hero__trust-image {
    width: 64px;
    height: 64px;
  }
}
/* =============================================
   SITE FOOTER
   ============================================= */

.site-footer {
  background: #f3f7fb;
  padding: 80px 0 0 0;
  border: 0;
  margin: 0;
}

footer .announcement-bar {
  margin-top: 80px;
}

.site-header .announcement-bar {
  margin-top: 0;
}

.site-footer__container {
  padding-right: 0;
  padding-left: 0;
}

.site-footer__row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.site-footer__content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-footer__logo {
  flex-shrink: 0;
  display: flex;
}

.site-footer__logo a {
  display: inline-flex;
  align-items: center;
  height: 40px;
}

.site-footer__logo img {
  width: auto;
  display: block;
}

.site-footer__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-footer__nav-list li {
  margin: 0;
  padding: 0;
}

.site-footer__nav-list li a {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  color: #061454;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-footer__nav-list li a:hover {
  color: #061454;
  opacity: 0.7;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  width: 212px;
  justify-content: flex-end;
}

.site-footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #d2d8fd;
  border-radius: 8px;
  color: #1c3bf4;
  text-decoration: none;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.site-footer__social-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

.site-footer__social-btn:hover {
  background: #b8c2fb;
  color: #1c3bf4;
}

@media screen and (max-width: 991px) {
  .site-footer__container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-footer__content {
    flex-wrap: wrap;
    gap: 24px;
  }

  .site-footer__logo {
    width: auto;
  }

  .site-footer__social {
    width: auto;
    margin-left: auto;
  }

  .site-footer__nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
  }

  .site-footer__nav-list {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

@media screen and (max-width: 575px) {

  .site-footer__social {
    margin-left: 0;
  }

  .site-footer__nav-list {
    gap: 12px 20px;
  }
}

/* Contact Page
----------------------------------------------- */

.contact-page__hero {
  position: relative;
  background:
    radial-gradient(55% 65% at 15% 38%, rgba(114, 43, 255, 0.70) 0%, transparent 60%),
    radial-gradient(50% 60% at 52% 65%, rgba(28, 229, 95, 0.55) 0%, transparent 65%),
    var(--very-dark-background);
  overflow: hidden;
  height: calc(100vh - 80px);
  display: flex;
}


@media screen and (max-width: 991px) {
  .contact-page__hero {
    background:
      radial-gradient(circle 360px at 20% 22%, rgba(114, 43, 255, 0.65) 0%, transparent 72%),
      radial-gradient(circle 340px at 80% 30%, rgba(28, 229, 95, 0.5) 0%, transparent 70%),
      radial-gradient(circle 280px at 50% 46%, rgba(28, 179, 244, 0.22) 0%, transparent 75%),
      var(--very-dark-background);
    min-height: auto;
    height: 100%;
  }

  .contact-page__layout {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.contact-page__layout {
  --bs-gutter-x: clamp(24px, 4vw, 88px);
  padding-left: 0;
  padding-right: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  animation: contactLayoutRise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: transform, opacity, filter;
}

@keyframes contactLayoutRise {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Left column */
.contact-page__left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-page__logo {
  display: inline-block;
  margin-bottom: 56px;
  flex-shrink: 0;
}

.contact-page__logo img {
  width: auto;
}

.contact-page__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-page__content-body {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.contact-page__content-body .contact-page__wysiwyg {
  flex: 0 1 420px;
  max-width: 420px;
  min-width: 0;
}

.contact-page__content-body .contact-page__image-wrap {
  flex-shrink: 0;
  width: 300px;
  margin-top: 0;
}

.contact-page__title {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

/* WYSIWYG content block */
.contact-page__wysiwyg {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-page__wysiwyg p {
  color: var(--button-green);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 12px;
}

.contact-page__wysiwyg ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-page__wysiwyg ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cdd0dd;
  font-size: 14px;
  line-height: 1.6;
  padding-left: 0;
}

.contact-page__wysiwyg ul li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  background: url('../images/crossmediahouse/check-circle-green.svg') center / contain no-repeat;
}

.contact-page__image-wrap img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}
/* Kevin card */
.contact-page__kevin {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 48px;
}

.contact-page__kevin-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.contact-page__kevin-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.contact-page__kevin-dot {
  position: absolute;
  top: 6px;
  right: 0;
  width: 10px;
  height: 10px;
  background: var(--button-green);
  border-radius: 50%;
  border: 2px solid var(--very-dark-background);
}

.contact-page__kevin-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-page__kevin-name {
  color: var(--button-green);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
}

.contact-page__kevin-role {
  color: var(--font-color);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-page__kevin-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.contact-page__about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: var(--button-blue);
  border: 1px solid var(--button-blue);
  border-radius: var(--button-radius);
  color: #d2d8fd;
  font-size: 14px;
  font-weight: 600;
  line-height: 15.4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contact-page__about-btn:hover {
  opacity: 0.85;
}

.contact-page__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(225, 235, 244, 0.15);
  border-radius: var(--button-radius);
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.contact-page__social-btn:hover {
  border-color: rgba(225, 235, 244, 0.4);
  color: #fff;
}

/* Right column: form card */
.contact-page__right {
  min-width: 0;
}

.contact-page__form-card {
  width: 100%;
  background: #fff;
  border-radius: 32px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.contact-page__form-label {
  text-align: right;
  color: #cdd0dd;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
}

.contact-page__form-wrap {
  flex: 1;
}

.contact-page__privacy-text {
  color: var(--header-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-page__privacy-text a {
  color: var(--header-color);
  text-decoration: underline;
}

.contact-page__privacy-text a:hover {
  color: var(--button-blue);
}

/* About popup */
.contact-page__overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 50, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-page__popup-shell {
  --bs-gutter-x: clamp(24px, 4vw, 120px);
  width: 100%;
}

.contact-page__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-page__popup-col {
  min-width: 0;
}

.contact-page__popup {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px 40px;
  width: 100%;
  text-align: center;
  max-height: 90vh;
  overflow-y: auto;
}

.contact-page__popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #e1ebf4;
  background: transparent;
  color: var(--header-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease;
}

.contact-page__popup-close:hover {
  border-color: var(--button-blue);
  color: var(--button-blue);
}

.contact-page__popup-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.contact-page__popup-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.contact-page__popup-avatar-wrap .contact-page__kevin-dot {
  top: 6px;
  right: 6px;
  bottom: auto;
  border-color: #fff;
}

.contact-page__popup-name {
  color: var(--button-blue);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-page__popup-role {
  color: var(--font-color);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.contact-page__popup-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-page__popup-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #d2d8fd;
  border-radius: 8px;
  border: none;
  color: #1c3bf4;
  text-decoration: none;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.contact-page__popup-social-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

.contact-page__popup-social-btn:hover {
  background: #b8c2fb;
  color: #1c3bf4;
}

.contact-page__popup-social-btn--filled {
  background: #d2d8fd;
  color: #1c3bf4;
}

.contact-page__popup-social-btn--filled:hover {
  background: #b8c2fb;
  color: #1c3bf4;
}

.contact-page__popup-bio {
  color: var(--font-color);
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

.contact-page__popup-bio p {
  margin-bottom: 16px;
}

.contact-page__popup-bio p:last-child {
  margin-bottom: 0;
}

/* Gravity Forms styling on contact page
----------------------------------------------- */

.contact-page .gform_wrapper {
  margin: 0;
}

.contact-page .gform_wrapper .gform_body {
  margin: 0;
}

.contact-page .gform_wrapper ul.gform_fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-page .gform_wrapper .gfield {
  margin: 0;
  padding: 0;
}

.contact-page .gform_wrapper .gfield_label {
  color: var(--button-blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
  display: block;
}

.contact-page .gform_wrapper .gfield_required {
  color: var(--button-blue);
}

.contact-page .gform_wrapper input[type="text"],
.contact-page .gform_wrapper input[type="email"],
.contact-page .gform_wrapper input[type="tel"],
.contact-page .gform_wrapper input[type="url"],
.contact-page .gform_wrapper input[type="number"],
.contact-page .gform_wrapper select,
.contact-page .gform_wrapper textarea {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
  background: var(--very-light-background) !important;
  border: 1px solid #e1ebf4 !important;
  border-radius: 16px !important;
  padding: 20px 16px !important;
  color: var(--header-color) !important;
  font-size: 16px !important;
  font-family: inherit !important;
  line-height: 1.6 !important;
  transition: border-color 0.2s ease !important;
  box-shadow: none !important;
  outline: none !important;
}

.contact-page .gform_wrapper input[type="text"]::placeholder,
.contact-page .gform_wrapper input[type="email"]::placeholder,
.contact-page .gform_wrapper input[type="tel"]::placeholder,
.contact-page .gform_wrapper input[type="url"]::placeholder,
.contact-page .gform_wrapper input[type="number"]::placeholder,
.contact-page .gform_wrapper textarea::placeholder {
  color: #9ba1bb !important;
}

.contact-page .gform_wrapper input[type="text"]:focus,
.contact-page .gform_wrapper input[type="email"]:focus,
.contact-page .gform_wrapper input[type="tel"]:focus,
.contact-page .gform_wrapper input[type="url"]:focus,
.contact-page .gform_wrapper input[type="number"]:focus,
.contact-page .gform_wrapper select:focus,
.contact-page .gform_wrapper textarea:focus {
  border-color: var(--button-blue) !important;
  box-shadow: none !important;
  outline: none !important;
}

.contact-page .gform_wrapper textarea {
  min-height: 156px !important;
  resize: vertical;
}

/* Two-column field row (Name: First + Last) */
.contact-page .gform_wrapper .ginput_complex {
  display: flex;
  gap: 8px;
}

.contact-page .gform_wrapper .ginput_complex > span {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.gform_fields {
  row-gap: 25px !important;
}

.gfield.gfield--type-html p, .gfield.gfield--type-html a {
  font-size: 14px;
  color: var(--header-color);
}

.contact-page .gform_wrapper .ginput_complex .name_first label,
.contact-page .gform_wrapper .ginput_complex .name_last label,
.contact-page .gform_wrapper .ginput_complex > span > label,
.gform_required_legend {
  display: none !important;
}

/* Submit button */
.contact-page .gform_wrapper .gform_footer,
.contact-page .gform_wrapper .gform_page_footer {
  margin-top: 8px;
  padding: 0;
}

.contact-page .gform_wrapper input[type="submit"],
.contact-page .gform_wrapper button[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  background: var(--button-green) !important;
  border: 1px solid var(--button-green) !important;
  border-radius: 16px !important;
  color: var(--header-color) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  padding: 18px 32px !important;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.contact-page .gform_wrapper input[type="submit"]:hover,
.contact-page .gform_wrapper button[type="submit"]:hover {
  border-color: var(--button-green) !important;
  opacity: 1;
  color: var(--header-color) !important;
}

/* Validation errors */
.contact-page .gform_wrapper .gfield_error input,
.contact-page .gform_wrapper .gfield_error textarea,
.contact-page .gform_wrapper .gfield_error select {
  border-color: var(--background-red);
}

.contact-page .gform_wrapper .validation_message,
.contact-page .gform_wrapper .gfield_description.validation_message {
  color: var(--background-red);
  font-size: 12px;
  margin-top: 6px;
}

/* Confirmation message */
.contact-page .gform_confirmation_wrapper {
  color: var(--header-color);
  font-size: 16px;
  text-align: center;
  padding: 40px 0;
}

/* Contact page responsive
----------------------------------------------- */

@media (min-width: 3840px) {
  .contact-page__title {
    font-size: 100px;
  }

  .contact-page__layout {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .contact-page__kevin-avatar {
    width: 96px;
    height: 96px;
  }

  .contact-page__kevin-name {
    font-size: 26px;
  }

  .contact-page__about-btn {
    padding: 14px 40px;
    font-size: 18px;
  }

  .contact-page__wysiwyg p {
    font-size: 22px;
    line-height: 28px;
  }

  .contact-page__wysiwyg ul li {
    font-size: 22px;
  }

  .contact-page__wysiwyg ul li::before {
    width: 26px;
    height: 26px;
  }

  .contact-page__content-body .contact-page__image-wrap {
    width: 520px;
  }
}


@media (max-width: 2000px) {

  .contact-page__hero {
      height: unset;
  }

}
@media (min-width: 992px) and (max-width: 1599.98px) {
  .contact-page__hero {
    height: auto;
    min-height: 100vh;
  }

  .contact-page__layout {
    padding-bottom: 120px;
  }
  
}

@media (max-width: 1199.98px) {
  .contact-page__title {
    font-size: 42px;
  }

  .contact-page__content-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .contact-page__content-body .contact-page__wysiwyg {
    flex: 1 1 auto;
    max-width: none;
  }

  .contact-page__content-body .contact-page__image-wrap {
    width: min(100%, 440px);
    align-self: flex-start;
  }


}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .contact-page__content-body {
    align-items: flex-start;
    gap: 24px;
  }

  .contact-page__content-body .contact-page__wysiwyg {
    flex-basis: 360px;
    max-width: 360px;
  }

  .contact-page__content-body .contact-page__image-wrap {
    width: clamp(220px, 22vw, 280px);
  }
}

@media (min-width: 1200px) and (max-width: 1599.98px) {
  .contact-page__content-body {
    align-items: flex-start;
    gap: 24px;
  }

  .contact-page__content-body .contact-page__wysiwyg {
    flex: 1 1 0;
    max-width: none;
  }

  .contact-page__content-body .contact-page__image-wrap {
    width: clamp(180px, 14vw, 240px);
  }
}

@media (max-width: 991.98px) {
  .contact-page__layout {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 120px;
  }

  .contact-page__logo {
    margin-bottom: 40px;
  }

  .contact-page__right {
    max-width: 680px;
    align-self: stretch;
  }

  .contact-page__title {
    font-size: 36px;
  }

  .contact-page__content-body {
    flex-direction: column;
    gap: 24px;
  }

  .contact-page__kevin {
    margin-top: 32px;
  }

  .site-footer {
    padding: 50px 0 0 0;
  }

  footer .announcement-bar {
    margin-top: 50px;
  }
}

@media (max-width: 575.98px) {
  .contact-page__layout {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .admin-bar   .contact-page__layout {
    padding-top: 102px;
    padding-bottom: 50px;
  }


  .contact-page__content {
    gap: 0px;
  }

  .contact-page__title {
    margin-bottom: 20px;
  }

  .contact-page__content-body {
    text-align: start;
  }

  .contact-page__title {
    font-size: 30px;
  }

  .contact-page__content-body .contact-page__image-wrap {
    width: 100%;
  }

  .contact-page__kevin {
    align-items: center;
  }

  .contact-page__kevin-meta {
    align-items: center;
    text-align: center;
  }

  .contact-page__right {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .contact-page__popup {
    padding: 40px 24px 32px;
  }

  .contact-page .gform_wrapper .ginput_complex {
    flex-direction: column;
  }

  .home-solution-block__container {
    gap: 24px;
  }
}

/* Homepage scroll reveal for the inner container of sections between logo strips */
.home-solution-block__container,
.home-ai-benefits__container,
.home-stats__container,
.home-testimonials__container,
.cta-block__container,
.home-selection-funnel__container,
.about-intro__inner,
.about-benefits__panel,
.about-results__container,
.solutions-intro__inner,
.solutions-problem__container,
.solutions-feature__container,
.faq-page__hero-container,
.faq-page__list-container {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.home-solution-block__container.is-revealed,
.home-ai-benefits__container.is-revealed,
.home-stats__container.is-revealed,
.home-testimonials__container.is-revealed,
.cta-block__container.is-revealed,
.home-selection-funnel__container.is-revealed,
.about-intro__inner.is-revealed,
.about-benefits__panel.is-revealed,
.about-results__container.is-revealed,
.solutions-intro__inner.is-revealed,
.solutions-problem__container.is-revealed,
.solutions-feature__container.is-revealed,
.faq-page__hero-container.is-revealed,
.faq-page__list-container.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.no-js .home-solution-block__container,
.no-js .home-ai-benefits__container,
.no-js .home-stats__container,
.no-js .home-testimonials__container,
.no-js .cta-block__container,
.no-js .home-selection-funnel__container,
.no-js .about-intro__inner,
.no-js .about-benefits__panel,
.no-js .about-results__container,
.no-js .solutions-intro__inner,
.no-js .solutions-problem__container,
.no-js .solutions-feature__container,
.no-js .faq-page__hero-container,
.no-js .faq-page__list-container {
  opacity: 1;
  transform: none;
}

/* ── Mobile global padding normalization ────────────────
   - 50px top/bottom padding op alle main sections
   - 15px links/rechts gutter (override Bootstrap's 12px)
     via --bs-gutter-x op .row, zodat .row > * en .container
     beide 15px aan elke kant krijgen.
   Heroes zijn uitgesloten i.v.m. fixed header clearance. */
@media screen and (max-width: 991.98px) {
  .row {
    --bs-gutter-x: 1.875rem; /* 30px → 15px elk */
  }

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    --bs-gutter-x: 1.875rem;
    padding-right: 15px;
    padding-left: 15px;
  }

}

@media screen and (max-width: 782px) {
    html {
        margin-top: 0 !important;
    }
}

.page-default {
  padding-top: 220px;
}


/********** VACATURE FILTER ***/
.vacature-filter {
  background: transparent linear-gradient(90deg, #722BFF 0%, #0943BF 100%) 0% 0% no-repeat padding-box;
}

.vacature-header h1 span {
  background-color: #FF1818;
  color: #F5F7F8;
  border-radius: 15px;
  padding: 0px 5px;
  display: inline-flex;
}

.vacature-header h1 {
  color: #062054;
  flex-shrink: 0;
}

.vacature-header .breadcrumb a,
.single-vacature .breadcrumb a {
  color: inherit;
}

.vacature-header .breadcrumb a {
  margin-top: -5px;
  margin-right: 5px;
}

.vacature-header .breadcrumb {
  height: fit-content;
}

.vacature-header .sins-c-pg,
.single-vacature .sins-c-pg {
  margin-left: 5px;
  color: inherit;
}

.vacature-header {
  padding-top: 30px;
}

.vacature-single p {
  color: black;
}

.vacature-single h3 {
  color: #062054;
  margin-bottom: 15px;
  font-size: 32px;
}

.vacature-excerpt p {
  color: #062054;
}

.vacature-single {
  display: flex;
  align-items: center;
  border-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  margin-bottom: 40px;
  cursor: pointer;
}

.vacture-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  row-gap: 5px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(124, 124, 124, 0.2);
}

.vacture-specs p {
  font-size: 15px;
  color: black !important;
}

.vacature-single-right {
  height: 100%;
  flex-shrink: 0;
}

.vacature-single-right img {
  max-width: 275px;
  height: 100%;
  border-radius: 0 50px 50px 0;
  object-fit: cover;
}

.vacatures-grid .row {
  max-width: 65%;
  margin: auto;
}

.vacature-single-left {
  padding: 30px 50px;
}

.vacature-excerpt p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vacatures-grid .pagination a {
  color: #062054;
}

.jouw-vacature-hier {
  display: flex;
  align-items: center;
  gap: 75px;
  padding: 50px;
  border: dashed 3px rgba(124, 124, 124, 0.2);
  border-spacing: 10px;
  border-radius: 50px;
  margin-bottom: 30px;
}

.jouw-vacature-hier h3 {
  color: #062054;
  margin-bottom: 20px;
}

.jouw-vacature-hier p {
  color: inherit;
}

.jouw-vacature-hier a {
  color: #FF1818;
  background-color: #F6E0E1;
  border: dashed 2px #FF1818;
  padding: 10px 36px;
  border-radius: 10px;
  font-weight: bold;
  display: block;
  width: fit-content;
}

.jouw-vacature-rechts {
  flex-shrink: 0;
}

.pagination-wrapper {
  margin: auto;
  margin-top: 50px;
  margin-bottom: 100px;
  position: relative;
  width: 100%;
}

.pagination-wrapper .pagination .next.page-numbers {
  position: absolute;
  right: 0;
  color: #1C3BF4;
  font-weight: 600;
  border: unset;
}

.pagination-wrapper .pagination .prev.page-numbers {
  position: absolute;
  left: 0;
  color: #1C3BF4;
  font-weight: 600;
  border: unset;
}

.pagination-wrapper .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.pagination-wrapper .pagination .page-numbers.current {
  line-height: 28px;
  border: 2px solid #1C3BF4;
  background-color: #DFE4F8;
  color: #1C3BF4;
}

.pagination-wrapper .pagination span, .pagination-wrapper .pagination .page-numbers {
  font-size: 16px;
  padding: 10px 20px;
  border: 2px solid #BEC7F6;
  border-radius: 10px;
  background-color: #fff;
  color: #1C3BF4;
  font-weight: 600;
}

.single-vacature-header {
  background-image: url(../images/single-blog-bg.png);
  padding: 50px 0 100px 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

.single-vacature h1 {
  color: white;
  margin-bottom: 50px;
}

.single-vacature .dc-btn {
  border: 1px solid #1CE55F;
  background-color: #1CE55F;
  color: #062054;
  font-weight: bold;
  display: block;
  width: fit-content;
  padding: 10px 40px;
}

.dc-btn-empty {
  font-weight: bold;
  display: block;
  width: fit-content;
  padding: 10px 40px;
}

.dc-btn-empty:hover {
  color: #062054;
  background-color: #1CE55F;
}

.single-vacature .pb-banner .left-block a {
  border-bottom: 1px solid #1CE55F;
  color: unset;
}

.single-vacature .dc-btn:hover {
  background-color: #1ac954;
  border: 1px solid #1ac954;
}

.vacature-tag {
  background-color: #FF1818;
  border-radius: 50px;
  padding: 5px 15px;
  width: fit-content;
  margin-bottom: 50px;
}

.reviews-slider .right-block .img-box img {
  object-fit: contain;
  height: 75px;

}

.single-vacature .right-block .img-box {
  width: 34%;
}

.single-vacature-padding {
  padding-left: 7%;
}

.single-vacature-inner .off-white.sins-c-pg {
  font-weight: normal;
}

.single-vacature-content {
  margin: 100px 0;
}


.single-vacature-content-container {
  padding-top: 30px;
}

.single-vacature-table {
  background-color: #F5F7F8;
}

.single-vacature-table h2 span {
  background-color: #18FFFF;
  border-radius: 16px;
  padding: 0px 10px 2px;
}

.single-vacature-table h2 {
  width: 100%;
  text-wrap: balance;
}

.single-vacature-table .row,
.single-vacature-get .row  {
  padding: 100px 0;
  gap: 50px;
  justify-content: space-between;
}

.single-vacature-single-usp p {
  font-size: clamp(16px, 1.5vw, 22px);
  color: #062054;
  font-weight: 500;
}

.single-vacature-repeater .single-vacature-single-usp:last-child {
  margin-bottom: 0;
}

.page-template-template-flex-builder h2 {
  margin-bottom: 20px;
}

.dc-video-section .row {
  align-items: center;
  justify-content: center;
  padding-top: 0;
}

.dc-video {
  width: 90%;
}

.dc-video-section .wins-right-block {
  padding-top: 0;
}



.dc-waarom h2 {
  font-size: 44px;
}

.dc-waarom h2 span {
  display: block;
  width: fit-content;
}

.dc-slider .swiper-wrapper .swiper-slide img {
  height: 84px;
  width: 100%;
  object-fit: contain;
}

.dc-waarom {
  padding-top: 10px;
}

.dc-video-section {
  padding-top: 100px;
}

.single-vacature-single-usp::before {
  content: url(../images/vacature/Check\ blue\ icon.svg);
  margin-top: 5px;
}

.single-vacature-single-usp {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(124, 124, 124, 0.2);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.single-vacature-table .left-block,
.single-vacature-get .left-block {
  width: 17%;
}

.single-vacature-table .right-block,
.single-vacature-get .right-block {
  width: 62%;
}

.single-vacature-content-container .single-vacature-left {
  width: 50%;
}

.single-vacature-right p {
  color: #062054;
  margin-bottom: 20px;
  font-weight: 600;
}

.single-vacature-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.single-vacature-right {
  margin: 100px 0 100px auto;
}

.single-vacature-right svg {
  height: 24px;
  aspect-ratio: 1;
}

.single-vacature-get {
  background-image: url(../images/banner-bgg.webp);
  background-color: #062054;
  background-repeat: no-repeat;
  background-size: cover;
}

.single-vacature-get p,
.single-vacature-get h2 {
  color: white !important;
}

.single-vacature-get .single-vacature-single-usp::before {
  content: url(../images/vacature/Check\ white\ icon.svg);
  margin-top: 5px;
}

.single-vacature-get .single-vacature-single-usp {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.vacature-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.vacature-bar-left img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 20px;
}

.vacature-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.vacature-bar-left p:first-child {
  color: #1CE55F;
}

.vacature-bar-left p:last-child {
  color: #fff;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
}

.vacature-single-sticky {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(to right, #712BFF, #1E3BF4);

  position: fixed;
  bottom: 0;
  left: 0;
  width: calc(100% - 40px);
  z-index: 9;
}

.image-div {
  position: relative;
}

.image-div .popUpBtn {
  font-size: 40px;
  right: 10px;
  bottom: 5px;
}

#pb-footer {
  position: relative;
  z-index: 11;
}

.single-vacature-content-2-container img {
  border-radius: 50px;
  width: 500px;
  height: 400px;
  object-fit: cover;
  max-width: 100%;
}

.single-vacature-content-2-container .single-vacature-left {
  width: 40%;
}

.single-vacature-content-2-container .single-vacature-right {
  width: 40%;
}

.single-vacature h2 {
  color: var(--header-color);
}

.single-vacature-table h2 {
  color: #062054;
}

.single-vacature-content-2-container .row {
  align-items: center;
}

.single-vacature-content-2-container p {
  font-weight: normal;
}

.single-vacature-content-2-container .container:last-child .row {
  flex-direction: row-reverse;
}


.single-vacature-content-2-container .container:last-child .single-vacature-content {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-end;
}

.single-vacature-content-2-container .container:last-child .single-vacature-right {
  margin: 0 auto 0 0;
}

.single-vacature-content-2-container {
  margin-bottom: 100px;
}

.dc-advice-section h2 {
  color: white;
}

.gerelateerde-vacatures .row {
  max-width: 65%;
  margin: auto;
}

.reviews-slider .swiper-slide {
  width: fit-content !important;
  display: flex;
  padding: 50px;
  justify-content: space-between;
}

.review-slider .left-block {
  width: 100%;
}

.review-slider .right-block {
  width: 25%;
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

.single-vacature-reviews img {
  max-height: 125px !important;
  max-width: 300px;
  display: flex;
  margin-left: auto;
  width: 100%;
}

.single-vacature-reviews .right-block .img-box {
  width: 100%;
}

.single-vacature-reviews .swiper-button-prev {
  left: 0% !important;
  top: 20px !important;
  right: auto;
  padding-left: 50px;
}

.single-vacature-reviews .swiper-button-next {
  right: unset !important;
  left: 0% !important;
  top: 20px !important;
  margin-left: 50px !important;
  padding-left: 50px;
}

.single-vacature-reviews {
  background-color: #062054;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.single-vacature-reviews h3 {
  color: #18FFFF;
  margin-bottom: 30px;
  font-weight: 500;
}


.single-vacature-reviews p {
  color: white;
  font-size: 24px;
  line-height: 40px;
  font-weight: 300;
  width: 60%;
}

.single-vacature-reviews:after {
  content: '';
  background-image: url(../images/vacature/shape-two.svg);
  padding: 160px 0;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  width: 585px;
  height: 577px;
  top: 0px;
  right: 0px;
}

.vacture-specs p svg {
  margin-right: 5px;
}

.vacture-specs p {
  color: #062054;
}

.galerij-slider img {
  max-height: 500px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.galerij-slider {
  position: relative;
}

.galerij-slider .swiper-slide {
  cursor: pointer;
}

.galerij-slider .swiper-button-prev img {
  transform: rotate(180deg);
  width: 60px;
  background-color: #FF1819;
  border-radius: 0 7px 7px 0;
}

.galerij-slider .swiper-button-prev {
  left: 50% !important;
  margin-left: -60px;
  top: unset !important;
  bottom: 30px;
}

.galerij-slider .swiper-button-next img {
  width: 60px;
  background-color: #FF1819;
  border-radius: 0 7px 7px 0;
}

.galerij-slider .swiper-button-next {
  left: 50% !important;
  margin-left: 0;
  top: unset !important;
  bottom: 30px;
}

.page-template-template-flex-builder .faq-section {
  padding: 100px 12%;
}

.vacature-slider .vacature-single .vacature-excerpt p {
  color: black;
}

.vacature-slider .swiper-wrapper {
  padding-top: 50px;
}

.vacature-slider .swiper-slide {
  padding: 0 50px;
  width: fit-content !important;
}

.vacature-slider .vacature-single {
  margin-bottom: 75px;
  height: 350px;
}

/* .vacature-slider .swiper-container {
  padding-right: 90px;
} */

.vacature-slider .swiper-button-prev img {
  transform: rotate(180deg);
}

.vacature-slider .swiper-button-prev img,
.vacature-slider .swiper-button-next img {
  width: 32px;
}

.gerelateerde-vacatures {
  padding: 100px 0;
  position: relative;
}

.gerelateerde-vacatures .main-blue-filled-btn {
  margin: auto;
}


.gerelateerde-vacatures .swiper-button-next {
  top: 30px !important;
  right: 6% !important;
}

.gerelateerde-vacatures .swiper-button-prev {
  top: 30px !important;
  left: unset !important;
  right: 6% !important;
  margin-right: 40px !important;
}

.vacature-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;

  max-width: 65%;
  margin: 50px auto;
}

.vacature-header-inner p {
  color: #1C3BF4;
  font-weight: bold;
}

.vacature-filter {
  background-image: url(../images/vacature/home-banner-img.webp);
  position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
}

.vacature-filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.vacature-filter-right {
  display: flex;
  gap: 40px;
}

.vacature-filter-inner a {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;

  border-bottom: 1px solid white;
  padding-bottom: 8px;
}

.vacature-filter-inner a::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}

.vacature-filter-left a {
   padding: 16px 24px;
    background-color: var(--button-green);
    border: 0;
    border-radius: var(--border-radius);
    color: var(--header-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 19.8px;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.vacature-filter-left a:hover {
  border-color: var(--button-green);
  opacity: 1;
  color: var(--header-color);
  text-decoration: none;
}

.vacature-filter-left a::after,
.toon-resultaten::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--button-green-hover);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: -1;
}

.vacature-filter-left a:hover::after,
.toon-resultaten:hover::after {
  opacity: 1;
}

.vacature-filter-left a::before {
  content: "\f0b0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background-image: none;
}


.dc-modal .modal-content {
  border-radius: 30px;
  width: 500px;
  max-width: 100%;
}

.dc-modal {
  padding-left: 0;
}

.dc-modal .gform_footer input {
  background-color: #1CE55F !important;
  color: #062054 !important;
  border-radius: 10px !important;
  font-weight: bold !important;
  padding: 15px 40px !important;
  font-size: 16px !important;
}

.filter-show-container{
  position: fixed;
  z-index: 1041;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
  visibility: hidden;
  opacity: 0;
}

.filter-show-container.active {
  visibility: inherit;
  opacity: 1;
}

.vacature-filter-show {
  position: relative;
  max-width: 90%;
  width: 400px;
  height: 100dvh;
  background: white;
  transition: all 0.3s ease;
  transform: translateX(-100%);
  overflow: hidden;
}

.vacature-filter-show-inner{
  height: 100%;
  padding: 30px 30px 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.vacature-filter-show.active {
  transform: translateX(0);
}

.filter-sub-head {
  font-size: 20px;
  color: var(--header-color);
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: 600;
}

.filter-box {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.filter-show-head h3 {
  color: var(--header-color);
  font-weight: 600;
  margin-bottom: 0;
}

.filter-show-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
}

.reset-filter {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.reset-filter p {
  color: black;
  opacity: 0.5;
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
}

.filter-show-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.filter-show-right > svg {
  cursor: pointer;
}

.search-fields {
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  border: 2px solid black;
}

.vacature-filter-show::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
  border-radius: 10px;
}
.vacature-filter-show::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}
.vacature-filter-show::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

.vacature-filter-show button {
    padding: 16px 24px;
    background-color: var(--button-green);
    border: 0;
    border-radius: var(--border-radius);
    color: var(--header-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 19.8px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.vacature-filter-show button:hover {
    border-color: var(--button-green);
    opacity: 1;
    color: var(--header-color);
}

.vacature-filter-show-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 24px 30px 30px;
  background: #ffffff;
  box-shadow: 0 -16px 32px rgba(4, 12, 50, 0.08);
}

.vacature-filter-show .toon-resultaten {
  width: 100%;
  box-shadow: 0 16px 32px rgba(4, 12, 50, 0.16);
}

.filter-box-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.filter-checkbox,
.filter-checkbox-2 {
  display: none;
}

.filter-box-options span {
  padding: 8px 10px;
  text-align: center;
  background-color: #F5F7F8;
  border: 2px solid #F5F7F8;
  border-radius: 9px;
  cursor: pointer;
  color: #062054;
  font-weight: 600;
  width: fit-content;
  font-size: 14px;
}

.filter-box-options span.active {
  background-color: var(--very-dark-background);
  color: #fff;
  border-color: var(--very-dark-background);
}

.filter-box-options-2 span.active,
.filter-box-options-3 span.active  {
  color: var(--very-dark-background);
  font-weight: 600;
}

.filter-box-options-2 span,
.filter-box-options-3 span {
  color: #062054;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
}

.filter-box-options-2 span::before,
.filter-box-options-3 span::before  {
  content: "";
  border-bottom: 1px solid #062054;
  border-right: 1px solid #062054;
  height: 6px;
  width: 6px;
  transform: rotate(-44deg);
  margin-right: 10px;
}

.filter-box-options-2,
.filter-box-options-3 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vacature-single {
  position: relative;
}

.vacature-single::after {
  content: "";
  background-image: url(../images/vacature/right-blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
}

input::placeholder,
textarea::placeholder {
  opacity: 0.5;
}

.gform_fields {
  row-gap: 15px !important;
}

.dc-video-section a {
  display: block;
  text-align: center;
  width: fit-content;
}

.vacature-slider {
  width: 960px;
  max-width: 100%;
}

.gerelateerde-vacatures .row {
  max-width: 100%;
  margin: auto;
  flex-direction: column;
}

.gerelateerde-vacatures-header h3 {
  max-width: 860px;
  margin: auto;
  padding: 0 50px;
}

.reviews-slider {
  width: 1000px;
  max-width: 100%;
  margin: auto;

  position: relative;
}


@media (min-width: 1400px) {
  .container-2 {
      max-width: 1331px;
      margin: 0 auto;
  }
}

@media (max-width: 1400px) {

  .single-vacature-reviews .swiper-button-prev, 
  .single-vacature-reviews .swiper-button-next {
    padding-left: 50px;
  } 

 
}

@media (max-width: 1200px) {
  .dc-video-section h2 span {
    padding: 0 8px 50px 10px !important;
  }

 .reviews-slider {
    width: 900px;
  }

}

@media (max-width: 991px) {
  .vacature-bar-right a {
    padding: 10px 20px !important;
  }

  .single-vacature-content-2-container .row {
    flex-direction: column;
  }

  .single-vacature-content-2-container .single-vacature-right {
    width: 100%;
  }

  .single-vacature-content-2-container .single-vacature-left {
    width: 100%;
  }

  .single-vacature-right {
      margin: 0;
  } 

  .single-vacature-content-2-container .container:last-child .single-vacature-content {
    justify-content: flex-start;
    margin: 20px 0;
  }

  .single-vacature-content-2-container .single-vacature-content {
    margin: 0 0 20px 0;
  }

  .single-vacature-content-2-container img {
    height: 300px;
  }

  .vacature-single-right img {
    display: none;
  }

  .vacatures-grid .row {
    max-width: 90%;
  }

  .vacature-header-inner {
    max-width: 90%;
    flex-wrap: wrap;
    row-gap: 20px;
    margin: 20px auto;

  }

 
}

@media (max-width: 768px) {
  .dc-video-section {
    padding-top: 0;
    margin-top: -100px;
  }

  .vacature-header h1 {
    font-size: 35px;
  }

  .vacature-filter-right {
    gap: 20px;
  }

  .vacature-filter-inner {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .dc-video {
    width: 100%;
  }

  .vacature-header h1 {
    font-size: 35px;
  }

  .galerij-slider .swiper-button-next img {
    width: 40px;
    margin-top: 0;
  }

  .dc-video-section h2 span {
    padding: 0 8px 0 10px !important;
  }

  .galerij-slider .swiper-button-prev img {
    width: 40px;
    margin-top: 0;
  }

  .galerij-slider .swiper-button-prev {
    display: block;
    margin-left: -40px;
    bottom: 5px;
  }

  .dc-advice-section h2 {
    font-size: 35px !important;
  }

  .galerij-slider .swiper-button-next {
    bottom: 5px;
  }

  .pb-banner .right-block .img-box .img-inner:before {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    left: -25px;
  }

  .vacature-bar-left {
    display: none;
  }

  .vacature-slider .vacature-single {
    height: fit-content;
  }

  .vacature-bar-right {
    justify-content: center;
    width: 100%;
  }

  .single-vacature-header .right-block {
    display: none;
  }

  .single-vacature-header .left-block {
    padding-top: 0;
  }

  .single-vacature-header h1 {
    font-size: 35px;
    margin-bottom: 20px;
    line-height: 45px;
  }

  .vacature-tag {
    margin-bottom: 20px;
  }

  .single-vacature-reviews .swiper-button-prev {
    display: block;
  }

  .single-vacature-header {
    padding: 50px 0;
  }

  .home-selection-funnel__media {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.home-selection-funnel__media svg {
    display: block;
    width: 260%;
    height: auto;
    flex: none;
}

  .row-options {
    flex-direction: column-reverse;
  }

  .reviews-slider .swiper-slide {
    flex-direction: column-reverse;
  }

  .single-vacature-right {
    margin: 20px 0 0 0;
  }

  .single-vacature-reviews .testimonial-content {
    margin-top: 20px;
  }

  .single-vacature-reviews p {
    width: 100%;
  }

  .reviews-slider .swiper-slide {
    padding: 0 50px;
  }

  .single-vacature-reviews .right-block .img-box {
    margin: 50px 0 30px 0;
  }

  .single-vacature-right p {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .single-vacature-padding {
    padding-left: 0;
  }

  .single-vacature-reviews img {
    max-height: 125px !important;
    max-width: 200px;
    width: unset;
  }

  .single-vacature-inner .off-white.sins-c-pg {
    white-space: nowrap;
  }

  .single-vacature-content {
    margin: 50px 0;
  }

  .single-vacature-reviews {
    padding-bottom: 50px;
  }

  .jouw-vacature-hier {
    flex-direction: column;
    padding: 30px;
    gap: 20px;
  }

  #myModal-solliciteer,
  #myModal-vraag,
  #myModal-vacature,
  #myModal-cv,
  #myModal-alert {
    left: unset;
  }

  #myModal-solliciteer .modal-content,
  #myModal-vraag .modal-content,
  #myModal-vacature .modal-content,
  #myModal-cv .modal-content,
  #myModal-alert .modal-content {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
  }

  .single-vacature-content-container .single-vacature-left {
    width: 100%;
  }

  .single-vacature-table .row, .single-vacature-get .row {
    padding: 50px 0;
    gap: 20px;
    flex-direction: column;
  }

  .single-vacature-table .left-block, .single-vacature-get .left-block {
    width: 100%;
  }

  .single-vacature-table .right-block, .single-vacature-get .right-block {
    width: 100%;
  }


  .single-vacature-content-2-container {
    margin: 50px 0;
  }

  .vacature-single h3 {
    font-size: 24px !important;
    line-height: normal;
  }

  .vacature-single-left {
    padding: 30px;
  }

  .gerelateerde-vacatures .swiper-button-prev {
    display: block;
  }

  .gerelateerde-vacatures {
    padding: 50px 0;
  }

}

@media (max-width: 445px) {
  .vacature-bar-right a {
    font-size: 14px;
    padding: 5px 10px !important;
    width: 100%;
    flex: 1;
    text-align: center;

  }

  .dc-video-section h2 span {
    padding: 0 8px 35px 10px !important;
  }

  .dc-video-section {
    margin-top: -130px;
  }

  .vacature-single::after {
    display: none;
  }

  .vacatures-grid .row {
    max-width: 100%;
  }

  .vacture-specs {
    margin-bottom: 15px;
  }

  .vacature-slider .swiper-slide {
    padding: 0px 10px;
    width: fit-content !important;
  }

  .vacature-filter-right {
    flex-wrap: wrap;
  }

  .vacature-slider .vacature-single {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: unset;
    margin-bottom: 30px;
  }

  .vacature-filter-inner a::before {
    height: 15px;
    width: 15px;
  }

  .gerelateerde-vacatures-header h3 {
    padding: 0 10px;
  }

  .reviews-slider .swiper-slide {
    padding: 0 15px;
  }

  .single-vacature-reviews p {
    font-size: 16px;
  }
 
}

