/* ─── Kindus animations & layout overrides ───────────────────────────────── */

body p {
  color: #fff;
}

/* Header frosted glass — backdrop-filter on ::before so it does NOT
   create a containing block for position:fixed children (Safari fix) */
.head__inner {
  background: rgba(8, 12, 28, 0.5) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
  position: relative;
}
.head__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 0;
  pointer-events: none;
}
/* Ensure header children sit above the ::before blur layer */
.head__inner > * {
  position: relative;
  z-index: 1;
}

/* Nav CTA — "Get in Touch" (WP menu CSS class: contact or btn) */
.head .main_nav .menu-header ul.menu > li.contact,
.head .main_nav .menu-header ul.menu > li.btn {
  padding: 0;
  display: inline-block;
  background: linear-gradient(251deg, rgba(59, 91, 177, 1) 0%, rgba(66, 137, 251, 1) 100%);
  border-radius: 7px;
  transition: transform 400ms ease;
  transform-origin: center center;
}

.head .main_nav .menu-header ul.menu > li.contact:hover,
.head .main_nav .menu-header ul.menu > li.btn:hover {
  transform: scale(1.05);
}

.head .main_nav .menu-header ul.menu > li.contact > a,
.head .main_nav .menu-header ul.menu > li.btn > a {
  padding: 8px 21px;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 920px) {
  .head__logo {
    display: flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
    overflow: visible;
  }
  .head__logo svg {
    display: block;
    overflow: visible;
  }
}

.site_wrap:before {
  opacity: 1;
  mix-blend-mode: normal;
}
.site_wrap::after,
.site_wrap:after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background: linear-gradient(0deg, rgba(17, 15, 26, 0.6) 0%, rgba(38, 51, 95, 0.6) 28%, rgba(48, 39, 117, 0.6) 50%, rgba(17, 15, 26, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 768px) {
  html, body {
    background-color: rgb(14, 12, 27);
    background-image: url(../images/shape.jpg);
    background-size: 250%;
    background-position: center top;
    background-repeat: repeat-y;
    background-attachment: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .site_wrap {
    min-height: 0;
    position: relative;
    width: 100%;
    overflow: visible;
    overflow-x: clip;
    height: auto;
  }
  .site_wrap::after,
  .site_wrap:after {
    position: absolute;
    height: var(--site-overlay-height, 100%);
    min-height: 100%;
    background: linear-gradient(0deg, rgba(17, 15, 26, 0.7) 0%, rgba(38, 51, 95, 0.7) 28%, rgba(48, 39, 117, 0.7) 50%, rgba(17, 15, 26, 0.7) 100%);
  }
  .site_wrap::before,
  .site_wrap:before {
    display: none !important;
    transform: none !important;
    position: static !important;
  }
}
.grad {
  z-index: 4;
}
.grad::before,
.grad:before {
  display: none !important;
  content: none !important;
}

/* Word-split wrapper — clips each word for reveal effect */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.15;
}
.word {
  display: inline-block;
}

/* ── Reveal-once (InCarTec rev4 pattern) ──────────────────────────────────── */
:root {
  --kindus-reveal-y: 40px;
  --kindus-reveal-duration: 0.8s;
  --kindus-reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 768px) {
  :root {
    --kindus-reveal-y: 24px;
    --kindus-reveal-duration: 0.6s;
  }
}

[data-reveal],
.kindus-reveal {
  opacity: 0;
  transform: translate3d(0, var(--kindus-reveal-y), 0);
  transition:
    opacity var(--kindus-reveal-duration) var(--kindus-reveal-ease),
    transform var(--kindus-reveal-duration) var(--kindus-reveal-ease);
  will-change: opacity, transform;
}

[data-reveal].is-revealed,
.kindus-reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* ── CSS-only reveal classes (no GSAP inline styles) ─────────────────────── */
.kindus-reveal-css {
  opacity: 0;
  transition:
    opacity var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--kr-delay, 0s);
  will-change: opacity, transform;
}

.kindus-reveal-css:not(.kindus-reveal-css--fade):not(.kindus-reveal-css--tilt):not(.kindus-reveal-css--word):not(.kindus-reveal-css--scale) {
  transform: translate3d(0, var(--kr-y, 40px), 0);
}

.kindus-reveal-css--fade {
  --kr-y: 0px;
  transform: none;
  transition: opacity var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--kr-delay, 0s);
}

.kindus-reveal-css--rise {
  --kr-y: 120px;
}

.kindus-reveal-css.kindus-reveal-css--tilt {
  --kr-y: 120px;
  --kr-rotate: 2deg;
  transform: translate3d(0, var(--kr-y), 0) rotate(var(--kr-rotate));
  transform-origin: center center;
}

.kindus-reveal-css.is-revealed {
  opacity: 1;
}

.kindus-reveal-css:not(.kindus-reveal-css--fade):not(.kindus-reveal-css--tilt):not(.kindus-reveal-css--word):not(.kindus-reveal-css--scale).is-revealed {
  transform: translate3d(0, 0, 0);
}

.kindus-reveal-css.kindus-reveal-css--tilt.is-revealed {
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.kindus-reveal-css--fade.is-revealed {
  transform: none;
}

.kindus-reveal-css--word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 105%, 0);
  transition:
    opacity var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--kr-delay, 0s);
}

.kindus-reveal-css--word.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.kindus-reveal-css--scale {
  opacity: 0;
  transform: scale(0.05);
  transform-origin: center center;
  transition:
    opacity var(--kr-dur, 1.1s) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--kr-dur, 1.1s) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--kr-delay, 0s);
}

.kindus-reveal-css--scale.is-revealed {
  opacity: 1;
  transform: scale(1);
}

/* ── Markup animation classes (add in HTML; triggered by .to-animate host) ── */
.slide-up-animation {
  opacity: 0;
  transform: translate3d(0, var(--kr-y, 65px), 0);
  transition:
    opacity var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--kr-delay, 0s);
  will-change: opacity, transform;
}

.slide-up-animation.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.word-wrap-animation .word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 105%, 0);
  transition:
    opacity var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--kr-delay, 0s);
}

.word-wrap-animation .word.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Whole heading when words are not split (mobile) */
.word-wrap-animation:not(:has(.word)) {
  opacity: 0;
  transform: translate3d(0, var(--kr-y, 40px), 0);
  transition:
    opacity var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--kr-delay, 0s);
  will-change: opacity, transform;
}

.word-wrap-animation:not(:has(.word)).is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.tilt-slide-up-animation {
  opacity: 0;
  --kr-rotate: 2deg;
  transform: translate3d(0, var(--kr-y, 65px), 0) rotate(var(--kr-rotate));
  transform-origin: center center;
  transition:
    opacity var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--kr-delay, 0s);
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.tilt-slide-up-animation.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.fade-in-animation {
  opacity: 0;
  transition:
    opacity var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--kr-delay, 0s);
}
.fade-in-animation.is-revealed {
  opacity: 1;
}

@media (max-width: 768px) {
  .slide-up-animation {
    --kr-y: 40px;
    --kr-dur: 0.6s;
  }

  .tilt-slide-up-animation {
    --kr-y: 40px;
    --kr-dur: 0.6s;
  }
}

.kindus-frosted-card.kindus-reveal-css {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: center center;
}

@media (max-width: 768px) {
  .kindus-reveal-css {
    --kr-y: 24px;
    --kr-dur: 0.6s;
  }

  .kindus-reveal-css--rise,
  .kindus-reveal-css.kindus-reveal-css--tilt {
    --kr-y: 60px;
    --kr-dur: 0.6s;
  }
}

.kindus-reveal--large { --kindus-reveal-y: 120px; }
.kindus-reveal--medium { --kindus-reveal-y: 65px; }
.kindus-reveal--small { --kindus-reveal-y: 20px; }

/* tiltUp — fade, slide up, and settle from 2deg rotation */
:root {
  --kindus-reveal-tilt-y: 120px;
  --kindus-reveal-tilt-rotate: 2deg;
}
.kindus-reveal-tilt,
[data-reveal="tilt"] {
  --kindus-reveal-y: var(--kindus-reveal-tilt-y);
  opacity: 0;
  transform: translate3d(0, var(--kindus-reveal-tilt-y), 0) rotate(var(--kindus-reveal-tilt-rotate));
  transform-origin: center center;
  transition:
    opacity var(--kindus-reveal-duration) var(--kindus-reveal-ease),
    transform var(--kindus-reveal-duration) var(--kindus-reveal-ease);
  will-change: opacity, transform;
}
.kindus-reveal-tilt.is-revealed,
[data-reveal="tilt"].is-revealed {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .kindus-reveal--large { --kindus-reveal-y: 60px; }
  .kindus-reveal--medium { --kindus-reveal-y: 40px; }
  .kindus-reveal--small { --kindus-reveal-y: 16px; }
  :root {
    --kindus-reveal-tilt-y: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .kindus-reveal,
  .kindus-reveal-tilt,
  [data-reveal="tilt"],
  .kindus-reveal-css {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Global hero height + vertical centering */
:root {
  --kindus-header-offset: 80px;
}
@media (max-width: 768px) {
  :root {
    --kindus-header-offset: 100px;
  }
}

.home_hero {
  min-height: 80vh;
  min-height: 80lvh;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .home_hero {
    padding-top: 100px;
  }
}

.home_hero .container {
  width: 100%;
}

/* Homepage hero only — taller than subpages */
.home_hero:not(.home_hero--subpage) {
  min-height: 78vh;
  min-height: 78lvh;
  margin-bottom: 30px;
}

@media (max-width: 1300px) {
  .home_hero:not(.home_hero--subpage) .home_hero__heading {
    font-size: clamp(13px, calc(13px + 3 * ((100vw - 390px) / 910)), 16px);
    line-height: clamp(22px, calc(22px + 6 * ((100vw - 390px) / 910)), 28px);
  }
}

/* Prevent layout flash while GSAP sets initial states */
.home_hero__heading,
.home_hero__subheading,
.home_hero__text,
.home_hero__btn-wrap {
  display: inline-block;
  will-change: transform, opacity;
}

/* Homepage hero text carousel */
.home-hero-text-slider.home_hero__text {
  display: block;
  width: 110%;
  margin-left: -5%;
  overflow: hidden;
}
.home-hero-text-slider .swiper-wrapper {
  align-items: stretch;
}
.home-hero-text-slider .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero-text-slider .swiper-slide p {
  margin: 0;
}
.home-hero-text-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto !important;
  margin-top: 12px;
  transform: none !important;
}
.home-hero-text-pagination .steps-bullet {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s;
}
.home-hero-text-pagination .steps-bullet--active {
  opacity: 1;
}

@media (min-width: 769px) {
  .home_hero__heading {
    margin-bottom: 10px;
  }
  .home_hero__btn-wrap {
    margin-top: 20px;
  }
  .br-mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .br-mobile {
    display: block;
  }
  .home-hero-text-slider .swiper-slide p {
    padding-left: 15px;
    padding-right: 15px;
  }
  .home_hero__btn-wrap {
    margin-top: 15px;
  }
}

/* Service sections — no longer pinned on scroll */
.service__type {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 !important;
  padding: 80px 0;
}

.service__type__left h4 {
  color: #fff;
}

/* Glassmorphism: blur only the portion of .to-blur overlapped by .blur */
g.blur { opacity: 0.75; }
.blur-behind { filter: url(#icon-blur-filter-sm); }
.icon-blur {
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, .4));
  .to-blur {
    filter: url(#icon-blur-filter);
  }
  .opacity {
    opacity: 0.5;
    fill: white;
  }
  .icon {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .2));
  }
}

.experience__item svg.icon-lock-sm {
  display: none;
  margin: 5px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .2));
  .icon {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .2));
  }
}
/* Steps card — clickable + hover effects */
.components__steps__item {
  cursor: pointer;
}
.components__steps__item svg {
  transition: transform 0.3s ease;
}
.components__steps__item:hover svg {
  transform: scale(1.05);
}
.components__steps__item a {
  position: relative;
}
.components__steps__item a::after {
  transition: transform 0.3s ease;
}
.components__steps__item:hover a::after {
  transform: translateX(5px);
}

.components__steps__item--1 svg,
.components__steps__item--2 svg,
.components__steps__item--3 svg {
  margin-bottom: 10px;
  width: 130px;
  height: auto;
}

.components__steps__item--3 svg {
  width: 150px;
}

.components__steps__item--2 svg {
  position: relative;
  top: -20px;
  width: 190px;
}

.service__type__left svg {
  margin: 0 auto 10px;
}

/* ── kindus-display-word — shared large typographic word treatment ───────── */
.kindus-display-word {
  color: rgba(10, 8, 48, 0.82);
  letter-spacing: -0.02em;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.1);
}

.kindus-display-word--light {
  color: rgba(255, 255, 255, 0.2);
  text-shadow: 1px 1px 1px rgb(0 0 0 / 10%);
}

.kindus-display-word--light-mid {
  color: rgba(255, 255, 255, 0.4);
  text-shadow: 1px 1px 1px rgb(0 0 0 / 10%);
}

/* ── kindus-frosted-card — shared frosted card surface (case-study base) ─────────────── */
.kindus-frosted-card {
  position: relative;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  color: #fff;
  filter: none !important;
  box-sizing: border-box;
}

/* Modal-trigger cards — whole card is clickable */
.kindus-frosted-card[data-ps-panel] {
  cursor: pointer;
  isolation: isolate;
}
.kindus-frosted-card[data-ps-panel]::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgb(255 255 255 / 0%);
  transition: background 0.25s ease;
  pointer-events: none;
  z-index: 0;
}
.kindus-frosted-card[data-ps-panel]:hover::before {
  background: rgb(255 255 255 / 12%);
}
.kindus-frosted-card[data-ps-panel]:hover .kindus-link-arrow::after {
  transform: translateX(5px) translateY(2px);
}

.kindus-frosted-card:not(.kindus-reveal-css):not(.slide-up-animation):not(.tilt-slide-up-animation) {
  transform: translateZ(0);
  transform-origin: center center;
}

.kindus-frosted-card.slide-up-animation,
.kindus-frosted-card.tilt-slide-up-animation {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-origin: center center;
}

.kindus-frosted-card :where(h1, h2, h3, h4, h5, h6, p, li, label, small, span) {
  color: #fff;
}

.kindus-frosted-card__accent,
.kindus-frosted-card__num,
.kindus-frosted-card .case-study__card__num,
.kindus-frosted-card .wk-stand__card__label,
.kindus-frosted-card .experience__item__value {
  color: #4288f9;
}

/* Stat character reveal */
.stat-char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.stat-char {
  display: inline-block;
  color: #4288f9;
  opacity: 0;
  transform: translateY(-105%);
}

/* Layout modifiers — parent context */
.experience .kindus-frosted-card {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 30px;
}

.experience .kindus-frosted-card:not(:last-child) {
  margin-bottom: 20px;
}

.kindus-frosted-card--active {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.wk-stand__grid > .kindus-frosted-card,
.rc-why__grid > .kindus-frosted-card {
  padding: 28px 24px;
}

/* Service page hero — inner gap */
.home_hero__inner {
  gap: 20px !important;
}

/* Service page hero — all p tags no bottom margin, btns spacing handled via margin-top */
.home_hero .ps-hero__intro,
.home_hero--people .ps-hero__intro,
.home_hero--process .ps-hero__intro,
.home_hero--technology .ps-hero__intro,
.home_hero--cirp .ps-hero__intro {
  margin-bottom: 0;
}
.ps-hero__btns {
  margin-top: 10px;
}

/* Service page templates — lead paragraph */
.rc-section__content > p:first-of-type {
  font-weight: 700 !important;
  font-size: 19px !important;
}

.rc-why__grid > .kindus-frosted-card {
  border-radius: 16px;
  padding: 32px 28px;
}
@media (max-width: 768px) {
  .rc-why__grid > .kindus-frosted-card:nth-child(odd) {
    background: rgb(0 0 0 / 20%) !important;
  }
  .rc-why__grid > .kindus-frosted-card:nth-child(even) {
    background: rgba(255, 255, 255, 0.08) !important;
  }
}

.kindus-frosted-card--purple {
  background: rgba(48, 39, 117, 0.9);
}

.kindus-frosted-card--sky {
  background: rgba(210, 225, 238, 0.85);
}

.kindus-frosted-card--navy {
  background: rgba(48, 39, 117, 0.9);
}

/* Footer — solid text (override any inherited transparency) */
.footer :where(p, a, address, span, li, label, h1, h2, h3, h4, h5, h6) {
  color: #fff;
  opacity: 1;
}

/* Footer newsletter CF7 — overrides global .wpcf7-form styles in main.css */
.footer__top .wpcf7-form {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex-wrap: wrap;
  width: 100%;
}

.footer__top .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin: 0;
  width: auto;
  flex: 0 0 auto;
}

.footer__top .wpcf7-form input.wpcf7-form-control[type="email"],
.footer__top .wpcf7-form input.wpcf7-form-control[type="text"] {
  width: 250px;
  height: auto;
  min-height: 0;
  box-sizing: border-box;
  background: rgba(203, 203, 203, 0.25);
  border: 0 !important;
  border-radius: 6px !important;
  color: #fff;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.footer__top .wpcf7-form input.wpcf7-form-control[type="email"]::placeholder,
.footer__top .wpcf7-form input.wpcf7-form-control[type="text"]::placeholder {
  color: #fff;
  opacity: 1;
  font-size: 14px;
  font-weight: 400;
}

.footer__top .wpcf7-form input.wpcf7-form-control[type="email"]::-webkit-input-placeholder,
.footer__top .wpcf7-form input.wpcf7-form-control[type="text"]::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}

.footer__top .wpcf7-form input.wpcf7-form-control[type="email"]::-moz-placeholder,
.footer__top .wpcf7-form input.wpcf7-form-control[type="text"]::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.footer__top .wpcf7-form input.wpcf7-form-control[type="email"]:-ms-input-placeholder,
.footer__top .wpcf7-form input.wpcf7-form-control[type="text"]:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}

.footer__top .wpcf7-form input.wpcf7-submit,
.footer__top .wpcf7-form input.wpcf7-form-control.wpcf7-submit {
  display: inline-block;
  width: auto;
  height: auto;
  min-height: 0;
  background: linear-gradient(251deg, rgba(59, 91, 177, 1) 0%, rgba(66, 137, 251, 1) 100%);
  border: none !important;
  border-radius: 7px !important;
  color: #fff;
  padding: 9px 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  font-family: inherit;
  cursor: pointer;
  transition: transform 400ms ease;
  transform-origin: center center;
}

.footer__top .wpcf7-form input.wpcf7-submit:hover {
  transform: scale(1.05);
}

.footer__top .wpcf7-form .wpcf7-spinner {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  margin: 0;
}

.footer__top .wpcf7-form .wpcf7-response-output {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  margin: 0;
  padding: 4px 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__top .f1,
  .footer__top .f2,
  .footer__top .f3 {
    width: 100%;
    text-align: center;
  }
  .footer__top address {
    font-style: normal;
  }
  .footer__top__social {
    justify-content: center;
  }
  .footer__top .wpcf7-form {
    justify-content: center;
  }
  .footer__top .wpcf7-form input.wpcf7-form-control[type="email"],
  .footer__top .wpcf7-form input.wpcf7-form-control[type="text"] {
    width: 220px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .footer__bottom__links {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .experience__item__value {
    min-width: 200px;
    display: inline-block;
  }
}

.components--text {
  padding-top: 120px;
}

/* Mobile — home page & service sections */
@media (max-width: 768px) {
  /* Fix: remove negative margin-top that overlapped swiper onto hero */
  .components--steps {
    margin-top: 0 !important;
  }

  .home_hero .container {
    width: 85%;
  }

  .home_hero:not(.home_hero--subpage) {
    min-height: calc(64 * var(--real-lvh, 1lvh));
  }

  .home_hero:not(.home_hero--subpage) .home_hero__heading {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .service__type {
    min-height: auto !important;
    display: block !important;
    margin: 40px 0 !important;
    padding: 20px 0 !important;
  }

  .service__type > .container {
    width: 85%;
  }

  .service__type__right .service__type__list__item__large {
    font-size: 16px;
    line-height: 24px;
  }

  /* First service type (People Services) — shrink icon 15% */
  .service__type:first-child .service__type__left svg {
    transform: scale(0.85);
    transform-origin: center;
  }

  .experience__item__label {
    font-size: 16px;
    line-height: 22px;
  }

  .components--text {
    padding-bottom: 0px;
    padding-top: 60px;
  }

  .components__steps figure #border {
    top: -13%;
    left: -20%;
    width: 140%;
    height: 140%;
  }

  .components__steps__item--1 svg {
    width: 100px;
  }
  .components__steps__item--2 svg,
  .components__steps__item--3 svg {
    width: 120px;
  }

  .components__steps__item h4 {
    font-size: 26px;
    line-height: 28px;
  }

  .experience__item__value,
  .experience .kindus-frosted-card__value {
    font-size: 45px;
    line-height: 45px;
  }

  .experience .kindus-frosted-card {
    gap: 16px;
    padding: 12px;
  }

  .experience .kindus-frosted-card:not(:last-child) {
    margin-bottom: 10px;
  }

  .partners {
    margin: 20px 0 100px;
  }

  .home_hero__icon svg {
    height: auto;
    width: 140px;
  }

  .service__type__list {
    gap: 10px;
  }
}

@media only screen and (max-width: 850px) {
  .service__type__list__item:not(:last-child),
  .service__type__list > .kindus-frosted-card:not(:last-child) {
    margin-bottom: 0px;
  }
}

/* Partners marquee ticker */
.partners { overflow: hidden; width: 100%; margin: 0 0 120px; }

/* Home partners — hidden until hero timeline reveals (prevents load flicker) */
.home_hero:not(.home_hero--subpage) + .partners {
  opacity: 0;
}
.home_hero:not(.home_hero--subpage) + .partners .partners__inner {
  animation-play-state: paused;
}
.home_hero:not(.home_hero--subpage) + .partners.partners--running .partners__inner {
  animation-play-state: running;
}
.home_hero:not(.home_hero--subpage) + .partners.kindus-reveal-css {
  transition: opacity var(--kr-dur, 0.8s) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--kr-delay, 0s);
}
.home_hero:not(.home_hero--subpage) + .partners.kindus-reveal-css.is-revealed {
  opacity: 1;
}

.grad--btm-case-studies {
  padding-top: 60px;
  padding-bottom: 60px;
}
.partners__inner {
  display: flex;
  width: max-content;
  animation: partners-scroll 100s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.partners__track {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 60px;
  flex-shrink: 0;
}
.partners__track img { height: auto; width: auto; opacity: 1; max-width: 180px; }
@keyframes partners-scroll {
  from { transform: translateZ(0) translateX(0); }
  to   { transform: translateZ(0) translateX(-33.3333%); }
}

@media (max-width: 768px) {
  .partners__inner {
    animation-duration: 66.66s;
  }

  .partners__track {
    gap: 50px;
    padding: 0 30px;
  }

  .partners__track img {
    max-width: 120px;
  }
}

.service__type__list__item__large {
  font-size: 16px;
  line-height: 19.2px;
}

/* service__type__list card hover — pseudo-element so card transition is not overridden */
.service__type__list .kindus-frosted-card {
  isolation: isolate;
}
.service__type__list .kindus-frosted-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgb(255 255 255 / 0%);
  transition: background 0.25s ease;
  pointer-events: none;
  z-index: 0;
}
.service__type__list .kindus-frosted-card:hover::before {
  background: rgb(255 255 255 / 10%);
}
.service__type__list .kindus-frosted-card p {
  transition: transform 0.25s ease;
  display: block;
  transform-origin: left center;
}
.service__type__list .kindus-frosted-card:hover p {
  transform: scale(1.04);
}

/* Site-wrap texture parallax */
:root { --site-parallax: 0px; --site-wrap-before-height: 200%; }
.site_wrap::before {
  position: fixed !important;
  height: var(--site-wrap-before-height) !important;
  transform: translateY(var(--site-parallax)) !important;
  top: 0 !important;
}
@media (max-width: 768px) {
  :root { --site-parallax: 0px !important; }
}

@media only screen and (max-width: 920px) {
  .main_nav ul#menu-primary li .sub-menu li a {
    font-size: 16px;
    margin-bottom: 6px;
  }
}

/* ── Mobile menu overlay ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Hide overlay and any theme-generated close figures — we use .mob-close only */
  .resi_over { display: none !important; }
  .main_nav__menu figure,
  .menu-header figure { display: none !important; }

  /* When the mobile menu is open (.js-nav), ensure the fixed header stacks above the footer */
  .js-nav .head {
    z-index: 100000 !important;
  }

  /* Full-screen dark menu panel — fixed to viewport, slides in from right */
  .main_nav__menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #0d0c1e !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column;
    overflow: hidden !important;
    z-index: 9999 !important;
    transform: translate3d(100%, 0, 0) !important;
    transition: transform 400ms ease !important;
  }
  .js-nav .main_nav__menu {
    transform: translate3d(0, 0, 0) !important;
    overflow-y: auto !important;
  }

  /* Close (×) button */
  .mob-close {
    display: block !important;
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    width: 36px !important;
    height: 36px !important;
    cursor: pointer;
    z-index: 10;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    outline: none;
  }
  .mob-close::before,
  .mob-close::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: #fff !important;
    border-radius: 2px !important;
    display: block !important;
  }
  .mob-close::before { transform: rotate(45deg) !important; }
  .mob-close::after  { transform: rotate(-45deg) !important; }

  /* Menu list wrapper */
  .main_nav__menu .menu-header {
    flex: 1;
    padding: 80px 32px 24px;
  }
  .main_nav__menu .menu-header ul.menu {
    display: block !important;
  }

  /* Top border on first menu item */
  .main_nav ul#menu-primary > li:first-child,
  .main_nav__menu .menu-header ul.menu > li:first-child {
    border-top: solid 1px #595c5e !important;
  }

  /* Top-level items */
  .main_nav ul#menu-primary > li,
  .main_nav__menu ul.menu > li {
    margin: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: solid 1px #595c5e !important;
  }
  /* Hide inline "Get in Touch" nav item — separate CTA button used instead */
  .main_nav__menu ul.menu > li.btn,
  .main_nav__menu ul.menu > li.contact { display: none !important; }

  /* Top-level links */
  .main_nav__menu ul.menu > li > a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #fff !important;
    padding: 20px 0 !important;
    text-decoration: none;
  }
  /* + / − toggle — high specificity to beat theme rules */
  .main_nav__menu .menu-header ul.menu > li.menu-item-has-children > a::after {
    content: '+' !important;
    display: inline-block !important;
    font-size: 24px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #fff !important;
    flex-shrink: 0;
  }
  .main_nav__menu .menu-header ul.menu > li.menu-item-has-children.mob-open > a::after {
    content: '\2212' !important;
  }

  /* Sub-menu — hidden by default, shown when parent has .mob-open */
  .main_nav__menu ul.sub-menu {
    display: block !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 250ms ease, opacity 250ms ease !important;
    opacity: 0 !important;
    position: static !important;
    transform: none !important;
    visibility: visible !important;
    background: transparent !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin-top: 0 !important;
  }
  .main_nav__menu ul.sub-menu::before,
  .main_nav__menu ul.sub-menu li::before { display: none !important; }
  .main_nav__menu ul.menu > li.mob-open > ul.sub-menu {
    max-height: 400px !important;
    opacity: 1 !important;
    padding-bottom: 15px !important;
  }
  .main_nav__menu ul.sub-menu li {
    width: 100% !important;
    padding: 2px 0 !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
  }
  .main_nav__menu ul.sub-menu li a {
    color: #fff !important;
    font-size: 18px !important;
    padding: 0 !important;
    transform: none !important;
  }
  .main_nav__menu ul.sub-menu li a p {
    color: #fff !important;
  }
  .main_nav__menu ul.sub-menu li.current_parent p {
    color: #fff !important;
    text-align: left !important;
  }

  /* Bottom CTA */
  .mob-menu-cta {
    padding: 24px 32px 48px;
    flex-shrink: 0;
  }
  .mob-menu-cta a {
    display: block;
    background: #4288f9;
    color: #fff !important;
    text-align: center;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
  }
}

/* ── Desktop dropdown ─────────────────────────────────────────────────────── */
@media (min-width: 1025px) {
  .mob-close, .mob-menu-cta { display: none !important; }

  .head .main_nav .menu-header ul.menu li a {
    font-size: 16px;
    line-height: 24px;
  }
  .main_nav .menu-header ul.menu ul.sub-menu {
    background: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18) !important;
    padding: 8px 0 !important;
    width: 300px !important;
    height: auto !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    top: calc(100% + 10px) !important;
  }
  .main_nav .menu-header ul.menu ul.sub-menu::before { display: none !important; }
  .main_nav .menu-header ul.menu li ul.sub-menu li {
    width: 100% !important;
    padding: 0 !important;
  }
  .main_nav .menu-header ul.menu li ul.sub-menu li::before { display: none !important; }
  .main_nav .menu-header ul.menu li ul.sub-menu li a {
    color: #1a1a2e !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    padding: 10px 20px !important;
    display: block;
    font-weight: 500 !important;
  }
  .main_nav .menu-header ul.menu li ul.sub-menu li a:hover {
    color: #4288f9 !important;
    text-decoration: none !important;
  }
}

/* ── Nav dropdown plus/minus icon (desktop) ──────────────────────────────── */
@media (min-width: 1025px) {
  .head .main_nav .menu-header ul.menu li.menu-item-has-children > a::after,
  .main_nav .menu-header ul.menu li.menu-item-has-children > a::after {
    content: '' !important;
    display: inline-block !important;
    width: 11px !important;
    height: 11px !important;
    margin-left: 6px !important;
    padding: 0 !important;
    vertical-align: middle !important;
    flex-shrink: 0;
    background-image:
      linear-gradient(currentColor, currentColor),
      linear-gradient(currentColor, currentColor) !important;
    background-size: 1px 11px, 11px 1px !important;
    background-position: center center, center center !important;
    background-repeat: no-repeat !important;
    transition: background-size 0.25s ease, transform 0.35s ease !important;
    transform: translateZ(0) !important;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .head .main_nav .menu-header ul.menu li.menu-item-has-children:hover > a::after,
  .main_nav .menu-header ul.menu li.menu-item-has-children:hover > a::after {
    background-size: 1px 12px, 0px 1px !important;
    transform: translateZ(0) rotate(90deg) !important;
  }
}

/* ── Steps mobile carousel ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .components--steps { overflow: visible; }
  .components__steps {
    max-width: 100% !important;
    width: min(100%, 520px);
    overflow: visible;
    padding-bottom: 50px;
  }
  .components__steps figure {
    min-width: 0 !important;
    width: 100%;
  }
  .components__steps figure::before {
    padding-bottom: 125% !important;
  }
  .components__steps__items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    gap: 20px;
  }
  .steps-mobile-swiper { width: 100%; flex-shrink: 0; overflow: hidden; }
  .steps-mobile-swiper .swiper-wrapper { align-items: stretch; }
  .steps-mobile-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  .steps-mobile-swiper .swiper-slide .components__steps__item {
    position: relative !important;
    top: auto !important; left: auto !important;
    right: auto !important; bottom: auto !important;
    width: 100% !important;
    max-width: 100%;
    text-align: center;
  }
  .steps-pagination {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .steps-bullet {
    background: #fff; opacity: 0.4;
    width: 12px; height: 12px; border-radius: 50%;
    display: inline-block; cursor: pointer; transition: opacity 0.2s;
  }
  .steps-bullet--active { opacity: 1; }
}

/* ── AI trends mobile carousel (ai-innovation.php) ─────────────────────────── */
@media (max-width: 800px) {
  .components--ai-trends {
    margin-top: 0 !important;
  }
}
@media (max-width: 768px) {
  .components--ai-trends { overflow: visible; }
  .ai-trends-circle {
    max-width: 100% !important;
    width: min(100%, 624px);
    overflow: visible;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ai-trends-circle figure {
    display: block !important;
    min-width: 0 !important;
    width: 120%;
    top: -20px;
    position: relative;
    order: 0;
  }
  .ai-trends-circle figure::before {
    padding-bottom: 125% !important;
  }
  .ai-trends-circle__centre {
    position: static;
    order: -1;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    text-align: center;
    white-space: normal;
    margin: 0 0 24px;
    padding: 0 16px;
    z-index: 2;
  }
  .ai-trends-circle__items {
    position: static;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: visible;
    gap: 20px;
  }
  .ai-trends-mobile-swiper { width: 100%; flex-shrink: 0; }
  .ai-trends-mobile-swiper .swiper-wrapper { align-items: center; }
  .ai-trends-mobile-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ai-trends-mobile-swiper .swiper-slide .ai-trend {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    max-width: 100%;
    gap: 16px;
    padding: 0 12px;
    margin: 0;
    background: transparent;
  }
  .ai-trends-mobile-swiper .swiper-slide .ai-trend__label {
    text-align: center !important;
    white-space: normal;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
  }
  .ai-trends-mobile-swiper .swiper-slide .ai-trend__bubble {
    width: 80px;
    height: 80px;
  }
  .ai-trends-pagination {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    bottom: -80px;
  }
  .ai-trends-bullet {
    background: #fff;
    opacity: 0.4;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .ai-trends-bullet--active { opacity: 1; }
}

/* Skip transitions when resetting scroll reveals (scroll back to top) */
.kindus-reveal-instant,
.kindus-reveal-instant.word {
  transition: none !important;
}

/* ── Scroll animations disabled (markup mode) ─────────────────────────────── */
html.kindus-scroll-anim-off {
  --site-parallax: 0px !important;
}

html.kindus-scroll-anim-off [data-reveal],
html.kindus-scroll-anim-off .kindus-reveal,
html.kindus-scroll-anim-off .kindus-reveal-css,
html.kindus-scroll-anim-off .kindus-reveal-tilt,
html.kindus-scroll-anim-off [data-reveal-cards],
html.kindus-scroll-anim-off .slide-up-animation,
html.kindus-scroll-anim-off .tilt-slide-up-animation,
html.kindus-scroll-anim-off .word-wrap-animation,
html.kindus-scroll-anim-off .word-wrap-animation .word,
html.kindus-scroll-anim-off .fade-in-animation {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  visibility: visible !important;
}

html.kindus-scroll-anim-off .home_hero:not(.home_hero--subpage) + .partners {
  opacity: 1 !important;
}

html.kindus-scroll-anim-off .home_hero:not(.home_hero--subpage) + .partners .partners__inner {
  animation-play-state: running;
}

html.kindus-scroll-anim-off .kindus-reveal-css--word,
html.kindus-scroll-anim-off .word.kindus-reveal-css {
  opacity: 1 !important;
  transform: none !important;
}

/* Hero page-load word animation — keep clip mask; do not force .word visible here */
html.kindus-scroll-anim-off .home_hero .word-wrap,
html.kindus-scroll-anim-off [class*="hero__"] .word-wrap {
  overflow: hidden;
  vertical-align: bottom;
}

/* ─── News single page ────────────────────────────────────────────────────── */
.single-article {
  padding: clamp(100px, 10vw, 140px) 0 clamp(40px, 6vw, 80px);
}
.single-article__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #4288f9;
  text-decoration: none;
  margin-bottom: 32px;
}
.single-article__title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 auto 20px;
  max-width: 820px;
  text-align: center;
}
.single-article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  text-align: center;
}
.single-article__sep { opacity: 0.4; }
.single-article__hero-img {
  width: 100%;
  aspect-ratio: 2 / 0.85;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 48px;
}
.single-article__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-article__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.single-article__body {
  color: #fff;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.8;
}
.single-article__body p { margin: 0 0 22px; }
.single-article__body h2 {
  font-size: clamp(1.56rem, 3vw, 2.28rem);
  font-weight: 700;
  color: #fff;
  margin: 40px 0 16px;
  line-height: 1.25;
}
.single-article__body h3 {
  font-size: clamp(1.68rem, 2.88vw, 2.16rem);
  font-weight: 700;
  color: #4288f9;
  margin: 28px 0 10px;
}
.single-article__body ul {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
}
.single-article__body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.single-article__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 1px;
  background: #4288f9;
  opacity: 0.7;
}
.single-article__body a {
  color: #4288f9;
  text-decoration: underline;
}
.single-article__body a:hover { opacity: 0.8; }
.single-article__figure {
  margin: 8px 0 28px;
  border-radius: 12px;
  overflow: hidden;
}
.single-article__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.single-article__figure figcaption {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  font-style: italic;
}
.single-article__figure--inline {
  float: right;
  width: 44%;
  margin: 0 0 20px 28px;
}
.single-article__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--kindus-header-offset, 90px) + 20px);
}
.sidebar-widget { padding: 24px; }
.sidebar-widget__title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sidebar-widget__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-widget__list li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-widget__list li a:hover { color: #4288f9; }
.sidebar-popular {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-popular__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sidebar-popular__thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.sidebar-popular__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sidebar-popular__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-popular__link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
}
.sidebar-popular__link:hover { color: #4288f9; }
.sidebar-popular__date {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.more-posts {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.more-posts__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.more-posts__title {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.more-posts__nav { display: flex; gap: 8px; }
.more-posts__nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.more-posts__nav-btn:hover {
  background: rgba(66,136,249,0.15);
  border-color: #4288f9;
  color: #4288f9;
}
.more-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.more-post-card {
  display: flex;
  flex-direction: column;
  background: rgba(38, 32, 72, 0.92);
  border-radius: 16px;
  overflow: hidden;
}
.more-post-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.more-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.more-post-card:hover .more-post-card__thumb img { transform: scale(1.04); }
.more-post-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.more-post-card__date {
  font-size: 13px;
  color: #4288f9;
  font-weight: 600;
  margin: 0;
}
.more-post-card__title {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}
@media (max-width: 1024px) {
  .single-article__layout { grid-template-columns: 1fr 280px; gap: 32px; }
}
@media (max-width: 768px) {
  .single-article { padding-top: 100px; }
  .single-article__layout { grid-template-columns: 1fr; }
  .single-article__sidebar { position: static; }
  .single-article__figure--inline { float: none; width: 100%; margin: 0 0 24px; }
  .single-article__hero-img { aspect-ratio: 16 / 9; }
  .more-posts__grid { grid-template-columns: 1fr; gap: 20px; }
}

.rc-what__node__label {
  font-size: 16px;
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES (moved from inline PHP)
   ========================================================================== */

/* ==========================================================================
   SERVICE PAGES — people, process, technology, regulatory, cyber-incident
   ========================================================================== */
/* ── Hero ─────────────────────────────────────────────────────────────────── */
.home_hero--people, .home_hero--process, .home_hero--technology, .home_hero--rc, .home_hero--cirp {
  margin: 0;
  min-height: 80vh;
  min-height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  box-sizing: border-box;
}
.home_hero--people .container, .home_hero--process .container, .home_hero--technology .container, .home_hero--rc .container, .home_hero--cirp .container { width: 100%; }
.home_hero--people .home_hero__inner, .home_hero--process .home_hero__inner, .home_hero--technology .home_hero__inner, .home_hero--rc .home_hero__inner, .home_hero--cirp .home_hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.home_hero--people .home_hero__heading, .home_hero--process .home_hero__heading, .home_hero--technology .home_hero__heading, .home_hero--rc .home_hero__heading, .home_hero--cirp .home_hero__heading {
  color: #fff;
}
.ps-hero__intro {
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 10px;
}
.ps-hero__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 520px;
  margin-bottom: 10px;
}
.ps-hero__btns .btn {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

/* rc-hero aliases (regulatory-compliance) */
.rc-hero__intro {
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 10px;
}
.rc-hero__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 520px;
  margin-bottom: 10px;
}
.rc-hero__btns .btn {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.rc-icon-placeholder {
  display: block;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 8px;
  flex-shrink: 0;
}
.rc-icon-placeholder--sm {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.grad--ps-cta-wrap,
.grad--rc-cta-wrap,
.grad--cirp-cta-wrap {
  padding-top: 50px;
  padding-bottom: 100px;
}
.scroll-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4288f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── Shared section layout ────────────────────────────────────────────────── */
.rc-section {
  position: relative;
  overflow: hidden;
  padding: 0 0 80px;
  box-sizing: border-box;
}
.rc-section .container {
  position: relative;
}
.rc-section__inner {
  position: relative;
  width: 100%;
}
.rc-section__word {
  position: relative;
  width: 100%;
  font-size: clamp(56px, 12vw, 220px);
  font-weight: 900;
  color: rgba(10, 8, 48, 0.82);
  line-height: 0.88;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  margin: 0 0 clamp(28px, 5vw, 20px);
  text-align: center;
  z-index: 0;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.1);
}
.rc-section__content {
  position: relative;
  z-index: 1;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 880px;
  margin: auto;
}

/* ── What we do ─────────────────────────────────────────────────────────── */
.rc-what__heading {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0 auto 20px;
  max-width: 640px;
  width: 100%;
}
.rc-what__nodes__title {
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  width: 100%;
}
.rc-what__lead,
.rc-what__body {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.65;
  max-width: 720px;
  width: 100%;
  margin: 0 auto 18px;
}
.rc-what__timeline {
  position: relative;
  margin-top: 0;
  max-width: 900px;
  width: 100%;
}
.rc-what__nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.rc-what__node {
  display: flex;
  justify-content: center;
}
.rc-what__node__bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  width: 100%;
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-sizing: border-box;
  transform-origin: center center;
}
.rc-what__node__label {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  opacity: 1;
}

/* ── Our services ─────────────────────────────────────────────────────────── */
.rc-services {
  padding-bottom: 80px;
}
.rc-services .kindus-frosted-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: none;
  border: none;
}
.rc-why .kindus-frosted-card,
.rc-why .kindus-frosted-card--purple,
.rc-why .kindus-frosted-card--sky,
.rc-why .kindus-frosted-card--navy {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: none;
}
.rc-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 960px;
  text-align: left;
}
.rc-services .kindus-frosted-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.35;
}
.rc-services .kindus-frosted-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
/* ── Why Kindus ───────────────────────────────────────────────────────────── */
.rc-why {
  padding-top: 40px;
}
.rc-why__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  width: 100%;
  text-align: left;
}
.rc-why__grid > .kindus-frosted-card {
  box-sizing: border-box;
}
.rc-why__grid > .kindus-frosted-card svg,
.rc-why__grid > .kindus-frosted-card img {
  margin-bottom: 15px;
  width: auto;
  height: 100px;
}
.rc-why__grid > .kindus-frosted-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.rc-why__grid > .kindus-frosted-card p,
.rc-why__grid > .kindus-frosted-card li {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.rc-why__grid > .kindus-frosted-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rc-why__grid > .kindus-frosted-card li::before {
  content: '•';
  margin-right: 8px;
  opacity: 0.7;
}
.rc-why__grid .kindus-frosted-card:nth-child(1) { grid-column: span 7; background: rgb(0 0 0 / 20%); }
.rc-why__grid .kindus-frosted-card:nth-child(2) { grid-column: span 5; }
.rc-why__grid .kindus-frosted-card:nth-child(3) { grid-column: span 7; }
.rc-why__grid .kindus-frosted-card:nth-child(4) { grid-column: span 5; grid-row: span 2; background: rgb(0 0 0 / 20%); }
.rc-why__grid .kindus-frosted-card:nth-child(5) { grid-column: span 7; background: rgb(0 0 0 / 20%); }

/* ── Service read-more link ───────────────────────────────────────────────── */
.ps-read-more {
  margin-top: 12px;
  text-decoration: none;
}
.ps-read-more:hover,
.ps-read-more:focus {
  text-decoration: none;
}

/* ── Service detail modal ─────────────────────────────────────────────────── */
.ps-service-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  opacity: 0;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}
.ps-service-modal:not([hidden]) {
  display: flex;
}
.ps-service-modal--open {
  opacity: 1;
}
.ps-service-modal__scroll {
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}
.ps-service-modal__panel {
  display: block;
}
.ps-service-modal__panel[hidden] {
  display: none !important;
}
.ps-service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 32, 0.55);
}
.ps-service-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 820px;
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
  padding: 48px 40px 40px;
  box-sizing: border-box;
  overflow: visible;
}
.ps-service-modal__panels {
  /* overflow now handled by ps-service-modal__scroll wrapper */
}
.ps-service-modal__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.3;
  padding-right: 20px;
}
.ps-service-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border: 0;
  outline: 0;
  border-radius: 50%;
  background: #4288f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
.ps-service-modal__close:hover {
  background: #3576e6;
}
.ps-service-modal__panel p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px;
  text-align: left;
}
.ps-service-modal__panel p:last-child {
  margin-bottom: 0;
}

/* ── CTA ──────────────────────────────────────────────────────────────────── */
.rc-cta {
  padding: 0;
}
.rc-cta__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.rc-cta__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

/* Desktop-only line break for the word "strengthen" */
.rc-cta__heading-break {
  display: none;
}

@media (min-width: 769px) {
  .rc-cta__heading-break {
    display: inline;
  }
}
.rc-cta__text {
  color: rgba(255, 255, 255, 1);
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
}
.rc-cta__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 520px;
}
.rc-cta__btns .btn {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

@media (max-width: 768px) {
  .rc-section {
    padding: 30px 0 30px;
  }
  .rc-why__grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .rc-why__grid .kindus-frosted-card:nth-child(1),
  .rc-why__grid .kindus-frosted-card:nth-child(2),
  .rc-why__grid .kindus-frosted-card:nth-child(3),
  .rc-why__grid .kindus-frosted-card:nth-child(4),
  .rc-why__grid .kindus-frosted-card:nth-child(5) {
    grid-column: unset;
    grid-row: unset;
  }
  .home_hero--people .home_hero__heading, .home_hero--process .home_hero__heading, .home_hero--technology .home_hero__heading, .home_hero--rc .home_hero__heading, .home_hero--cirp .home_hero__heading {
    margin-bottom: 0;
  }
  .home_hero__icon svg {
    height: 110px;
  }
  .rc-section__word {
    font-size: 22vw;
    white-space: normal;
    margin-bottom: clamp(20px, 4vw, 36px);
  }
  .rc-what__nodes {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    row-gap: 10px;
  }
  .rc-what__node__bubble {
    min-height: 100px;
  }
  .rc-services__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .rc-services .kindus-frosted-card h3 {
    font-size: 16px;
  }
  .rc-why__grid > .kindus-frosted-card img {
    height: 80px;
  }
  .ps-hero__btns {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  .ps-hero__intro {
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 0 !important;
  }
  .rc-hero__btns {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  .rc-hero__intro {
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 0 !important;
  }

  .rc-cta__btns {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  .rc-cta__btns .btn {
    width: 100%;
    text-align: center;
  }
  .ps-service-modal__dialog {
    padding: 40px 28px 32px;
    border-radius: 20px;
    max-height: 85svh;
  }
  .ps-service-modal__close {
    top: -10px;
    right: -10px;
  }
}

/* ==========================================================================
   AI-INNOVATION
   ========================================================================== */
/* ── Hero ─────────────────────────────────────────────────────────────────── */
.home_hero--ai {
  margin: 0;
  min-height: 80vh;
  min-height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  box-sizing: border-box;
}
.home_hero--ai .container {
  width: 100%;
}
.home_hero--ai .home_hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.home_hero--ai .home_hero__heading {
  color:white;
}
.ai-hero__intro {
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  text-align: center;
}
.home_hero--ai p {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .home_hero--ai .home_hero__heading {
    margin-bottom: 0;
  }
}
.home_hero--ai .ps-hero__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 520px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.home_hero--ai .ps-hero__btns .btn {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.grad--btm-partners {
  padding-bottom: 40px;
}
.grad--btm-partners::before {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%);
}
/* ── Scroll indicator ─────────────────────────────────────────────────────── */
.scroll-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4288f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── "Delivering" section — content at top, pins when grid reaches viewport centre ─ */
.ai-deliver {
  /* min-height: 100vh; */
  /* min-height: 100dvh; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* padding-top: 0.15em; */
  /* padding-bottom: 80px; */
  margin: 0 !important;
  position: relative;
  box-sizing: border-box;
}
.ai-deliver .container {
  position: relative;
  z-index: 1;
}
/* Large typographic background word */
.ai-deliver__word {
  position: relative;
  display: block;
  font-size: clamp(72px, 15vw, 300px);
  font-weight: 900;
  line-height: 0.88;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  margin: 0 0 -0.2em;
  z-index: 1;
  text-align: center;
  transform-origin: center center;
}
.ai-deliver__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.ai-deliver__label {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1020px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-deliver__label > * {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  margin: 0;
}
.ai-deliver__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 1020px;
}
.ai-deliver .kindus-frosted-card h3 {
  display: block;
  font-size: 17px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}
.ai-deliver .kindus-frosted-card p {
  display: block;
  font-size: 16px;
  line-height: 26px;
}
.ai-deliver .kindus-frosted-card h3::after {
  content: none;
}

/* ── AI Trends Graphic (SVG asset layout) ──────────────────────────────── */
.components--ai-trends {
  padding: 0;
}
.components--ai-trends .container--regular {
  width: 80%;
}
@media (min-width: 769px) {
  .components--ai-trends .components__inner {
    max-width: none;
  }
}

/* Wrapper */
.ai-tg {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
}

/* Stage: matches the 1230×879 SVG canvas */
.ai-tg__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1230 / 879;
  overflow: visible;
}

/* All SVG background layers share these base rules */
.ai-tg__layer {
  position: absolute;
  pointer-events: none;
  display: block;
}

/* blurbg — gradient glow circle */
.ai-tg__blurbg {
  left: 28.37%; top: 19.17%;
  width: 44.05%;
  filter: blur(30px);
}

/* circle-dots — dotted orbit ring */
.ai-tg__dots {
  left: 28.37%; top: 19.17%;
  width: 44.05%;
}

/* Ellipse 315 — gradient outer ring */
.ai-tg__ring {
  left: 31.46%; top: 23.6%;
  width: 37.78%;
}

/* circle-inner — frosted centre circle */
.ai-tg__inner {
  left: 35.25%; top: 28.9%;
  width: 30.23%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

/* Centre text */
.ai-tg__centre {
  position: absolute;
  left: 50.33%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
  letter-spacing: 0.02em;
  pointer-events: none;
  z-index: 3;
}

/* Number badges — blue circles at circle perimeter */
.ai-tg__badge {
  position: absolute;
  width: 3.74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #4288f9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(9px, 1.4vw, 17px);
  font-weight: 600;
  z-index: 5;
  transform: translate(-50%, -50%);
  box-shadow: 0 3px 14px rgba(66,136,249,0.55);
}
.ai-tg__badge--1 { left: 37.32%; top: 24.76%; }
.ai-tg__badge--2 { left: 63.28%; top: 24.76%; }
.ai-tg__badge--3 { left: 28.38%; top: 50.06%; }
.ai-tg__badge--4 { left: 71.95%; top: 50.06%; }
.ai-tg__badge--5 { left: 38.65%; top: 76.79%; }
.ai-tg__badge--6 { left: 61.41%; top: 76.79%; }

/* Panels */
.ai-tg__panel {
  position: absolute;
  display: flex;
  align-items: center;
  width: 25.2%;
  height: 11.5%;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  border-radius: 12px;
  overflow: hidden;
  z-index: 4;
  color: #fff;
  padding: 10px;
}

.ai-tg__panel__text {
  flex: 1;
  text-align: left;
  padding: clamp(8px, 1vw, 14px) clamp(10px, 1.4vw, 18px);
}
.ai-tg__panel__text > * {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

@media (max-width: 1360px) {
  .ai-tg__panel__text > * {
    font-size: 1.1vw;
  }
}

@media (min-width: 1361px) {
  .ai-tg__panel__text > * {
    font-size: 16px;
  }
}

.ai-tg__panel__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: clamp(4px, 0.7vw, 9px);
}
.ai-tg__panel__icon img {
  width: clamp(38px, 5.5vw, 68px);
  height: auto;
}

/* Panel positions (top-left corner, % of 1230×879 canvas) */
.ai-tg__panel--1 { left:  9.35%; top: 18.52%; }
.ai-tg__panel--2 { left: 66.03%; top: 18.56%; flex-direction: row-reverse; margin-left: 10px; }
.ai-tg__panel--3 { left: 74.72%; top: 43.7%;  flex-direction: row-reverse; }
.ai-tg__panel--4 { left:  0%;    top: 44.2%;  margin-left: 10px; }
.ai-tg__panel--5 { left: 10.35%; top: 71.05%; }
.ai-tg__panel--6 { left: 64.59%; top: 71.05%; flex-direction: row-reverse; margin-left: 10px; }

/* Mobile cards (hidden on desktop) */
.ai-tg__mobile { display: none; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ai-deliver__word {
    font-size: clamp(60px, 15vw, 220px);
  }
}

@media (max-width: 768px) {
  .home_hero--ai {
    min-height: 80dvh;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .ai-hero__intro {
    padding-left: 25px;
    padding-right: 25px;
  }
  .home_hero--ai .ps-hero__btns {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    box-sizing: border-box;
  }
  .home_hero--ai .ps-hero__btns .btn {
    display: block;
    width: 100%;
  }
  .ai-deliver {
    min-height: auto !important;
    display: block !important;
    padding: 0px 0 !important;
  }
  .ai-deliver > .container > .to-animate:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 36px;
    gap: 36px;
  }
  .ai-deliver__word {
    font-size: clamp(52px, 18vw, 120px);
    margin: 0;
  }
  .ai-deliver__label {
    margin-top: 0;
  }
  .ai-deliver__cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ai-deliver .kindus-frosted-card h3 {
    font-size: 16px;
  }

  .components--ai-trends,
  .components--ai-trends.components--steps {
    margin-top: 0 !important;
    padding: 60px 0 60px;
  }

  /* Hide stage, show mobile swiper */
  .ai-tg__stage  { display: none; }
  .ai-tg__mobile {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
    padding: 50px 0 50px;
    text-align: center;
  }

  /* Title — pointer-events off so swipes pass through to carousel */
  .ai-tg__mobile__title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: clamp(18px, 5vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 30px;
    padding: 0 20px;
    top: 40px;
    pointer-events: none;
  }

  /* Background — spans full section, all layers centred */
  .ai-tg__mobile__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  .ai-tg__mobile__bg-blurbg,
  .ai-tg__mobile__bg-dots,
  .ai-tg__mobile__bg-ring,
  .ai-tg__mobile__bg-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  /* blurbg — glow halo behind the circle */
  .ai-tg__mobile__bg-blurbg {
    width: 85%;
    height: auto;
    filter: blur(30px);
    opacity: 0.8;
  }

  /* dots — outer orbit ring */
  .ai-tg__mobile__bg-dots {
    width: 96%;
    height: auto;
    opacity: 0.7;
  }

  /* ring — gradient ring (slightly inside dots) */
  .ai-tg__mobile__bg-ring {
    width: 90%;
    height: auto;
  }

  /* inner — frosted glass centre circle */
  .ai-tg__mobile__bg-inner {
    width: 90%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    opacity: 0.3;
  }

  /* Swiper */
  .ai-tg__mobile__swiper {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 280px;
    overflow: hidden;
    padding-bottom: 36px !important;
    touch-action: pan-y;
  }
  .ai-tg__mobile .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
  }

  /* Card */
  .ai-tg__mobile__card {
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 16px;
    padding: 32px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #fff;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
  }
  .ai-tg__mobile__card > :not(.ai-tg__panel__icon) {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
  }
  .ai-tg__mobile__card .ai-tg__panel__icon img {
    width: 90px;
    height: 90px;
  }

  /* Pagination dots */
  .ai-tg__mobile__pagination {
    position: relative;
    z-index: 3;
    bottom: 40px !important;
    margin-top: 16px;
  }
  .ai-tg__mobile__pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.4);
    opacity: 1;
  }
  .ai-tg__mobile__pagination .swiper-pagination-bullet-active {
    background: #4288f9;
  }
}

/* ==========================================================================
   WHY-KINDUS
   ========================================================================== */
/* ── Hero (clone: regulatory-compliance / ai-innovation) ───────────────────── */
.home_hero--wk {
  margin: 0;
  min-height: 80vh;
  min-height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  box-sizing: border-box;
}
.home_hero--wk .container { width: 100%; }
.home_hero--wk .home_hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 850px;
  margin: 0 auto;
}
.wk-hero__label {
  color: #4288f9;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.wk-hero__title {
  font-size: clamp(2.904rem, 7.26vw, 5.445rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.125;
  margin: 0;
}
.wk-hero__title strong {
  font-weight: 700;
  color: #4288f9;
}
.wk-hero__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.65;
  max-width: 680px;
  margin: 0;
}
.wk-hero__text + .wk-hero__text {
  margin-top: -11px;
}
.scroll-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4288f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── Shared section ───────────────────────────────────────────────────────── */
.wk-section {
  padding: 0px 0 60px;
  box-sizing: border-box;
}
.wk-section__heading {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.15;
}
.wk-section__heading--light { color: #fff; }
.wk-section__heading--blue { color: #4288f9; }

/* ── What We Stand For (clone: case-study__card) ─────────────────────────── */
.wk-stand {
  padding-top: 40px;
}
.wk-stand__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.wk-stand__grid > .kindus-frosted-card .wk-stand__card__title {
  font-size: clamp(1.6875rem, 3.125vw, 2.1875rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.3;
}
.wk-stand__grid > .kindus-frosted-card .wk-stand__card__text {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ── Our Team ─────────────────────────────────────────────────────────────── */
.wk-team {
  padding-top: 0px;
}
.wk-team__lead {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  color: #fff;
  font-size: 17px;
  line-height: 1.65;
}
.wk-team__capabilities {
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 36px 40px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  transform: translateZ(0);
}
.wk-team__capabilities__label {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 24px;
}
.wk-team__capabilities__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
}
.wk-team__capabilities__list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.wk-team__capabilities__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #3b5bb1, #4289fb);
  transform: translateY(-50%);
}

/* ── Our Journey ──────────────────────────────────────────────────────────── */

.wk-journey__timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 0;
}
.wk-journey__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(66, 136, 249, 0.2) 0%, #4288f9 20%, #4288f9 80%, rgba(66, 136, 249, 0.2) 100%);
  border-radius: 2px;
}
.wk-journey__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.wk-journey__item:last-child {
  margin-bottom: 0;
}
.wk-journey__item--left .wk-journey__card {
  grid-column: 1;
  justify-self: end;
  margin-right: 24px;
}
.wk-journey__item--right .wk-journey__card {
  grid-column: 2;
  justify-self: start;
  margin-left: 24px;
}
.wk-journey__card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  border-radius: 14px;
  padding: 28px 26px;
  box-sizing: border-box;
}
.wk-journey__item--left .wk-journey__card::after,
.wk-journey__item--right .wk-journey__card::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  transform: translateY(-50%);
}
.wk-journey__item--left .wk-journey__card::after {
  right: -20px;
  border-left-color: rgba(255, 255, 255, 0.08);
}
.wk-journey__item--right .wk-journey__card::after {
  left: -20px;
  border-right-color: rgba(255, 255, 255, 0.08);
}
.wk-journey__date {
  font-size: clamp(5rem, 10vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 10px;
  overflow: hidden;
}
.wk-journey__date .stat-char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.wk-journey__date .stat-char {
  display: inline-block;
  color: #4288f9;
  opacity: 0;
  transform: translateY(-105%);
}
.wk-journey__card__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
}
.wk-journey__card__text {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

@media (max-width: 900px) {
  .wk-stand__grid {
    grid-template-columns: 1fr;
  }
  .wk-team__capabilities__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .wk-section {
    padding: 30px 0 30px;
  }
  .home_hero--wk {
    min-height: auto;
    padding: 120px 0 80px;
  }
  .home_hero--wk .home_hero__inner {
    padding: 0 25px;
  }
  .wk-journey__line {
    left: 20px;
    transform: none;
  }
  .wk-journey__item {
    grid-template-columns: 1fr;
    padding-left: 48px;
    gap: 0;
  }
  .wk-journey__item--left .wk-journey__card,
  .wk-journey__item--right .wk-journey__card {
    grid-column: 1;
    justify-self: stretch;
    margin: 0;
    max-width: none;
  }
  .wk-journey__item--left .wk-journey__card::after,
  .wk-journey__item--right .wk-journey__card::after {
    left: -20px;
    right: auto;
    border-left-color: transparent;
    border-right-color: rgba(255, 255, 255, 0.08);
  }
  .wk-team__capabilities {
    padding: 28px 24px;
  }

  .wk-team__capabilities__label {
    font-size: 30px;
    line-height: 36px;
  }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Contact page ─────────────────────────────────────────────────────────── */
.contact-page {
  padding: 140px 0 100px;
  box-sizing: border-box;
}
.contact-page__heading {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 64px;
  line-height: 1.1;
}
.contact-page__layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.35fr);
  gap: 56px;
  align-items: start;
}

/* ── Office info ──────────────────────────────────────────────────────────── */
.contact-office {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.contact-office:first-child {
  padding-top: 0;
  border-top: none;
}
.contact-office__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}
.contact-office__address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 14px;
}
.contact-office__phone,
.contact-office__email {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.5;
}
.contact-office__phone a,
.contact-office__email a {
  color: #fff;
  text-decoration: none;
}
.contact-office__phone a:hover,
.contact-office__email a:hover {
  text-decoration: underline;
}
.contact-page__social {
  display: flex;
  gap: 18px;
  margin-top: 36px;
}
.contact-page__social a {
  display: block;
  line-height: 0;
  transition: transform 400ms ease;
  transform-origin: center center;
}
.contact-page__social a:hover {
  transform: scale(1.05);
}

/* ── Form panel ───────────────────────────────────────────────────────────── */
.contact-page__form-panel {
  background: rgba(28, 24, 52, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 36px 36px 32px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.28);
}
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-field--full {
  grid-column: 1 / -1;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #1a1830;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #1a1830;
  font-size: 14px;
  font-weight: 400;
}
.contact-field select {
  color: #1a1830;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231a1830' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-field select:valid {
  color: #1a1830;
}
.contact-field textarea {
  resize: vertical;
  min-height: 160px;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: 2px solid #4288f9;
  outline-offset: 1px;
}
.contact-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff385c 0%, #e91e7a 100%);
  border: none;
  border-radius: 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  padding: 13px 28px;
  cursor: pointer;
  transition: transform 400ms ease;
  transform-origin: center center;
}
.contact-form__submit:hover {
  transform: scale(1.05);
}
.contact-form__submit svg {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .contact-page__layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .contact-page__social {
    justify-content: center;
  }
  .contact-page {
    padding: 120px 0 80px;
  }
}

@media (max-width: 600px) {
  .contact-page {
    padding: 110px 0 64px;
  }
  .contact-page__heading {
    margin-bottom: 40px;
  }
  .contact-page__form-panel {
    padding: 24px 20px 20px;
    border-radius: 18px;
  }
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
  .contact-form__actions {
    justify-content: stretch;
  }
  .contact-form__submit {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   PODCASTS
   ========================================================================== */
/* ── Hero ─────────────────────────────────────────────────────────────────── */
.home_hero--podcasts {
  margin: 0;
  min-height: 50vh;
  min-height: 50dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  box-sizing: border-box;
}
.home_hero--podcasts .container { width: 100%; }
.home_hero--podcasts .container--regular { width: 88%; }
.home_hero--podcasts .home_hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.home_hero--podcasts .home_hero__heading {
  color: #fff;
  font-weight: 700;
}
.scroll-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4288f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Podcast grid ─────────────────────────────────────────────────────────── */
.podcasts-section {
  padding: 20px 0 100px;
}
.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.podcast-card {
  display: flex;
  flex-direction: column;
  background: rgba(38, 32, 72, 0.92);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}
.podcast-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
  overflow: hidden;
  background: #1e1838;
}
.podcast-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.podcast-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 26px;
  gap: 12px;
}
.podcast-card__meta {
  font-size: 14px;
  font-weight: 600;
  color: #4288f9;
  margin: 0;
}
.podcast-card__title {
  font-size: clamp(1.05rem, 1.8vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0;
}
.podcast-card__desc {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 8px;
  flex: 1;
}
.podcast-card {
  position: relative;
}
.podcast-card__actions {
  margin-top: auto;
}
.podcast-card__btn-yt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 24px;
  font-size: 13px;
  line-height: 1.2;
}
.podcast-card__btn-yt::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

/* ── Partners band ────────────────────────────────────────────────────────── */
.partners {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .podcasts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .home_hero--podcasts {
    min-height: 50dvh;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .home_hero--podcasts .home_hero__inner {
    margin-top: 0;
  }
  .podcasts-section {
    padding: 0px 0 72px;
  }
  .podcasts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   CASE-STUDIES
   ========================================================================== */
/* Subpage hero — vertically centred in viewport (matches ai-innovation.php) */
.home_hero__icon svg {
	width: 160px;
}
@media (min-width: 769px) {
  .page-technology-services .home_hero--technology .home_hero__icon svg {
    width: 200px;
    height: auto;
  }
  .page-process-services .home_hero--process .home_hero__icon svg {
    width: 180px;
    height: auto;
  }
}
.home_hero--subpage {
  margin: 0;
  min-height: 50vh;
  min-height: 50dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  box-sizing: border-box;
}
.home_hero--subpage .container {
  width: 100%;
}
.home_hero--subpage .home_hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.home_hero--subpage .home_hero__heading {
  color:white;
}

.partners {
	margin-bottom: 0px;
}
.grad--btm-case-studies {
  &::before {background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 35%, rgba(255, 255, 255, 0.8) 65%, rgba(17, 15, 26, 0.6) 100%);}  
}

/* Scroll indicator pill */
.scroll-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4288f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Case studies wrapper */
.case-studies-section {
  padding: 0px 0 0px;
}

/* Individual case study */
.case-study {
  text-align: center;
  padding: 60px 0;
}
.case-study__icon {
  display: flex;
  justify-content: center;
  margin: 0 auto 16px;
}
.case-study__icon svg {
  display: block;
  height: 120px;
    width: auto;
}
.case-study__label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
  margin-bottom: 12px;
  font-weight: 700;
}
.case-study__title {
  font-size: clamp(1.6rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 36px;
  line-height: 1.2;
}

/* Cards row */
.case-study__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.case-study__card__num {
  font-size: 24px;
  font-weight: 700;
  color: #4288f9;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  margin-right: 5px;
  display: inline-block;
}
.case-study__card__heading {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  display: inline-block;
}
.case-study__card__text {
  color: #fff;
}

/* Vertical divider between case studies */
.case-study__divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, rgba(66,136,249,0.8) 0%, rgba(66,136,249,0.2) 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* Mobile */
@media (max-width: 768px) {
  .home_hero--subpage {
    min-height: 50dvh;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  .case-study {
    padding: 40px 0;
  }
  .case-study__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .case-studies-section {
    padding: 0px 0 60px;
  }
}

/* ==========================================================================
   FULL WIDTH PAGE — page-full.php template
   ========================================================================== */
.full_width {
  padding: 140px 0 clamp(40px, 6vw, 80px);
  box-sizing: border-box;
}

.full_width__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 clamp(40px, 6vw, 60px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.full_width__content {
  max-width: 900px;
  margin: 0 auto;
}

.full_width__content h1,
.full_width__content h2,
.full_width__content h3,
.full_width__content h4,
.full_width__content h5,
.full_width__content h6 {
  font-size: 40px;
  line-height: 46px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 20px;
  margin: 0;
}

.full_width__content p {
  padding-bottom: 25px;
  margin: 0;
}

.full_width__content p,
.full_width__content li {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}

.full_width__content ul {
  padding-bottom: 20px;
  margin: 0;
  list-style: none;
}

.full_width__content li {
  position: relative;
  padding-left: 15px;
  padding-bottom: 5px;
}

.full_width__content li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: #4288f9;
}

.full_width__content a {
  color: #4288f9;
  text-decoration: underline;
}

.full_width__content a:hover {
  opacity: 0.85;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.error404-page {
  padding: 140px 0 clamp(60px, 8vw, 100px);
  box-sizing: border-box;
}

.error404-page__title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 clamp(32px, 5vw, 48px);
  line-height: 1.1;
}

.error404-page__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.error404-page__inner p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.error404-page__inner a {
  color: #4288f9;
  text-decoration: underline;
}

.error404-page__inner a:hover {
  opacity: 0.85;
}

/* ==========================================================================
   POLICY PAGES — privacy-policy, cookies-policy
   ========================================================================== */
.policy-page {
  padding: 140px 0 clamp(60px, 8vw, 100px);
  box-sizing: border-box;
}
.policy-page__title {
  font-size: clamp(2.64rem, 6vw, 4.8rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 clamp(40px, 6vw, 80px);
  line-height: 1.1;
}
.policy-page__inner {
  max-width: 780px;
  margin: 0 auto;
}
.policy-page__updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 40px;
}
.policy-page__body h2 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #4288f9;
  margin: 40px 0 12px;
}
.policy-page__body p,
.policy-page__body li {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px;
}
.policy-page__body ul {
  margin: 0 0 16px;
  padding-left: 20px;
  list-style: none;
}
.policy-page__body li {
  margin: 0 0 8px;
  position: relative;
  padding-left: 20px;
}
.policy-page__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 1px;
  background: #fff;
  opacity: 0.5;
}
.policy-page__body a {
  color: #4288f9;
  text-decoration: underline;
}
.policy-page__body a:hover {
  opacity: 0.8;
}
