/* ClickPatrol marketing.css — landing page sections */

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

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

.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 - light on dark backgrounds */
.row[data-theme=dark],
[data-background=gradientDarkRobots],
[data-background=gradientDarkCircles],
[data-background=gradientDark] {
  --color-link: var(--color-primary-lite);
}
[data-props][data-props*=box] {
  --color-link: #076385;
}
.row[data-theme=dark] a:not(.button):not([data-type*=arrow]):hover,
[data-background=gradientDarkRobots] a:not(.button):not([data-type*=arrow]):hover,
[data-background=gradientDarkCircles] a:not(.button):not([data-type*=arrow]):hover,
[data-background=gradientDark] a:not(.button):not([data-type*=arrow]):hover {
  color: var(--color-title);
}
[data-theme=dark] a[data-type*=arrow] {
  color: var(--color-title);
}
[data-theme=dark] a[data-type*=arrow]::after {
  filter: brightness(0) invert(1);
}

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

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

/* --- home-page.css --- */

:is(body.home, body.landing) .hero {
  overflow: hidden;
}:is(body.home, body.landing) .hero:not([data-background])::before {
  content: url("../images/dots-dark-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}:is(body.home, body.landing) .hero .logos {
  max-width: 23.4375rem;
  column-gap: 2.5rem;
  row-gap: 24px;
}:is(body.home, body.landing) .hero .tag {
  color: white;
}:is(body.home, body.landing) .hero .tags {
  gap: 10px;
}:is(body.home, body.landing) .up-to-21 {
  overflow: hidden;
}:is(body.home, body.landing) .up-to-21::before {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}:is(body.home, body.landing) .protect .grid:nth-last-of-type(1) .col {
  justify-content: center;
}:is(body.home, body.landing) .features {
  overflow: hidden;
}:is(body.home, body.landing) .features .grid:nth-of-type(2)::before,
:is(body.home, body.landing) .features .grid:nth-last-child(3)::before {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}:is(body.home, body.landing) .features .stats {
  margin-top: 6.25rem;
}:is(body.home, body.landing) .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;
}:is(body.home, body.landing) .cta {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  overflow: hidden;
}:is(body.home, body.landing) .cta .imgWrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
}:is(body.home, body.landing) .cta .imgWrap + .col {
  gap: 1rem;
}:is(body.home, body.landing) .cta .imgWrap + .col .button {
  margin-top: 1.5rem;
}



/* --- home-page.css --- */
:is(body.home, body.landing) .hero {
  overflow: hidden;
}:is(body.home, body.landing) .hero:not([data-background])::before {
  content: url("../images/dots-dark-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}:is(body.home, body.landing) .hero .logos {
  max-width: 23.4375rem;
  column-gap: 2.5rem;
  row-gap: 24px;
}:is(body.home, body.landing) .hero .tag {
  color: white;
}:is(body.home, body.landing) .hero .tags {
  gap: 10px;
}:is(body.home, body.landing) .up-to-21 {
  overflow: hidden;
}:is(body.home, body.landing) .up-to-21::before {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}:is(body.home, body.landing) .protect .grid:nth-last-of-type(1) .col {
  justify-content: center;
}:is(body.home, body.landing) .features {
  overflow: hidden;
}:is(body.home, body.landing) .features .grid:nth-of-type(2)::before,
:is(body.home, body.landing) .features .grid:nth-last-child(3)::before {
  content: url("../images/dots-lite-fade.svg");
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}:is(body.home, body.landing) .features .stats {
  margin-top: 6.25rem;
}:is(body.home, body.landing) .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;
}:is(body.home, body.landing) .cta {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  overflow: hidden;
}:is(body.home, body.landing) .cta .imgWrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
}:is(body.home, body.landing) .cta .imgWrap + .col {
  gap: 1rem;
}:is(body.home, body.landing) .cta .imgWrap + .col .button {
  margin-top: 1.5rem;
}

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

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

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

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

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