/* ClickPatrol base.css — shared site styles */

/* ClickPatrol homepage bundle — generated by scripts/build-home-css.py */

/* 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, article img{
  max-width: 100%;
  height: auto;
}

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

 :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;
}


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;
  }
}

.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;
  position: relative;
  z-index: 1;
}
#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 {
  --color-title: #0b2130;
  --color-text: #5b686d;
  text-transform: none;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 4.375rem;
  padding-top: 0;
  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;
}
@media (max-width: 1000px) {
  #mainHeader .wrap > ul > li.hasSubmenu .submenu {
    top: 60px;
  }
}
@media (max-width: 641px) {
  #mainHeader .wrap > ul > li.hasSubmenu .submenu {
    top: 50px;
  }
}
#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;
}
/* --- B2B taxonomy mega-menu (Solutions): 4 columns + CTA below --- */
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped {
  margin: 0 auto;
  width: 100%;
  max-width: 1230px;
  padding-top: 3rem;
  padding-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2.25rem 2.5rem;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group {
  flex: 1 1 calc(25% - 1.875rem);
  min-width: 200px;
}
#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 0.85rem 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: 0.25rem;
  padding: 0;
  margin: 0;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group ul li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  align-items: start;
  padding: 0.6rem;
  margin: 0 -0.6rem;
  border-radius: var(--radius-box);
  transition: background-color 0.15s ease;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group ul li:hover {
  background-color: var(--color-secondary-02);
}
#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;
  grid-row: 1 / span 2;
  align-self: start;
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  margin-top: 0.1rem;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group ul li a {
  grid-column: 2;
  grid-row: 1;
  color: var(--color-title);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}
#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;
  grid-row: 2;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--color-text);
  opacity: 0.75;
}
/* CTA bar spanning the full width beneath the columns */
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-cta {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 2rem;
  row-gap: 0.3rem;
  padding: 1.35rem 1.75rem;
  margin-top: 0.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-box);
  color: #fff;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-cta h4 {
  grid-column: 1;
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff !important;
  opacity: 1;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-cta .cta-stat {
  grid-column: 1;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.15;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-cta p {
  grid-column: 1;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9) !important;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-cta .button {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
  margin: 0;
  background: #fff;
  color: var(--color-secondary-01);
  text-align: center;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-button);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
#mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-cta .button:hover {
  background: var(--color-secondary-02);
  color: var(--color-secondary-01);
}
@media (max-width: 1100px) {
  #mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group {
    flex: 1 1 calc(50% - 1.25rem);
  }
}
@media (max-width: 700px) {
  #mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-group {
    flex: 1 1 100%;
  }
  #mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-cta {
    grid-template-columns: 1fr;
  }
  #mainHeader .wrap > ul > li.hasSubmenu .submenu .submenu-grouped .submenu-cta .button {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0.75rem;
    width: 100%;
  }
}
#mainHeader .wrap > ul > li.hasSubmenu:hover {
  cursor: pointer;
}
#mainHeader .wrap > ul > li.hasSubmenu:hover .submenu {
  cursor: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  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].scrolled.active {
  --color-text: #5B686D;
  --color-title: #000000;
}
#mainHeader[data-theme=dark].scrolled.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;
}
/* --- Footer top: brand + navigation --- */
#mainFooter > .grid:nth-of-type(1) {
  align-items: flex-start;
  column-gap: 4rem;
  row-gap: 3.5rem;
}
#mainFooter .footer-brand {
  flex: 0 0 240px;
  max-width: 240px;
}
#mainFooter .footer-brand > ul {
  gap: 0.375rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text);
}
#mainFooter .footer-links {
  flex: 1 1 640px;
  min-width: 0;
}

/* Shared nav group styling */
#mainFooter .footer-nav-group ul {
  gap: 0.75rem;
  text-transform: none;
}
#mainFooter .footer-nav-group ul li a {
  display: inline-block;
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 1.4;
}
#mainFooter .footer-nav-group ul li a:hover {
  color: var(--color-primary);
}

/* Primary navigation (emphasised) */
#mainFooter .footer-links-primary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 2.5rem;
  align-items: start;
}
#mainFooter .footer-links-primary .footer-nav-title {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-title);
}

/* Secondary navigation (the rest, de-emphasised) */
#mainFooter .footer-links-secondary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 2.5rem;
  align-items: start;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: solid 1px rgba(var(--color-border), 1);
}
#mainFooter .footer-links-secondary .footer-nav-title {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-title);
}
#mainFooter .footer-links-secondary .footer-nav-group ul {
  gap: 0.625rem;
}
#mainFooter .footer-links-secondary .footer-nav-group ul li a {
  font-size: 0.875rem;
}
#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;
}
#mainFooter[data-theme=dark] .footer-nav-title {
  color: #ffffff;
}
#mainFooter[data-theme=dark] .footer-nav-group ul li a:hover {
  color: var(--color-primary-lite);
}
#mainFooter[data-theme=dark] .footer-links-secondary {
  border-top-color: rgba(255, 255, 255, 0.12);
}
#mainFooter > .grid.footer-about {
  border-top: solid 1px rgba(var(--color-border), 1);
  padding-top: 2.25rem;
  align-items: flex-start;
}
#mainFooter > .grid.footer-about .col p {
  margin: 0 0 0.875rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text);
  max-width: 95ch;
}
#mainFooter > .grid.footer-about .col p:last-child {
  margin-bottom: 0;
}
#mainFooter > .grid.footer-about .col p strong {
  color: var(--color-title);
  font-weight: 600;
}
#mainFooter > .grid.footer-about .footer-about-disclaimer {
  margin-top: 1.25rem;
  font-style: italic;
  color: var(--color-text);
}
@media (max-width: 941px) {
  #mainFooter {
    padding-top: 6rem;
    padding-bottom: 3rem;
    row-gap: 3rem;
  }
  #mainFooter > .grid:nth-of-type(1) {
    column-gap: 3rem;
  }
  #mainFooter .footer-links-primary,
  #mainFooter .footer-links-secondary {
    column-gap: 1.5rem;
  }
}
@media (max-width: 780px) {
  #mainFooter > .grid:nth-of-type(1) {
    flex-direction: column;
    gap: 3rem;
  }
  #mainFooter .footer-brand {
    flex: 1 1 auto;
    max-width: 100%;
  }
  #mainFooter .footer-links {
    flex: 1 1 auto;
    width: 100%;
  }
  #mainFooter .footer-links-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2.5rem;
  }
  #mainFooter .footer-links-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
}
@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: 2.5rem;
  }
}
@media (max-width: 577px) {
  #mainFooter > .grid + .grid {
    gap: 1rem;
  }
  #mainFooter > .grid + .grid a {
    background-color: rgba(var(--color-border), 0.48);
  }
}
@media (max-width: 479px) {
  #mainFooter .footer-links-primary,
  #mainFooter .footer-links-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.25rem;
  }
}

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;
}
.stat-number {
  display: block;
  font-size: 2.375rem;
  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;
}
.wk-ellipse-section{
  overflow: hidden;
}
.wk-ellipse-section::before{
  content: url("../images/ellipse03.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
}
.wk-ellipse-section::after{
  content: url("../images/dots-white-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.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;
  }
  .wk-ellipse-section .grid{
    gap: 4rem;
  }
  .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;
  }
  .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;
  }
}

.wk-multi-sections-module{
  overflow: hidden;
}
.wk-multi-sections-module:not([data-background])::before{
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.wk-multi-sections-module .grid:nth-of-type(1) h4{
  color: var(--color-text);
}
.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) */
.wk-multi-sections-module .grid:nth-last-of-type(1) > img{
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}



@media (max-width: 769px) {
  .wk_gradientDarkDots .grid{
    flex-direction: column-reverse;
  }
  .wk_gradientDarkDots .grid::before{
    content: none;
  }
  .wk_gradientDarkDots .grid .col{
    width: 100%;
    max-width: 100%;
    --color-text: white;
  }
  .wk_gradientDarkDots .grid p{
    text-align: center;
  }
  .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%;
  }
  .wk-multi-sections-module .grid:nth-last-of-type(1){
    grid-template-columns: repeat(3, 1fr);
  }
  
}

@media (max-width: 641px) {
  .wk-multi-sections-module .grid:nth-of-type(2){
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .wk-multi-sections-module .grid:nth-of-type(2) .col{
    width: 100%;
    max-width: 100%;
  }
  .wk-timeline-module .grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .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) {
  .wk-multi-sections-module .grid:nth-last-of-type(1){
    grid-template-columns: repeat(2, 1fr);
  }
  
  .wk-timeline-module .grid{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .wk-timeline-module .grid:nth-of-type(odd) .imgWrap{
    grid-row: 1;
  }
}

.wk-section.cta, body.agency .cta{
  overflow: hidden;
}
.wk-section.cta .imgWrap, body.agency .cta .imgWrap{
  display: flex;
  align-items: center;
  justify-content: center;
}
.wk-section.cta .imgWrap img, body.agency .cta .imgWrap img{
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.wk-section.cta::before, body.agency .cta::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) {
  
  
  .wk-section.cta .grid .col, body.agency .cta .grid .col{
    width: 100%;
    max-width: 100%;
  }
}

.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 */














/* Hero Logo Sizes */




/* Pricing Logos Sizes */




.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;
}



/* 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;
}









@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;
  }
  
  
  
  
  
  
}


#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;
}

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

[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;
}

[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;
}


@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;
  }
  
  
}
@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;
  }
  
  
}

[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-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-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=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%);
}

[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;
}







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

/* Knowledge Base Navigation Buttons */














[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;
}

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;
}



/* 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-size--klein .trust-badges-row {
        gap: 0.625rem;
    }
    
    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-size--klein .trust-badges-row {
        gap: 0.5rem;
    }
    
    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-size--klein .trust-badges-row {
        gap: 0.5rem;
    }
    
    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-size--klein .trust-badges-row {
        gap: 0.375rem;
    }
    
    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;
    }
}

.wk-section[data-background="ellipseGreyLite"] .grid[data-grid*="center"] {
  max-width: 1040px;
  row-gap: 2.5rem;
}
.wk-section[data-background="ellipseGreyLite"] .grid[data-grid*="center"] .col {
  align-items: center;
  text-align: center;
}
.wk-section[data-background="ellipseGreyLite"] .grid[data-grid*="center"] .col p {
  max-width: 34ch;
}

@media (max-width: 769px) {
  .wk-section[data-background="ellipseGreyLite"] .grid[data-grid*="center"] {
    row-gap: 3rem;
  }
}

/* --- lazy-backgrounds.css --- */

.bg-lazy.wk-section.grey-lite::before,
.bg-lazy.wk-section.white::before,
.bg-lazy.wk-ellipse-section::after,
.bg-lazy.wkContactForm:not([data-background])::before,
.bg-lazy.wk-multi-sections-module:not([data-background])::before {
  content: none !important;
  background-image: none !important;
}
.bg-loaded.wk-section.grey-lite::before {
  content: url("/assets/images/dots-lite-fade.svg") !important;
}
.bg-loaded.wk-ellipse-section::after {
  content: url("/assets/images/dots-white-fade.svg") !important;
}
.bg-loaded.wkContactForm:not([data-background])::before {
  content: url("/assets/images/dots-dark-fade.svg") !important;
}
.bg-loaded.wk-multi-sections-module:not([data-background])::before {
  content: url("/assets/images/dots-lite-fade.svg") !important;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.bg-loaded.hero.wk_greyBlueDots {
  background-image: url("/assets/images/dots-lite-fade.svg") !important;
}



/* 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;
}



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-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%;
}


/* 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;
}


/* Below-the-fold render deferral (site-wide) */
.trust-badges-container,
.wk-testimonials-wrapper,
.feature-grid-items,
.taxonomy-section,
.customer-banner,
.wk-multi-sections-module,
.comparison-grid,
.wk-section.aiSolution,
.wk-section[data-background="ellipseGreyLite"],
.why-clickpatrol-section,
.cp-guarantee {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.persona-paths,
.setup-steps {
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}

[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);
}

/* 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;
  }
}

/* ==========================================================================
   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;
}

/* Vloeiend verdwijnen wanneer de countdown verloopt of de bezoeker sluit */
.announcement-bar {
  transition: opacity 0.45s ease, transform 0.45s ease;
  will-change: opacity, transform;
}
.announcement-bar.announcement-bar--closing {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
/* Gereserveerde ruimte (header + body) soepel laten terugklappen */
body.announcement-collapsing,
body.announcement-collapsing #mainHeader {
  transition: padding-top 0.45s ease, top 0.45s ease;
}
@media (prefers-reduced-motion: reduce) {
  .announcement-bar {
    transition: none;
  }
}

.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;
  }
}

.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;}

/* ==========================================================================
   Cookie Consent Bar
   ========================================================================== */

:root {
  --cookie-bar-height: 88px;
}

.cookie-consent-bar {
  --cookie-bar-height: 88px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 21;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  background: var(--color-secondary-01, #0b2935);
  color: #fefefe;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

html.consent-pending .cookie-consent-bar:not([hidden]) {
  display: flex;
}

html.consent-all .cookie-consent-bar,
html.consent-essential .cookie-consent-bar {
  display: none !important;
}

.cookie-consent-bar__wrap {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-consent-bar__content {
  flex: 1;
  min-width: 0;
}

.cookie-consent-bar__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.cookie-consent-bar__text a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-bar__text a:hover {
  color: var(--color-primary-lite, #59D2FF);
}

.cookie-consent-bar__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.cookie-consent-bar__btn {
  font-family: "Gordita", "Gordita Fallback", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  min-height: 44px;
  min-width: 160px;
  padding: 0 1.25rem;
  border-radius: var(--radius-button, 12px);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cookie-consent-bar__btn--accept {
  border: none;
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.cookie-consent-bar__btn--accept:hover {
  background: var(--gradient-primary-hover);
}

.cookie-consent-bar__btn--reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.cookie-consent-bar__btn--reject:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

body.consent-pending [id*="onboard"],
body.consent-pending [class*="onboard"],
body.consent-pending iframe[src*="onboard"] {
  bottom: calc(var(--cookie-bar-height) + 16px) !important;
}

@media (max-width: 900px) {
  .cookie-consent-bar__wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-consent-bar__actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-consent-bar__btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --cookie-bar-height: 120px;
  }

  .cookie-consent-bar {
    --cookie-bar-height: 120px;
    padding: 14px 16px;
  }

  .cookie-consent-bar__text {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent-bar__btn {
    transition: none;
  }
}
