/* Skill Dev — ScienceSoft clone design system */
:root {
  --blue: #005eb8;
  --blue-dark: #004484;
  --blue-bright: #007ef5;
  --blue-light: #c2e1ff;
  --blue-pale: #e5f3ff;
  --blue-sidebar: #f5fbff;
  --blue-bg: #f0f8ff;
  --accent: #ffd546;
  --accent-hover: #ffc813;
  --text: #3b3c3d;
  --text-dark: #222;
  --gray-600: #666d73;
  --border: #e8e8e8;
  --white: #fff;
  --font: 'Open Sans', Arial, sans-serif;
  --font-header: 'Sumana', Georgia, serif;
  --container: 1372px;
  --header-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, object { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .12s; }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; }

.heading1 {
  font-family: var(--font-header);
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.13;
  color: #222;
  letter-spacing: -0.01em;
}
.heading2 {
  font-family: var(--font-header);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.28;
  color: var(--blue-dark);
  margin: 100px 0 1em;
  position: relative;
  z-index: 1;
}
.heading2::before {
  content: '';
  position: absolute;
  left: -24px; top: -32px;
  width: 90px; height: 90px;
  background: var(--blue-pale);
  z-index: -1;
}
.lead-center { text-align: center; max-width: 820px; margin: 0 auto 48px; font-size: 18px; line-height: 1.6; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes tabProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes floatUI {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulseDot {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

@keyframes tabProgressBlock {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% + 2px)); }
}

.step-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
}
.step-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 600; font-size: 16px;
  border-radius: 1px; cursor: pointer; transition: all .2s; border: none; text-decoration: none;
  white-space: nowrap;
}
.btn--primary { background: var(--blue); color: var(--white); padding: 11px 32px; }
.btn--primary:hover { background: var(--blue-dark); color: var(--white); }
.btn--accent {
  background: var(--accent);
  color: #222;
  padding: 11px 28px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.btn--accent:hover { background: var(--accent-hover); color: #222; }
.btn--sm { padding: 8px 20px; font-size: 14px; }
.btn--outline { background: transparent; color: var(--blue); border: 1px solid var(--blue); padding: 10px 31px; }
.btn--outline:hover { background: rgba(230,242,255,.4); color: var(--blue-dark); }
.btn--text { color: var(--blue); background: none; padding: 8px 0; font-weight: 600; }
.btn--text::after { content: ' →'; }

/* Home page spacing like scnsoft */
.home-page .heading2 { margin-top: 100px; }
.home-page .editable-wrapper-bg { padding: 100px 0; }
.home-page .editable-wrapper-bg .heading2 { margin-top: 0; }
.home-page .key-facts .heading2 { margin-top: 100px; }

/* Header global line */
.header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  transition: background .3s, box-shadow .3s;
}
.header-global-line {
  height: 40px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  transition: background .3s, border-color .3s;
}
.header-global-line__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}
.header-global-line__sites { display: flex; gap: 16px; flex: 1; }
.header-global-line__right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  flex-shrink: 0;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.lang-switch__btn {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: var(--gray-600);
  font: inherit;
  font-weight: 600;
  line-height: 1;
}
.lang-switch__btn:hover { color: var(--text); }
.lang-switch__btn.is-active { color: var(--text); }
.lang-switch__sep {
  color: var(--gray-400, #9aa0a6);
  user-select: none;
}
.hgl-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-600);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hgl-link:hover { color: var(--blue); }
.hgl-icon { width: 14px; height: 14px; border-radius: 2px; background: var(--blue-pale); }
.header-global-line__links { display: flex; gap: 24px; }
.header-global-line__links a { color: var(--text); font-size: 12px; }
.header-global-line__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 12px;
  white-space: nowrap;
}
.header.header-transparent .header-global-line {
  background: transparent;
  backdrop-filter: none;
}
.header.header-transparent:not(.scrolled) .header-global-line {
  background: transparent;
  border-color: rgba(0,0,0,.06);
  backdrop-filter: none;
}
.header.header-transparent:not(.scrolled) .header__inner {
  background: transparent;
  border-bottom-color: rgba(0,0,0,.06);
}
.header.header-transparent {
  background: transparent;
  box-shadow: none;
}
.header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}
.header.scrolled .header-global-line { background: var(--white); }
.header.scrolled.header-transparent { background: var(--white); }
.header__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.header.scrolled .header__inner { border-bottom-color: var(--border); }
.logo { display: flex; align-items: center; margin-right: 24px; flex-shrink: 0; }
.logo__img { height: 36px; width: auto; }

.nav { display: flex; align-items: stretch; flex: 1; height: 64px; }
.nav__item { position: static; display: flex; align-items: center; }
.nav__item.has-mega { position: static; }
.nav__link {
  display: flex; align-items: center; height: 100%;
  padding: 0 10px; font-size: 14px; font-weight: 600;
  color: #222;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.nav__link:hover, .nav__item.has-mega:hover > .nav__link {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.mega {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  min-width: 680px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  padding: 24px;
}
.mega--wide {
  left: 0; right: 0;
  min-width: unset;
  padding: 28px 0 32px;
  border-left: none;
  border-right: none;
}
.mega__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) minmax(220px, 280px);
  gap: 32px;
}
.mega__col h4 {
  font-size: 11px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 12px;
}
.mega__col li { margin-bottom: 8px; }
.mega__col a { font-size: 14px; color: var(--text); }
.mega__col a:hover { color: var(--blue); }
.mega__promo {
  background: var(--blue-bg);
  border: 1px solid var(--blue-light);
  padding: 20px;
}
.mega__promo h4 { font-size: 16px; color: var(--blue-dark); text-transform: none; margin-bottom: 8px; }
.mega__promo p { font-size: 14px; line-height: 1.5; margin-bottom: 16px; color: var(--text); }
.nav__item.has-mega:hover .mega { display: block; }

.nav__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }
.header-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.header-search:hover svg circle,
.header-search:hover svg path { stroke: var(--blue); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); margin: 5px 0; transition: background .3s; }

/* ===== HERO SLIDER (wp-header-ts) ===== */
.page-main { padding-top: 0; }

.wp-header-ts {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.wp-hts-bg-wrapper,
.wp-hts-bg-overlay {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}
.wp-hts-bg-wrapper {
  z-index: 1;
  top: 0;
  height: 100%;
  min-height: 100vh;
}
.wp-hts-bg-overlay {
  z-index: 2;
  top: 0;
  height: 100%;
  min-height: 100vh;
  mix-blend-mode: overlay;
  transition: background-color .5s linear;
}
.wp-hts-bg-wrapper svg.wp-hts-bg-img,
.wp-hts-bg-wrapper iframe.wp-hts-bg-img {
  position: absolute;
  top: -8vh;
  left: 0;
  width: 100%;
  height: 115vh;
  min-height: 115vh;
  border: 0;
  display: block;
}

.wp-hts-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 140px 0 120px;
  width: 100%;
}

.wp-hts-left {
  flex: 0 0 34%;
  max-width: 34%;
  min-width: 320px;
}
.wp-hts-left .heading1 { margin-bottom: 32px; padding-bottom: 0; }
.wp-hts-subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 32px;
  color: #333;
}

.wp-hts-tabs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0;
  padding-top: 8px;
  max-width: 100%;
}

.wp-hts-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 24px;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 1px;
  border: none;
  cursor: pointer;
  transition: background .25s linear;
  overflow: visible;
  margin-bottom: 8px;
  white-space: nowrap;
}
@media (max-width: 1599px) {
  .wp-hts-tab { font-size: 16px; height: 46px; }
}
.wp-hts-tab:hover { background: var(--blue-dark); }
.wp-hts-tab.active { background: var(--blue-dark); }

.wp-hts-tab-progress-wrap {
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 4px;
  overflow: hidden;
  opacity: 0;
  background: rgba(255,255,255,.35);
  transition: opacity .5s linear;
}
.wp-hts-tab.active .wp-hts-tab-progress-wrap { opacity: 1; }
.wp-hts-tab-progress-block {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transform: translateX(0);
}
.wp-hts-tab-progress {
  display: block;
  height: 100%;
  width: 100%;
  background: #fff;
}
.wp-hts-tab.active .wp-hts-tab-progress-block {
  animation: tabProgressBlock var(--tab-time, 5s) linear forwards;
}

.wp-hts-video-block {
  flex: 1;
  position: relative;
  width: 892px;
  height: 502px;
  max-width: 892px;
  min-width: 0;
  flex-shrink: 0;
}

.wp-hts-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.wp-hts-slides-inner {
  position: absolute;
  inset: 2px;
  border-radius: 11px;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.08);
}

.wp-hts-slide-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transform-origin: center center;
  transition: opacity .5s linear, visibility 0s .5s, transform .5s linear;
}
.wp-hts-slide-img svg,
.wp-hts-slide-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.wp-hts-slide-img.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity .1s linear, visibility 0s 0s, transform .5s linear;
}
.wp-hts-slide-img.deactive {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.92) translateX(36px);
}

.wp-hts-slide-prev-btn,
.wp-hts-slide-next-btn {
  position: absolute;
  top: calc(50% - 24px);
  left: -24px;
  width: 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.48);
  border: none;
  cursor: pointer;
  z-index: 4;
  transition: background .3s ease;
  padding: 0;
}
.wp-hts-slide-next-btn { left: auto; right: -24px; }
.wp-hts-slide-prev-btn:hover,
.wp-hts-slide-next-btn:hover { background: var(--white); }

/* Key facts */
.key-facts { padding: 0 0 48px; }
.b-overview__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.b-overview__number {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.b-overview__label { font-size: 18px; line-height: 1.4; color: var(--text); }

/* Logo slider (owl-style) */
.swl-wrapper { padding: 24px 0 64px; }
.swl { overflow: hidden; cursor: grab; user-select: none; }
.swl.is-dragging { cursor: grabbing; }
.swl-slider {
  display: flex;
  gap: 48px;
  will-change: transform;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.swl.is-dragging .swl-slider { transition: none; }
.swl-slider-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 94px;
  filter: grayscale(1);
  opacity: .7;
  transition: filter .3s, opacity .3s;
}
.swl-slider-item:hover { filter: grayscale(0); opacity: 1; }
.swl-slider-item img { height: 47px; width: auto; max-width: 190px; object-fit: contain; }

/* Service list (sli-services) */
.sli-services-wrapper { position: relative; }
.sli-wrapper { margin-top: 48px; position: relative; }
.sli-bottom-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 120px;
  background: linear-gradient(to top, var(--blue-bg), transparent);
  pointer-events: none;
  z-index: 0;
}
.sli-services {
  display: flex;
  border: 1px solid var(--blue-light);
  background: var(--white);
  position: relative;
  min-height: 420px;
  z-index: 1;
}
.sli-sidebar {
  flex: 0 1 42%;
  max-width: 450px;
  background: var(--blue-sidebar);
  background-image: url('../assets/ui/sli-sidebar-bg.svg');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  margin: -1px 0 -1px -1px;
  padding: 16px 0;
}
.sli-details { margin: 0; }
.sli-summary {
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  padding: 14px 20px;
  transition: color .15s, background .15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sli-summary:hover { color: var(--blue-bright); }
.sli-details.active .sli-summary {
  background: var(--blue-bright);
  color: var(--white);
  margin-right: -16px;
  padding: 18px 20px;
  transition-delay: .1s;
  position: relative;
  z-index: 2;
}
.sli-content {
  flex: 1 1 58%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.sli-article { display: none; width: 90%; animation: fadeUp .4s ease; }
.sli-article.active { display: block; }
.sli-article h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; color: var(--text-dark); }
.sli-article p { margin-bottom: 24px; line-height: 1.65; }
.sli-article ul { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 32px; margin-bottom: 24px; }
.sli-article li {
  padding: 4px 0 4px 18px;
  position: relative;
  font-size: 15px;
}
.sli-article li::before {
  content: '';
  position: absolute;
  left: 0; top: calc(.75em - 4px);
  width: 8px; height: 8px;
  background: var(--blue);
}
.sli-article .btn--text { float: right; }

/* Case studies — scnsoft csd style */
.csd-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 24px 0 32px;
}
.csd-count { font-size: 20px; font-weight: 600; color: var(--text-dark); flex-shrink: 0; }
.csd-filters { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.csd-filters__label { font-size: 16px; font-weight: 600; margin-right: 8px; color: var(--text-dark); }
.csd-tab {
  padding: 9px 16px;
  font-size: 16px;
  font-weight: 400;
  background: var(--blue-pale);
  border: none;
  cursor: pointer;
  border-radius: 1px;
  color: var(--text);
  transition: background .2s, color .2s, font-weight .2s;
}
.csd-tab:hover { background: #c2e1ff; }
.csd-tab.active { background: #a8d4ff; color: var(--blue-dark); font-weight: 600; }

.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.story-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .3s, box-shadow .3s, opacity .35s;
}
.story-card.is-filtered-out { display: none; }
.story-card.story-card--hidden { display: none; }
.story-card.story-card--visible { display: block; animation: fadeUp .4s ease; }
.story-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.story-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform .4s ease;
}
.story-card:hover .story-card__img { transform: scale(1.04); }
.story-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,68,132,.8) 0%, transparent 55%);
}
.story-card__cat {
  position: absolute;
  bottom: 14px; left: 16px;
  z-index: 1;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.story-card__body { padding: 22px; }
.story-card__title { font-size: 17px; font-weight: 600; line-height: 1.4; margin-bottom: 12px; color: var(--text-dark); }

.stories-load-more { text-align: center; margin-top: 32px; }

.cta-horizontal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 56px;
  padding: 32px 40px;
  background: var(--white);
  border: 1px solid var(--blue-light);
  position: relative;
  overflow: hidden;
}
.cta-horizontal::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 4px; width: 0;
  background: var(--blue);
  transition: width .4s ease;
}
.cta-horizontal:hover::before { width: 100%; }
.cta-horizontal__text h3 { font-size: 24px; font-weight: 600; color: var(--blue-dark); margin-bottom: 8px; }
.cta-horizontal__text p { font-size: 16px; line-height: 1.6; max-width: 640px; }

/* Grid sections */
.pmo-grid, .industries-grid, .solutions-grid, .videos-grid, .insights-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.pmo-grid { grid-template-columns: repeat(4, 1fr); }
.industries-grid { grid-template-columns: repeat(3, 1fr); }
.solutions-grid { grid-template-columns: repeat(4, 1fr); }
.videos-grid, .insights-grid { grid-template-columns: repeat(3, 1fr); }

.pmo-card {
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--white);
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.pmo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 100%;
  height: 4px;
  background: var(--blue);
  transition: right .35s ease;
}
.pmo-card:hover::before { right: 0; }
.pmo-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.06); transform: translateY(-2px); }
.pmo-card h3 { font-size: 17px; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.industry-block {
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--white);
  transition: box-shadow .25s, transform .25s;
}
.industry-block h3 { font-size: 20px; font-weight: 600; color: var(--blue-dark); border-bottom: 2px solid var(--blue-light); padding-bottom: 10px; margin-bottom: 10px; }
.industry-block li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.solution-item {
  padding: 14px;
  border: 1px solid var(--border);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all .15s;
}
.solution-item:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-bg); }

/* Video cards */
.video-card { border: 1px solid var(--border); overflow: hidden; transition: box-shadow .3s; }
.video-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.video-card__thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  position: relative;
}
.video-card__thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,68,132,.35);
  opacity: .5;
  transition: opacity .3s;
}
.video-card:hover .video-card__thumb::before { opacity: .75; }

.insight-card { border: 1px solid var(--border); overflow: hidden; transition: box-shadow .3s, transform .3s; }
.insight-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.insight-card__img { height: 180px; background-size: cover; background-position: center; }
.insight-card__body { padding: 20px; }
.insight-card__tag { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; margin-bottom: 8px; }
.insight-card__title { font-size: 17px; font-weight: 600; line-height: 1.4; margin-bottom: 8px; color: var(--text-dark); }
.insight-card__meta { font-size: 13px; color: var(--gray-600); }
.video-card__title { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.video-card__desc { font-size: 14px; color: var(--gray-600); line-height: 1.5; }

.section-pad { padding-bottom: 80px; }
.section--bg { background: var(--blue-bg); padding: 64px 0 80px; }
.section--bg .heading2::before { background: rgba(255,255,255,.5); }

/* Testimonials photo carousel */
.testimonials-carousel {
  position: relative;
  margin-top: 40px;
  padding: 0 48px;
}
.testimonials-viewport { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.testimonial-photo-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.testimonial-photo-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.08); transform: translateY(-3px); }
.testimonial-photo-card__img {
  height: 160px;
  background-size: cover;
  background-position: center top;
}
.testimonial-photo-card__body { padding: 20px; }
.testimonial-photo-card blockquote {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--text);
}
.testimonial-photo-card__name { font-size: 14px; color: var(--gray-600); }
.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: var(--gray-600);
  z-index: 2;
  transition: border-color .2s, color .2s;
}
.testimonials-arrow:hover { border-color: var(--blue); color: var(--blue); }
.testimonials-arrow--prev { left: 0; }
.testimonials-arrow--next { right: 0; }

/* Awards */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.award-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.award-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.award-item__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 40px;
  padding: 0 12px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  border-radius: 1px;
}
.award-item p { font-size: 14px; line-height: 1.5; color: var(--text); }

/* Tech tabs */
.tech-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 0; }
.tech-tab {
  padding: 10px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.tech-tab.active, .tech-tab:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.tech-panel { display: none; border: 1px solid var(--border); padding: 36px; margin-top: -1px; background: var(--white); }
.tech-panel.active { display: block; animation: fadeUp .35s ease; }

/* Video cards — play button */
.video-card__play {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: transform .3s;
}
.video-card:hover .video-card__play { transform: scale(1.08); }
.video-card__play::after {
  content: '';
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border: 10px solid transparent;
  border-left: 16px solid var(--blue);
}
.video-card__body { padding: 20px; }

/* FAQ */
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 36px 20px 0;
  font-size: 17px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: var(--text-dark);
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--blue);
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }

/* Contact */
.contact-section { background: var(--blue-dark); color: var(--white); padding: 72px 0; }
.contact-section .heading2 { color: var(--white); margin-top: 0; }
.contact-section .heading2::before { background: rgba(255,255,255,.1); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form { background: var(--white); padding: 32px; color: var(--text); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  font-family: var(--font);
  border-radius: 1px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Footer */
.footer { background: #1a1a1a; color: #aaa; padding: 56px 0 32px; font-size: 14px; }
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #333;
}
.footer__logo { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #444;
  color: #aaa;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: border-color .2s, color .2s;
}
.footer__socials a:hover { border-color: var(--blue); color: var(--white); }
.footer__contacts p { margin-bottom: 6px; }
.footer__contacts strong { color: var(--white); }
.footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--white); margin-bottom: 14px; font-size: 14px; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: #aaa; }
.footer ul a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid #333; padding-top: 20px; display: flex; justify-content: space-between; }

/* Cookie + chat */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: 16px 24px;
  z-index: 9999;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner__inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 900; }
.chat-teaser {
  display: none;
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  border-radius: 4px;
  padding: 16px 36px 16px 16px;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}
.chat-teaser.visible { display: flex; animation: fadeUp .35s ease; }
.chat-teaser__close {
  position: absolute;
  top: 8px; right: 10px;
  background: none; border: none;
  font-size: 20px; line-height: 1;
  color: var(--gray-600);
  cursor: pointer;
  padding: 4px;
}
.chat-teaser__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.chat-teaser__avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-teaser__body strong { display: block; font-size: 14px; margin-bottom: 4px; color: #222; }
.chat-teaser__body p { font-size: 13px; line-height: 1.45; color: var(--text); margin: 0; }
.chat-widget__btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,94,184,.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
}
.chat-widget__btn:hover { background: var(--blue-dark); transform: scale(1.05); }
.chat-panel {
  display: none;
  position: absolute;
  bottom: 68px; right: 0;
  width: 320px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  border-radius: 2px;
  overflow: hidden;
}
.chat-panel.open { display: block; animation: fadeUp .3s ease; }
.chat-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--blue);
  color: var(--white);
}
.chat-panel__header button {
  background: none; border: none; color: var(--white);
  font-size: 22px; cursor: pointer; line-height: 1;
}
.chat-panel__body { padding: 16px; font-size: 14px; line-height: 1.5; }
.chat-panel__footer { padding: 0 16px 16px; }

/* Responsive */
@media (max-width: 1279px) {
  .wp-hts-content { flex-direction: column; gap: 32px; padding: 108px 0 80px; }
  .wp-hts-left { flex: none; max-width: 90%; text-align: center; }
  .wp-hts-tabs { align-items: center; }
  .wp-hts-video-block {
    height: 392px;
    max-width: unset;
    min-width: unset;
    width: 696px;
    margin: 0 auto;
  }
  .b-overview__list { grid-template-columns: repeat(2, 1fr); }
  .sli-services { flex-direction: column; }
  .sli-sidebar { max-width: 100%; display: flex; flex-wrap: wrap; gap: 8px; padding: 12px; }
  .sli-details.active .sli-summary { margin-right: 0; }
  .sli-summary { font-size: 14px; padding: 8px 12px; white-space: normal; border: 1px solid var(--blue-light); }
  .pmo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-global-line__links,
  .header-global-line__sites { display: none; }
  .header-global-line__inner { justify-content: flex-end; }
  .header-global-line__right { margin-left: 0; }
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: fixed;
    top: 104px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    height: auto;
    overflow-y: auto;
    padding: 16px;
  }
  .nav.open { display: flex; }
  .nav__item { width: 100%; flex-direction: column; align-items: stretch; }
  .mega--wide { position: static; box-shadow: none; border: none; padding: 0 0 12px 12px; }
  .mega__grid { grid-template-columns: 1fr; gap: 16px; }
  .mega { display: block; position: static; min-width: unset; padding: 0 0 12px 12px; border: none; box-shadow: none; }
  .nav__actions { display: none; }
  .wp-header-ts { min-height: auto; }
  .wp-hts-video-block { width: 100%; height: 280px; }
  .wp-hts-tabs { align-items: center; width: 100%; }
  .wp-hts-tab { font-size: 15px; height: 40px; padding: 0 16px; }
  .b-overview__list,
  .stories-grid,
  .videos-grid,
  .insights-grid,
  .solutions-grid,
  .industries-grid,
  .pmo-grid,
  .contact-grid,
  .footer__grid { grid-template-columns: 1fr; }
  .sli-article ul { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .heading2::before { left: -16px; width: 64px; height: 72px; }
  .cta-horizontal { flex-direction: column; text-align: center; padding: 24px; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-photo-card { flex: 0 0 85%; min-width: 85%; }
  .testimonials-carousel { padding: 0 36px; }
  .footer__top { flex-direction: column; }
  .home-page .heading2 { margin-top: 60px; }
  .home-page .editable-wrapper-bg { padding: 60px 0; }
}
