/*
 * Theme Name: ClickPatrol ( WideKode Theme )
 * Theme URI: https://widekode.com
 * Author: Anton Iulian-Leonard
 * Author URI: https://widekode.com
 * Version: 1.0.3
 */

/* 
 * Performance Optimization: Image Dimension Fallback
 * ONLY targets images in specific containers to prevent layout breaks
 */

/* Images in imgWrap containers (WPBakery modules) */
.imgWrap img,
.col.imgWrap img,
.col .imgWrap img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Images in article/post content */
.wk-content img,
.entry-content img,
article img {
  max-width: 100%;
  height: auto;
}

/* Hero/section module images specifically */
.wk-hero img,
.wk-section img,
.wk-module img {
  max-width: 100%;
  height: auto;
}

/* Ensure proper spacing between WPBakery group modules */
.wk-group-image {
  margin-bottom: 3.75rem;
}

.wk-group-info {
  margin-bottom: 3.75rem;
}

/* Ensure proper spacing in group-info modules */
.wk-group-info .col h5,
.wk-group-info .col h4,
.wk-group-info .col h3 {
  margin-bottom: 0.75rem;
}

.wk-group-info .col p {
  margin-bottom: 1rem;
}

.wk-group-info .col p:last-child {
  margin-bottom: 0;
}

/* Responsive spacing for smaller screens */
@media (max-width: 768px) {
  .wk-group-image {
    margin-bottom: 2.5rem;
  }
  
  .wk-group-info {
    margin-bottom: 2.5rem;
  }
}

 :root {
  --radius:10px;
  --radius-box:8px;
  --radius-button:12px;
  --gap:2rem;
  --color-primary: #00AEEF;
  --color-link: #076385;
  --color-primary-lite: #59D2FF;
  --color-secondary-01:#0b2935;
  --color-secondary-02:#F3F7F9;
  --color-background: #ffffff;
  --color-text: #5B686D;
  --color-title: #000000;
  --color-border:235, 237, 238;
  
  /* Modern gradients */
  --gradient-primary: linear-gradient(135deg, #00AEEF 0%, #0099D6 100%);
  --gradient-primary-hover: linear-gradient(135deg, #59D2FF 0%, #00AEEF 100%);
  
  /* Modern shadows with color */
  --shadow-sm: 0 2px 8px rgba(0, 174, 239, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 174, 239, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 174, 239, 0.16);
  --shadow-hover: 0 12px 40px rgba(0, 174, 239, 0.2);
  
}

@font-face {
  font-family: "Gordita";
  src: url("../fonts/gordita-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/gordita-medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/gordita-bold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Gordita";
  src: url("../fonts/gordita-black.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
/* Italic font variants removed - saves ~213 KiB of font downloads.
   If italic is needed on specific pages, load via conditional CSS. */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x:hidden;
}

body {
  background-color: var(--color-background);
  font-family: "Gordita", "Gordita Fallback", -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--color-text);
}
@media (max-width: 539px) {
  body {
    line-height: 1.3125rem;
  }
}

* {
  box-sizing: border-box;
}

h1 {
  font-size: 3.375rem;
  line-height: 3.75rem;
  font-weight: 700;
  margin: 1rem 0;
}

h2 {
  font-size: 2.625rem;
  line-height: 3.1875rem;
  font-weight: 700;
  margin: 1rem 0;
}

h3 {
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 700;
  margin: 1rem 0;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.875rem;
  font-weight: 700;
  margin: 1rem 0;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.6875rem;
  font-weight: 700;
  margin: 1rem 0;
}

h6 {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-title);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

a {
  font-weight: 500;
  text-decoration: none;
}
a:focus, a:focus-visible {
  outline: 0;
}
/* Button styles moved to line ~4460 for better organization */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  font-weight: inherit;
}

p {
  margin: 1rem 0 0;
  color: var(--color-text);
}

blockquote {
  font-style: italic;
  padding: 0;
  margin: 0;
}

ul, ol {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
ul[data-props*=horizontal], ol[data-props*=horizontal] {
  flex-direction: row;
  flex-wrap: wrap;
}
ul li, ol li {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) / 2);
  position: relative;
}
ul li[data-props*=horizontal], ol li[data-props*=horizontal] {
  flex-direction: row;
  flex-wrap: wrap;
}
ul li > *, ol li > * {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul li[data-props*=horizontal] {
  flex-direction: row;
  flex-wrap: wrap;
}

ol {
  margin: 0;
  padding: 0;
}
ol > li {
  counter-increment: step-counter;
  padding-left: var(--gap);
}
ol > li::before {
  counter-increment: li;
  content: counter(step-counter) ".";
  position: absolute;
  left: 0;
  top: 1px;
}

ol > li ol > li {
    counter-increment: none;
}

ol > li ol > li:before {
    counter-increment: none;
    display: none;
}

ol > li ol > li > ol > li {
    counter-increment: sub-step-counter;
}
ol > li ol > li > ol > li:before {
    display: block;
    content: counter(step-counter) "." counter(sub-step-counter) ".";
}

b,
strong {
  font-weight: 600;
}

form {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

input:not([type=range]):not([type=radio]):not([type=checkbox]), button[type=submit] {
  appearance: none;
  min-height: 3rem;
  padding: 1rem;
  border-radius: 0.5rem;
  outline: 0;
  font-family: "Gordita", "Gordita Fallback", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
input:not([type=range]):not([type=radio]):not([type=checkbox])[type=text], input:not([type=range]):not([type=radio]):not([type=checkbox])[type=password], input:not([type=range]):not([type=radio]):not([type=checkbox])[type=email], input:not([type=range]):not([type=radio]):not([type=checkbox])[type=number], input:not([type=range]):not([type=radio]):not([type=checkbox])[type=search] {
  border: 2px solid rgba(var(--color-border), 1);
  color: var(--color-text);
  background: var(--color-background);
}
input:not([type=range]):not([type=radio]):not([type=checkbox]):focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
  transform: translateY(-2px);
}
input:not([type=range]):not([type=radio]):not([type=checkbox]).isInvalid {
  border-color: red;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}
input:not([type=range]):not([type=radio]):not([type=checkbox])::placeholder {
  color: rgba(91, 104, 109, 0.5);
  transition: opacity 0.3s ease;
}
input:not([type=range]):not([type=radio]):not([type=checkbox]):focus::placeholder, input:not([type=range]):not([type=radio]):not([type=checkbox]):focus-visible::placeholder, input:not([type=range]):not([type=radio]):not([type=checkbox]):focus-within::placeholder {
  opacity: 0.3;
}

input[type=range] {
  width: 100%;
  height: 6px;
  background: rgba(217, 217, 217, 0.36);
  outline: none;
  border-radius: 3px;
  transition: opacity 0.2s;
}
input[type=range]::-webkit-slider-thumb, input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 10px;
  background: #FAD515;
  cursor: pointer;
  border: none;
}
input[type=range]::-webkit-slider-runnable-track, input[type=range]::-moz-range-track {
  background-color: #FAD515;
}

textarea {
  appearance: none;
  min-height: 9.375rem;
  padding: 1rem;
  width: 100%;
  border-radius: 0.5rem;
  outline: 0;
  resize: none;
  border: 2px solid rgba(var(--color-border), 1);
  color: var(--color-text);
  background: var(--color-background);
  font-family: "Gordita", "Gordita Fallback", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
  transform: translateY(-2px);
}
textarea::placeholder {
  color: rgba(91, 104, 109, 0.5);
  transition: opacity 0.3s ease;
}
textarea:focus::placeholder {
  opacity: 0.3;
}

select {
  border: 2px solid rgba(var(--color-border), 1);
  background: var(--color-background);
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("../images/drop-arrow.svg");
  background-position: center right 10px;
  background-repeat: no-repeat;
  min-height: 3rem;
  padding: 0 2.5rem 0 1rem;
  width: 100%;
  border-radius: 0.5rem;
  outline: 0;
  cursor: pointer;
  font-family: "Gordita", "Gordita Fallback", sans-serif;
  font-size: 1rem;
  color: var(--color-text);
}
select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}
select:hover {
  border-color: var(--color-primary-lite);
}

/* Fix dropdown behavior on mobile - use native controls */
@media (max-width: 768px) {
  select {
    appearance: auto !important;
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
    background-image: none !important;
    font-size: 16px !important; /* Voorkomt zoom op iOS */
    padding-right: 1rem !important;
    position: relative;
    z-index: 1;
  }
}

select.isInvalid {
  border-color: red;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

button,
input[type=submit] {
  width: auto;
  font-weight: 500;
  border: none;
  border-radius: 1.125rem;
  min-height: 2.25rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  cursor: pointer;
  align-self: baseline;
}

input,
textarea,
select,
button,
submit {
  font-family: "Gordita", "Gordita Fallback", sans-serif;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.grid {
  margin: 0 auto;
  width: 100%;
  max-width: 1230px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}
.grid[data-grid*=space] {
  justify-content: space-between;
}
.grid[data-grid*=center] {
  justify-content: center;
}
.grid[data-grid*=bottom] {
  align-items: flex-end;
}
.grid .col {
  overflow-wrap: break-word;
  z-index: 2;
}
.grid .col[data-col*="1"] {
  width: calc((100% - 330px) / 12 * 1 + 0px);
  max-width: calc((100% - 330px) / 12 * 1 + 0px);
}
.grid .col[data-col*="1"][data-col*=fix] {
  width: 75px;
}
.grid .col[data-col*="2"] {
  width: calc((100% - 330px) / 12 * 2 + 30px);
  max-width: calc((100% - 330px) / 12 * 2 + 30px);
}
.grid .col[data-col*="2"][data-col*=fix] {
  width: 180px;
}
.grid .col[data-col*="3"] {
  width: calc((100% - 330px) / 12 * 3 + 60px);
  max-width: calc((100% - 330px) / 12 * 3 + 60px);
}
.grid .col[data-col*="3"][data-col*=fix] {
  width: 285px;
}
.grid .col[data-col*="4"] {
  width: calc((100% - 330px) / 12 * 4 + 90px);
  max-width: calc((100% - 330px) / 12 * 4 + 90px);
}
.grid .col[data-col*="4"][data-col*=fix] {
  width: 390px;
}
.grid .col[data-col*="5"] {
  width: calc((100% - 330px) / 12 * 5 + 120px);
  max-width: calc((100% - 330px) / 12 * 5 + 120px);
}
.grid .col[data-col*="5"][data-col*=fix] {
  width: 495px;
}
.grid .col[data-col*="6"] {
  width: calc((100% - 330px) / 12 * 6 + 150px);
  max-width: calc((100% - 330px) / 12 * 6 + 150px);
}
.grid .col[data-col*="6"][data-col*=fix] {
  width: 600px;
}
.grid .col[data-col*="7"] {
  width: calc((100% - 330px) / 12 * 7 + 180px);
  max-width: calc((100% - 330px) / 12 * 7 + 180px);
}
.grid .col[data-col*="7"][data-col*=fix] {
  width: 705px;
}
.grid .col[data-col*="8"] {
  width: calc((100% - 330px) / 12 * 8 + 210px);
  max-width: calc((100% - 330px) / 12 * 8 + 210px);
}
.grid .col[data-col*="8"][data-col*=fix] {
  width: 810px;
}
.grid .col[data-col*="9"] {
  width: calc((100% - 330px) / 12 * 9 + 240px);
  max-width: calc((100% - 330px) / 12 * 9 + 240px);
}
.grid .col[data-col*="9"][data-col*=fix] {
  width: 915px;
}
.grid .col[data-col*="10"] {
  width: calc((100% - 330px) / 12 * 10 + 270px);
  max-width: calc((100% - 330px) / 12 * 10 + 270px);
}
.grid .col[data-col*="10"][data-col*=fix] {
  width: 1020px;
}
.grid .col[data-col*="11"] {
  width: calc((100% - 330px) / 12 * 11 + 300px);
  max-width: calc((100% - 330px) / 12 * 11 + 300px);
}
.grid .col[data-col*="11"][data-col*=fix] {
  width: 1125px;
}
.grid .col[data-col*="12"] {
  width: calc((100% - 330px) / 12 * 12 + 330px);
  max-width: calc((100% - 330px) / 12 * 12 + 330px);
}
.grid .col[data-col*="12"][data-col*=fix] {
  width: 1230px;
}
.grid .col[data-col*=fix] {
  max-width: 100%;
}

/* Responsive grid columns
   The 12-col calc((100% - 330px) / 12 * n + gaps) produces columns that
   shrink far below the viewport on phones/tablets. Stack by default; pages
   that need multi-column layouts on smaller screens override with !important. */
@media (max-width: 993px) {
  .grid .col[data-col*="7"],
  .grid .col[data-col*="8"],
  .grid .col[data-col*="9"],
  .grid .col[data-col*="10"],
  .grid .col[data-col*="11"],
  .grid .col[data-col*="12"] {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }
}

@media (max-width: 769px) {
  .grid .col[data-col] {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }

  .hero .grid .col {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Modern Card Styling with Hover Effects */

/* Pricing plan cards - highest specificity to ensure proper hover */
.wkPricingTable .pricingTable .col.wk-price-plan[data-props*="shadow"] {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.wkPricingTable .pricingTable .col.wk-price-plan[data-props*="shadow"]:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg) !important;
}
.wkPricingTable .pricingTable .col.wk-price-plan.pro[data-props*="shadow"]:hover {
  transform: translateY(-8px) scale(1.06);
}

/* Subtle shine effect on pricing cards - uses isolation for clean z-index */
.wkPricingTable .pricingTable .col.wk-price-plan::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--radius-box);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.wkPricingTable .pricingTable .col.wk-price-plan:hover::after {
  opacity: 1;
}

/* Ensure content in pricing cards stays above shine effect */
.wkPricingTable .pricingTable .col.wk-price-plan > * {
  position: relative;
  z-index: 2;
}

/* Feature/Service blocks with box & shadow - add modern hover effect */
/* Excludes pricing plans to prevent double effect */
.col[data-props*="box"][data-props*="shadow"]:not(.wk-price-plan) {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.col[data-props*="box"][data-props*="shadow"]:not(.wk-price-plan):hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg) !important;
}

/* Generic card styling for any element with data-card attribute */
[data-card] {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

[data-card]:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

[data-flex*=row] {
  flex-direction: row;
}

#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 4.375rem;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease-in-out;
  backface-visibility: hidden;
}
#mainHeader::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.3s ease-in-out;
}
#mainHeader.scrolled::before {
  background-color: rgba(255, 255, 255, 0.98);
}
#mainHeader.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
#mainHeader.scrolled[data-theme=dark] .logo {
  background-image: url("../images/logo-blk.svg");
}
#mainHeader.scrolled[data-theme=dark] {
  --color-text: #5B686D;
  --color-title: #000000;
}
@media (max-width: 1000px) {
  #mainHeader {
    height: 60px;
  }
}
@media (max-width: 641px) {
  #mainHeader {
    height: 50px;
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
}
@media (max-width: 375px) {
  #mainHeader {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
#mainHeader .wrap {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#mainHeader .wrap > ul {
  flex-direction: row;
  align-items: center;
  position: unset;
  column-gap: 2.5rem;
}
@media (max-width: 1140px) {
  #mainHeader .wrap > ul {
    column-gap: 1.25rem;
  }
}
#mainHeader .wrap > ul > li {
  position: unset;
  align-self: center;
  display: grid;
  grid-template-columns: auto;
  align-items: center;
}
#mainHeader .wrap > ul > li > a {
  text-transform: capitalize;
  font-weight: 400;
  transition: color 0.15s ease-out;
}
#mainHeader .wrap > ul > li > a:not(.button) {
  color: var(--color-text);
}
#mainHeader .wrap > ul > li > a.button {
  font-size: 0.875rem;
}
#mainHeader .wrap > ul > li > a:hover {
  transition: color 0.15s ease-out;
}
#mainHeader .wrap > ul > li > a:hover:not(.button) {
  color: var(--color-title);
}

/* Arrow-style menu link — apply class "menu-arrow-link" via
   Appearance → Menus → Screen Options → CSS Classes on the menu item.
   Slightly more subtle than the other nav items (smaller text + tighter
   icon gap) so the primary CTA button stays the focal point. */
#mainHeader .wrap > ul > li.menu-arrow-link > a:not(.button) {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  opacity: 0.78;
  transition: color 0.15s ease-out, gap 0.15s ease-out, opacity 0.15s ease-out;
}
#mainHeader .wrap > ul > li.menu-arrow-link > a:not(.button)::after {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 7px;
  height: 11px;
  background-image: url("../images/arrow-right-blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.15s ease-out;
}
#mainHeader[data-theme=dark] .wrap > ul > li.menu-arrow-link > a:not(.button)::after {
  filter: brightness(0) invert(1);
}
/* When the header is scrolled the background turns white and text flips to
   dark, so the arrow must drop the white filter and use its native blue. */
#mainHeader.scrolled[data-theme=dark] .wrap > ul > li.menu-arrow-link > a:not(.button)::after {
  filter: none;
}
#mainHeader .wrap > ul > li.menu-arrow-link > a:not(.button):hover {
  gap: 0.45rem;
  opacity: 1;
}
#mainHeader .wrap > ul > li.menu-arrow-link > a:not(.button):hover::after {
  transform: translateX(3px);
}
/* Mobile drawer */
#mobileMenuWrap ul.mainMenu li.menu-arrow-link > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
#mobileMenuWrap ul.mainMenu li.menu-arrow-link > a::after {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 7px;
  height: 11px;
  background-image: url("../images/arrow-right-blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#mainHeader .wrap > ul > li.hasSubmenu {
  text-transform: capitalize;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 10px;
}
#mainHeader .wrap > ul > li.hasSubmenu::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: solid 1.5px var(--color-text);
  border-bottom: solid 1.5px var(--color-text);
  transform: rotate(45deg);
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu {
  text-transform: none;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  padding-top: 69px;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  width: 100%;
  background-color: white;
  transform: translateY(-100%);
  opacity: 0;
  visibility: collapse;
  transition: transform 0.2s ease-in-out 0s, opacity 0.1s ease-in-out 0.1s, visibility 0.1s ease 0.2s;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu ul {
  margin: 0 auto;
  width: 100%;
  max-width: 1230px;
  padding-top: 3rem;
  padding-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu ul li {
  display: grid;
  grid-template-columns: 36px auto;
  row-gap: 0.625rem;
  position: relative;
  justify-items: start;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu ul li > * {
  margin: 0;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu ul li img {
  grid-column: 1;
  position: absolute;
  max-width: 38px;
  max-height: 38px;
  width: 100%;
  height: auto;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu ul li a {
  color: var(--color-title);
  font-size: 1.25rem;
  font-weight: 500;
  grid-column: 2;
  display: inline-block;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu ul li a:hover {
  color: var(--color-primary);
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu ul li p {
  grid-column: 2;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped {
  margin: 0 auto;
  width: 100%;
  max-width: 1230px;
  padding-top: 3rem;
  padding-bottom: 2rem;
  display: flex;
  gap: 4rem;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group {
  flex: 1;
  min-width: 0;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  opacity: 0.5;
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group ul li {
  display: grid;
  grid-template-columns: 36px auto;
  row-gap: 0.625rem;
  position: relative;
  justify-items: start;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group ul li > * {
  margin: 0;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group ul li img {
  grid-column: 1;
  position: absolute;
  max-width: 38px;
  max-height: 38px;
  width: 100%;
  height: auto;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group ul li a {
  color: var(--color-title);
  font-size: 1.25rem;
  font-weight: 500;
  grid-column: 2;
  display: inline-block;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group ul li a:hover {
  color: var(--color-primary);
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group ul li p {
  grid-column: 2;
}
#mainHeader .wrap > ul > li.hasSubmenu:hover {
  cursor: pointer;
}
#mainHeader .wrap > ul > li.hasSubmenu:hover .submenu {
  cursor: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: transform 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0.1s, visibility 0.1s ease 0s;
}
@media (max-width: 1000px) {
  #mainHeader .wrap > ul > li {
    display: none;
  }
  #mainHeader .wrap > ul > li.hasSubmenu {
    display: none;
  }
  #mainHeader .wrap > ul > li:nth-last-child(2), #mainHeader .wrap > ul > li:nth-last-child(3) {
    display: flex;
  }
}
@media (max-width: 639px) {
  #mainHeader .wrap > ul > li:nth-last-child(2), #mainHeader .wrap > ul > li:nth-last-child(3) {
    display: none;
  }
}
#mainHeader .wrap > ul .menuTrigger {
  display: none;
  align-items: center;
  align-self: auto;
  margin-left: 1rem;
}
@media (max-width: 1000px) {
  #mainHeader .wrap > ul .menuTrigger {
    display: flex;
  }
}
#mainHeader .wrap > ul .menuTrigger button {
  border-radius: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 30px;
  height: 12px;
  min-height: auto;
  padding: 0;
  justify-content: space-between;
  background-color: transparent;
}
@media (max-width: 639px) {
  #mainHeader .wrap > ul .menuTrigger button {
    width: 30px;
    height: 12px;
  }
}
#mainHeader .wrap > ul .menuTrigger button::before, #mainHeader .wrap > ul .menuTrigger button::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-title);
  transition: width 0.15s ease-out;
}
#mainHeader .wrap > ul .menuTrigger button::after {
  width: 75%;
}
#mainHeader .wrap > ul .menuTrigger button:hover {
  transform: none;
}
#mainHeader .logo {
  width: 157px;
  height: 24px;
  background-image: url("../images/logo-blk.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 639px) {
  #mainHeader .logo {
    width: 136px;
    height: 23px;
  }
}
#mainHeader[data-theme=dark] .logo {
  background-image: url("../images/logo-white.svg");
}
#mainHeader[data-theme=dark].active {
  --color-text: #5B686D;
  --color-title: #000000;
}
#mainHeader[data-theme=dark].active .logo {
  background-image: url("../images/logo-blk.svg");
}

#mainFooter {
  padding-top: 7.5rem;
  padding-bottom: 3.75rem;
  background-color: white;
}
#mainFooter .logo {
  width: 157px;
  max-width: 100%;
  height: 24px;
  background-image: url("../images/logo-blk.svg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
}
#mainFooter a {
  color: var(--color-text);
  font-weight: 400;
  transition: color 0.15s ease-out;
}
#mainFooter a:hover {
  color: var(--color-title);
  transition: color 0.15s ease-out;
}
#mainFooter > .grid:nth-of-type(1) .col ul {
  gap: 0;
  text-transform: capitalize;
}
#mainFooter > .grid:nth-of-type(1) .nav {
  column-gap: 3.5rem;
}
#mainFooter > .grid:nth-of-type(1) .nav ul {
  gap: 1.5rem;
}
#mainFooter > .grid:nth-of-type(1) .nav .title {
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--color-title);
}
#mainFooter > .grid + .grid {
  border-top: solid 1px rgba(var(--color-border), 1);
  padding-top: 0.75rem;
  align-items: center;
}
#mainFooter > .grid + .grid p {
  margin: 0;
}
#mainFooter > .grid + .grid a {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  background-color: transparent;
  transition: background-color 0.15s ease-out;
}
#mainFooter > .grid + .grid a.facebook::before {
  content: url("../images/icon-social-facebook.svg");
}
#mainFooter > .grid + .grid a.instagram::before {
  content: url("../images/icon-social-instagram.svg");
}
#mainFooter > .grid + .grid a.linkedin::before {
  content: url("../images/icon-social-linkedin.svg");
}
#mainFooter > .grid + .grid a.x::before {
  content: url("../images/icon-social-x.svg");
}
#mainFooter > .grid + .grid a:hover {
  background-color: rgba(var(--color-border), 0.48);
  transition: background-color 0.15s ease-out;
}
#mainFooter > .grid + .grid ul {
  align-items: center;
  gap: 0.75rem;
}
#mainFooter[data-theme=dark] {
  --color-text: #5B686D;
  background-color: var(--color-secondary-01);
}
#mainFooter[data-theme=dark] .logo {
  background-image: url("../images/logo-white.svg");
}
#mainFooter[data-theme=dark] > .grid + .grid a:hover {
  background-color: rgba(var(--color-border), 0.24);
  transition: background-color 0.15s ease-out;
}
@media (max-width: 941px) {
  #mainFooter {
    padding-top: 6rem;
    padding-bottom: 3rem;
    row-gap: 3rem;
  }
  #mainFooter > .grid:nth-of-type(1) .nav {
    column-gap: 2rem;
  }
  #mainFooter > .grid:nth-of-type(1) .nav ul {
    gap: 1.125rem;
  }
}
@media (max-width: 780px) {
  #mainFooter > .grid:nth-of-type(1) {
    flex-direction: column-reverse;
    gap: 4rem;
  }
  #mainFooter > .grid:nth-of-type(1) .col {
    width: 100%;
  }
  #mainFooter > .grid:nth-of-type(1) .col:nth-of-type(1):not(.nav) {
    display: grid;
    grid-template-columns: 2fr 1fr;
    position: relative;
    gap: var(--gap);
  }
  #mainFooter > .grid:nth-of-type(1) .col:nth-of-type(1):not(.nav) .logo {
    grid-column: 1;
    grid-row: 1;
    position: absolute;
    top: 0;
    left: 0;
  }
  #mainFooter > .grid:nth-of-type(1) .col:nth-of-type(1):not(.nav) ul {
    grid-column: 1;
    grid-row: 1;
    margin-top: 40px;
  }
  #mainFooter > .grid:nth-of-type(1) .col:nth-of-type(1):not(.nav) img {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  #mainFooter > .grid:nth-of-type(1) .col.nav {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--gap);
  }
  #mainFooter > .grid:nth-of-type(1) .col.nav > li:nth-child(1) ul {
    display: grid;
    grid-template-columns: 2fr 3fr;
  }
  #mainFooter > .grid:nth-of-type(1) .col.nav > li:nth-child(1) ul li:nth-child(1) {
    grid-column: 1/span 2;
  }
}
@media (max-width: 641px) {
  #mainFooter {
    padding-top: 3.75rem;
    padding-bottom: 1.875rem;
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  #mainFooter > .grid:nth-of-type(1) {
    gap: 3rem;
  }
  #mainFooter > .grid:nth-of-type(1) .col.nav {
    grid-template-columns: 1fr 1fr 1fr;
  }
  #mainFooter > .grid:nth-of-type(1) .col.nav > li:nth-child(1) ul {
    grid-template-columns: 1fr;
  }
  #mainFooter > .grid:nth-of-type(1) .col.nav > li:nth-child(1) ul li:nth-child(1) {
    grid-column: 1;
  }
}
@media (max-width: 577px) {
  #mainFooter > .grid:nth-of-type(1) .col.nav {
    grid-template-columns: 1fr;
  }
  #mainFooter > .grid:nth-of-type(1) .col.nav > li:nth-child(1) ul {
    grid-template-columns: 1fr 1fr;
  }
  #mainFooter > .grid:nth-of-type(1) .col.nav > li:nth-child(1) ul li:nth-child(1) {
    grid-column: 1/span 2;
  }
  #mainFooter > .grid:nth-of-type(1) .col.nav > li ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  #mainFooter > .grid:nth-of-type(1) .col.nav > li ul li:nth-child(1) {
    grid-column: 1/span 2;
  }
  #mainFooter > .grid + .grid {
    gap: 1rem;
  }
  #mainFooter > .grid + .grid a {
    background-color: rgba(var(--color-border), 0.48);
  }
}
@media (max-width: 479px) {
  #mainFooter > .grid:nth-of-type(1) .col {
    width: 100%;
  }
  #mainFooter > .grid:nth-of-type(1) .col:nth-of-type(1):not(.nav) {
    grid-template-columns: 1fr;
  }
  #mainFooter > .grid:nth-of-type(1) .col:nth-of-type(1):not(.nav) .logo {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    top: auto;
    left: auto;
  }
  #mainFooter > .grid:nth-of-type(1) .col:nth-of-type(1):not(.nav) ul {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
  }
  #mainFooter > .grid:nth-of-type(1) .col:nth-of-type(1):not(.nav) img {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
  }
}

body.home .hero {
  overflow: hidden;
}
body.home .hero:not([data-background])::before {
  content: url("../images/dots-dark-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Hero element spacing for better visual hierarchy */
.hero .col > h1,
.hero .col > h2 {
  margin-bottom: 1.25rem;
}

.hero .col > p {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.hero .col > p:last-of-type {
  margin-bottom: 1.75rem;
}

.hero .section-buttons {
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

body.home .hero .logos {
  max-width: 23.4375rem;
  column-gap: 2.5rem;
  row-gap: 24px;
}
body.home .hero .tag {
  color: white;
}
body.home .hero .tags {
  gap: 10px;
}
body.home .up-to-21 {
  overflow: hidden;
}
body.home .up-to-21::before {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.home .protect .grid:nth-last-of-type(1) .col {
  justify-content: center;
}
body.home .howItWorks,
.wk-ellipse-section {
  overflow: hidden;
}
body.home .howItWorks::before,
.wk-ellipse-section::before {
  content: url("../images/ellipse03.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
}
body.home .howItWorks::after,
.wk-ellipse-section::after {
  content: url("../images/dots-white-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.home .howItWorks ol li::before,
.wk-ellipse-section ol li::before {
  top: 0.3rem;
}
body.home .features {
  overflow: hidden;
}
body.home .features .grid:nth-of-type(2)::before,
body.home .features .grid:nth-last-child(3)::before {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.features .imgWrap {
  position: relative;
}
.features .imgWrap img {
  position: relative;
  z-index: 2;
}
.features .imgWrap img.shadow {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  filter: blur(50px);
}
body.home .features .stats {
  margin-top: 6.25rem;
}
body.home .features .stats span {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #00AEEF 0%, #8FE1FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.home .cta {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  overflow: hidden;
}
body.home .cta .imgWrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
body.home .cta .imgWrap + .col {
  gap: 1rem;
}
body.home .cta .imgWrap + .col .button {
  margin-top: 1.5rem;
}
@media (max-width: 1241px) {
  body.home .hero {
    padding-bottom: 0;
  }
  body.home .hero::before {
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  body.home .hero .grid {
    justify-content: center;
    text-align: center;
  }
  body.home .hero .grid .col {
    width: 84%;
    max-width: 75%;
    align-items: center;
  }
  body.home .hero .grid .logos {
    max-width: 100%;
  }
  body.home .hero .grid .logos .tags {
    gap: 5px;
  }
  body.home .hero .grid .imgWrap {
    margin-bottom: -5rem;
  }
  body.home .aiSolution .grid {
    align-items: flex-start;
  }
}
@media (max-width: 993px) {
  body.home .hero .grid .col {
    width: 100%;
    max-width: 100%;
  }
  body.home .hero .grid .logos {
    justify-content: center;
  }
  body.home .aiSolution .grid {
    flex-direction: column-reverse;
    gap: 4rem;
  }
  body.home .aiSolution .grid .col {
    width: 100%;
    min-width: 100%;
    text-align: center;
  }
  body.home .cta {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    overflow: hidden;
  }
  body.home .cta .grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
  }
  body.home .cta .grid .col {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 841px) {
  body.home .features .stats span {
    font-size: 3rem;
  }
}
@media (max-width: 900px) {
  .protect .grid .col[data-col="4"] {
    width: calc(50% - 15px) !important;
    max-width: calc(50% - 15px) !important;
    min-width: auto !important;
    flex-basis: calc(50% - 15px) !important;
  }
}
@media (max-width: 769px) {
  body.home .up-to-21 .grid {
    align-items: start;
  }
  body.home .howItWorks .grid,
  .wk-ellipse-section .grid {
    gap: 4rem;
  }
  body.home .howItWorks .grid .col,
  .wk-ellipse-section .grid .col{
    width: 100%;
    max-width: 100%;
  }
  .protect .grid .col[data-col="4"] {
    width: calc(50% - 15px) !important;
    max-width: calc(50% - 15px) !important;
    min-width: auto !important;
    flex-basis: calc(50% - 15px) !important;
  }
  body.home .features .grid:not(:first-child) {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }
  body.home .features .grid:not(:first-child) .col {
    width: 100%;
    max-width: 100%;
  }
  body.home .features .grid:not(:first-child) .imgWrap {
    grid-row: 1;
  }
  body.home .features .stats {
    margin-top: 2.25rem;
  }
  body.home .features .stats span {
    font-size: 2.25rem;
  }
  body.home .cta .grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  body.home .cta .grid .imgWrap {
    height: 15.625rem;
  }
  body.home .cta .grid .imgWrap + .col {
    grid-row: 2;
    text-align: center;
  }
  body.home .cta .grid .imgWrap + .col > * {
    align-self: center;
  }
}
@media (max-width: 641px) {
  body.home .up-to-21 .grid .col {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  body.home .up-to-21 .grid .col > * {
    align-self: center;
  }
  body.home .howItWorks ol li::before,
  .wk-ellipse-section ol li::before {
    top: 0.1rem;
  }
  body.home .protect .grid {
    row-gap: 3rem;
  }
  body.home .features .stats {
    margin-top: 0;
  }
}
@media (max-width: 479px) {
  body.home .hero .grid .imgWrap {
    margin-bottom: -3rem;
  }
  .protect .grid .col[data-col="4"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
    flex-basis: 100% !important;
  }
  body.home .features .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body.home .features .stats .col {
    width: 100%;
    max-width: 100%;
  }
  body.home .cta h1 {
    font-size: 2rem;
  }
}
@media (max-width: 375px) {
  body.home .hero .grid .imgWrap {
    margin-bottom: -1rem;
  }
}

body.aboutUs .hero .grid {
  overflow: hidden;
}
body.aboutUs .hero:not([data-background]) .grid::before {
  content: url("../images/dots-dark-fade.svg");
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
body.aboutUs .hero .grid .col {
  z-index: 2;
}
body.aboutUs .hero .grid b {
  color: var(--color-title);
}
body.aboutUs .valuePPC, .wk-multi-sections-module {
  overflow: hidden;
}
body.aboutUs .valuePPC::before, .wk-multi-sections-module:not([data-background])::before {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
body.aboutUs .valuePPC .grid:nth-of-type(1) h4, .wk-multi-sections-module .grid:nth-of-type(1) h4 {
  color: var(--color-text);
}
body.aboutUs .valuePPC .grid:nth-last-of-type(1), .wk-multi-sections-module .grid:nth-last-of-type(1) {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-items: center;
  align-items: center;
}
/* Logo images directly in grid (without .logo-box wrapper) */
body.aboutUs .valuePPC .grid:nth-last-of-type(1) > img,
.wk-multi-sections-module .grid:nth-last-of-type(1) > img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.wk-multi-sections-module .logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 100px;
}
.wk-multi-sections-module .logo-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.wk-multi-sections-module .logo-box[data-props*="box"] {
  padding: 0.625rem;
}
body.aboutUs .timeline, .wk-timeline-module {
  overflow: hidden;
}
body.aboutUs .timeline::before, body.aboutUs .timeline::after, .wk-timeline-module::before, .wk-timeline-module::after {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
body.aboutUs .timeline::before, .wk-timeline-module::before {
  top: 0;
}
body.aboutUs .timeline::after, .wk-timeline-module::after {
  bottom: 0;
}
.team {
  background-image: url("../images/team-back.svg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 60%;
}
.team .col {
  row-gap: 0;
}
.team .col h5 {
  margin-top: 1rem;
}
.team .grid {
  z-index: 2;
}
@media (max-width: 769px) {
  body.aboutUs .hero .grid, .wk_gradientDarkDots .grid {
    flex-direction: column-reverse;
  }
  body.aboutUs .hero .grid::before, .wk_gradientDarkDots .grid::before {
    content: none;
  }
  body.aboutUs .hero .grid .col, .wk_gradientDarkDots .grid .col {
    width: 100%;
    max-width: 100%;
    --color-text: white;
  }
  body.aboutUs .hero .grid h2, body.aboutUs .hero .grid p, .wk_gradientDarkDots .grid p {
    text-align: center;
  }
  body.aboutUs .valuePPC .grid:nth-of-type(1) .col,
  body.aboutUs .valuePPC .grid:nth-of-type(3) .col,
  .wk-multi-sections-module .grid:nth-of-type(1) .col,
  .wk-multi-sections-module .grid:nth-of-type(3) .col {
    width: 100%;
    max-width: 100%;
  }
  body.aboutUs .valuePPC .grid:nth-last-of-type(1), .wk-multi-sections-module .grid:nth-last-of-type(1){
    grid-template-columns: repeat(3, 1fr);
  }
  .wk-multi-sections-module .logo-box {
    width: 120px;
    height: 80px;
  }
}
@media (max-width: 641px) {
  body.aboutUs .valuePPC .grid:nth-of-type(2), .wk-multi-sections-module .grid:nth-of-type(2){
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body.aboutUs .valuePPC .grid:nth-of-type(2) .col, .wk-multi-sections-module .grid:nth-of-type(2) .col{
    width: 100%;
    max-width: 100%;
  }
  body.aboutUs .timeline .grid, .wk-timeline-module .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body.aboutUs .timeline .grid .col, .wk-timeline-module .grid .col{
    width: 100%;
    max-width: 100%;
  }
  .team {
    background-size: 100%;
  }
 .team .grid .col {
    width: 100%;
    min-width: 100%;
  }
 .team .grid:nth-last-of-type(1) {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 479px) {
  body.aboutUs .valuePPC .grid:nth-last-of-type(1), .wk-multi-sections-module .grid:nth-last-of-type(1) {
    grid-template-columns: repeat(2, 1fr);
  }
  .wk-multi-sections-module .logo-box {
    width: 100px;
    height: 70px;
  }
  body.aboutUs .timeline .grid, .wk-timeline-module .grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  body.aboutUs .timeline .grid:nth-of-type(odd) .imgWrap, .wk-timeline-module .grid:nth-of-type(odd) .imgWrap{
    grid-row: 1;
  }
}

.wk-articles-module.articles,
body.blog .articles,
body.whitepapers .articles {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -6.25rem;
  row-gap: 3.75rem;
}
.wk-articles-module.articles.wk-has-search-bar {
    margin-top: -30px;
}

.wk-articles-module.articles.wk-has-search-bar input[type=search] {
    border: none !important;
    min-height: 60px;
    box-shadow: 10px 15px 45px 0 rgba(21, 44, 41, 0.12);
    padding-left: var(--gap);
    padding-right: var(--gap);
    color: var(--color-text);
}
 
.wk-articles-module.articles .imgWrap,
body.blog .articles .imgWrap,
body.whitepapers .articles .imgWrap {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 65%;
  position: relative;
  border-radius: var(--radius-box);
  box-shadow: 10px 15px 45px 0 rgba(21, 44, 41, 0.12);
  background-color: #ffffff;
}
.wk-articles-module.articles .imgWrap img,
body.blog .articles .imgWrap img,
body.whitepapers .articles .imgWrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  height: auto;
}
.wk-articles-module.articles article,
body.blog .articles article,
body.whitepapers .articles article {
  gap: 0;
}
.wk-articles-module.articles article a,
body.blog .articles article a,
body.whitepapers .articles article a {
  transition: transform 0.15s ease-in, box-shadow 0.15s ease-in;
}
.wk-articles-module.articles a h4,
body.blog .articles article a h4,
body.whitepapers .articles article a h4 {
  transition: color 0.15s ease-out;
}
.wk-articles-module.articles article a.imgWrap:hover,
body.blog .articles article a.imgWrap:hover,
body.whitepapers .articles article a.imgWrap:hover {
  transform: translateY(-5px);
}
.wk-articles-module.articles article a:hover,
body.blog .articles article a:hover,
body.whitepapers .articles article a:hover {
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}
.wk-articles-module.articles article a:hover h4,
body.blog .articles article a:hover h4,
body.whitepapers .articles article a:hover h4 {
  color: var(--color-text);
  transition: color 0.15s ease-out;
}
.wk-articles-module.articles article span,
body.blog .articles article span,
body.whitepapers .articles article span {
  color: var(--color-title);
}
.wk-articles-module.articles > .grid:nth-child(1),
body.blog .articles > .grid:nth-child(1),
body.whitepapers .articles > .grid:nth-child(1) {
  row-gap: 3.75rem;
}
@media (max-width: 993px) {
  body.blog #mainHeader + .row,
  body.whitepapers #mainHeader + .row {
    padding-top: 6.25rem;
  }
  body.blog .hero,
  body.whitepapers .hero {
    padding-bottom: 9.375rem;
  }
  body.blog .hero .grid .col,
  body.whitepapers .hero .grid .col {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 641px) {
  .wk-articles-module.articles .grid .col,
  body.blog .articles .grid .col,
  body.whitepapers .articles .grid .col {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 479px) {
  .wk-articles-module.articles > .grid:nth-child(1),
  body.blog .articles > .grid:nth-child(1),
  body.whitepapers .articles > .grid:nth-child(1) {
    row-gap: 2rem;
  }
}
@media (max-width: 375px) {
  body.blog .hero,
  body.whitepapers .hero {
    padding-bottom: 7.5rem;
  }
}

body.article .hero p {
  color: white;
}
body.article .hero p span {
  font-weight: 600;
}
body.article .content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -6.25rem;
  row-gap: 3.75rem;
}
body.article .content .cover .imgWrap {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 45%;
  position: relative;
  border-radius: var(--radius-box);
  box-shadow: 10px 15px 45px 0 rgba(21, 44, 41, 0.12);
  background-color: #ffffff;
}
body.article .content .cover .imgWrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 993px) {
  body.article .hero .grid .col {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 769px) {
  body.article .hero {
    padding-bottom: 9.375rem;
  }
}
@media (max-width: 641px) {
  body.article .content {
    row-gap: 2.25rem;
  }
  body.article .content .cover + .grid .col {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 479px) {
  body.article .hero h2 {
    font-size: 1.6rem;
  }
  body.article .content .cover .imgWrap {
    padding-top: 60%;
  }
}

body.whitepaper .content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -6.25rem;
  row-gap: 3.75rem;
}
body.whitepaper .content .cover .imgWrap {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 64%;
  position: relative;
  border-radius: var(--radius-box);
  box-shadow: 10px 15px 45px 0 rgba(21, 44, 41, 0.12);
}
body.whitepaper .content .cover .imgWrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.whitepaper .content .cover + .grid img {
  border-radius: var(--radius-box);
}
@media (max-width: 993px) {
  body.whitepaper #mainHeader + .row {
    padding-top: 7.5rem;
  }
  body.whitepaper .hero .grid .col,
  body.whitepaper .content .grid .col {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 769px) {
  body.whitepaper .hero {
    padding-bottom: 7.5rem;
  }
  body.whitepaper .hero .grid .col {
    gap: 0.2rem;
  }
}
@media (max-width: 479px) {
  body.whitepaper .hero h2 {
    font-size: 1.5rem;
  }
  body.whitepaper .content {
    gap: 2rem;
  }
}

body.caseStudies .hero {
  padding-bottom: 14.125rem;
}
body.caseStudies .cases {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -176px;
}
body.caseStudies .cases .grid {
  align-items: stretch;
}
body.caseStudies .cases article {
  position: relative;
  padding: 0 0 var(--gap);
}
body.caseStudies .cases article .imgWrap {
  width: 100%;
  height: 0;
  padding-top: 176px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-box) var(--radius-box) 0 0;
}
body.caseStudies .cases article .imgWrap img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
body.caseStudies .cases article h4 {
  padding-left: var(--gap);
  padding-right: var(--gap);
  margin-bottom: 1rem;
}
body.caseStudies .cases article .case-study-stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-left: var(--gap);
  padding-right: var(--gap);
  margin-bottom: 1.5rem;
  list-style: none;
}
body.caseStudies .cases article .case-study-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1.25rem;
  position: relative;
}
body.caseStudies .cases article .case-study-stats li::before {
  content: url("../images/icon-arrow-top-blue.svg");
  position: absolute;
  top: 0.25rem;
  left: 0;
}
body.caseStudies .cases article .case-study-stats .stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}
body.caseStudies .cases article .case-study-stats .stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-secondary);
}
body.caseStudies .cases article .details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-left: var(--gap);
  padding-right: var(--gap);
  row-gap: 1rem;
}
@media (max-width: 769px) {
  body.caseStudies #mainHeader + .row {
    padding-top: 7.5rem;
  }
  body.caseStudies .hero .grid .col,
  body.caseStudies .cases .grid .col {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 479px) {
  body.caseStudies .hero {
    padding-bottom: 11rem;
  }
  body.caseStudies .cases {
    margin-top: -120px;
  }
  body.caseStudies .cases article {
    padding: 0 0 1.2rem;
  }
  body.caseStudies .cases article .imgWrap {
    padding-top: 120px;
  }
  body.caseStudies .cases article h4, 
  body.caseStudies .cases article .case-study-stats,
  body.caseStudies .cases article .details {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  body.caseStudies .cases article .case-study-stats .stat-value {
    font-size: 1.5rem;
  }
}
@media (max-width: 375px) {
  body.caseStudies .hero {
    padding-bottom: 7.5rem;
  }
  body.caseStudies .cases {
    margin-top: -96px;
  }
  body.caseStudies .cases article .imgWrap {
    padding-top: 96px;
  }
}

/* Tools Overview Page */
body.tools .toolsGrid {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -176px;
}
.toolsGrid .grid {
  align-items: stretch;
}
.toolsGrid .toolCard {
  position: relative;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.toolsGrid .toolCard:hover {
  transform: translateY(-6px);
}
.toolsGrid .toolCard .toolCard-accent {
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-lite));
  flex-shrink: 0;
}
.toolsGrid .toolCard .toolCard-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem 0;
}
.toolsGrid .toolCard .toolCard-icon img {
  max-width: 72px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.toolsGrid .toolCard .toolCard-icon svg {
  width: 48px;
  height: 48px;
}
.toolsGrid .toolCard .toolCard-body {
  padding: 1.25rem 2rem 0;
  flex: 1;
}
.toolsGrid .toolCard .toolCard-title {
  margin-bottom: 0.625rem;
  font-size: 1.375rem;
  color: var(--color-title);
}
.toolsGrid .toolCard .toolCard-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 0;
}
.toolsGrid .toolCard .toolCard-action {
  padding: 1.5rem 2rem 2rem;
}
@media (max-width: 769px) {
  body.tools #mainHeader + .row {
    padding-top: 7.5rem;
  }
  .toolsGrid .grid .col {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 479px) {
  body.tools .hero {
    padding-bottom: 11rem;
  }
  body.tools .toolsGrid {
    margin-top: -120px;
  }
  .toolsGrid .toolCard .toolCard-icon {
    padding: 1.5rem 1.5rem 0;
  }
  .toolsGrid .toolCard .toolCard-body,
  .toolsGrid .toolCard .toolCard-action {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 375px) {
  body.tools .hero {
    padding-bottom: 7.5rem;
  }
  body.tools .toolsGrid {
    margin-top: -96px;
  }
}

body.study .contentWrap {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 2;
}
body.study .cover .imgWrap {
  width: 100%;
  height: 0;
  padding-top: 32%;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-box);
}
body.study .cover .imgWrap img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
body.study .cover .stats {
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
}
body.study .cover .stats li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1.25rem;
  position: relative;
  text-align: left;
}
body.study .cover .stats .stat-value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}
body.study .cover .stats .stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-secondary);
}
body.study .cover .stats li::before {
  content: url("../images/icon-arrow-top-blue.svg");
  position: absolute;
  top: 0.25rem;
  left: 0;
}
body.study .related {
  margin-top: var(--gap);
}
body.study .related > div {
  display: flex;
  flex-direction: row;
  gap: var(--gap);
}
body.study .related > div article {
  position: relative;
  padding: 0 0 var(--gap);
}
body.study .related > div article .imgWrap {
  width: 100%;
  height: 0;
  padding-top: 115px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-box) var(--radius-box) 0 0;
}
body.study .related > div article .imgWrap img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
body.study .related > div article h4 {
  padding-left: var(--gap);
  padding-right: var(--gap);
  flex-grow: 1;
}
body.study .related > div article .details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: var(--gap);
  justify-content: space-between;
  padding-left: var(--gap);
  padding-right: var(--gap);
}
body.study .related > div article .details ul {
  row-gap: 0.24rem;
}
body.study .related > div article .details ul li {
  padding-left: 1rem;
  position: relative;
}
body.study .related > div article .details ul li::before {
  content: url("../images/icon-arrow-top-blue.svg");
  position: absolute;
  top: 0.36rem;
  left: 0;
}
@media (max-width: 1241px) {
  body.study .hero .grid .col {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 993px) {
  body.study .contentWrap .col {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 769px) {
  body.study #mainHeader + .row {
    padding-top: 6.25rem;
  }
  body.study .related > div {
    flex-direction: column;
  }
  body.study .related > div .col {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 641px) {
  body.study .hero h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 479px) {
  body.study .hero {
    padding-bottom: 5.25rem;
  }
  body.study .hero h2 {
    font-size: 1.4rem;
  }
  body.study .contentWrap {
    margin-top: 0;
  }
}
@media (max-width: 375px) {
  body.study .cover .stats {
    gap: 1.5rem;
  }
  body.study .cover .stats .stat-value {
    font-size: 1.5rem;
  }
  body.study .cover .stats .stat-label {
    font-size: 0.85rem;
  }
  body.study .cover .stats li {
    gap: 0.2rem;
    padding-left: 0.8rem;
  }
  body.study .cover .stats li::before {
    top: 0.2rem;
  }
}

body.faq .hero + .row {
  padding-top: 0;
  padding-bottom: 0;
  z-index: 2;
  margin-top: -30px;
}
body.faq .hero + .row form input[type=search], .wk-faq-module.row form input[type=search] {
  border: none!important;
  min-height: 60px;
  box-shadow: 10px 15px 45px 0 rgba(21, 44, 41, 0.12);
  padding-left: var(--gap);
  padding-right: var(--gap);
}
body.faq .hero + .row p a, .wk-faq-module p a {
  font-weight: 400;
  color: var(--color-text);
  transition: color 0.15s ease-out;
}
body.faq .hero + .row p a:hover, .wk-faq-module p a:hover {
  color: var(--color-primary);
  transition: color 0.15s ease-out;
}
body.faq .hero + .row p + a {
  color: var(--color-primary);
}
body.faq .hero + .row .accordion, .wk-faq-module .accordion, .wk-faq-module .accordion-links {
  display: flex !important;
  flex-direction: column !important;
  list-style: none !important;
  gap: 0 !important;
}
body.faq .hero + .row .accordion h5, .wk-faq-module .accordion h5 {
  padding-right: var(--gap);
}
body.faq .hero + .row .accordion h5:hover, .wk-faq-module .accordion h5:hover {
  cursor: pointer;
}
body.faq .hero + .row .accordion article, .wk-faq-module .accordion article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  display: none;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
body.faq .hero + .row .accordion article > *, .wk-faq-module .accordion article * {
  margin: 0;
  padding: 0;
}
body.faq .hero + .row .accordion article > *:nth-of-type(1), .wk-faq-module .accordion article > *:nth-of-type(1){
  padding-top: 1rem;
}
body.faq .hero + .row .accordion > li, .wk-faq-module .accordion > li, .wk-faq-module .accordion-links > li {
  display: block !important;
  list-style: none !important;
  flex-direction: unset !important;
  gap: unset !important;
  position: relative;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: solid 1px rgba(var(--color-border), 1);
}
body.faq .hero + .row .accordion > li::before, .wk-faq-module .accordion > li::before {
  content: "";
  width: 10px;
  height: 2px;
  background-color: var(--color-text);
  position: absolute;
  right: 0;
  top: 30px;
}
body.faq .hero + .row .accordion > li::after, .wk-faq-module .accordion > li::after {
  content: "";
  width: 2px;
  height: 10px;
  background-color: var(--color-text);
  position: absolute;
  right: 4px;
  top: 26px;
}
body.faq .hero + .row .accordion > li.active::after, .wk-faq-module .accordion > li.active::after{
  display: none;
}
body.faq .hero + .row .accordion > li:nth-last-child(1), .wk-faq-module .accordion > li:nth-last-child(1), .wk-faq-module .accordion-links > li:nth-last-child(1){
  border-bottom: none;
}
@media (max-width: 993px) {
  body.faq .hero {
    padding-bottom: 3.75rem;
  }
  body.faq .hero .grid .col {
    width: 100%;
    max-width: 100%;
  }
  body.faq .hero + .row .grid .col, .wk-faq-module .grid .col {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 769px) {
  body.faq #mainHeader + .row {
    padding-top: 6.25rem;
  }
}

body.requestDemo .hero, .hero.wk_greyBlueDots {
  overflow: hidden;
  background-image: url("../images/dots-lite-fade.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
body.requestDemo .formWrap, .wkContactForm {
  --color-border:235, 237, 238;
  overflow: hidden;
}
body.requestDemo .formWrap:not([data-background])::before, .wkContactForm:not([data-background])::before {
  content: url("../images/dots-dark-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.requestDemo .formWrap form > div, .wkContactForm form > div {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
@media (max-width: 1241px) {
  body.requestDemo .hero .grid, .hero.wk_greyBlue .grid, .hero.wk_greyBlueDots .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body.requestDemo .hero .grid .col, .hero.wk_greyBlue .grid .col, .hero.wk_greyBlueDots .grid .col {
    width: 100%;
    min-width: 100%;
  }
}
@media (max-width: 993px) {
  body.requestDemo .hero .grid, .hero.wk_greyBlue .grid, .hero.wk_greyBlueDots .grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  body.requestDemo .hero .grid img, .hero.wk_greyBlue .grid img, .hero.wk_greyBlueDots .grid img {
    align-self: center;
  }
}
@media (max-width: 769px) {
  body.requestDemo .formWrap:not([data-background])::before, .wkContactForm:not([data-background])::before {
    transform: translate(-50%, -25%);
  }
  body.requestDemo .formWrap .grid .col, .wkContactForm .grid .col {
    width: 100%;
    max-width: 100%;
  }
  body.requestDemo .formWrap .grid .col:nth-of-type(1), .wkContactForm .grid .col:nth-of-type(1) {
    text-align: center;
  }
}
@media (max-width: 641px) {
  body.requestDemo .formWrap form, .wkContactForm form {
    row-gap: 1rem;
  }
}
@media (max-width: 375px) {
  body.requestDemo .formWrap:not([data-background])::before, .wkContactForm:not([data-background])::before {
    transform: translate(-50%, 0);
  }
  body.requestDemo .formWrap input[type=submit], .wkContactForm input[type=submit], .wkContactForm button[type=submit] {
    width: 100%;
  }
}

body.agency .howItWorks {
  overflow: hidden;
}
body.agency .howItWorks::before {
  content: url("../images/ellipse03.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
}
body.agency .howItWorks::after {
  content: url("../images/dots-white-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.agency .howItWorks ol li::before {
  top: 0.3rem;
}
body.agency .adsProtection, .wk-white-blocks-module {
  overflow: hidden;
}
body.agency .adsProtection::before, .wk-white-blocks-module::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/circles-blue.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
body.agency .adsProtection .grid:nth-of-type(2) > .col > div, .wk-white-blocks-module .grid:nth-of-type(2) > .col > div {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: center;
}
body.agency .adsProtection .grid:nth-of-type(2) > .col > div > *, .wk-white-blocks-module .grid:nth-of-type(2) > .col > div > * {
  padding: 0;
  margin: 0;
}
body.agency .protectionService, .wk-group-module {
  overflow: hidden;
}
body.agency .protectionService::before, .wk-group-module::before {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.agency .kickBack {
  overflow: hidden;
}
body.agency .kickBack::before {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%);
}
body.agency .kickBack .grid:nth-of-type(2)::before, .wk-group-image::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  height: 0;
  padding-top: 50%;
  background-image: url("../images/radial-kickback.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
body.agency .useOfCP, .wk-white-dots-section {
  overflow: hidden;
  background: radial-gradient(51.74% 51.74% at 50% 100%, rgba(0, 174, 239, 0.27) 0%, rgba(255, 255, 255, 0) 100%);
}
body.agency .useOfCP::before, .wk-white-dots-section::before {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.agency .upgradePlan, .wk-blue-glow {
  background-image: url("../images/radial-upgrade.svg");
  background-position: center center;
  background-size: 75%;
  background-repeat: no-repeat;
  overflow: hidden;
}

body.agency .upgradePlan::before {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.agency .formWrap form > div {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.wk-section.cta,
body.agency .cta, 
.wk-gradient-dark-section, 
.wk-circles-section {
  overflow: hidden;
}
.wk-section.cta .imgWrap,
body.agency .cta .imgWrap,
.wk-gradient-dark-section .imgWrap,
.wk-circles-section .imgWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wk-section.cta .imgWrap img,
body.agency .cta .imgWrap img,
.wk-gradient-dark-section .imgWrap img,
.wk-circles-section .imgWrap img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.wk-section.cta::before,
body.agency .cta::before, 
.wk-circles-section::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/circles-center.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 993px) {
  body.agency .AdsProtection .grid:nth-of-type(2), .wk-white-blocks-module .grid:nth-of-type(2){
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body.agency .AdsProtection .grid:nth-of-type(2) .col, .wk-white-blocks-module .grid:nth-of-type(2) .col{
    width: 100%;
    max-width: 100%;
  }
  .wk-section.cta .grid .col,
  body.agency .cta .grid .col, 
  .wk-circles-section .grid .col {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .wk-group-module .grid {
    flex-direction: column !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .wk-group-module .grid .col {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    flex-basis: 100% !important;
  }
  .wk-group-module .grid .col > * {
    align-self: center !important;
  }
  .wk-group-module .grid img {
    align-self: center !important;
    max-width: 100% !important;
  }
}
@media (max-width: 769px) {
  body.agency .hero .grid,
  body.agency .problem .grid,
  body.agency .safetyUse .grid,
  body.agency .invalid .grid,
  body.agency .certifications .grid,
  .wk-white-section .grid,
  .wk-section .grid,
  .wk-gradient-dark-section .grid,
  .wk-gradient-dark-circles-section .grid {
    text-align: center;
  }
  body.agency .hero .grid .col,
  body.agency .problem .grid .col,
  body.agency .safetyUse .grid .col,
  body.agency .invalid .grid .col,
  body.agency .certifications .grid .col,
  .wk-white-section .grid .col,
  .wk-section .grid .col,
  .wk-gradient-dark-section .grid .col,
  .wk-gradient-dark-circles-section .grid .col{
    width: 100%;
    max-width: 100%;
  }
  body.agency .hero .grid .col > *,
  body.agency .problem .grid .col > *,
  body.agency .safetyUse .grid .col > *,
  body.agency .invalid .grid .col > *,
  body.agency .certifications .grid .col > *,
  .wk-white-section .grid .col > *,
  .wk-section .grid .col > *,
  .wk-gradient-dark-section .grid .col > *,
  .wk-gradient-dark-circles-section .grid .col > * {
    align-self: center;
  }
  .wk-section.cta .imgWrap,
  body.agency .cta .imgWrap,
  .wk-gradient-dark-section .imgWrap,
  .wk-gradient-dark-circles-section .imgWrap {
    max-height: 400px;
  }
  .wk-section.cta .imgWrap img,
  body.agency .cta .imgWrap img,
  .wk-gradient-dark-section .imgWrap img,
  .wk-gradient-dark-circles-section .imgWrap img {
    width: auto !important;
    max-width: 100%;
    max-height: 400px;
  }
  body.agency .problem .grid,
  body.agency .certifications .grid,
  .wk-gradient-dark-section .grid {
    flex-direction: column-reverse;
  }
  body.agency .useOfCP, .wk-white-dots-section {
    padding-top: 0;
  }
  body.agency .useOfCP .grid, .wk-white-dots-section .grid {
    flex-direction: column-reverse;
  }
  body.agency .useOfCP .grid .col, .wk-white-dots-section .grid .col {
    width: 100%;
    max-width: 100%;
  }
  body.agency .useOfCP .grid .col > *, .wk-white-dots-section .grid .col > * {
    align-self: center;
  }
  body.agency .useOfCP .grid h2, .wk-white-dots-section .grid h2 {
    text-align: center;
  }
  body.agency .howItWorks .grid {
    gap: 4rem;
  }
  body.agency .howItWorks .grid .col {
    width: 100%;
    max-width: 100%;
  }
  body.agency .protectionService .grid .col {
    width: 100%;
    max-width: 100%;
  }
  body.agency .protectionService .grid:nth-of-type(1) {
    flex-direction: column-reverse;
  }
  body.agency .protectionService .grid:nth-of-type(1) img {
    align-self: center;
  }
  body.agency .kickBack .grid:nth-of-type(1) .col, body.agency .kickBack .grid:nth-of-type(2) .col, .wk-group-image {
    width: 100%;
    max-width: 100%;
  }
  body.agency .kickBack .grid:nth-of-type(1) {
    flex-direction: column-reverse;
  }
  body.agency .kickBack .grid:nth-of-type(1) img {
    align-self: center;
  }
  .wk-group-module .grid {
    flex-direction: column !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .wk-group-module .grid .col {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    flex-basis: 100% !important;
  }
  .wk-group-module .grid .col > * {
    align-self: center !important;
  }
  .wk-group-module .grid img {
    align-self: center !important;
    max-width: 100% !important;
  }
  body.agency .kickBack .grid:nth-of-type(3) .col:nth-of-type(1) {
    width: 100%;
    max-width: 100%;
  }
  body.agency .upgradePlan .grid .col {
    width: 100%;
    max-width: 100%;
  }
  body.agency .upgradePlan .grid:nth-last-child(1) {
    text-align: center;
  }
  body.agency .upgradePlan .grid:nth-last-child(1) .button {
    align-self: center;
  }
  body.agency .formWrap .grid .col {
    width: 100%;
    max-width: 100%;
  }
  body.agency .formWrap .grid .col:nth-of-type(1) {
    text-align: center;
  }
}
@media (max-width: 641px) {
  body.agency .howItWorks ol li::before {
    top: 0.1rem;
  }
  body.agency .AdsProtection .grid:nth-of-type(2), .wk-white-blocks-module .grid:nth-of-type(2) {
    grid-template-columns: 1fr;
  }
  body.agency .formWrap form {
    row-gap: 1rem;
  }
}
@media (max-width: 479px) {
  body.agency .hero h1, body.agency .hero h2,
  body.agency .invalid h1,
  body.agency .invalid h2,
  .wk-gradient-dark-circles-section h1,
  .wk-gradient-dark-circles-section h2,
  body.agency .certifications h1,
  body.agency .certifications h2,
  .wk-section.cta h1,
  .wk-section.cta h2,
  body.agency .cta h1,
  body.agency .cta h2,
  .wk-circles-section h1,
  .wk-circles-section h2,
  body.agency .kickBack .grid:nth-of-type(1) h1,
  body.agency .kickBack .grid:nth-of-type(1) h2,
  .wk-group-module .grid h1, 
  .wk-group-module .grid h2 {
    font-size: 1.9rem;
    line-height: 1;
  }
  body.agency .kickBack .grid:nth-of-type(3) .col {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 375px) {
  body.agency .formWrap input[type=submit] {
    width: 100%;
  }
}

body.pricing .hero, body:not(.home) .hero {
  overflow: hidden;
}
body.pricing .hero:not([data-background])::before {
  content: url("../images/dots-dark-fade.svg");
  position: absolute;
  top: 0;
  left: 50%;
}
.hero + .wkPricingTable {
  padding-top: 4rem;
  padding-bottom: 0;
}

/* Pricing page: compact hero + wave divider transition */
body.pricing .hero.hero-compact {
  min-height: auto;
  padding-bottom: 5rem;
  position: relative;
}
body.pricing .hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: white;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,60 L0,0 Q720,80 1440,0 L1440,60 Z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,60 L0,0 Q720,80 1440,0 L1440,60 Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  z-index: 2;
}
body.pricing .hero + .wkPricingTable {
  padding-top: 1.5rem;
}
@media (max-width: 769px) {
  body.pricing .hero.hero-compact {
    padding-bottom: 4rem;
  }
  body.pricing .hero::after {
    height: 40px;
  }
}
@media (max-width: 479px) {
  body.pricing .hero.hero-compact {
    padding-bottom: 3rem;
  }
  body.pricing .hero::after {
    height: 30px;
  }
}

.wkPricingTable {
  row-gap: 2.5rem !important;
  background: linear-gradient(180deg, #f8fafb 0%, #ffffff 60%);
  padding-bottom: 3rem;
}
.wkPricingTable .switchSlide {
  row-gap: 2.5rem !important;
}
.wkPricingTable .switchSlide .col[data-props*=hGap36] {
  row-gap: 1.5rem !important;
}
.wkPricingTable .switchSlide .switchSlide-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.wkPricingTable .switchSlide .compact-currency-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wkPricingTable .switchSlide .compact-currency-selector label {
  font-size: 0.875rem;
  color: #666;
  white-space: nowrap;
}
.wkPricingTable .switchSlide .compact-currency-selector .currency-selector {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  font-size: 0.875rem;
  min-width: 120px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: border-color 0.2s ease;
}
.wkPricingTable .switchSlide .compact-currency-selector .currency-selector:hover {
  border-color: #007cba;
}
.wkPricingTable .switchSlide .switchWrap {
  max-width: 320px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: 1;
  align-items: center;
  gap: 1rem;
}
.wkPricingTable .pricing-testimonials-section {
  margin-top: 2rem;
}
.wkPricingTable .switchSlide .switchWrap > * {
  grid-row: 1;
  margin: 0;
}
.wkPricingTable .switchSlide .switchWrap p {
  grid-column: 3;
  grid-row: 1;
}
.wkPricingTable .switchSlide .switchWrap p + p {
  grid-column: 1;
  color: var(--color-primary);
}
.wkPricingTable .switchSlide .switchWrap input {
  grid-column: 2;
  width: 0;
  height: 0;
  border: 0;
  visibility: hidden;
  opacity: 0;
  display: none;
  appearance: initial;
}
.wkPricingTable .switchSlide .switchWrap input + label {
  position: relative;
  grid-column: 2;
  display: block;
  width: 65px;
  height: 36px;
  border: solid 1px var(--color-text);
  border-radius: 20px;
  opacity: 0.5;
}
.wkPricingTable .switchSlide .switchWrap input + label::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  background-color: var(--color-text);
  transition: left 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.wkPricingTable .switchSlide .switchWrap input + label:hover {
  cursor: pointer;
}
.wkPricingTable .switchSlide .switchWrap input:checked + label {
  border: solid 1px var(--color-primary);
  opacity: 1;
  transition: border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.wkPricingTable .switchSlide .switchWrap input:checked + label::before {
  left: 32px;
  background-color: var(--color-primary);
  transition: left 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.wkPricingTable .switchSlide .switchWrap input:checked + label + p {
  color: var(--color-primary);
}
.wkPricingTable .switchSlide .switchWrap input:checked + label + p + p {
  color: var(--color-text);
}
.wkPricingTable .switchSlide .switchWrap span {
  color: var(--color-primary);
  grid-column: 4;
  border: solid 1px var(--color-primary);
  border-radius: 20px;
  height: 36px;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.wkPricingTable .wk-compare-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: opacity 0.2s ease;
}
.wkPricingTable .wk-compare-link:hover {
  opacity: 0.7;
}
.wkPricingTable .wk-compare-link svg {
  transition: transform 0.2s ease;
}
.wkPricingTable .wk-compare-link:hover svg {
  transform: translateY(2px);
}
.wkPricingTable .pricingTable {
  margin-top: 5rem;
}
.wkPricingTable .pricingTable .col {
  row-gap: 0.5rem;
}
.wkPricingTable .pricingTable .col h5 {
  font-size: 1.25rem;
  margin: 0.5rem 0 0.25rem;
  font-weight: 700;
}
.wkPricingTable .pricingTable .col h3 {
  margin: 0.5rem 0;
  font-size: 2.25rem;
}
.wkPricingTable .pricingTable .col h3 span {
  font-size: 2.25rem;
}
.wkPricingTable .pricingTable .col .wk-billed-annually {
  margin-top: 0.125rem;
  font-size: 0.8125rem;
  opacity: 0.8;
}
.wkPricingTable .pricingTable .col ul {
  flex-grow: 1;
  margin: 1.5rem 0;
  gap: 1rem;
}
.wkPricingTable .pricingTable .col .wk-footer-button {
  align-self: center;
  width: 100%;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}
.wkPricingTable .pricingTable .col[data-theme=dark] {
  --color-text: #A0A8AB;
  --color-title: #ffffff;
}
.wkPricingTable .pricingTable .col.pro {
  position: relative;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 2px solid rgba(0, 174, 239, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12), 0 8px 32px rgba(0, 174, 239, 0.10);
  transform: scale(1.04);
  z-index: 2;
}
.wkPricingTable .pricingTable[data-plan-count="4"] .col.pro,
.wkPricingTable .pricingTable[data-plan-count="5"] .col.pro,
.wkPricingTable .pricingTable[data-plan-count="6"] .col.pro {
  transform: scale(1.02);
}
.wkPricingTable .pricingTable .col.pro header {
  background-color: var(--color-primary);
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-box) var(--radius-box) 0 0;
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.3px;
  text-align: center;
}
.wkPricingTable .pricingTable .col.pro h3 {
  display: block;
  color: var(--color-text);
  font-size: 1rem;
}
.wkPricingTable .pricingTable .col.pro h3 span {
  color: var(--color-title);
  font-size: 2rem;
  margin-right: 0.5rem;
}
.wkPricingTable .pricingTable .col.pro .contactBtn {
  display: none;
}
.wkPricingTable .pricingTable .col.pro.contactUs h3 {
  display: none;
}
.wkPricingTable .pricingTable .col.pro.contactUs .contactBtn {
  display: flex;
}
.wkPricingTable .pricingTable .col .wk-plan-subtitle {
  font-size: 0.8125rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  order: -1;
}
.wkPricingTable .pricingTable .col[data-theme=dark] .wk-plan-subtitle {
  color: rgba(0, 174, 239, 0.8);
}
.wkPricingTable .pricingTable .col .wk-price-daily {
  font-size: 0.8125rem;
  color: var(--color-text);
  opacity: 0.65;
  margin: 0;
}
.wkPricingTable .pricingTable .col[data-theme=dark] .wk-price-daily {
  color: var(--color-text);
  opacity: 0.55;
}
.wkPricingTable .pricingTable .col .wk-price-meta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(0, 174, 239, 0.06);
  border-radius: 20px;
  padding: 5px 16px;
  margin: 6px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.wkPricingTable .pricingTable .col .wk-price-meta .wk-meta-dot {
  opacity: 0.4;
  margin: 0 2px;
}
.wkPricingTable .pricingTable .col[data-theme=dark] .wk-price-meta {
  background: rgba(0, 174, 239, 0.1);
}
.wkPricingTable .grid:nth-last-child(1) h2 {
  color: #C5C9CB;
}
@media (max-width: 993px) {
  .wkPricingTable .pricingTable .col {
    width: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  .wkPricingTable .pricingTable .col.pro {
    transform: scale(1);
  }
  /* When odd number of plans, last plan takes full width on tablet */
  .wkPricingTable .pricingTable .col:last-child:nth-child(odd) {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 769px) {
  .wkPricingTable {
    padding-top: 3rem;
    row-gap: 2rem !important;
  }
  .wkPricingTable .switchSlide {
    row-gap: 2rem !important;
  }
  .wkPricingTable .switchSlide .switchSlide-controls {
    gap: 20px;
    flex-direction: column;
  }
  .wkPricingTable .switchSlide .col[data-props*=hGap36] {
    row-gap: 1.25rem !important;
  }
  .wkPricingTable .switchSlide .col + .col {
    width: 84%;
    max-width: 84%;
  }
  .wkPricingTable .pricingTable {
    margin-top: 1.5rem;
  }
  .wkPricingTable .pricingTable .col {
    width: 100%;
    max-width: 100%;
  }
  .wkPricingTable .pricingTable .col.pro {
    transform: scale(1);
  }
  .wkPricingTable .pricingTable .col[data-props*=box] {
    padding: 1.25rem 1.25rem 1.5rem;
  }
  .wkPricingTable .pricingTable .col .wk-price-meta {
    font-size: 0.75rem;
    padding: 4px 12px;
  }
  .wkPricingTable .pricing-testimonials-section {
    margin-top: 1.5rem;
  }

  .wkPricingTable .switchSlide .compact-currency-selector {
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: center;
  }

  .wkPricingTable .switchSlide .compact-currency-selector .currency-selector {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 479px) {
  .wkPricingTable {
    padding-top: 2rem;
    row-gap: 1.75rem !important;
  }
  .wkPricingTable .switchSlide {
    row-gap: 1.75rem !important;
  }
  .wkPricingTable .switchSlide .col[data-props*=hGap36] {
    row-gap: 1rem !important;
  }
  .wkPricingTable .switchSlide .switchWrap {
    gap: 0.5rem;
  }
  .wkPricingTable .switchSlide .switchWrap p {
    font-size: 0.9rem;
  }
  .wkPricingTable .switchSlide .switchWrap input + label {
    position: relative;
    grid-column: 2;
    display: block;
    width: 51px;
    height: 30px;
    border: solid 1px var(--color-text);
    border-radius: 20px;
    opacity: 0.5;
  }
  .wkPricingTable .switchSlide .switchWrap input + label::before {
    width: 22px;
    height: 22px;
    left: 4px;
  }
  .wkPricingTable .switchSlide .switchWrap input + label:hover {
    cursor: pointer;
  }
  .wkPricingTable .switchSlide .switchWrap input:checked + label::before {
    left: 24px;
  }
 .wkPricingTable .switchSlide .switchWrap span {
    font-size: 0.8rem;
    height: 30px;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
  .wkPricingTable .pricingTable .col .wk-price-meta {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .wkPricingTable .pricing-testimonials-section {
    margin-top: 1.25rem;
  }
}

/* Comparison Table Styles */
/* Hero Trust Badges */
/* Hero trust signals wrapper - groups badges and logos */
/* Hero notice / announcement pill (shown below the CTAs).
   Note: the hero content column uses [data-flex="vertical"], whose global
   rule `[data-flex] > * { padding/margin block = 0 }` would otherwise strip
   this pill's vertical padding and spacing. The `.hero` prefix raises
   specificity so these declarations win. */
.hero .hero-notice {
  display: inline-flex;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.6rem 1.15rem 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero a.hero-notice:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.hero .hero-notice .hero-notice-icon {
  font-size: 1rem;
  line-height: 1;
}

.hero .hero-notice .hero-notice-text {
  font-weight: 600;
  color: #fff;
}

.hero .hero-notice .hero-notice-arrow {
  color: var(--color-primary);
  font-weight: 700;
  transition: transform 0.25s ease;
}

.hero a.hero-notice:hover .hero-notice-arrow {
  transform: translateX(3px);
}

/* Light-background heroes: invert the pill colours for contrast */
.row.hero:not([data-theme="dark"]) .hero-notice {
  background: rgba(0, 174, 239, 0.08);
  border-color: rgba(0, 174, 239, 0.3);
  color: var(--color-text);
}

.row.hero:not([data-theme="dark"]) .hero-notice .hero-notice-text {
  color: var(--color-title);
}

.row.hero:not([data-theme="dark"]) a.hero-notice:hover {
  background: rgba(0, 174, 239, 0.15);
  border-color: rgba(0, 174, 239, 0.5);
}

/* Centered heroes (no image): center the notice too */
.row.hero .grid[data-props*="textCenter"] .hero-notice {
  align-self: center;
}

@media (max-width: 767px) {
  .hero .hero-notice {
    font-size: 0.875rem;
    padding: 0.55rem 1rem 0.55rem 0.8rem;
  }
}

.hero-trust-signals {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2.5rem;
}

.hero-trust-signals .logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-trust-signals .logos img {
  height: auto;
  max-width: 100%;
}

/* Trust Badge Text Fallbacks */
.trust-badge-text {
  font-weight: 700;
  display: inline-block;
}

.trust-badge-text--g2 {
  color: #FF492C;
  font-size: 1.125rem;
}

.trust-badge-text--sourceforge {
  color: #FF6C0C;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-trust-badge .trust-badge-text--g2 {
  font-size: 1.125rem;
}

.hero-trust-badge .trust-badge-text--sourceforge {
  font-size: 0.875rem;
}

.footer-trust-badge .trust-badge-text--g2 {
  font-size: 1rem;
}

.footer-trust-badge .trust-badge-text--sourceforge {
  font-size: 0.75rem;
}

/* Hero Logo Sizes */
.hero-logos-size--klein img {
  max-height: 40px;
}

.hero-logos-size--groot img {
  max-height: 60px;
}

/* Pricing Logos Sizes */
.pricing-logos-size--klein img {
  max-height: 40px;
  height: auto;
  max-width: 100%;
}

.pricing-logos-size--groot img {
  max-height: 60px;
  height: auto;
  max-width: 100%;
}

.hero-trust-badges {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-trust-badge .trust-badge-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
}

.hero-trust-badge .trust-badge-logo svg,
.hero-trust-badge .trust-badge-logo img {
  width: auto;
  height: 24px;
}

.hero-trust-badge .trust-badge-content {
  display: flex;
  align-items: center;
}

.hero-trust-badge .trust-badge-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust-badge .rating-number {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-title);
}

.hero-trust-badge .rating-stars {
  display: flex;
  gap: 0.125rem;
}

.hero-trust-badge .rating-stars .star {
  font-size: 1rem;
  line-height: 1;
}

/* Trust Badges Section */
.trust-badges-section {
  margin-top: 4rem;
  padding: 3rem 0;
}

.trust-badges-title {
  text-align: center;
  color: var(--color-title);
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.trust-badges-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.trust-badge:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.trust-badge-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
}

.trust-badges-wrapper .trust-badge-logo img {
  height: 24px;
  width: auto;
}

.trust-badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-badge-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-badge-rating .rating-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-title);
}

.rating-stars {
  display: flex;
  gap: 0.125rem;
}

.rating-stars .star {
  font-size: 1.25rem;
  line-height: 1;
}

.rating-stars .star-full {
  color: #fbbf24;
}

.rating-stars .star-half {
  color: #fbbf24;
  opacity: 0.5;
}

.rating-stars .star-empty {
  color: #e5e7eb;
}

/* Footer Trust Badges - Compact Version */
.footer-trust-badges {
  padding: 2rem 0;
  border-top: none !important;
}

.footer-trust-badges-title {
  text-align: center;
  color: var(--color-title);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-trust-badges-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-box);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.footer-trust-badge:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.footer-trust-badge .trust-badge-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
}

.footer-trust-badge .trust-badge-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.footer-trust-badge .trust-badge-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-trust-badge .rating-number {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-title);
}

.footer-trust-badge .rating-stars {
  display: flex;
  gap: 0.125rem;
}

.footer-trust-badge .rating-stars .star {
  font-size: 1rem;
  line-height: 1;
}

/* Footer Trust Badge Sizes */
.footer-trust-badges-size--klein .footer-trust-badge .trust-badge-logo img {
  height: 20px !important;
  width: auto;
}

.footer-trust-badges-size--klein .footer-trust-badge .rating-number {
  font-size: 1.125rem;
}

.footer-trust-badges-size--klein .footer-trust-badge .rating-stars .star {
  font-size: 1rem;
}

.footer-trust-badges-size--groot .footer-trust-badge .trust-badge-logo img {
  height: 28px !important;
  width: auto;
}

.footer-trust-badges-size--groot .footer-trust-badge .rating-number {
  font-size: 1.5rem;
}

.footer-trust-badges-size--groot .footer-trust-badge .rating-stars .star {
  font-size: 1.25rem;
}

.footer-trust-badges-size--groot .footer-trust-badge {
  gap: 1rem;
}

@media (max-width: 1024px) {
  /* Make hero section columns wider on large tablets */
  .grid[data-grid="center"] .col[data-col="6"] {
    width: 80% !important;
    max-width: 80% !important;
  }
  
  /* Ensure centered content stays centered */
  .grid[data-grid="center"][data-props*="textCenter"] {
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Make hero section columns full width on tablets */
  .grid[data-grid="center"] .col[data-col="6"] {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .hero-trust-signals {
    margin-top: 2rem;
    gap: 1rem 1.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-trust-badges {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .hero-trust-badge {
    gap: 0.625rem;
    flex-shrink: 0;
    min-width: 0;
  }
  
  .hero-trust-badge .trust-badge-logo {
    min-height: 20px;
    flex-shrink: 0;
  }
  
  .hero-trust-badge .trust-badge-logo svg,
  .hero-trust-badge .trust-badge-logo img {
    height: 20px;
  }
  
  .hero-trust-badge .trust-badge-content {
    min-width: 0;
  }
  
  .hero-trust-badge .rating-number {
    font-size: 0.9375rem;
  }
  
  .hero-trust-badge .rating-stars {
    gap: 0.0625rem;
  }
  
  .hero-trust-badge .rating-stars .star {
    font-size: 0.8125rem;
  }
  
  .trust-badges-section {
    margin-top: 3rem;
    padding: 2rem 0;
  }
  
  .trust-badges-title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  
  .trust-badges-wrapper {
    gap: 2rem;
  }
  
  .trust-badges-wrapper .trust-badge-logo img {
    height: 20px;
  }
  
  .trust-badge {
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 480px) {
  /* Stack trust badges vertically on small mobile */
  .hero-trust-signals {
    margin-top: 1.5rem;
    gap: 1.25rem;
  }

  .hero-trust-badges {
    gap: 1.25rem;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-trust-badge {
    gap: 0.625rem;
  }
  
  .hero-trust-badge .trust-badge-logo {
    min-height: 22px;
  }
  
  .hero-trust-badge .trust-badge-logo svg,
  .hero-trust-badge .trust-badge-logo img {
    height: 22px;
  }
  
  .hero-trust-badge .rating-number {
    font-size: 1rem;
  }
  
  .hero-trust-badge .rating-stars .star {
    font-size: 0.875rem;
  }
}

@media (max-width: 360px) {
  .hero-trust-signals {
    margin-top: 1.25rem;
    gap: 1rem;
  }

  .hero-trust-badges {
    gap: 1rem;
    flex-direction: column;
  }
  
  .hero-trust-badge {
    gap: 0.5rem;
  }
  
  .hero-trust-badge .trust-badge-logo {
    min-height: 20px;
  }
  
  .hero-trust-badge .trust-badge-logo svg,
  .hero-trust-badge .trust-badge-logo img {
    height: 20px;
  }
  
  .hero-trust-badge .rating-number {
    font-size: 0.9375rem;
  }
  
  .hero-trust-badge .rating-stars .star {
    font-size: 0.8125rem;
  }
  
  .trust-badges-wrapper .trust-badge-logo img {
    height: 18px;
  }
  
  .trust-badge-rating .rating-number {
    font-size: 1.25rem;
  }
  
  .rating-stars .star {
    font-size: 1rem;
  }
  
  .footer-trust-badges {
    padding: 1.5rem 0;
  }
  
  .footer-trust-badges-title {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  
  .footer-trust-badges-wrapper {
    gap: 2rem;
  }
  
  .footer-trust-badge {
    gap: 0.5rem;
  }
  
  .footer-trust-badge .rating-number {
    font-size: 1rem;
  }
  
  .footer-trust-badge .rating-stars .star {
    font-size: 0.875rem;
  }
  
  /* Responsive footer badge sizes */
  .footer-trust-badges-size--klein .footer-trust-badge .trust-badge-logo img {
    height: 18px !important;
  }
  
  .footer-trust-badges-size--klein .footer-trust-badge .rating-number {
    font-size: 1rem;
  }
  
  .footer-trust-badges-size--klein .footer-trust-badge .rating-stars .star {
    font-size: 0.875rem;
  }
  
  .footer-trust-badges-size--groot .footer-trust-badge .trust-badge-logo img {
    height: 24px !important;
  }
  
  .footer-trust-badges-size--groot .footer-trust-badge .rating-number {
    font-size: 1.25rem;
  }
  
  .footer-trust-badges-size--groot .footer-trust-badge .rating-stars .star {
    font-size: 1.125rem;
  }
}

/* Comparison Table */
.comparison-wrapper {
  margin-top: 4rem;
  scroll-margin-top: 5.5rem;
}

.comparison-title {
  margin-bottom: 2.5rem;
}

/* Section Navigation */
.comparison-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(var(--color-border), 0.3);
}

.comparison-nav-item {
  padding: 0.5rem 1.25rem;
  color: var(--color-text);
  font-weight: 500;
  border-radius: var(--radius);
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.comparison-nav-item:hover {
  color: var(--color-primary);
  background-color: rgba(0, 174, 239, 0.05);
}

.comparison-nav-item.active {
  color: var(--color-primary);
  background-color: rgba(0, 174, 239, 0.1);
  font-weight: 600;
}

/* Table Container */
.comparison-table-container {
  overflow-x: auto;
  border-radius: var(--radius-box);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

/* Table Header */
.comparison-table thead th {
  background-color: var(--color-secondary-02);
  color: var(--color-title);
  padding: 1.25rem 1rem;
  text-align: center;
  font-weight: 600;
  border: 1px solid rgba(var(--color-border), 0.2);
  font-size: 1rem;
}

.comparison-table thead th.feature-column {
  text-align: left;
  background-color: #f3f4f6;
}

/* Highlight ClickPatrol Column (2nd column) */
.comparison-table thead th:nth-child(2) {
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.08) 0%, rgba(0, 174, 239, 0.12) 100%) !important;
  border: 2px solid var(--color-primary) !important;
  position: relative;
}

.comparison-table tbody td:nth-child(2) {
  background: rgba(0, 174, 239, 0.03) !important;
  border-left: 2px solid var(--color-primary) !important;
  border-right: 2px solid var(--color-primary) !important;
}

/* Make ClickPatrol checkmarks more prominent */
.comparison-table tbody td:nth-child(2) .check-icon {
  font-size: 1.75rem !important;
  font-weight: bold !important;
  color: var(--color-primary) !important;
}

/* Table Body */
.comparison-table tbody tr.section-header td {
  background-color: var(--color-secondary-02);
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: var(--color-title);
  border-bottom: 2px solid var(--color-primary);
}

.comparison-table tbody tr.section-header h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table tbody tr.feature-row td {
  padding: 1rem 1.5rem;
  border: 1px solid rgba(var(--color-border), 0.2);
}

.comparison-table tbody td.feature-name {
  font-weight: 500;
  color: var(--color-title);
  background-color: #f9fafb;
}

.comparison-table tbody td.feature-value {
  text-align: center;
  background-color: white;
}

/* Value Types */
.comparison-table tbody td.value-yes {
  color: #10b981;
}

.comparison-table tbody td.value-no {
  color: #ef4444;
  opacity: 0.5;
}

.comparison-table tbody .check-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #10b981;
}

.comparison-table tbody .cross-icon {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ef4444;
  opacity: 0.5;
}

.comparison-table tbody td.value-text {
  font-size: 0.875rem;
  color: var(--color-text);
}

/* Table Footer */
.comparison-table tfoot tr.footer-cta-row td,
.comparison-table tfoot tr.comparison-table-footer td {
  padding: 2rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.05) 0%, rgba(0, 174, 239, 0.08) 100%);
  border: 1px solid rgba(var(--color-border), 0.2);
  border-top: 2px solid var(--color-primary);
}

.comparison-table tfoot td.feature-column {
  text-align: left;
  font-weight: 600;
  color: var(--color-title);
  font-size: 1rem;
}

.comparison-table tfoot .comparison-table-cta-button {
  display: inline-block;
  background: var(--color-primary);
  color: white !important;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-button);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 174, 239, 0.2);
}

.comparison-table tfoot .comparison-table-cta-button:hover {
  background: #0095d1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
}

.comparison-table tfoot .comparison-cta {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  min-width: 140px;
}

.comparison-table tfoot .comparison-cta:hover {
  background-color: #0095d1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .comparison-wrapper {
    margin-top: 3rem;
  }
  
  .comparison-table-container {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
  
  .comparison-table {
    min-width: 600px;
  }
  
  .comparison-table thead th,
  .comparison-table tbody td,
  .comparison-table tfoot td {
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
  }
  
  .comparison-table tfoot .comparison-cta {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    min-width: 120px;
  }
}

@media (max-width: 479px) {
  .comparison-wrapper {
    margin-top: 2rem;
  }
  
  .comparison-nav-item {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
  }
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
  padding: 10px;
  margin: -10px;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 34px;
  right: -14px;
  top: -14px;
  border-radius: 17px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #EBEDEE;
  border-radius: 4px;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: var(--color-primary);
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  box-sizing: border-box;
  border: 5px solid white;
  background: var(--color-primary);
  cursor: grab;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.noUi-handle:active {
  cursor: grabbing;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 6px 0 0;
  height: auto;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border-radius: var(--radius-box);
  background: #1A2428;
  color: white;
  padding: 0.36rem 1rem;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: -50px;
}
.noUi-horizontal .noUi-tooltip::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #1A2428;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.wkPricingTable .noUi-pips .noUi-value {
  font-size: 0.6875rem;
  color: #999;
  margin-top: 2px;
}
.wkPricingTable .noUi-pips .noUi-marker {
  display: none;
}

@media (max-width: 769px) {
  .noUi-horizontal {
    height: 10px;
  }
  .noUi-horizontal .noUi-handle {
    top: -12px;
  }
  .wkPricingTable .noUi-pips .noUi-value {
    font-size: 0.5625rem;
  }
}
@media (max-width: 479px) {
  .wkPricingTable .noUi-pips .noUi-value {
    font-size: 0.5rem;
  }
  .wkPricingTable .noUi-pips .noUi-value:nth-child(4n+3) {
    display: none;
  }
}

#mobileMenuWrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: collapse;
  transition: visibility 0.25s ease;
}
#mobileMenuWrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(3, 23, 32, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.15s ease-out;
}
#mobileMenuWrap .menuWrap {
  position: absolute;
  background-color: white;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 480px;
  z-index: 2;
  transform: translateX(100%);
  transition: transform 0.2s ease-out;
}
#mobileMenuWrap .menu {
  width: 100%;
  height: 100%;
  padding-left: var(--gap);
  padding-right: var(--gap);
  padding-top: 4rem;
  padding-bottom: 4rem;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  overflow-x: hidden;
  overflow-y: scroll;
}
@media (max-width: 641px) {
  #mobileMenuWrap .menu {
    font-size: 1rem;
  }
}
#mobileMenuWrap .menu a {
  font-weight: 400;
  text-transform: capitalize;
}
#mobileMenuWrap .menu a.button {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}
#mobileMenuWrap .menu > ul {
  gap: 0;
}
#mobileMenuWrap .menu > ul.mainMenu li {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: solid 1px rgba(var(--color-border), 1);
}
#mobileMenuWrap .menu > ul.mainMenu li:nth-last-child(1) {
  border-bottom: none;
}
#mobileMenuWrap .menu > ul.resources li {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: solid 1px rgba(var(--color-border), 1);
}
#mobileMenuWrap .menu > ul.resources li:nth-last-child(1) {
  border-bottom: none;
}
#mobileMenuWrap .menu > ul.resources li:nth-child(1) {
  font-size: 0.84rem;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
  text-transform: uppercase;
}
@media (max-width: 641px) {
  #mobileMenuWrap .menu > ul.resources li:nth-child(1) {
    font-size: 0.72rem;
  }
}
#mobileMenuWrap .menu > ul.actions {
  gap: 0.75rem;
}
#mobileMenuWrap .logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 136px;
  height: 23px;
  background-image: url("../images/logo-blk.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 3;
}
#mobileMenuWrap .closeTrigger {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  z-index: 3;
  transform: rotate(45deg);
}
#mobileMenuWrap .closeTrigger::before, #mobileMenuWrap .closeTrigger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: var(--color-text);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#mobileMenuWrap .closeTrigger::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#mobileMenuWrap.active {
  visibility: visible;
}
#mobileMenuWrap.active::before {
  opacity: 1;
  transition: opacity 0.15s ease-in;
}
#mobileMenuWrap.active .menuWrap {
  transform: translateX(0);
  transition: transform 0.2s ease-in;
}

/* 
    Theme Style
    */
[data-theme=dark] {
  --color-text: #A0A8AB;
  --color-title: #ffffff;
  --color-border:60, 71, 75;
}

form {
  --color-border:235, 237, 238;
}

[data-props][data-props*=textCenter] {
  text-align: center;
}
[data-props][data-props*=textCenter] img {
  align-self: center;
}
[data-props][data-props*=box] {
  --color-text: #5B686D;
  --color-title: #000000;
  border-radius: var(--radius-box);
  background-color: white;
  padding: 1.875rem;
}
/* Compact padding for pricing plans */
.wkPricingTable .pricingTable .col[data-props*=box] {
  padding: 1.75rem 1.75rem 2rem;
}
[data-props][data-props*=radiusBox] {
  border-radius: var(--radius-box);
}
[data-props][data-props*=shadow] {
  box-shadow: 10px 15px 45px 0 rgba(21, 44, 41, 0.12);
}
[data-props][data-props*=stretch] {
  align-self: stretch;
}
[data-props][data-props*=selfCenter] {
  align-self: center;
}

.row {
  position: relative;
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.wk-section[data-background="white"] + .wk-section[data-background="white"] {
  padding-top: 0;
}
#mainHeader + .row {
  padding-top: 11.25rem;
}
@media (max-width: 641px) {
  .row {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
}
@media (max-width: 375px) {
  .row {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Hero Spacing Variations */
.hero.hero-compact {
  padding-top: 6rem;
  padding-bottom: 6rem;
  min-height: 550px;
}
.hero.hero-compact.wkPaddingTop {
  padding-top: 7.5rem;
}
.hero.hero-spacious {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.hero.hero-spacious.wkPaddingTop {
  padding-top: 13.5rem;
}
@media (max-width: 769px) {
  .hero.hero-compact {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    min-height: 450px;
  }
  .hero.hero-compact.wkPaddingTop {
    padding-top: 6rem;
  }
  .hero.hero-spacious {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .hero.hero-spacious.wkPaddingTop {
    padding-top: 11.5rem;
  }
}
@media (max-width: 479px) {
  .hero.hero-compact {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    min-height: 400px;
  }
  .hero.hero-compact.wkPaddingTop {
    padding-top: 5rem;
  }
  .hero.hero-spacious {
    padding-top: 8.5rem;
    padding-bottom: 8.5rem;
  }
  .hero.hero-spacious.wkPaddingTop {
    padding-top: 10rem;
  }
}

[data-flex] {
  display: flex;
}
[data-flex] > * {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
[data-flex][data-flex*=inline] {
  display: inline-flex;
}
[data-flex][data-flex=vertical] {
  flex-direction: column;
  gap: 0;
}
[data-flex][data-flex*=horizontal] {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2.25rem;
}
[data-flex][data-flex*=hGap96] {
  row-gap: 6rem;
}

.col {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.col > * {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.col img {
  align-self: baseline;
}

.row[data-props*=hGap120],
.grid[data-props*=hGap120],
.col[data-props*=hGap120] {
  row-gap: 7.5rem;
}
.row[data-props*=hGap96],
.grid[data-props*=hGap96],
.col[data-props*=hGap96] {
  row-gap: 6rem;
}
.row[data-props*=hGap60],
.grid[data-props*=hGap60],
.col[data-props*=hGap60] {
  row-gap: 3.75rem;
}
.row[data-props*=hGap48],
.grid[data-props*=hGap48],
.col[data-props*=hGap48] {
  row-gap: 3rem;
}
.row[data-props*=hGap36],
.grid[data-props*=hGap36],
.col[data-props*=hGap36] {
  row-gap: 2.25rem;
}
.row[data-props*=vAlignCenter],
.grid[data-props*=vAlignCenter],
.col[data-props*=vAlignCenter] {
  align-items: center;
}
.row[data-props*=stretchH],
.grid[data-props*=stretchH],
.col[data-props*=stretchH] {
  align-items: stretch;
}

a {
  color: var(--color-link);
}
a[data-type*=arrow] {
  display: inline-flex;
  flex-direction: row;
  gap: 0.625rem;
  align-items: center;
  transition: color 0.15s ease-out, gap 0.15s ease-out;
}
a[data-type*=arrow]::after {
  content: url("../images/arrow-right-blue.svg");
  transform: translateY(2px);
  transition: transform 0.15s ease-out;
}
a[data-type*=arrow]:hover {
  transition: color 0.15s ease-out, gap 0.15s ease-out;
}
a[data-type*=arrow]:hover::after {
  transform: translate(5px, 2px);
  transition: transform 0.15s ease-out;
}
a.button {
  /* Layout properties */
  display: flex;
  align-items: center;
  width: fit-content;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  
  /* Visual styling */
  background: var(--gradient-primary);
  color: white;
  min-height: 2.5rem;
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-sm);
  
  /* Animation */
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
a.button:hover {
  background: var(--gradient-primary-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
a.button[data-button*=big] {
  font-size: 1.25rem;
  min-height: 3.75rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
a.button[data-button*=outline] {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  box-shadow: none;
}
a.button[data-button*=outline]:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
/* Dark theme outline buttons - use CSS variables for automatic color switching on scroll */
[data-theme=dark] a.button[data-button*=outline] {
  color: var(--color-title);
  border-color: var(--color-title);
}
[data-theme=dark] a.button[data-button*=outline]:hover {
  background: var(--color-title);
  color: var(--color-secondary-01);
  border-color: var(--color-title);
}
/* When the header is scrolled, --color-title flips to #000 which made the
   outline button hover render dark navy text on a black pill (unreadable).
   Force readable white text in the scrolled hover state. */
#mainHeader.scrolled[data-theme=dark] a.button[data-button*=outline]:hover {
  color: #ffffff;
}
.section-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  width: 100%;
}
.section-buttons a[data-type*=arrow] {
  order: 1;
}

ul[data-list=check] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
ul[data-list=check] li {
  padding-left: 1.75rem;
  position: relative;
  text-align: left;
  line-height: 1.6;
}
ul[data-list=check] li::before {
  content: url("../images/icon-check-green.svg");
  position: absolute;
  top: 0.125rem;
  left: 0;
  display: inline-block;
}
ul[data-list=check] li.uncheck::before {
  content: url("../images/icon-uncheck.svg");
}
[data-theme=dark] ul[data-list=check] li {
  color: white;
}
ul[data-list=underline] {
  row-gap: 0;
}
ul[data-list=underline] li {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: solid 1px rgba(var(--color-border), 1);
}
ul[data-list=underline] li:nth-last-child(1) {
  border: none;
}
[data-theme=dark] ul {
  color: var(--color-text);
}

ol li::before {
  color: var(--color-primary);
}

[data-background=gradientDark], [data-background=gradientDarkDots], [data-background=gradientDarkCircles] {
  background: linear-gradient(156deg, var(--color-secondary-01) 40%, var(--color-primary) 100%);
}
[data-background=gradientDarkDots]:before {
  content: url("../images/dots-dark-fade.svg");
  position: absolute;
  top: 0;
  left: 50%;
}
[data-background=gradientDarkCircles] {
  background: linear-gradient(156deg, var(--color-secondary-01) 40%, var(--color-primary) 100%);
}
[data-background=gradientDarkCircles]::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/circles-back.svg");
  background-position: center center;
  background-repeat: no-repeat;
}

[data-background=greyLite] {
  background-color: var(--color-secondary-02);
}

[data-background=greyLiteRobots] {
  background-color: var(--color-secondary-02);
  position: relative;
  overflow: hidden;
}
[data-background=greyLiteRobots]::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/robots-full-dark.svg");
  background-position: center center;
  background-repeat: repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
[data-background=greyLiteRobots] .grid {
  position: relative;
  z-index: 1;
}

[data-background=gradientDarkRobots] {
  background: linear-gradient(156deg, var(--color-secondary-01) 40%, var(--color-primary) 100%);
  position: relative;
  overflow: hidden;
}
[data-background=gradientDarkRobots]::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/robots-full-white-1200.webp");
  background-image: image-set(url("../images/robots-full-white-1200.webp") type("image/webp"));
  background-position: center center;
  background-repeat: repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.hero[data-background=gradientDarkRobots]::before {
  content: none;
}
.wk-bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
[data-background=gradientDarkRobots] .grid {
  position: relative;
  z-index: 1;
}

[data-background=greyBlue] {
  overflow: hidden;
  background-color: var(--color-secondary-02);
}
[data-background=greyBlue]::before, [data-background=greyBlue]::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(72.56% 70.71% at 0% 100%, rgba(0, 174, 239, 0.36) 0%, rgba(255, 255, 255, 0) 100%);
}
[data-background=greyBlue]::before {
  left: 0;
}
[data-background=greyBlue]::after {
  right: 0;
  transform: rotate(180deg);
}

[data-background=white] {
  background-color: #ffffff;
}

[data-background=whiteDots] {
  background-color: #ffffff;
  overflow: hidden;
}
[data-background=whiteDots]::before {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

[data-background=dotsLite] {
  background-color: var(--color-secondary-02);
  overflow: hidden;
}
[data-background=dotsLite]::before {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

[data-background=ellipse] {
  overflow: hidden;
}
[data-background=ellipse]::before {
  content: url("../images/ellipse03.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
[data-background=ellipse]::after {
  content: url("../images/dots-white-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

[data-background=ellipseGreyLite] {
  background-color: var(--color-secondary-02);
  overflow: hidden;
}
[data-background=ellipseGreyLite]::before {
  content: url("../images/ellipse03.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
[data-background=ellipseGreyLite]::after {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

[data-background=circlesEllipseGreyLite] {
  background-color: var(--color-secondary-02);
  overflow: hidden;
}
[data-background=circlesEllipseGreyLite]::before {
  content: url("../images/circles-back.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
[data-background=circlesEllipseGreyLite]::after {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
}

/* Submit buttons only - not all buttons (hamburger menu etc need different styling) */
button[type=submit],
input[type=submit] {
  background: var(--gradient-primary);
  color: white;
  display: inline-block;
  width: auto;
  min-height: 2.5rem;
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-sm);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
button[type=submit]:hover,
input[type=submit]:hover {
  background: var(--gradient-primary-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.wk-articles-module .navigation,
body.blog .navigation,
body.caseStudies .navigation,
body.whitepapers .navigation {
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  font-weight: 500;
  justify-content: center;
  column-gap: 0.5rem;
}
.wk-articles-module .navigation a,
body.blog .navigation a,
body.caseStudies .navigation a,
body.whitepapers .navigation a {
  color: var(--color-text);
  font-weight: 500;
}
.wk-articles-module .navigation a:hover,
body.blog .navigation a:hover,
body.caseStudies .navigation a:hover,
body.whitepapers .navigation a:hover {
  background-color: rgba(var(--color-border), 0.48);
}
.wk-articles-module .navigation a, .wk-articles-module .navigation span,
body.blog .navigation a, body.blog .navigation span,
body.caseStudies .navigation a,
body.caseStudies .navigation span,
body.whitepapers .navigation a,
body.whitepapers .navigation span {
  width: 3rem;
  height: 3rem;
  border-radius: 1.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wk-articles-module .navigation li,
body.blog .navigation li,
body.caseStudies .navigation li,
body.whitepapers .navigation li {
  align-items: center;
  justify-content: center;
  position: relative;
}
.wk-articles-module .navigation li.prev::after,
body.blog .navigation li.prev::after,
body.caseStudies .navigation li.prev::after,
body.whitepapers .navigation li.prev::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-right: solid 1.5px var(--color-text);
  border-bottom: solid 1.5px var(--color-text);
  transform: translate(-36%, -40%) rotate(135deg);
}
.wk-articles-module .navigation li.next::after,
body.blog .navigation li.next::after,
body.caseStudies .navigation li.next::after,
body.whitepapers .navigation li.next::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-right: solid 1.5px var(--color-text);
  border-bottom: solid 1.5px var(--color-text);
  transform: translate(-64%, -40%) rotate(-45deg);
}
.wk-articles-module .navigation .active,
body.blog .navigation .active,
body.caseStudies .navigation .active,
body.whitepapers .navigation .active {
  color: var(--color-primary);
}

.ad {
  position: relative;
  border-radius: var(--radius-box);
  overflow: hidden;
  width: 100%;
}
.ad[data-ad="350"] {
  max-width: 350px;
}
.ad[data-ad="730"] {
  max-width: 730px;
}

.spacer {
  padding-top: var(--gap);
}

blockquote {
  padding-left: 3.75rem;
  position: relative;
}
blockquote::before {
  content: "";
  border-right: solid 1px var(--color-primary);
  position: absolute;
  width: 2.5rem;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/quotes.svg");
  background-position: top left;
  background-repeat: no-repeat;
}

[data-reveal*=fadeBottom] {
  transform: translateY(25px);
  opacity: 0;
}
[data-reveal*=fadeBottom].animate {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

[data-reveal*=fadeLeft] {
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
[data-reveal*=fadeLeft].animate {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

[data-reveal*=fadeRight] {
  transform: translateX(50px);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
[data-reveal*=fadeRight].animate {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

[data-reveal*=delay1].animate {
  transition-delay: 0.1s;
}

[data-reveal*=delay2].animate {
  transition-delay: 0.2s;
}

[data-reveal*=delay3].animate {
  transition-delay: 0.3s;
}

[data-reveal*=delay4].animate {
  transition-delay: 0.4s;
}

[data-reveal*=delay5].animate {
  transition-delay: 0.5s;
}

[data-reveal*=delay6].animate {
  transition-delay: 0.6s;
}

[data-reveal*=delay7].animate {
  transition-delay: 0.7s;
}

[data-reveal*=delay8].animate {
  transition-delay: 0.8s;
}

[data-reveal*=delay9].animate {
  transition-delay: 0.9s;
}

[data-reveal*=delay10].animate {
  transition-delay: 1s;
}

@media (max-width: 769px) {
  .row {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  #mainHeader + .row {
    padding-top: 9.375rem;
  }
  .row[data-props*=hGap120],
  .grid[data-props*=hGap120],
  .col[data-props*=hGap120] {
    row-gap: 6rem;
  }
}
@media (max-width: 641px) {
  .row {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .row[data-props*=hGap120],
  .grid[data-props*=hGap120],
  .col[data-props*=hGap120] {
    row-gap: 6rem;
  }
  .row[data-props*=hGap96],
  .grid[data-props*=hGap96],
  .col[data-props*=hGap96] {
    row-gap: 3.75rem;
  }
  h1 {
    font-size: 2.8125rem;
    line-height: 1.2;
  }
  h2 {
    font-size: 2.25rem;
    line-height: 1.2;
  }
  h3 {
    font-size: 1.6875rem;
    line-height: 1.2;
  }
  h4 {
    font-size: 1.25rem;
    line-height: 1.2;
  }
  h5 {
    font-size: 1.125rem;
    line-height: 1.2;
  }
  h6 {
    line-height: 1.2;
  }
}
@media (max-width: 479px) {
  .row {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  #mainHeader + .row {
    padding-top: 6rem;
  }
  .row[data-props*=hGap120],
  .grid[data-props*=hGap120],
  .col[data-props*=hGap120] {
    row-gap: 3.75rem;
  }
  .row[data-props*=hGap96],
  .grid[data-props*=hGap96],
  .col[data-props*=hGap96] {
    row-gap: 3rem;
  }
  .row[data-props*=hGap60],
  .grid[data-props*=hGap60],
  .col[data-props*=hGap60] {
    row-gap: 2.25rem;
  }
  .wk-articles-module .navigation,
  body.blog .navigation,
  body.caseStudies .navigation,
  body.whitepapers .navigation {
    column-gap: 0;
    row-gap: 0;
  }
}
@media (max-width: 375px) {
  .row {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  h1 {
    font-size: 2.5625rem;
  }
  h2 {
    font-size: 2rem;
  }
}
.wkPaddingTop {
    padding-top: 11.25rem;
}
@media (max-width: 1000px) {
    .wkPaddingTop {
        padding-top: 9.375rem;
    }
}
@media (max-width: 769px) {
    .wkPaddingTop {
        padding-top: 9.375rem;
    }
}
@media (max-width: 641px) {
    .wkPaddingTop {
        padding-top: 8.125rem;
    }
}
.wpb-content-wrapper {
    overflow: hidden;
}

.wk-extra-form-field {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
}
.wk-message {
    width: 100%;
    margin: 0 0 1rem 0;
}
.wk-message.wk-error {
    color: #ff0000;
}
.wk-message.wk-success {
    color: #1E4BF2;
}
.wk-content-module .grid.cover + .grid img {
    border-radius: var(--radius-box);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.wk-content-module .grid.cover + .grid img.alignnone.size-full {
    display: block;
    width: 100%;
}

/* WordPress alignment classes - keep these for compatibility */
img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}
a img.alignright {float:right; margin:0 0 1em 1em}
a img.alignleft {float:left; margin:0 1em 1em 0}
a img.aligncenter {display: block; margin-left: auto; margin-right: auto}

/* Case study and FAQ modules */
.wk-case-study-content {
    padding-bottom: 6rem;
}
.wk-faq-module {
    padding-top: 0;
    padding-bottom: 40px;
    z-index: 2;
    margin-top: -30px;
}

/* Content module spacing */
.row.content.wk-content-module {
    padding-bottom: 3rem;
}

/* ============================================
   BLOG CONTENT STYLING - CONSOLIDATED
   Scope: .wk-content-col (blog articles only)
   ============================================ */

/* Eyebrow / kicker above the article title (B2B hook) */
.wk-content-col .article-eyebrow {
    display: inline-block;
    margin: 0 0 0.75rem;
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Lead / intro paragraph under the title */
.wk-content-col .article-lead {
    font-size: 1.25rem;
    line-height: 1.9rem;
    color: #4B5563;
    margin: 0 0 2rem;
}

/* Typography - Improved readability */
.wk-content-col h1 {
    font-size: 2.5rem;
    line-height: 3rem;
    margin: 2.5rem 0 1.5rem;
    color: #111827;
    font-weight: 700;
}

/* When an eyebrow precedes the title, tighten the top gap */
.wk-content-col .article-eyebrow + h1 {
    margin-top: 0;
}

.wk-content-col h2 {
    font-size: 2rem;
    line-height: 2.5rem;
    margin: 3rem 0 1.25rem;
    color: #111827;
    font-weight: 700;
}

.wk-content-col h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 2rem 0 1rem;
    color: #1f2937;
    font-weight: 600;
}

.wk-content-col h4 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin: 1.5rem 0 0.75rem;
    color: #374151;
    font-weight: 600;
}

.wk-content-col h5 {
    font-size: 1.125rem;
    line-height: 1.625rem;
    margin: 1.25rem 0 0.75rem;
    color: #374151;
    font-weight: 600;
}

.wk-content-col h6 {
    font-size: 1rem;
    line-height: 1.5rem;
    margin: 1rem 0 0.75rem;
    color: #4B5563;
    font-weight: 600;
}

.wk-content-col p {
    font-size: 1.0625rem;
    line-height: 1.75rem;
    margin: 0 0 1.25rem 0;
    color: #374151;
}

.wk-content-col p:last-child {
    margin-bottom: 0;
}

/* Links - Improved styling (only for content/blog pages, not contact forms or other sections) */
.row.content .wk-content-col a {
    color: var(--color-link);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
    font-weight: 500;
}

.row.content .wk-content-col a:hover {
    color: #0077a2;
    text-decoration-thickness: 2px;
}

/* Exception: No underline for table of contents links */
.row.content .wk-content-col .table-of-contents a {
    text-decoration: none !important;
}

.row.content .wk-content-col .table-of-contents a:hover {
    text-decoration: none !important;
}

/* Exception: Theme buttons inside article content must keep their button look,
   not inherit the blog link underline/colour. */
.row.content .wk-content-col a.button,
.row.content .wk-content-col a.button:hover {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-decoration-thickness: initial;
}

.row.content .wk-content-col a.button[data-button*=outline] {
    color: var(--color-primary);
}

.row.content .wk-content-col a.button[data-button*=outline]:hover {
    color: #fff;
}

/* Centre CTA buttons placed in article content */
.wk-content-col .blog-cta-button {
    display: flex;
    justify-content: center;
    margin: 2.5rem 0;
}

/* Lists - Unordered */
.wk-content-col ul,
.wk-case-study-content ul {
    display: block !important;
    flex-direction: unset !important;
    gap: unset !important;
    list-style-type: disc !important;
    padding-left: 2.5rem !important;
}

.wk-content-col ul li,
.wk-case-study-content ul li {
    display: list-item !important;
    flex-direction: unset !important;
    gap: unset !important;
    list-style: disc !important;
    margin: 0.75rem 0 !important;
    position: relative;
    color: #374151;
    font-size: 1.0625rem;
    line-height: 1.75rem;
}

.wk-content-col ul li::marker,
.wk-case-study-content ul li::marker {
    color: var(--color-primary);
    font-weight: 400;
}

/* Lists - Ordered */
.wk-content-col ol,
.wk-case-study-content ol {
    display: block !important;
    flex-direction: unset !important;
    gap: unset !important;
    list-style-type: decimal !important;
    padding-left: 2.5rem !important;
}

.wk-content-col ol li,
.wk-case-study-content ol li {
    display: list-item !important;
    flex-direction: unset !important;
    gap: unset !important;
    list-style: decimal !important;
    margin: 0.75rem 0 !important;
    position: relative;
    color: #374151;
    font-size: 1.0625rem;
    line-height: 1.75rem;
    padding-inline-start: 0.5rem;
}

.wk-content-col ol li::before,
.wk-case-study-content ol li::before {
    display: none !important;
    content: none !important;
}

.wk-content-col ol li::marker,
.wk-case-study-content ol li::marker {
    color: var(--color-primary);
    font-weight: 400;
}

/* Allow normal margins for child elements within list items */
.wk-content-col ul li > *,
.wk-content-col ol li > *,
.wk-case-study-content ul li > *,
.wk-case-study-content ol li > * {
    margin-top: revert !important;
    margin-bottom: revert !important;
    padding-top: revert !important;
    padding-bottom: revert !important;
}

/* Nested lists */
.wk-content-col ul ul,
.wk-content-col ol ol,
.wk-content-col ul ol,
.wk-content-col ol ul,
.wk-case-study-content ul ul,
.wk-case-study-content ol ol,
.wk-case-study-content ul ol,
.wk-case-study-content ol ul {
    margin: 0.5rem 0 !important;
    padding-left: 1.5rem !important;
}

/* Blockquotes - For statistics and emphasis */
.wk-content-col blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    margin: 2rem 0;
    background: #F9FAFB;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-style: normal;
    color: #374151;
    border-radius: 4px;
}

.wk-content-col blockquote strong {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.wk-content-col blockquote p {
    margin: 0 0 0.75rem 0;
}

.wk-content-col blockquote p:last-child {
    margin-bottom: 0;
}

/* Images */
.wk-content-col img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-box);
    margin: 2rem 0;
}

.wk-content-col figure {
    margin: 2rem 0;
}

.wk-content-col figcaption {
    font-size: 0.875rem;
    color: #6B7280;
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
    line-height: 1.5rem;
}

/* Responsive video embed (e.g. YouTube) */
.wk-content-col .article-video {
    margin: 2.5rem 0;
}

/* Cue above the video: signals the article continues below */
.wk-content-col .article-video-cue {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
}

.wk-content-col .article-video-cue::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 174, 239, 0.4), transparent);
}

.wk-content-col .article-video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-box);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: #000;
}

.wk-content-col .article-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tables */
.wk-content-col table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.9375rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-box);
    overflow: hidden;
}

.wk-content-col table thead {
    background: #F9FAFB;
}

.wk-content-col table th {
    padding: 0.875rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #111827;
    border-bottom: 2px solid #E5E7EB;
}

.wk-content-col table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #E5E7EB;
    color: #374151;
    line-height: 1.5rem;
}

.wk-content-col table tbody tr:last-child td {
    border-bottom: none;
}

.wk-content-col table tbody tr:hover {
    background: #F9FAFB;
}

/* Code blocks */
.wk-content-col pre {
    background: #1F2937;
    color: #F9FAFB;
    padding: 1.5rem;
    border-radius: var(--radius-box);
    overflow-x: auto;
    margin: 2rem 0;
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-family: 'Monaco', 'Courier New', monospace;
}

.wk-content-col code {
    background: #F3F4F6;
    color: #EF4444;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-family: 'Monaco', 'Courier New', monospace;
}

.wk-content-col pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Horizontal rule */
.wk-content-col hr {
    border: none;
    border-top: 1px solid #E5E7EB;
    margin: 3rem 0;
}

/* Strong and emphasis */
.wk-content-col strong,
.wk-content-col b {
    font-weight: 600;
    color: #111827;
}

.wk-content-col em,
.wk-content-col i {
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .wk-content-col h1 {
        font-size: 1.875rem;
        line-height: 2.25rem;
        margin: 2rem 0 1rem;
    }
    
    .wk-content-col h2 {
        font-size: 1.5rem;
        line-height: 2rem;
        margin: 2rem 0 1rem;
    }
    
    .wk-content-col h3 {
        font-size: 1.25rem;
        line-height: 1.75rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .wk-content-col h4 {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }
    
    .wk-content-col p {
        font-size: 1rem;
        line-height: 1.625rem;
    }
    
    .wk-content-col ul li,
    .wk-content-col ol li,
    .wk-case-study-content ul li,
    .wk-case-study-content ol li {
        font-size: 1rem;
        line-height: 1.625rem;
    }
    
    .wk-content-col blockquote {
        padding: 1rem 1rem 1rem 1.5rem;
        font-size: 1rem;
        margin: 1.5rem 0;
    }
    
    .wk-content-col blockquote strong {
        font-size: 1.25rem;
    }
    
    .wk-content-col table {
        font-size: 0.875rem;
    }
    
    .wk-content-col table th,
    .wk-content-col table td {
        padding: 0.625rem 0.75rem;
    }
    
    .wk-content-col pre {
        padding: 1rem;
        font-size: 0.8125rem;
    }
    
    .wk-content-col img,
    .wk-content-col figure {
        margin: 1.5rem 0;
    }
}
select.wk-form-field {
    appearance: none;
    min-height: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.375rem;
    outline: 0;
    font-family: "Gordita", "Gordita Fallback", sans-serif;
    font-size: 1rem;
    border: solid 1px rgba(var(--color-border), 1);
    color: var(--color-text);
}
select.wk-form-field:after {
    content: '';
}
.wk-form-field-container.wk-hidden {
    row-gap: 0;
    visibility: hidden;
    position: absolute;
    right: -99999px;
}
.wk-form-field-container textarea {
    border: solid 1px rgba(var(--color-border), 1);
    color: var(--color-text);
    font-family: "Gordita", "Gordita Fallback", sans-serif;
    font-size: 1rem;
    resize: vertical;
    min-height: 7rem;
}
.wk-form-field-container .chosen-container-multi {
    width: 100%!important;
}

.wk-form-field-container .chosen-container-multi .chosen-choices {
    display: block;
    padding: 6px 16px;
    border: solid 1px rgba(var(--color-border), 1);
    box-shadow: none;
    background-image: none;
    border-radius: 0.375rem;
}
.wk-form-field-container .chosen-container-multi .chosen-choices .search-choice {
    background-image: none;
    background-color: rgba(var(--color-border), 1);
    border: solid 1px rgba(var(--color-border), 1);
    padding: 5px 20px 5px 5px;
}
.wk-form-field-container .chosen-container-multi .chosen-choices .search-choice span {
    font-size: 1rem;
    line-height: 1rem;
}
.wk-form-field-container .chosen-container-multi .chosen-choices .search-choice .search-choice-close {
    top: 8px;
}
.wk-form-field-container .chosen-container-multi .chosen-choices .search-field input {
    min-height: 30px;
}
.wk-form-field-container .chosen-container-multi .chosen-drop {
    border-left: solid 1px rgba(var(--color-border), 1);
    border-right: solid 1px rgba(var(--color-border), 1);
    border-bottom: solid 1px rgba(var(--color-border), 1);
    border-top: none;
    box-shadow: none;
    background-image: none;
    margin-top: -3px;
    border-radius: 0 0 0.375rem 0.375rem;
    overflow: hidden;
    font-family: "Gordita", "Gordita Fallback", sans-serif;
    font-size: 1rem;
}
.wk-form-field-container .chosen-container-multi .chosen-drop .chosen-results {
    gap: 0;
}
.wk-form-field-container .chosen-container-multi .chosen-drop .chosen-results .highlighted {
    background-image: none;
    background-color: var(--color-primary);
}

/* Mobile: verbeter native multiselect styling */
@media (max-width: 768px) {
    /* Native multiselect styling voor mobiel */
    .wk-form-field-container select.wk-form-field[multiple] {
        padding: 12px 16px;
        font-size: 16px; /* Voorkomt zoom op iOS */
        min-height: 120px;
        border: solid 1px rgba(var(--color-border), 1);
        border-radius: 0.375rem;
        background-color: white;
    }
    
    /* Verberg Chosen container op mobiel als deze toch gerenderd is */
    .wk-form-field-container .chosen-container-multi {
        display: none !important;
    }
    
    /* Zorg dat native select zichtbaar is */
    .wk-form-field-container select.wk-form-field[multiple] {
        display: block !important;
    }
}
[data-cky-tag="detail-powered-by"] {
    display: none!important;
}
.cky-btn-accept {
    background: #076385 !important;
    border: 2px solid #076385 !important;
}
.cky-btn-reject {
    color: #076385 !important;
    border: 2px solid #076385 !important;
}
.cky-btn-customize {
    color: #076385 !important;
    border: 2px solid #076385 !important;
}
.cky-btn-revisit-wrapper {
    background: #076385 !important;
}
.cky-btn-preferences {
    color: #076385 !important;
    border: 2px solid #076385 !important;
}
.wpj-jtoc--items li:before {
    content: none !important;
}
.wpj-jtoc--item-content a::before {
    content: none !important;
}
li#nav_menu-2 {
    list-style: none;
}

/* Mobile-First Optimizations */
/* Base styles voor mobile */
.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

/* Verbeterde touch targets voor mobile */
@media (max-width: 767px) {
    #mainHeader ul li a,
    #mobileMenuWrap .menu a,
    .button,
    input[type="submit"],
    button {
        padding: 12px 15px; /* Grotere touch targets */
        min-height: 44px; /* Apple's aanbevolen minimum touch target size */
    }
    
    /* Verbeterde menu navigatie voor touch */
    #mobileMenuWrap .menu li {
        margin-bottom: 10px;
    }
    
    /* Verbeterde formulier elementen voor mobile */
    input, 
    select, 
    textarea {
        font-size: 16px; /* Voorkomt iOS zoom bij focus */
    }
    
    /* Swipe functionaliteit voor carousels */
    .swipe-area {
        touch-action: pan-y pinch-zoom;
    }
    
    /* Verbeterde leesbaarheid op kleine schermen */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* Print styles */
@media print {
    #mainHeader,
    #mainFooter,
    .no-print {
        display: none !important;
    }
    
    body {
        background: #fff;
        color: #000;
        margin: 0;
        padding: 0;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }
    
    h2, h3 {
        page-break-after: avoid;
    }
}

/* 404 Page Styling */
.error-404 {
    text-align: center;
    padding: 60px 20px;
    margin: 40px auto;
    max-width: 800px;
}

.error-404 .page-header {
    margin-bottom: 30px;
}

.error-404 .page-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.error-404 .page-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.error-404 .search-form {
    max-width: 500px;
    margin: 0 auto 40px;
}

.error-404 .search-form input[type="search"] {
    width: 70%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.error-404 .search-form input[type="submit"] {
    width: 30%;
    padding: 12px;
    background: #00AEEF;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.error-404-suggestions,
.error-404-recent-posts {
    margin-top: 40px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
}

.error-404-suggestions h2,
.error-404-recent-posts h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.error-404-suggestions ul,
.error-404-recent-posts ul,
.error-404 .popular-pages-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-404-suggestions li,
.error-404-recent-posts li,
.error-404 .popular-pages-menu li {
    margin-bottom: 10px;
}

.error-404-suggestions a,
.error-404-recent-posts a,
.error-404 .popular-pages-menu a {
    color: #00AEEF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.error-404-suggestions a:hover,
.error-404-recent-posts a:hover,
.error-404 .popular-pages-menu a:hover {
    color: #0077a2;
    text-decoration: underline;
}

.error-404 .back-home {
    margin-top: 40px;
}

.error-404 .back-home .button {
    display: inline-block;
    padding: 12px 25px;
    background: #00AEEF;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.error-404 .back-home .button:hover {
    background-color: #0056b3;
}

@media (max-width: 767px) {
    .error-404 {
        padding: 40px 20px;
    }
    
    .error-404 .page-title {
        font-size: 24px;
    }
    
    .error-404 .page-content p {
        font-size: 16px;
    }
    
    .error-404 .search-form input[type="search"],
    .error-404 .search-form input[type="submit"] {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Knowledge Base Improvements */
.popular-articles-grid {
    margin-bottom: 2rem;
}

.popular-articles-grid h3 {
    margin-bottom: 1.5rem;
    color: var(--color-text);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.popular-articles-grid h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
}

/* Article meta styling */
.wk-faq-module .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.wk-faq-module .view-count {
    font-size: 0.85rem;
    color: #666;
    background-color: #f5f5f5;
    padding: 3px 8px;
    border-radius: 12px;
}

/* Category Styling */
.wk-faq-module .grid .col {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 2rem;
}

.wk-faq-module .grid .col:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.wk-faq-module .grid .col h5 {
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.wk-faq-module .grid .col .show-all-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    position: relative;
}

.wk-faq-module .grid .col .show-all-link:after {
    content: '>';
    margin-left: 5px;
    transition: transform 0.2s ease;
    display: inline-block;
}

.wk-faq-module .grid .col .show-all-link:hover:after {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .popular-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .wk-faq-module .grid .col {
        width: 100%;
        max-width: 100%;
    }
}


/* Knowledge Base Improvements */
.wk-faq-module .grid h3 {
    margin-bottom: 1.5rem;
    color: var(--color-text);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.wk-faq-module .grid h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
}


/* Knowledge Base Improvements */
.search-input-wrapper {
    position: relative;
    width: 100%;
    display: block;
}

.search-input-wrapper input[type="search"] {
    width: 100%;
    display: block;
}

.live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}

.live-search-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.live-search-list li {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.live-search-list li:last-child {
    border-bottom: none;
}

.live-search-list li:hover,
.live-search-list li.selected {
    background-color: #f5f5f5;
    cursor: pointer;
}

.live-search-list li a {
    color: var(--color-text);
    text-decoration: none;
    display: block;
    font-weight: 400;
}

.live-search-list li a:hover {
    color: var(--color-primary);
}

.no-results {
    padding: 15px;
    text-align: center;
    color: #666;
}

/* Knowledge Base Navigation Buttons */
.kb-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: -20px 0 30px 0;
    padding: 20px 0;
    border-bottom: 1px solid rgba(var(--color-border), 0.5);
}

.kb-back-btn,
.kb-category-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background-color: var(--color-secondary-02);
    border-radius: var(--radius-button);
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.kb-back-btn:hover,
.kb-category-btn:hover {
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.kb-back-btn .dashicons,
.kb-category-btn .dashicons {
    margin-right: 8px;
    font-size: 16px;
    width: 16px;
    height: 16px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.kb-back-btn:hover .dashicons {
    transform: translateX(-3px);
}

.kb-category-btn:hover .dashicons {
    transform: scale(1.1);
}

@media (max-width: 479px) {
    .kb-navigation {
        flex-direction: column;
        gap: 10px;
        margin: 0 0 30px 0;
        padding: 15px 0;
    }
    
    .kb-back-btn,
    .kb-category-btn {
        width: 100%;
        justify-content: center;
    }
}

[data-background=gradientDark] h1,
[data-background=gradientDark] h2,
[data-background=gradientDark] h3,
[data-background=gradientDark] h4,
[data-background=gradientDark] h5,
[data-background=gradientDark] h6,
[data-background=gradientDark] p,
[data-background=gradientDarkDots] h1,
[data-background=gradientDarkDots] h2,
[data-background=gradientDarkDots] h3,
[data-background=gradientDarkDots] h4,
[data-background=gradientDarkDots] h5,
[data-background=gradientDarkDots] h6,
[data-background=gradientDarkDots] p,
[data-background=gradientDarkCircles] h1,
[data-background=gradientDarkCircles] h2,
[data-background=gradientDarkCircles] h3,
[data-background=gradientDarkCircles] h4,
[data-background=gradientDarkCircles] h5,
[data-background=gradientDarkCircles] h6,
[data-background=gradientDarkCircles] p,
[data-background=gradientDarkRobots] h1,
[data-background=gradientDarkRobots] h2,
[data-background=gradientDarkRobots] h3,
[data-background=gradientDarkRobots] h4,
[data-background=gradientDarkRobots] h5,
[data-background=gradientDarkRobots] h6,
[data-background=gradientDarkRobots] p {
  color: #fefefe !important;
}

[data-theme=dark] h1,
[data-theme=dark] h2,
[data-theme=dark] h3,
[data-theme=dark] h4,
[data-theme=dark] h5,
[data-theme=dark] h6,
[data-theme=dark] p {
  color: #fefefe !important;
}

/* Override for submenu text color */
[data-theme=dark] .submenu h1,
[data-theme=dark] .submenu h2,
[data-theme=dark] .submenu h3,
[data-theme=dark] .submenu h4,
[data-theme=dark] .submenu h5,
[data-theme=dark] .submenu h6,
[data-theme=dark] .submenu p {
  color: var(--color-text) !important;
}

/* Ensure submenu text remains dark */
#mainHeader .wrap > ul > li.hasSubmenu .submenu p,
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-group h4 {
  color: var(--color-text) !important;
}

/* Author Page Specific Styles */
.author-page-header {
    color: inherit;
}

.author-page-content[data-props="box shadow"] {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-box);
    margin-bottom: 2rem;
}

.author-page-content[data-props="box shadow"] .author-page-title {
    color: var(--color-title) !important;
    margin-top: 1.5rem;
}

.author-page-content[data-props="box shadow"] .author-page-description {
    color: var(--color-text) !important;
    margin: 1rem 0;
}

.author-page-avatar-wrap {
    text-align: center;
}

.author-page-avatar {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* Author Box (in blog posts) - Modern Card Design */
.author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    margin: 3rem 0;
    background: var(--color-secondary-02);
    border-radius: var(--radius-box);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.author-avatar-wrap {
    flex-shrink: 0;
}

.author-avatar {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    display: block;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.author-name {
    margin: 0;
    font-size: 1.5rem;
    color: var(--color-title);
}

.author-description {
    margin: 0;
    color: var(--color-text);
    line-height: 1.6;
}

.author-description p {
    margin: 0;
}

.author-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-posts-link {
    color: var(--color-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.author-posts-link:hover {
    color: var(--color-primary-lite);
}

.author-social {
    display: flex;
    gap: 0.75rem;
}

/* Mobile responsive author box */
@media (max-width: 639px) {
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }
    
    .author-info {
        align-items: center;
    }
    
    .author-social {
        justify-content: center;
    }
}

/* Related Posts Section */
.related-posts {
    margin: 3rem 0;
}

.related-posts-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-title);
}

.related-posts .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.related-posts article {
    background: white;
    border-radius: var(--radius-box);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-posts article:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.related-posts article a {
    display: block;
    text-decoration: none;
}

.related-posts .article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.related-posts article h4 {
    padding: 1.25rem;
    margin: 0;
    font-size: 1.125rem;
    color: var(--color-title);
    transition: color 0.3s ease;
}

.related-posts article:hover h4 {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .related-posts .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-posts .article-image {
        height: 180px;
    }
}

.author-page-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Author social links */
.author-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--color-primary);
    transition: background-color 0.15s ease-out, transform 0.15s ease-out;
    position: relative;
}

.author-social-link:hover {
    background-color: var(--color-primary-lite);
}

/* Icons using filter for fill-based SVGs */
.author-social-link.facebook::before,
.author-social-link.x::before,
.author-social-link.linkedin::before  {
    filter: brightness(0) invert(1);
}

.author-social-link.facebook::before {
    content: url("../images/icon-social-facebook.svg");
}

.author-social-link.x::before {
    content: url("../images/icon-social-x.svg");
}

/* LinkedIn using background-image for stroke-based SVG */
.author-social-link.linkedin::before {
  content: url("../images/icon-social-linkedin.svg") !important;
}

/* Override dark theme text colors for author box */
[data-theme="dark"] .author-page-content[data-props="box shadow"] {
    background: white;
}

[data-theme="dark"] .author-page-content[data-props="box shadow"] .author-page-title {
    color: var(--color-title) !important;
}

[data-theme="dark"] .author-page-content[data-props="box shadow"] .author-page-description {
    color: var(--color-text) !important;
}

.AdsProtection .col p,
.AdsProtection .col h5 {
  color: #000 !important;
}

/* Blog CTA Banner - Full Width with Gradient */
.blog-cta-banner {
  margin: 3rem 0;
  background: linear-gradient(135deg, #00AEEF 0%, #0077a2 100%);
  border-radius: var(--radius-box, 12px);
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 174, 239, 0.15);
  position: relative;
  overflow: hidden;
}

.blog-cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.blog-cta-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.blog-cta-banner-text {
  flex: 1;
}

.blog-cta-banner-text h3 {
  color: white;
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
  font-weight: 700;
}

.blog-cta-banner-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0;
}

.blog-cta-banner-action {
  flex-shrink: 0;
}

.blog-cta-banner-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: #00AEEF;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.blog-cta-banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
  color: #0077a2;
}

/* Responsive design for mobile */
@media (max-width: 767px) {
  .blog-cta-banner {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }
  
  .blog-cta-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .blog-cta-banner-text h3 {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  
  .blog-cta-banner-text p {
    font-size: 1rem;
  }
  
  .blog-cta-banner-button {
    width: 100%;
    text-align: center;
  }
}

/* Case Study Specific Styles */
.wk-case-study-content {
    --cs-primary: var(--color-primary);
    --cs-text: var(--color-text);
    --cs-text-light: var(--color-text-secondary);
    --cs-border: rgba(0, 0, 0, 0.1);
    --cs-bg-light: rgba(0, 0, 0, 0.02);
}

/* Wrapper for Company Info and Stats Side by Side */
.case-study-info-wrapper {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

/* Stack vertically when no logo is present */
.case-study-info-wrapper.no-logo-stack {
    flex-direction: column;
}

.case-study-info-wrapper.no-logo-stack .case-study-stats-section {
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
}

/* Company Info */
.case-study-company-info {
    flex: 1;
    background: var(--cs-bg-light);
    border-left: 4px solid var(--cs-primary);
    padding: 1.5rem;
    border-radius: 4px;
}

/* Stats Section */
.case-study-stats-section {
    flex: 0 0 auto;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--cs-primary) 0%, rgba(var(--color-primary-rgb, 0, 174, 239), 0.85) 100%);
    border-radius: 8px;
    text-align: center;
}

.case-study-stats-section .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-study-stats-section .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 0.5rem;
}

.case-study-stats-section .stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-company-info .company-logo {
    margin-bottom: 1rem;
    text-align: left;
}

.case-study-company-info .company-logo img {
    max-height: 60px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.case-study-company-info .company-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--cs-primary);
}

.case-study-company-info .company-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.case-study-company-info .company-meta span {
    color: var(--cs-text);
}

.case-study-company-info .company-meta strong {
    font-weight: 600;
    color: var(--cs-text-light);
}

/* Related Case Studies */
.wk-case-study-content .related {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--cs-border);
}

.wk-case-study-content .related h4 {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--cs-primary);
}

/* Mobile Responsive - Case Studies */
@media (max-width: 768px) {
    .case-study-info-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .case-study-stats-section {
        min-width: auto;
        flex-direction: row;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .case-study-stats-section .stat-value {
        font-size: 2rem;
    }
    
    .case-study-company-info .company-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 479px) {
    .case-study-info-wrapper {
        gap: 1rem;
    }
    
    .case-study-stats-section {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .case-study-stats-section .stat-value {
        font-size: 1.75rem;
    }
}

/* Post FAQ Section */
.post-faq-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border, #e5e7eb);
}

.post-faq-section > h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--color-title);
}

/* FAQ list - always visible, no accordion */
.post-faq-section .accordion {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
}

.post-faq-section .accordion > li {
  display: block !important;
  list-style: none !important;
  border: none;
  flex-direction: unset !important;
  gap: unset !important;
}

.post-faq-section .accordion h5 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-title);
  font-weight: 600;
}

.post-faq-section .accordion article {
  display: block;
  color: var(--color-text);
  line-height: 1.6;
}

.post-faq-section .accordion article > * {
  margin: 0 0 1rem 0;
}

.post-faq-section .accordion article > *:last-child {
  margin-bottom: 0;
}

/* Remove any accordion icons/toggles */
.post-faq-section .accordion > li::before,
.post-faq-section .accordion > li::after {
  display: none !important;
}

/* Footer Partner Logo - Maintain aspect ratio */
.footer-partner-logo {
  display: inline-block;
  margin-top: 20px;
}

.footer-partner-logo img {
  max-width: 120px;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.footer-partner-logo:hover img {
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-partner-logo img {
    max-width: 100px;
  }
}

/* ============================================
   CONTACT FORM MODULE SPECIFIC STYLES
   ============================================ */

/* Reduce row-gap for contact form content column */
.wkContactForm .col[data-props*=hGap48] {
    row-gap: 1rem;
}

/* Reduced margins for contact form content */
.wkContactForm .wk-content-col h1 {
    margin: 1rem 0 0.75rem;
}

.wkContactForm .wk-content-col h2 {
    margin: 1.5rem 0 0.75rem;
}

.wkContactForm .wk-content-col h3 {
    margin: 1rem 0 0.5rem;
}

.wkContactForm .wk-content-col h4 {
    margin: 1rem 0 0.5rem;
}

.wkContactForm .wk-content-col h5 {
    margin: 0.75rem 0 0.5rem;
}

.wkContactForm .wk-content-col h6 {
    margin: 0.75rem 0 0.5rem;
}

.wkContactForm .wk-content-col p {
    margin: 0 0 0.75rem 0;
}

.wkContactForm .wk-content-col ul {
    display: block !important;
    flex-direction: unset !important;
    gap: unset !important;
    list-style-type: disc !important;
    padding-left: 2.5rem !important;
}

.wkContactForm .wk-content-col ol {
    display: block !important;
    flex-direction: unset !important;
    gap: unset !important;
    list-style-type: decimal !important;
    padding-left: 2.5rem !important;
}

.wkContactForm .wk-content-col ul li,
.wkContactForm .wk-content-col ol li {
    display: list-item !important;
    flex-direction: unset !important;
    gap: unset !important;
    margin: 0.5rem 0 !important;
}

.wkContactForm .wk-content-col ul li {
    list-style: disc !important;
}

.wkContactForm .wk-content-col ol li {
    list-style: decimal !important;
}

.wkContactForm .wk-content-col ol li::before {
    display: none !important;
    content: none !important;
}

.wkContactForm .wk-content-col ul li::marker,
.wkContactForm .wk-content-col ol li::marker {
    color: var(--color-primary);
    font-weight: 400;
}

.wkContactForm .wk-content-col ol li {
    padding-inline-start: 0.5rem;
}

.wkContactForm .wk-content-col ul li > *,
.wkContactForm .wk-content-col ol li > * {
    margin-top: revert !important;
    margin-bottom: revert !important;
    padding-top: revert !important;
    padding-bottom: revert !important;
}

.wkContactForm .wk-content-col blockquote {
    margin: 1rem 0;
}

/* White text on dark background for contact form */
.wkContactForm[data-theme="dark"] .wk-content-col h1,
.wkContactForm[data-theme="dark"] .wk-content-col h2,
.wkContactForm[data-theme="dark"] .wk-content-col h3,
.wkContactForm[data-theme="dark"] .wk-content-col h4,
.wkContactForm[data-theme="dark"] .wk-content-col h5,
.wkContactForm[data-theme="dark"] .wk-content-col h6,
.wkContactForm[data-theme="dark"] .wk-content-col p,
.wkContactForm[data-theme="dark"] .wk-content-col ul li,
.wkContactForm[data-theme="dark"] .wk-content-col ol li,
.wkContactForm[data-theme="dark"] .wk-content-col strong,
.wkContactForm[data-theme="dark"] .wk-content-col b {
    color: #fefefe !important;
}

.wkContactForm[data-theme="dark"] .wk-content-col ul li::marker,
.wkContactForm[data-theme="dark"] .wk-content-col ol li::marker {
    color: var(--color-primary) !important;
    font-weight: 400 !important;
}

.wkContactForm[data-background="gradientDark"] .wk-content-col h1,
.wkContactForm[data-background="gradientDark"] .wk-content-col h2,
.wkContactForm[data-background="gradientDark"] .wk-content-col h3,
.wkContactForm[data-background="gradientDark"] .wk-content-col h4,
.wkContactForm[data-background="gradientDark"] .wk-content-col h5,
.wkContactForm[data-background="gradientDark"] .wk-content-col h6,
.wkContactForm[data-background="gradientDark"] .wk-content-col p,
.wkContactForm[data-background="gradientDark"] .wk-content-col ul li,
.wkContactForm[data-background="gradientDark"] .wk-content-col ol li,
.wkContactForm[data-background="gradientDark"] .wk-content-col strong,
.wkContactForm[data-background="gradientDark"] .wk-content-col b,
.wkContactForm[data-background="gradientDarkRobots"] .wk-content-col h1,
.wkContactForm[data-background="gradientDarkRobots"] .wk-content-col h2,
.wkContactForm[data-background="gradientDarkRobots"] .wk-content-col h3,
.wkContactForm[data-background="gradientDarkRobots"] .wk-content-col h4,
.wkContactForm[data-background="gradientDarkRobots"] .wk-content-col h5,
.wkContactForm[data-background="gradientDarkRobots"] .wk-content-col h6,
.wkContactForm[data-background="gradientDarkRobots"] .wk-content-col p,
.wkContactForm[data-background="gradientDarkRobots"] .wk-content-col ul li,
.wkContactForm[data-background="gradientDarkRobots"] .wk-content-col ol li,
.wkContactForm[data-background="gradientDarkRobots"] .wk-content-col strong,
.wkContactForm[data-background="gradientDarkRobots"] .wk-content-col b {
    color: #fefefe !important;
}

.wkContactForm[data-background="gradientDark"] .wk-content-col ul li::marker,
.wkContactForm[data-background="gradientDark"] .wk-content-col ol li::marker,
.wkContactForm[data-background="gradientDarkRobots"] .wk-content-col ul li::marker,
.wkContactForm[data-background="gradientDarkRobots"] .wk-content-col ol li::marker {
    color: var(--color-primary) !important;
    font-weight: 400 !important;
}

/* Trust Badges Module
   Scoped selectors avoid !important by outweighing WPBakery defaults */
div.trust-badges-container {
    width: 100%;
    overflow: visible;
    border: none;
    background: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    padding-bottom: 50px;
}
div.trust-badges-container .trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    overflow: visible;
    border: none;
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: none;
    min-height: auto;
}
div.trust-badges-container .trust-badge {
    flex: 0 0 auto;
    display: block;
    overflow: visible;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    width: auto;
    min-width: 0;
}
div.trust-badges-container .trust-badge img,
div.trust-badges-container .trust-badge svg {
    max-width: none;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    min-width: auto;
    min-height: auto;
}

/* Spacing Variants */
div.trust-badges-spacing--klein {
    padding-bottom: 50px;
}
div.trust-badges-spacing--klein .trust-badges-row {
    padding-top: 20px;
}
div.trust-badges-spacing--groot {
    padding-bottom: 60px;
}
div.trust-badges-spacing--groot .trust-badges-row {
    padding-top: 60px;
}

/* Badge Size Variants */
div.trust-badges-container.trust-badges-size--klein .trust-badge img,
div.trust-badges-container.trust-badges-size--klein .trust-badge svg {
    max-height: 100px;
    height: auto;
}
div.trust-badges-size--klein .trust-badges-row {
    gap: 0.75rem;
}
div.trust-badges-container.trust-badges-size--groot .trust-badge img,
div.trust-badges-container.trust-badges-size--groot .trust-badge svg {
    max-height: 180px;
    height: auto;
}
div.trust-badges-size--groot .trust-badges-row {
    gap: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    div.trust-badges-container.trust-badges-size--klein .trust-badge img,
    div.trust-badges-container.trust-badges-size--klein .trust-badge svg {
        max-height: 80px;
    }
    div.trust-badges-container.trust-badges-size--groot .trust-badge img,
    div.trust-badges-container.trust-badges-size--groot .trust-badge svg {
        max-height: 140px;
    }
    div.trust-badges-size--klein .trust-badges-row {
        gap: 0.625rem;
    }
    div.trust-badges-size--groot .trust-badges-row {
        gap: 1.25rem;
    }
    div.trust-badges-spacing--klein {
        padding-bottom: 40px;
    }
    div.trust-badges-spacing--klein .trust-badges-row {
        padding-top: 15px;
    }
    div.trust-badges-spacing--groot {
        padding-bottom: 50px;
    }
    div.trust-badges-spacing--groot .trust-badges-row {
        padding-top: 45px;
    }
}
@media (max-width: 768px) {
    div.trust-badges-container.trust-badges-size--klein .trust-badge img,
    div.trust-badges-container.trust-badges-size--klein .trust-badge svg {
        max-height: 60px;
    }
    div.trust-badges-container.trust-badges-size--groot .trust-badge img,
    div.trust-badges-container.trust-badges-size--groot .trust-badge svg {
        max-height: 100px;
    }
    div.trust-badges-size--klein .trust-badges-row {
        gap: 0.5rem;
    }
    div.trust-badges-size--groot .trust-badges-row {
        gap: 1rem;
    }
    div.trust-badges-spacing--klein {
        padding-bottom: 35px;
    }
    div.trust-badges-spacing--klein .trust-badges-row {
        padding-top: 12px;
    }
    div.trust-badges-spacing--groot {
        padding-bottom: 45px;
    }
    div.trust-badges-spacing--groot .trust-badges-row {
        padding-top: 35px;
    }
}
@media (max-width: 480px) {
    div.trust-badges-container.trust-badges-size--klein .trust-badge img,
    div.trust-badges-container.trust-badges-size--klein .trust-badge svg {
        max-height: 50px;
    }
    div.trust-badges-container.trust-badges-size--groot .trust-badge img,
    div.trust-badges-container.trust-badges-size--groot .trust-badge svg {
        max-height: 80px;
    }
    div.trust-badges-size--klein .trust-badges-row {
        gap: 0.5rem;
    }
    div.trust-badges-size--groot .trust-badges-row {
        gap: 0.75rem;
    }
    div.trust-badges-spacing--klein {
        padding-bottom: 30px;
    }
    div.trust-badges-spacing--klein .trust-badges-row {
        padding-top: 10px;
    }
    div.trust-badges-spacing--groot {
        padding-bottom: 40px;
    }
    div.trust-badges-spacing--groot .trust-badges-row {
        padding-top: 25px;
    }
}
@media (max-width: 360px) {
    div.trust-badges-container.trust-badges-size--klein .trust-badge img,
    div.trust-badges-container.trust-badges-size--klein .trust-badge svg {
        max-height: 40px;
    }
    div.trust-badges-container.trust-badges-size--groot .trust-badge img,
    div.trust-badges-container.trust-badges-size--groot .trust-badge svg {
        max-height: 60px;
    }
    div.trust-badges-size--klein .trust-badges-row {
        gap: 0.375rem;
    }
    div.trust-badges-size--groot .trust-badges-row {
        gap: 0.5rem;
    }
    div.trust-badges-spacing--klein {
        padding-bottom: 25px;
    }
    div.trust-badges-spacing--klein .trust-badges-row {
        padding-top: 8px;
    }
    div.trust-badges-spacing--groot {
        padding-bottom: 35px;
    }
    div.trust-badges-spacing--groot .trust-badges-row {
        padding-top: 20px;
    }
}

/* Responsive fixes for ellipseGreyLite section */
@media (max-width: 769px) {
  .wk-section[data-background="ellipseGreyLite"] .grid .col {
    width: 100%;
    max-width: 100%;
  }
  .wk-section[data-background="ellipseGreyLite"] .grid {
    gap: 3rem;
  }
}

@media (max-width: 641px) {
  .wk-section[data-background="ellipseGreyLite"] .grid {
    gap: 2rem;
  }
  .wk-section[data-background="ellipseGreyLite"] .grid .col:nth-of-type(2) {
    text-align: center;
  }
}

/* Setup Steps (homepage "Start protecting" section) */
.wk-section .col .setup-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin: 0.5rem 0 1.5rem;
  text-align: left;
}
.wk-section .col .setup-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 1.75rem;
  row-gap: 0;
}
.wk-section .col .setup-step:last-child {
  padding-bottom: 0;
}
.wk-section .col .setup-step::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-lite) 100%);
  opacity: 0.25;
}
.wk-section .col .setup-step:last-child::before {
  display: none;
}
.wk-section .col .setup-step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 174, 239, 0.25);
  position: relative;
  z-index: 1;
  line-height: 1;
}
.wk-section .col .setup-step-content {
  padding-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.wk-section .col .setup-step-content h4 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--color-title);
}
.wk-section .col .setup-step-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.5;
}
@media (max-width: 641px) {
  .wk-section .col .setup-steps {
    align-items: flex-start;
    text-align: left;
  }
  .wk-section .col .setup-step-content h4 {
    font-size: 1rem;
  }
}

/* Product Protectors Module */
.product-protectors {
  position: relative;
  padding-bottom: 1rem;
}

.product-protectors .protectors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Override grid system: .grid .col[data-col] has specificity (0,0,3) so we need (0,0,4) */
.product-protectors .protectors-grid .protector-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 0 0 calc(50% - 0.75rem);
  width: calc(50% - 0.75rem);
  max-width: calc(50% - 0.75rem);
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-box);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 174, 239, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-protectors .protector-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 174, 239, 0.1);
  border-color: rgba(0, 174, 239, 0.3);
}

.product-protectors .protector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00AEEF 0%, #59D2FF 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-protectors .protector-card:hover::before {
  opacity: 1;
}

.product-protectors .protector-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.product-protectors .protector-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.product-protectors .protector-icon img {
  max-width: 52px;
  max-height: 52px;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

.product-protectors .protector-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-title);
  line-height: 1.25;
}

.product-protectors .protector-description {
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
  font-size: 0.9375rem;
}

.product-protectors .protector-description strong {
  font-weight: 600;
  color: #00AEEF;
}

/* Responsive - Large tablet (1024px and below) */
@media (max-width: 1024px) {
  .product-protectors .protectors-grid .protector-card {
    padding: 1.75rem;
  }

  .product-protectors .protector-title {
    font-size: 1.2rem;
  }

  .product-protectors .protector-description {
    font-size: 0.875rem;
  }
}

/* Responsive - Tablet (768px and below): single column */
@media (max-width: 768px) {
  .product-protectors .protectors-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .product-protectors .protectors-grid .protector-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
  }

  .product-protectors .protector-header {
    gap: 0.875rem;
  }

  .product-protectors .protector-icon {
    width: 44px;
    height: 44px;
  }

  .product-protectors .protector-icon img {
    max-width: 44px;
    max-height: 44px;
  }

  .product-protectors .protector-card::before {
    width: 100%;
    height: 3px;
    left: 0;
    top: 0;
  }

  .product-protectors .protector-title {
    font-size: 1.125rem;
  }

  .product-protectors .protector-description {
    font-size: 0.875rem;
  }
}

/* Responsive - Mobile (480px and below) */
@media (max-width: 480px) {
  .product-protectors .protectors-grid {
    gap: 0.875rem;
  }

  .product-protectors .protectors-grid .protector-card {
    padding: 1.25rem;
  }

  .product-protectors .protector-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }

  .product-protectors .protector-icon {
    width: 40px;
    height: 40px;
  }

  .product-protectors .protector-icon img {
    max-width: 40px;
    max-height: 40px;
  }

  .product-protectors .protector-title {
    font-size: 1.0625rem;
  }

  .product-protectors .protector-description {
    font-size: 0.8125rem;
    line-height: 1.55;
  }
}


/* =============================================
   Feature Grid Module
   ============================================= */

.feature-grid {
  position: relative;
}

.feature-grid-header {
  max-width: 640px;
  margin: 0 auto;
}

.feature-grid-subtitle {
  color: var(--color-text);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.feature-grid-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
  max-width: 1060px;
  margin: 0 auto;
}

.feature-grid-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-grid-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(0, 174, 239, 0.08);
  color: #00AEEF;
  margin-top: 0.125rem;
}

.feature-grid-icon svg {
  width: 22px;
  height: 22px;
}

.feature-grid-text {
  flex: 1;
  min-width: 0;
}

.feature-grid-title {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-title);
  line-height: 1.4;
}

.feature-grid-description {
  color: var(--color-text);
  line-height: 1.55;
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.8;
}

.feature-grid-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 1060px;
  margin: 4rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-grid-stat {
  text-align: center;
}

.feature-grid-stat span {
  display: block;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #00AEEF 0%, #8FE1FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-grid-stat p {
  margin: 0.375rem 0 0;
  font-size: 0.875rem;
  color: #4A555A;
}

@media (max-width: 1024px) {
  .feature-grid-items {
    gap: 2rem 3rem;
  }
}

@media (max-width: 768px) {
  .feature-grid-items {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 520px;
  }
  .feature-grid-stats {
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
  .feature-grid-stat {
    flex: 1 1 40%;
  }
  .feature-grid-stat span {
    font-size: 2.25rem;
  }
}

@media (max-width: 479px) {
  .feature-grid-stat span {
    font-size: 1.75rem;
  }
  .feature-grid-stats {
    gap: 1.5rem;
  }
}


/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  [data-reveal].animate {
    opacity: 1;
    transform: none;
  }
  
  /* Also disable card hover animations for users who prefer reduced motion */
  .wk-price-plan:hover,
  .col[data-props*="box"][data-props*="shadow"]:hover,
  .trust-badge:hover,
  .footer-trust-badge:hover,
  a.button:hover,
  input:focus,
  textarea:focus,
  select:focus {
    transform: none !important;
  }
}

/* Disable hover effects on touch devices to prevent sticky hover states */
@media (hover: none) and (pointer: coarse) {
  .wk-price-plan:hover,
  .col[data-props*="box"][data-props*="shadow"]:hover,
  .trust-badge:hover,
  .footer-trust-badge:hover {
    transform: none;
    box-shadow: inherit;
  }
  
  /* Keep button hover effects but reduce transform */
  a.button:hover {
    transform: translateY(-1px);
  }
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */

.announcement-bar {
  width: 100%;
  background: linear-gradient(135deg, #6C2BD9 0%, #4F46E5 100%);
  color: #ffffff;
  padding: 10px 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  min-height: 48px;
}

/* Reserve space for fixed announcement bar + push header down (CLS prevention) */
body.has-announcement-bar {
  padding-top: 48px;
}
body.has-announcement-bar #mainHeader {
  top: 48px;
}

.announcement-bar.hidden {
  display: none !important;
}

.announcement-bar__wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  padding: 0 50px;
}

.announcement-bar__content {
  flex: 1;
  text-align: center;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.announcement-bar__content * {
  color: inherit !important;
}

.announcement-bar__content p {
  margin: 0;
  display: inline;
  color: inherit !important;
}

.announcement-bar__content strong {
  font-weight: 700;
  color: inherit !important;
}

.announcement-bar__content a {
  color: inherit !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.announcement-bar__content a:hover {
  text-decoration-thickness: 2px;
  color: inherit !important;
}

.announcement-bar__countdown {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 6px;
  padding: 6px 10px;
  min-width: 55px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.countdown-number {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-family: 'Gordita', 'Gordita Fallback', -apple-system, BlinkMacSystemFont, sans-serif;
}

.countdown-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
  opacity: 0.95;
  font-weight: 600;
}

.announcement-bar__button {
  background: rgba(255, 255, 255, 0.95);
  color: #6C2BD9;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.announcement-bar__button:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.announcement-bar__close {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}

.announcement-bar__close:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}

/* No box-shadow or pulse animation to prevent visual gaps between bar and header */

/* Tablet */
@media (max-width: 1024px) {
  .announcement-bar {
    padding: 10px 20px;
  }
  .announcement-bar__wrap {
    gap: 16px;
    padding: 0 45px;
  }
  .announcement-bar__content {
    font-size: 14px;
  }
  .announcement-bar__button {
    padding: 7px 18px;
    font-size: 13px;
  }
  .countdown-unit {
    min-width: 48px;
    padding: 5px 8px;
  }
  .countdown-number {
    font-size: 18px;
  }
  .countdown-label {
    font-size: 9px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .announcement-bar {
    padding: 10px 20px;
    min-height: 60px;
  }
  body.has-announcement-bar {
    padding-top: 60px;
  }
  body.has-announcement-bar #mainHeader {
    top: 60px;
  }
  .announcement-bar__wrap {
    flex-direction: column;
    gap: 10px;
    padding: 0 40px 0 10px;
  }
  .announcement-bar__content {
    font-size: 13px;
    line-height: 1.4;
  }
  .announcement-bar__countdown {
    gap: 6px;
  }
  .announcement-bar__button {
    padding: 7px 18px;
    font-size: 13px;
  }
  .countdown-unit {
    min-width: 45px;
    padding: 5px 8px;
  }
  .countdown-number {
    font-size: 16px;
  }
  .countdown-label {
    font-size: 8px;
  }
  .announcement-bar__close {
    right: 6px;
    width: 26px;
    height: 26px;
    font-size: 18px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .announcement-bar {
    padding: 8px 16px;
    min-height: 70px;
  }
  body.has-announcement-bar {
    padding-top: 70px;
  }
  body.has-announcement-bar #mainHeader {
    top: 70px;
  }
  .announcement-bar__wrap {
    padding: 0 36px 0 8px;
  }
  .announcement-bar__content {
    font-size: 12px;
  }
  .announcement-bar__countdown {
    gap: 5px;
  }
  .announcement-bar__button {
    padding: 6px 16px;
    font-size: 12px;
  }
  .countdown-unit {
    min-width: 38px;
    padding: 4px 6px;
  }
  .countdown-number {
    font-size: 14px;
  }
  .countdown-label {
    font-size: 7px;
    letter-spacing: 0.4px;
  }
  .announcement-bar__close {
    width: 24px;
    height: 24px;
    font-size: 18px;
    right: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-bar {
    animation: none;
  }
}

/* Homepage before/after comparison */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 1.5rem;
  width: 100%;
}
.comparison-before,
.comparison-after {
  padding: 1.5rem;
  border-radius: var(--radius-box);
}
.comparison-before {
  background-color: rgba(235, 87, 87, 0.04);
  border: 1px solid rgba(235, 87, 87, 0.12);
}
.comparison-after {
  background-color: rgba(39, 174, 96, 0.04);
  border: 1px solid rgba(39, 174, 96, 0.12);
}
@media (max-width: 769px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage persona paths — force the parent col to full width */
.wk-section .grid:has(.persona-paths) {
  max-width: 100%;
}
.wk-section .grid:has(.persona-paths) .col {
  width: 100% !important;
  max-width: 100% !important;
}
.wk-section .col .persona-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 2rem;
  text-align: left;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.wk-section .col .persona-paths .persona-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  border-radius: var(--radius-box);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  height: 100%;
}
.wk-section .col .persona-paths .persona-card h3 {
  margin-bottom: 0.75rem;
  width: 100%;
}
.wk-section .col .persona-paths .persona-card p {
  margin-bottom: 1.25rem;
  color: var(--color-text-secondary, #6b7280);
  width: 100%;
}
.wk-section .col .persona-paths .persona-card a.button {
  margin-top: auto;
  align-self: center;
  min-width: min(14rem, 100%);
  justify-content: center;
  width: fit-content;
}
/* 2-column layout when persona-paths has exactly 2 cards */
.wk-section .col .persona-paths:has(> .persona-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
}
/* 2x2 layout when persona-paths has exactly 4 cards */
.wk-section .col .persona-paths:has(> .persona-card:nth-child(4):last-child) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
}
.wk-section .col .persona-paths:has(> .persona-card:nth-child(4):last-child) .persona-card a.button {
  min-width: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Collapse padding between consecutive greyLite sections */
[data-background="greyLite"] + [data-background="greyLite"] {
  padding-top: 0;
}

@media (max-width: 993px) {
  .wk-section .col .persona-paths {
    grid-template-columns: repeat(2, 1fr);
  }
  .wk-section .col .persona-paths:has(> .persona-card:nth-child(2):last-child),
  .wk-section .col .persona-paths:has(> .persona-card:nth-child(4):last-child) {
    max-width: 100%;
  }
}
@media (max-width: 769px) {
  .wk-section .col .persona-paths,
  .wk-section .col .persona-paths:has(> .persona-card:nth-child(4):last-child) {
    grid-template-columns: 1fr;
    max-width: 100%;
    text-align: left;
  }
  .wk-section .col .persona-paths .persona-card {
    padding: 1.5rem;
  }
  .wk-section .col .persona-paths .persona-card a.button {
    align-self: flex-start;
  }
}
@media (max-width: 480px) {
  .wk-section .col .persona-paths {
    gap: 1rem;
  }
  .wk-section .col .persona-paths .persona-card {
    padding: 1.25rem;
  }
}

/* Trust badges bottom spacing */
.trust-badges-section {
  margin-bottom: 3rem;
}

/* Dark theme text links - white on dark backgrounds */
[data-theme=dark] a[data-type*=arrow] {
  color: var(--color-title);
}
[data-theme=dark] a[data-type*=arrow]::after {
  filter: brightness(0) invert(1);
}

/* ============================================================
   How ClickPatrol Works - Process Flow (9-step zigzag diagram)
   Used on /how-it-works/ — see page-content/how-it-works-content.txt
   Default: 2-col snake (tablet). Desktop overrides to 3-col.
   Mobile collapses to single column with vertical arrows.
   ============================================================ */

/* Force the wk_section to span the full content width */
.wk-section .grid:has(.process-flow) {
  max-width: 100%;
}
.wk-section .grid:has(.process-flow) .col {
  width: 100% !important;
  max-width: 100% !important;
  text-align: center;
}

.wk-section .col .process-flow-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--color-text);
  text-align: center;
}

.wk-section .col .process-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem 3rem;
  margin: 2rem auto 1.5rem;
  max-width: 1100px;
  text-align: left;
  position: relative;
}

.wk-section .col .process-flow .process-step {
  position: relative;
  background: #fff;
  border-radius: var(--radius-box, 12px);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm, 0 4px 16px rgba(0, 174, 239, 0.08));
  border: 1px solid rgba(0, 174, 239, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform .3s ease, box-shadow .3s ease;
  z-index: 1;
}
.wk-section .col .process-flow .process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg, 0 12px 32px rgba(0, 174, 239, 0.18));
}

.wk-section .col .process-flow .process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0, 174, 239, 0.25);
}

.wk-section .col .process-flow .process-step h4 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--color-title);
  font-weight: 700;
}
.wk-section .col .process-flow .process-step p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text);
}

/* Tablet 2-col snake placement */
.wk-section .col .process-flow .process-step:nth-child(1) { grid-area: 1 / 1; }
.wk-section .col .process-flow .process-step:nth-child(2) { grid-area: 1 / 2; }
.wk-section .col .process-flow .process-step:nth-child(3) { grid-area: 2 / 2; }
.wk-section .col .process-flow .process-step:nth-child(4) { grid-area: 2 / 1; }
.wk-section .col .process-flow .process-step:nth-child(5) { grid-area: 3 / 1; }
.wk-section .col .process-flow .process-step:nth-child(6) { grid-area: 3 / 2; }
.wk-section .col .process-flow .process-step:nth-child(7) { grid-area: 4 / 2; }
.wk-section .col .process-flow .process-step:nth-child(8) { grid-area: 4 / 1; }
.wk-section .col .process-flow .process-step:nth-child(9) { grid-area: 5 / 1; }

/* Base arrow (right-pointing SVG, brand color) */
.wk-section .col .process-flow .process-step::after {
  content: '';
  position: absolute;
  pointer-events: none;
  width: 48px;
  height: 48px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none'><path d='M8 24 H36 M28 16 L36 24 L28 32' stroke='%2300AEEF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.75;
  z-index: 0;
}
.wk-section .col .process-flow .process-step:last-child::after {
  display: none;
}

/* Tablet arrows: 1,5 right - 3,7 left - 2,4,6,8 down */
.wk-section .col .process-flow .process-step:nth-child(1)::after,
.wk-section .col .process-flow .process-step:nth-child(5)::after {
  right: -42px;
  top: 50%;
  transform: translateY(-50%);
}
.wk-section .col .process-flow .process-step:nth-child(3)::after,
.wk-section .col .process-flow .process-step:nth-child(7)::after {
  left: -42px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.wk-section .col .process-flow .process-step:nth-child(2)::after,
.wk-section .col .process-flow .process-step:nth-child(4)::after,
.wk-section .col .process-flow .process-step:nth-child(6)::after,
.wk-section .col .process-flow .process-step:nth-child(8)::after {
  left: 50%;
  bottom: -52px;
  transform: translateX(-50%) rotate(90deg);
}

/* Desktop: 3-col snake overrides everything */
@media (min-width: 1025px) {
  .wk-section .col .process-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem 3.75rem;
    max-width: 1200px;
  }
  .wk-section .col .process-flow .process-step:nth-child(1) { grid-area: 1 / 1; }
  .wk-section .col .process-flow .process-step:nth-child(2) { grid-area: 1 / 2; }
  .wk-section .col .process-flow .process-step:nth-child(3) { grid-area: 1 / 3; }
  .wk-section .col .process-flow .process-step:nth-child(4) { grid-area: 2 / 3; }
  .wk-section .col .process-flow .process-step:nth-child(5) { grid-area: 2 / 2; }
  .wk-section .col .process-flow .process-step:nth-child(6) { grid-area: 2 / 1; }
  .wk-section .col .process-flow .process-step:nth-child(7) { grid-area: 3 / 1; }
  .wk-section .col .process-flow .process-step:nth-child(8) { grid-area: 3 / 2; }
  .wk-section .col .process-flow .process-step:nth-child(9) { grid-area: 3 / 3; }

  .wk-section .col .process-flow .process-step::after {
    width: 56px;
    height: 56px;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }
  .wk-section .col .process-flow .process-step:nth-child(1)::after,
  .wk-section .col .process-flow .process-step:nth-child(2)::after,
  .wk-section .col .process-flow .process-step:nth-child(7)::after,
  .wk-section .col .process-flow .process-step:nth-child(8)::after {
    right: -54px;
    top: 50%;
    transform: translateY(-50%);
  }
  .wk-section .col .process-flow .process-step:nth-child(4)::after,
  .wk-section .col .process-flow .process-step:nth-child(5)::after {
    left: -54px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
  }
  .wk-section .col .process-flow .process-step:nth-child(3)::after,
  .wk-section .col .process-flow .process-step:nth-child(6)::after {
    left: 50%;
    bottom: -56px;
    transform: translateX(-50%) rotate(90deg);
  }
}

/* Mobile: single column, all arrows point down */
@media (max-width: 640px) {
  .wk-section .col .process-flow {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 100%;
  }
  .wk-section .col .process-flow .process-step:nth-child(n) {
    grid-area: auto;
  }
  .wk-section .col .process-flow .process-step::after {
    display: block;
    width: 36px;
    height: 36px;
    right: auto !important;
    left: 50% !important;
    top: auto !important;
    bottom: -34px !important;
    transform: translateX(-50%) rotate(90deg) !important;
  }
  .wk-section .col .process-flow .process-step:last-child::after {
    display: none !important;
  }
  .wk-section .col .process-flow .process-step h4 {
    font-size: 1rem;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .wk-section .col .process-flow .process-step {
    transition: none;
  }
  .wk-section .col .process-flow .process-step:hover {
    transform: none;
  }
}

/* ============================================================
   How ClickPatrol Works - 6-step infographic flow
   Used on /how-it-works/ — see page-content/how-it-works-content.txt
   ============================================================ */

.wk-section .grid:has(.how-works-infographic) {
  max-width: 100%;
}
.wk-section .grid:has(.how-works-infographic) .col {
  width: 100% !important;
  max-width: 100% !important;
  text-align: center;
}

.wk-section .col .how-works-intro {
  max-width: 790px;
  margin: 0 auto 2.75rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
}

.wk-section .col .how-works-infographic {
  --flow-blue: #00aeef;
  --flow-navy: #051f48;
  --flow-soft-blue: rgba(0, 174, 239, 0.08);
  --flow-border: rgba(0, 174, 239, 0.16);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4.75rem 3rem;
  max-width: 1120px;
  margin: 0 auto 1.5rem;
  position: relative;
  text-align: left;
}

.wk-section .col .how-works-step {
  position: relative;
  min-height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--flow-border);
  border-radius: calc(var(--radius-box, 16px) + 6px);
  background:
    radial-gradient(circle at top right, rgba(0, 174, 239, 0.11), transparent 34%),
    #fff;
  box-shadow: 0 14px 36px rgba(5, 31, 72, 0.08);
  z-index: 1;
}
.wk-section .col .how-works-step::after {
  content: '';
  position: absolute;
  pointer-events: none;
  width: 54px;
  height: 54px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 54 54' fill='none'><path d='M10 27 H39 M31 18 L40 27 L31 36' stroke='%2300AEEF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/><path d='M43 13 C48 19 49 28 45 36' stroke='%2300AEEF' stroke-width='2' stroke-linecap='round' stroke-dasharray='4 6' opacity='.55'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.9;
}
.wk-section .col .how-works-step:last-child::after {
  display: none;
}

.wk-section .col .how-works-step-number {
  position: absolute;
  top: -24px;
  left: -22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--flow-navy);
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 9px 22px rgba(5, 31, 72, 0.22);
}

.wk-section .col .how-works-step-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wk-section .col .how-works-step h4 {
  margin: 0;
  color: var(--color-title);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.25;
}
.wk-section .col .how-works-step p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.96rem;
  line-height: 1.55;
}

.wk-section .col .action-card {
  display: grid;
  gap: 0.75rem;
}
.wk-section .col .action-card span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  background: var(--flow-soft-blue);
  color: var(--flow-navy);
  font-size: 0.86rem;
  font-weight: 700;
}
.wk-section .col .action-card span::before {
  content: '';
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--flow-blue);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.13);
}

.wk-section .col .source-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(136px, 0.75fr);
  align-items: center;
  gap: 2rem;
  padding: 1rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 50%, rgba(0, 174, 239, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(0, 174, 239, 0.08), rgba(5, 31, 72, 0.03));
}
.wk-section .col .source-nodes {
  display: grid;
  gap: 0.7rem;
}
.wk-section .col .source-nodes span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 40px;
  padding: 0.65rem 0.8rem;
  border-radius: 14px;
  background: #fff;
  color: var(--flow-navy);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(5, 31, 72, 0.06);
}
.wk-section .col .source-nodes span::before {
  content: '';
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--flow-blue);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.13);
}
.wk-section .col .source-nodes span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -2rem;
  width: 2rem;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 18' fill='none'><path d='M2 9 H54 M47 3 L54 9 L47 15' stroke='%2300AEEF' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
.wk-section .col .source-collector {
  position: relative;
  display: grid;
  place-items: center;
  gap: 0.35rem;
  min-height: 142px;
  padding: 1rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.28), transparent 18%),
    linear-gradient(145deg, var(--flow-blue), var(--flow-navy));
  color: #fff;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 174, 239, 0.18);
}
.wk-section .col .source-collector::before {
  content: '';
  width: 50px;
  height: 38px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  box-shadow: inset 0 12px 0 rgba(255, 255, 255, 0.15);
}
.wk-section .col .source-collector strong {
  font-size: 0.94rem;
  line-height: 1.2;
}
.wk-section .col .source-collector em {
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  opacity: 0.85;
}

.wk-section .col .signal-dashboard {
  display: grid;
  grid-template-columns: minmax(170px, 0.62fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(5, 31, 72, 0.04), rgba(0, 174, 239, 0.08));
}
.wk-section .col .signal-meter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 100%;
  padding: 1rem;
  border-radius: 18px;
  background: #fff;
  color: var(--flow-navy);
  text-align: center;
  overflow: hidden;
}
.wk-section .col .signal-meter::before,
.wk-section .col .signal-meter::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.wk-section .col .signal-meter::before {
  width: 104px;
  height: 104px;
  background: conic-gradient(var(--flow-blue) 0 82%, rgba(0, 174, 239, 0.13) 82% 100%);
}
.wk-section .col .signal-meter::after {
  width: 78px;
  height: 78px;
  background: #fff;
}
.wk-section .col .signal-meter strong {
  position: relative;
  z-index: 1;
  font-size: 1.85rem;
  line-height: 1;
}
.wk-section .col .signal-meter span {
  position: relative;
  z-index: 1;
  max-width: 82px;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}
.wk-section .col .signal-dashboard ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wk-section .col .signal-dashboard li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 34px;
  padding: 0.5rem 0.65rem;
  border-radius: 12px;
  background: #fff;
  color: var(--flow-navy);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.18;
  box-shadow: 0 7px 16px rgba(5, 31, 72, 0.05);
}
.wk-section .col .signal-dashboard li::before {
  content: '';
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--flow-blue);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12);
}

.wk-section .col .pattern-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  grid-template-areas:
    "matrix warning"
    "summary warning"
    "label label";
  align-items: center;
  gap: 0.9rem 1rem;
  padding: 1.15rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 24%, rgba(235, 87, 87, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(0, 174, 239, 0.08), rgba(5, 31, 72, 0.04));
}
.wk-section .col .pattern-matrix {
  grid-area: matrix;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.5rem;
  padding: 0.9rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(5, 31, 72, 0.05);
}
.wk-section .col .pattern-matrix span {
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(5, 31, 72, 0.16);
}
.wk-section .col .pattern-matrix span.is-blue {
  background: var(--flow-blue);
}
.wk-section .col .pattern-matrix span.is-red {
  background: #eb5757;
}
.wk-section .col .pattern-matrix span.is-target {
  background: #fff;
  border: 3px solid var(--flow-blue);
  box-shadow: 0 0 0 5px rgba(0, 174, 239, 0.14);
}
.wk-section .col .pattern-summary {
  grid-area: summary;
  display: grid;
  gap: 0.5rem;
}
.wk-section .col .pattern-summary span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--flow-blue) 0 58%, rgba(0, 174, 239, 0.18) 58% 100%);
}
.wk-section .col .pattern-summary span:nth-child(2) {
  background: linear-gradient(90deg, #eb5757 0 42%, rgba(235, 87, 87, 0.18) 42% 100%);
}
.wk-section .col .pattern-summary span:nth-child(3) {
  width: 72%;
}
.wk-section .col .pattern-warning {
  grid-area: warning;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 66px;
  justify-self: center;
  align-self: center;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 900;
  background: #eb5757;
  clip-path: polygon(50% 8%, 96% 92%, 4% 92%);
}
.wk-section .col .pattern-card strong {
  grid-area: label;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--flow-navy);
  font-size: 0.95rem;
}
.wk-section .col .pattern-card strong::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eb5757;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.wk-section .col .risk-card {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  grid-template-areas:
    "gauge title"
    "gauge score"
    "gauge status";
  align-items: center;
  column-gap: 1.25rem;
  min-height: 148px;
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 15% 22%, rgba(0, 174, 239, 0.12), transparent 25%),
    linear-gradient(135deg, rgba(0, 174, 239, 0.08), rgba(5, 31, 72, 0.04));
  color: var(--flow-navy);
  text-align: left;
  overflow: hidden;
}
.wk-section .col .risk-card::before,
.wk-section .col .risk-card::after {
  content: '';
  position: absolute;
  left: 78px;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.wk-section .col .risk-card::before {
  width: 112px;
  height: 112px;
  background: conic-gradient(#eb5757 0 22%, var(--flow-blue) 22% 78%, rgba(0, 174, 239, 0.14) 78% 100%);
  box-shadow: 0 12px 28px rgba(0, 174, 239, 0.14);
}
.wk-section .col .risk-card::after {
  width: 82px;
  height: 82px;
  background: #fff;
}
.wk-section .col .risk-card strong {
  position: relative;
  z-index: 1;
  grid-area: title;
  align-self: end;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}
.wk-section .col .risk-card span {
  position: relative;
  z-index: 1;
  grid-area: score;
  align-self: center;
  margin-top: 0;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
}
.wk-section .col .risk-card small {
  font-size: 0.95rem;
  font-weight: 700;
}
.wk-section .col .risk-card em {
  position: relative;
  z-index: 1;
  grid-area: status;
  align-self: start;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  color: var(--flow-blue);
}

.wk-section .col .action-card span {
  justify-content: space-between;
}
.wk-section .col .action-card span::after {
  content: '';
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 73% 50%, #fff 0 5px, transparent 6px),
    var(--flow-blue);
}
.wk-section .col .performance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.wk-section .col .performance-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.65rem;
  min-height: 132px;
  padding: 1rem;
  border: 1px solid rgba(0, 174, 239, 0.13);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0, 174, 239, 0.08), rgba(0, 174, 239, 0.03));
  text-align: center;
}
.wk-section .col .performance-card strong {
  color: var(--flow-navy);
  font-size: 0.86rem;
  line-height: 1.25;
}
.wk-section .col .performance-card em {
  color: var(--color-text);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 700;
}
.wk-section .col .mini-bars,
.wk-section .col .mini-audience,
.wk-section .col .mini-line {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 46px;
}
.wk-section .col .mini-bars {
  gap: 0.35rem;
}
.wk-section .col .mini-bars i {
  display: block;
  width: 12px;
  border-radius: 999px 999px 3px 3px;
  background: var(--flow-blue);
}
.wk-section .col .mini-bars i:nth-child(1) { height: 18px; opacity: 0.45; }
.wk-section .col .mini-bars i:nth-child(2) { height: 28px; opacity: 0.65; }
.wk-section .col .mini-bars i:nth-child(3) { height: 38px; }
.wk-section .col .mini-bars i:nth-child(4) { height: 30px; background: var(--flow-navy); }
.wk-section .col .mini-audience {
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.44rem;
}
.wk-section .col .mini-audience i {
  position: relative;
  display: block;
  width: 22px;
  height: 30px;
}
.wk-section .col .mini-audience i::before,
.wk-section .col .mini-audience i::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--flow-blue);
}
.wk-section .col .mini-audience i::before {
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.13);
}
.wk-section .col .mini-audience i::after {
  bottom: 0;
  width: 22px;
  height: 16px;
  border-radius: 10px 10px 5px 5px;
}
.wk-section .col .mini-audience i:nth-child(4)::before,
.wk-section .col .mini-audience i:nth-child(4)::after,
.wk-section .col .mini-audience i:nth-child(5)::before,
.wk-section .col .mini-audience i:nth-child(5)::after {
  background: var(--flow-navy);
}
.wk-section .col .mini-line {
  position: relative;
  align-items: center;
  overflow: hidden;
}
.wk-section .col .mini-line::before {
  content: '';
  position: absolute;
  inset: 8px 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 52' fill='none'><path d='M6 42 L42 34 L70 38 L101 20 L144 10' stroke='%2300AEEF' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'/><path d='M101 20 L144 10' stroke='%23051F48' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.wk-section .col .mini-line i {
  position: absolute;
  right: 6px;
  top: 7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--flow-navy);
  box-shadow: 0 0 0 5px rgba(5, 31, 72, 0.11);
}

/* Desktop and tablet flow: 1 -> 2 -> 3 -> 4 -> 5 -> 6 */
.wk-section .col .how-works-step:nth-child(1) { grid-area: 1 / 1; }
.wk-section .col .how-works-step:nth-child(2) { grid-area: 1 / 2; }
.wk-section .col .how-works-step:nth-child(3) { grid-area: 2 / 2; }
.wk-section .col .how-works-step:nth-child(4) { grid-area: 2 / 1; }
.wk-section .col .how-works-step:nth-child(5) { grid-area: 3 / 1; }
.wk-section .col .how-works-step:nth-child(6) { grid-area: 3 / 2; }

.wk-section .col .how-works-step:nth-child(1)::after,
.wk-section .col .how-works-step:nth-child(5)::after {
  right: -48px;
  top: 50%;
  transform: translateY(-50%);
}
.wk-section .col .how-works-step:nth-child(2)::after,
.wk-section .col .how-works-step:nth-child(4)::after {
  left: 50%;
  bottom: -58px;
  transform: translateX(-50%) rotate(90deg);
}
.wk-section .col .how-works-step:nth-child(3)::after {
  left: -48px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

@media (max-width: 900px) {
  .wk-section .col .how-works-infographic {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .wk-section .col .how-works-step:nth-child(n) {
    grid-area: auto;
  }
  .wk-section .col .how-works-step::after {
    display: block;
    width: 40px;
    height: 40px;
    right: auto !important;
    left: 50% !important;
    top: auto !important;
    bottom: -38px !important;
    transform: translateX(-50%) rotate(90deg) !important;
  }
  .wk-section .col .source-map,
  .wk-section .col .signal-dashboard {
    grid-template-columns: 1fr;
  }
  .wk-section .col .source-nodes span::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .wk-section .col .how-works-intro {
    margin-bottom: 2.25rem;
    font-size: 1rem;
  }
  .wk-section .col .how-works-step {
    padding: 1.45rem;
  }
  .wk-section .col .how-works-step-number {
    top: -20px;
    left: -10px;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .wk-section .col .performance-grid {
    grid-template-columns: 1fr;
  }
  .wk-section .col .signal-dashboard ul {
    grid-template-columns: 1fr;
  }
  .wk-section .col .pattern-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "matrix"
      "summary"
      "warning"
      "label";
  }
  .wk-section .col .risk-card {
    grid-template-columns: 104px minmax(0, 1fr);
    column-gap: 1rem;
    min-height: 130px;
    padding: 1rem;
  }
  .wk-section .col .risk-card::before,
  .wk-section .col .risk-card::after {
    left: 58px;
  }
  .wk-section .col .risk-card::before {
    width: 88px;
    height: 88px;
  }
  .wk-section .col .risk-card::after {
    width: 64px;
    height: 64px;
  }
  .wk-section .col .risk-card span {
    font-size: 1.9rem;
  }
  .wk-section .col .performance-card {
    min-height: 118px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wk-section .col .how-works-step::after {
    transition: none;
  }
}

/* ============================================
   REQUEST DEMO PAGE
   ============================================ */

/* Center the H1 above the side-by-side grid with stronger headline styling */
#wk-module-6703d3b9d9414 > .grid:first-child h1 {
  max-width: 920px;
  margin: 0 auto 1rem;
  font-size: clamp(2.25rem, 4.6vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* Hero content next to the form */
#wk-module-6703d3b9d9414 .wk-content-col .demo-hero-eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem !important;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(54, 214, 181, 0.45);
  border-radius: 999px;
  color: #36d6b5 !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
}

#wk-module-6703d3b9d9414 .wk-content-col .demo-hero-lede {
  margin: 0 0 1.25rem !important;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem) !important;
  line-height: 1.55 !important;
  font-weight: 500;
}

/* Force check-style bullets to override the .wkContactForm .wk-content-col ul defaults */
#wk-module-6703d3b9d9414 .wk-content-col ul.demo-hero-checks {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.55rem !important;
  margin: 0 0 1.75rem !important;
  padding: 0 !important;
  list-style: none !important;
}

#wk-module-6703d3b9d9414 .wk-content-col ul.demo-hero-checks li {
  display: block !important;
  list-style: none !important;
  position: relative;
  margin: 0 !important;
  padding-left: 1.75rem !important;
  font-size: 0.98rem !important;
  line-height: 1.5 !important;
}

#wk-module-6703d3b9d9414 .wk-content-col ul.demo-hero-checks li::before,
#wk-module-6703d3b9d9414 .wk-content-col ul.demo-hero-checks li::marker {
  content: none !important;
}

#wk-module-6703d3b9d9414 .wk-content-col ul.demo-hero-checks li::before {
  content: url("../images/icon-check-green.svg") !important;
  position: absolute;
  top: 0.05rem;
  left: 0;
}

/* Hero trust stats strip */
#wk-module-6703d3b9d9414 .wk-content-col .demo-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

#wk-module-6703d3b9d9414 .wk-content-col .demo-hero-stats > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-width: 0;
}

#wk-module-6703d3b9d9414 .wk-content-col .demo-hero-stats strong {
  display: block;
  color: #fefefe !important;
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
}

#wk-module-6703d3b9d9414 .wk-content-col .demo-hero-stats span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}

/* Form card refinements */
#wk-module-6703d3b9d9414 .wk-demo-form {
  max-width: 480px !important;
  padding: clamp(1.5rem, 2.5vw, 1.85rem) !important;
  border-radius: 18px !important;
  position: relative;
}

/* Header inside the form card */
#wk-module-6703d3b9d9414 .wk-demo-form::before {
  content: "Book your demo";
  display: block;
  margin-bottom: 0.25rem;
  color: #0e2b3a;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

#wk-module-6703d3b9d9414 .wk-demo-form .wk-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

/* Sub-header just above the fields */
#wk-module-6703d3b9d9414 .wk-demo-form .wk-form-grid::before {
  content: "Free fraud audit + 7-day trial included.";
  grid-column: 1 / -1;
  display: block;
  margin: -0.4rem 0 0.4rem;
  color: #607482;
  font-size: 0.85rem;
  line-height: 1.45;
}

#wk-module-6703d3b9d9414 .wk-demo-form .wk-form-field,
#wk-module-6703d3b9d9414 .wk-demo-form .chosen-container-single .chosen-single {
  border-radius: 8px !important;
}

#wk-module-6703d3b9d9414 .wk-demo-form .wk-submit-button {
  width: 100% !important;
}

/* Response assurance + mini social proof below the submit button */
#wk-module-6703d3b9d9414 .wk-form-submit::after {
  content: "★★★★★  4.9/5 — trusted by 4,100+ advertisers\AWe respond within 1 business day. Demo hosted by our growth manager.";
  white-space: pre-line;
  display: block;
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e7eff3;
  color: #607482;
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 993px) {
  #wk-module-6703d3b9d9414 .wk-content-col .demo-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  #wk-module-6703d3b9d9414 .wk-demo-form .wk-form-grid {
    grid-template-columns: 1fr !important;
  }

  #wk-module-6703d3b9d9414 .wk-content-col .demo-hero-stats {
    grid-template-columns: 1fr;
  }
}

/* =========================================================================
   WPBakery grid subset — vervangt de 470 KB js_composer.min.css
   -------------------------------------------------------------------------
   js_composer.min.css (WPBakery v8.3, 3540 regels) wordt op de frontend
   gedequeued in functions.php. Een meting over 18 templatetypes toonde aan
   dat de frontend alléén deze kale grid-classes gebruikt:
     .vc_row / .vc_row-fluid / .wpb_row / .wpb_column / .wpb_wrapper /
     .vc_column_container / .vc_column-inner / .vc_col-sm-12 / .wpb-content-wrapper
   Kolommen zijn altijd full-width (vc_col-sm-12). Onderstaande regels zijn
   1-op-1 overgenomen uit js_composer.min.css zodat de layout identiek blijft.

   ROLLBACK: verwijder dit blok én de bijbehorende add_action()
   ('Vervang js_composer.min.css door minimale grid-subset') in functions.php.
   ========================================================================= */
.vc_row:before,
.vc_row:after { content: " "; display: table; }
.vc_row:after { clear: both; }
.vc_row { margin-left: -15px; margin-right: -15px; }
.vc_column_container { width: 100%; padding-left: 0; padding-right: 0; }
.vc_column_container > .vc_column-inner {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
.vc_column-inner:before,
.vc_column-inner:after { content: " "; display: table; }
.vc_column-inner:after { clear: both; }
@media (min-width: 768px) {
  .vc_col-sm-12 { float: left; width: 100%; }
}
.wpb-content-wrapper {
  border: none;
  display: block;
  margin: 0;
  overflow: unset;
  padding: 0;
}

/* Promo announcement bar — replaces per-page inline styles */
#announcementBar.announcement-bar--promo {
  background: #6C2BD9 !important;
  color: #fefefe !important;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* Exit-intent popup — keep CTA label readable on purple background */
a.wk-exit-intent-popup__cta,
a.wk-exit-intent-popup__cta:link,
a.wk-exit-intent-popup__cta:visited,
a.wk-exit-intent-popup__cta:hover,
a.wk-exit-intent-popup__cta:active,
a.wk-exit-intent-popup__cta:focus,
a.wk-exit-intent-popup__cta:focus-visible {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}

.wk-pricing-discount{color:#28a745;font-weight:600;margin-left:10px;}
.wk-pricing-discount .fa{margin-right:5px;}

.wk-related-links__list{list-style:none;display:flex;flex-wrap:wrap;gap:16px;padding:0;margin:24px 0 0;justify-content:center;}
.wk-related-links__list li a{display:inline-block;padding:10px 18px;border:1px solid #d7eef7;border-radius:8px;color:#0b2935;text-decoration:none;font-weight:600;transition:background .15s,color .15s;}
.wk-related-links__list li a:hover{background:#00AEEF;color:#fff;border-color:#00AEEF;}

/* Guarantee strip - risk-reversal band shown across marketing pages */
.cp-guarantee{background:var(--color-secondary-02);padding:32px 20px;}
.cp-guarantee__inner{max-width:880px;margin:0 auto;display:flex;align-items:center;gap:20px;background:var(--color-background);border:1px solid rgba(0,174,239,.16);border-radius:var(--radius-box);box-shadow:var(--shadow-md);padding:24px 32px;}
.cp-guarantee__icon{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border-radius:50%;background:var(--gradient-primary);box-shadow:var(--shadow-sm);}
.cp-guarantee__text{flex:1 1 auto;}
.cp-guarantee__title{display:block;font-size:1.15rem;font-weight:600;line-height:1.4;color:var(--color-secondary-01);}
.cp-guarantee__note{display:block;margin-top:6px;font-size:.85rem;font-weight:400;line-height:1.55;color:var(--color-text);}
@media (max-width:600px){.cp-guarantee{padding:24px 16px;}.cp-guarantee__inner{flex-direction:column;text-align:center;gap:14px;padding:24px 22px;}}
