@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap");

@font-face {
  font-family: "Manrope";
  src: url("../assets/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
}

:root {
  --bg: #07111f;
  --bg-secondary: #0c1828;
  --text: #f7fafc;
  --text-muted: #aeb9ca;
  --primary: #22c7bd;
  --primary-dark: #1e6f9f;
  --finance-gold: #d6b16f;
  --card-glass: rgba(255, 255, 255, 0.055);
  --border-glass: rgba(255, 255, 255, 0.12);
  --gradient-primary: linear-gradient(135deg, #22c7bd, #b8fff8);
  --gradient-dark: linear-gradient(180deg, #07111f, #050914);
  --gradient-finance: linear-gradient(135deg, #d6b16f, #fff1b8);
  --text-on-light: #0f172a;
  --text-muted-on-light: #425066;

  --ink: #f7fafc;
  --muted: #aeb9ca;
  --line: rgba(255, 255, 255, 0.12);
  --paper: #0c1828;
  --wash: #07111f;
  --navy: #07111f;
  --cyan: #22c7bd;
  --mint: #22c7bd;
  --blue: #1e6f9f;
  --violet: #d6b16f;
  --deep-blue: #1e6f9f;
  --radius-lg: 25px;
  --radius-md: 18px;
  --container: 1320px;
  --gradient: linear-gradient(135deg, #22c7bd 0%, #1e6f9f 100%);
  --glass: rgba(255, 255, 255, 0.12);
  --glass-line: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 80px rgba(2, 8, 20, 0.48);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--wash);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.top-strip {
  position: fixed;
  top: 0;
  left: 40px;
  z-index: 50;
  width: calc(100% - 80px);
  height: 38px;
  background: linear-gradient(90deg, #45cec0 0%, #45b7e9 100%);
  color: #fff;
  border-radius: 100px;
  transition: transform 0.28s var(--ease-in-out-cubic), opacity 0.2s linear;
  will-change: transform, opacity;
}

.top-strip.is-collapsed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
}

.top-strip__inner {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 5px 20px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-strip__motto {
  width: min(304px, 48vw);
  height: 13px;
  flex: 0 1 304px;
  overflow: hidden;
  background: url("../assets/top-motto.svg") left center / contain no-repeat;
  color: transparent;
  white-space: nowrap;
}

.top-strip__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.search-button {
  width: 18px;
  height: 18px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.search-button::before {
  content: "";
  position: absolute;
  inset: 1px 4px 4px 1px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.search-button::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 0;
  width: 8px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
  transform-origin: center;
}

.top-contact {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 11px 32px 10px;
  color: #44b6e9;
  background: #fff;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.top-contact:hover {
  color: #fff;
  background: transparent;
  box-shadow: inset 0 0 0 1px #fff;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 40px;
  z-index: 45;
  width: calc(100% - 80px);
  height: 86px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 25px;
  animation: header-drop 0.8s var(--ease-out-quint) both;
  transition:
    top 0.32s var(--ease-in-out-cubic),
    left 0.32s var(--ease-in-out-cubic),
    width 0.32s var(--ease-in-out-cubic),
    height 0.32s var(--ease-out-cubic),
    border-radius 0.32s var(--ease-out-cubic),
    box-shadow 0.32s ease,
    background 0.32s ease,
    border-color 0.32s ease,
    opacity 0.2s linear,
    transform 0.32s var(--ease-in-out-cubic);
  will-change: transform, opacity;
}

.site-header.is-scrolled {
  top: 0;
  left: 40px;
  width: calc(100% - 80px);
  height: 76px;
  border-radius: 0 0 25px 25px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 45px rgba(0, 0, 29, 0.1);
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-150%);
}

.logo-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.logo-link__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.logo-link__name {
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo-link__sub {
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  opacity: 0.7;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav > a,
.nav-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
  min-height: 40px;
  padding: 0 20px;
  overflow: hidden;
  color: #040722;
  line-height: 40px;
  border-radius: 9999px;
  background-color: transparent;
  transition: background 200ms linear, color 200ms linear, border 200ms linear;
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.nav-item:hover > a,
.nav-item.is-open > a,
.nav-item > a:focus-visible {
  color: #fff;
  background-color: #040722;
  transform: none;
}

.nav-label {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
}

.nav-label--clone {
  position: absolute;
  top: 0;
  left: 0;
  padding: inherit;
  opacity: 0;
  pointer-events: none;
  transform: translateY(150%);
}

.main-nav > a:hover .nav-label--active,
.main-nav > a:focus-visible .nav-label--active,
.nav-item:hover > a .nav-label--active,
.nav-item.is-open > a .nav-label--active,
.nav-item > a:focus-visible .nav-label--active {
  opacity: 0;
  transform: translateY(-150%);
}

.main-nav > a:hover .nav-label--clone,
.main-nav > a:focus-visible .nav-label--clone,
.nav-item:hover > a .nav-label--clone,
.nav-item.is-open > a .nav-label--clone,
.nav-item > a:focus-visible .nav-label--clone {
  opacity: 1;
  transform: translateY(0);
}

.nav-item {
  position: relative;
}

.nav-item > a::after {
  content: "";
  position: relative;
  width: 6px;
  height: 6px;
  margin-left: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s ease;
}

.nav-item:hover > a::after,
.nav-item.is-open > a::after {
  transform: rotate(45deg) translateY(-2px);
}

.language-link {
  width: 44px;
  padding-inline: 0;
  justify-content: center;
}

.language-link .nav-label--clone {
  width: 100%;
  padding-inline: 0;
  text-align: center;
}

.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  padding: 25px 0;
  display: grid;
  gap: 0;
  color: whitesmoke;
  background-color: #040722;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 29, 0.22);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 10px);
  transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
}

.mega-panel--wide {
  width: 850px;
  padding: 25px 31px 25px 37px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-panel a {
  position: relative;
  padding: 10px 31px 10px 37px;
  border-radius: 0;
  color: whitesmoke;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  text-transform: none;
  transition: padding 0.3s ease, color 0.3s ease;
}

.mega-panel--wide a {
  padding: 10px 20px 10px 0;
}

.mega-panel a::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 36px;
  width: 7px;
  height: 7px;
  background: currentColor;
  opacity: 0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: opacity 0.4s ease;
}

.mega-panel--wide a::before {
  left: 0;
}

.mega-panel a:hover {
  color: #45d0bd;
  background: transparent;
  padding-left: 53px;
}

.mega-panel--wide a:hover {
  padding-left: 16px;
}

.mega-panel a:hover::before {
  opacity: 1;
}

.nav-item:hover .mega-panel,
.nav-item.is-open .mega-panel,
.nav-item:focus-within .mega-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}

.mobile-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: #f0f2f4;
  cursor: pointer;
}

.mobile-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 48px 0 0 auto;
  z-index: 44;
  width: min(410px, 88vw);
  padding: 112px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.88);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: -24px 0 70px rgba(0, 0, 29, 0.12);
  backdrop-filter: blur(26px) saturate(170%);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  transform: translateX(100%);
  transition: transform 0.42s var(--ease-out-quint);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu a {
  padding: 15px 4px;
  border-bottom: 1px solid rgba(0, 0, 29, 0.1);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.3s ease, transform 0.36s var(--ease-out-quint), color 0.2s ease;
  transition-delay: calc(var(--menu-delay, 0) * 35ms);
}

.mobile-menu.is-open a {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile accordion submenus */
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(0, 0, 29, 0.1);
}

.mobile-nav-row {
  display: flex;
  align-items: stretch;
}

.mobile-nav-link {
  flex: 1;
  padding: 15px 4px;
  border-bottom: none !important;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.3s ease, transform 0.36s var(--ease-out-quint), color 0.2s ease;
  transition-delay: calc(var(--menu-delay, 0) * 35ms);
}

.mobile-menu.is-open .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: inherit;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.3s ease, transform 0.36s var(--ease-out-quint), color 0.2s ease;
  transition-delay: calc(var(--menu-delay, 0) * 35ms);
}

.mobile-menu.is-open .mobile-nav-toggle {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease-out-cubic);
}

.mobile-nav-item.is-open .mobile-nav-arrow {
  transform: rotate(90deg);
}

.mobile-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease-out-cubic);
}

.mobile-nav-item.is-open .mobile-nav-sub {
  max-height: 520px;
}

.mobile-nav-sub a {
  display: block;
  padding: 11px 14px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  transition-delay: 0s !important;
  border-bottom: 1px solid rgba(0, 0, 29, 0.06) !important;
}

.mobile-nav-sub a:last-child {
  border-bottom: none !important;
}

.hero {
  position: relative;
  height: min(810px, 88vh);
  min-height: 700px;
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 34, 0.12) 0%, rgba(4, 7, 34, 0.04) 52%, rgba(4, 7, 34, 0.2) 100%),
    radial-gradient(circle at 20% 24%, rgba(36, 198, 213, 0.16), transparent 27%);
  pointer-events: none;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: hero-drift 18s var(--ease-in-out-cubic) infinite alternate;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero__kicker {
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-content-rise 0.8s var(--ease-out-quint) 0.3s both;
}

.hero__title {
  max-width: 780px;
  margin: 0 0 16px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(20px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(22px);
  animation: hero-content-rise 0.9s var(--ease-out-quint) 0.5s both;
}

.hero__lead {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-content-rise 0.9s var(--ease-out-quint) 0.7s both;
}

.hero__cta {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-content-rise 0.8s var(--ease-out-quint) 0.88s both;
}

.section {
  position: relative;
  padding: 106px 0;
  background: var(--paper);
}

.section--news,
.section--insights {
  background: #fff;
}

.section--services {
  background: #f7f8fa;
  overflow: hidden;
}

.section__inner,
.cases-shell,
.footer-cta,
.footer-links,
.footer-bottom {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 44px;
}

.section-heading--split,
.section-heading--with-nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--cyan);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.eyebrow--light {
  color: #fff;
}

.section-heading h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3.0vw, 30px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading h1,
.site-footer h2 {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading h1 del {
  color: rgba(0, 0, 29, 0.26);
  text-decoration-thickness: 2px;
}

.section--cases .section-heading h1,
.section--cases .section-heading h1 del {
  color: #fff;
  background: none;
}

.gradient-button,
.solid-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 56px;
  padding: 0 25px;
  color: var(--ink);
  border-radius: 999px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient) border-box;
  border: 2px solid transparent;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  transition: color 0.28s ease, transform 0.28s var(--ease-out-cubic), box-shadow 0.28s ease, background 0.28s ease;
}

.gradient-button::before,
.solid-button::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.62) 46%, transparent 72%);
  opacity: 0;
  transform: translateX(-135%) skewX(-18deg);
  transition: opacity 0.28s ease, transform 0.7s var(--ease-out-quint);
  pointer-events: none;
}

.gradient-button::after,
.solid-button::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  margin-left: 12px;
  background: currentColor;
  clip-path: polygon(0 40%, 58% 40%, 58% 0, 100% 50%, 58% 100%, 58% 60%, 0 60%);
  transition: transform 0.28s var(--ease-out-cubic);
}

.gradient-button:hover {
  color: #fff;
  background: var(--gradient) border-box;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(36, 198, 213, 0.2);
}

.gradient-button:hover::before,
.solid-button:hover::before {
  opacity: 1;
  transform: translateX(135%) skewX(-18deg);
}

.gradient-button:hover::after,
.solid-button:hover::after {
  transform: translateX(4px);
}

.gradient-button:active,
.solid-button:active {
  transform: translateY(0) scale(0.98);
}

.gradient-button--light {
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.09)) padding-box,
    linear-gradient(120deg, #fff, rgba(255, 255, 255, 0.2), #24c6d5) border-box;
}

.gradient-button--light:hover {
  color: var(--ink);
  background: #fff;
}

.card-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
}

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-card,
.insight-card,
.case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 55px rgba(0, 0, 29, 0.07);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: transform 0.42s var(--ease-out-quint), box-shadow 0.42s ease, border-color 0.42s ease;
}

.news-card::before,
.insight-card::before,
.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(36, 198, 213, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 38%, rgba(36, 198, 213, 0.08));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.news-card:hover,
.insight-card:hover,
.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(36, 198, 213, 0.35);
  box-shadow: 0 26px 70px rgba(0, 0, 29, 0.13);
}

.news-card:hover::before,
.insight-card:hover::before,
.case-card:hover::before {
  opacity: 1;
}

.news-card img,
.insight-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.news-card:hover img,
.insight-card:hover img,
.case-card:hover img,
.service-card:hover img {
  transform: scale(1.08);
}

.news-card__body,
.insight-card__body {
  position: relative;
  z-index: 2;
  min-height: 190px;
  padding: 20px;
}

.date-pill,
.insight-card time {
  display: inline-flex;
  margin: -46px 0 16px -15px;
  padding: 11px 24px 5px;
  color: #9b9b9b;
  background: #fff;
  border-radius: 25px 25px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.news-card h2,
.insight-card h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.38;
}

.news-card h2 a,
.insight-card h2 a,
.case-card h2 a {
  display: inline;
  background: no-repeat 0 100%;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 2px;
  transition: color 0.25s ease, background-size 0.35s ease;
}

.news-card h2 a:hover,
.insight-card h2 a:hover,
.case-card h2 a:hover {
  color: var(--mint);
  background-size: 100% 2px;
}

.category,
.insight-card span {
  color: #9b9b9b;
  font-size: 14px;
  font-weight: 600;
}

.decor-mark {
  position: absolute;
  z-index: 0;
  width: 520px;
  opacity: 0.08;
  pointer-events: none;
  animation: mark-float 16s var(--ease-in-out-cubic) infinite alternate;
}

.decor-mark--services {
  top: 58px;
  right: -90px;
}

.decor-mark--insights {
  top: 26px;
  right: 5vw;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button {
  width: 56px;
  height: 56px;
  border: 2px solid transparent;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient) border-box;
  cursor: pointer;
  position: relative;
  transition: transform 0.24s var(--ease-out-cubic), box-shadow 0.24s ease, background 0.24s ease;
}

.slider-controls button::before {
  content: "";
  position: absolute;
  inset: 20px 18px;
  background: #000d1d;
  clip-path: polygon(0 50%, 42% 0, 42% 38%, 100% 38%, 100% 62%, 42% 62%, 42% 100%);
}

.slider-controls button:last-child::before {
  transform: rotate(180deg);
}

.slider-controls button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(36, 198, 213, 0.18);
}

.service-track {
  position: relative;
  z-index: 2;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  height: 430px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  box-shadow: 0 20px 60px rgba(0, 0, 29, 0.12);
  scroll-snap-align: start;
  transition: transform 0.44s var(--ease-out-quint), box-shadow 0.44s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 29, 0) 18%, rgba(0, 0, 29, 0.74) 100%);
  transition: background 0.38s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 29, 0.2);
}

.service-card:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 29, 0.02) 2%, rgba(0, 0, 29, 0.8) 100%);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-card span {
  position: absolute;
  left: 22px;
  bottom: 86px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.32s var(--ease-out-cubic), color 0.32s ease;
}

.service-card h2 {
  position: absolute;
  left: 22px;
  right: 72px;
  bottom: 24px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 22px;
  line-height: 1.18;
  transition: transform 0.32s var(--ease-out-cubic);
}

.service-card:hover span,
.service-card:hover h2 {
  transform: translateY(-4px);
}

.arrow-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.28s var(--ease-out-cubic), background 0.28s ease, border-color 0.28s ease;
}

.arrow-link::after {
  content: "";
  position: absolute;
  inset: 17px 15px;
  background: #fff;
  clip-path: polygon(0 40%, 58% 40%, 58% 0, 100% 50%, 58% 100%, 58% 60%, 0 60%);
  transition: transform 0.28s var(--ease-out-cubic);
}

.service-card:hover .arrow-link {
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(255, 255, 255, 0.58);
  transform: translateX(3px);
}

.service-card:hover .arrow-link::after {
  transform: translateX(3px);
}

.section--cases {
  padding: 90px 0;
  color: #fff;
  background:
    radial-gradient(circle at 16% 16%, rgba(36, 198, 213, 0.44), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(183, 135, 191, 0.52), transparent 32%),
    linear-gradient(135deg, #001247 0%, #043e76 46%, #0a102f 100%);
}

.cases-shell {
  position: relative;
  padding: 58px 54px 66px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 29, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.cases-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.18), transparent 32%, rgba(36, 198, 213, 0.12) 72%, transparent);
  opacity: 0.55;
  pointer-events: none;
  animation: glass-sweep 10s var(--ease-in-out-cubic) infinite alternate;
}

.cases-mark {
  position: absolute;
  right: -100px;
  bottom: -140px;
  width: 780px;
  opacity: 0.24;
  filter: brightness(0) invert(1);
  animation: mark-float 18s var(--ease-in-out-cubic) infinite alternate-reverse;
}

.case-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.case-card {
  padding: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.case-card .tag {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.case-card h2 {
  min-height: 94px;
  margin: 14px 0 26px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(21px, 2.2vw, 26px);
  line-height: 1.12;
}

.case-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.insight-card__body {
  min-height: 212px;
}

.insight-card time {
  font-style: normal;
}

.three-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 480px;
  background: var(--ink);
}

.three-panels article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  padding: 46px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 29, 0.1), rgba(0, 0, 29, 0.86)),
    radial-gradient(circle at 22% 22%, rgba(36, 198, 213, 0.48), transparent 34%),
    linear-gradient(135deg, #043e76, #070a2a 72%);
  transition: transform 0.42s var(--ease-out-quint), filter 0.42s ease;
}

.three-panels article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(0, 0, 29, 0.12), rgba(0, 0, 29, 0.86)),
    radial-gradient(circle at 76% 12%, rgba(183, 135, 191, 0.52), transparent 34%),
    linear-gradient(135deg, #10163c, #050719 72%);
}

.three-panels article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(0, 0, 29, 0.12), rgba(0, 0, 29, 0.88)),
    radial-gradient(circle at 70% 32%, rgba(69, 208, 189, 0.46), transparent 34%),
    linear-gradient(135deg, #052c5c, #040722 74%);
}

.three-panels article::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
  transition: inset 0.38s var(--ease-out-cubic), background 0.38s ease, border-color 0.38s ease;
}

.three-panels article:hover {
  filter: saturate(1.08);
}

.three-panels article:hover::before {
  inset: 18px;
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(255, 255, 255, 0.28);
}

.three-panels h2,
.three-panels p,
.three-panels .solid-button {
  position: relative;
  z-index: 2;
}

.three-panels h2 {
  max-width: 420px;
  margin: 0 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 1.8vw, 38px);
  line-height: 1.05;
}

.three-panels p {
  max-width: 420px;
  min-height: 78px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.62;
}

.solid-button {
  align-self: flex-start;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.solid-button:hover {
  color: var(--ink);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 29, 0.18);
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 9% 18%, rgba(36, 198, 213, 0.34), transparent 26%),
    radial-gradient(circle at 92% 8%, rgba(183, 135, 191, 0.4), transparent 30%),
    linear-gradient(180deg, #040722 0%, #010214 100%);
}

.footer-cta {
  position: relative;
  min-height: 390px;
  padding: 72px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 58px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-mark {
  position: absolute;
  left: -120px;
  top: -80px;
  width: 680px;
  opacity: 0.12;
  filter: brightness(0) invert(1);
  animation: mark-float 18s var(--ease-in-out-cubic) infinite alternate;
}

.footer-cta > div {
  position: relative;
  z-index: 2;
}

.footer-cta h2 {
  max-width: 820px;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
}

.footer-cta p {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.footer-contact {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 18px;
}

.footer-contact__row {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.2s;
}

.footer-contact__row:hover {
  color: var(--primary);
}

.footer-contact__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  padding: 9px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: var(--primary);
  transition: background 0.2s;
}

.footer-contact__row:hover .footer-contact__icon {
  background: rgba(34,199,189,.15);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  /*background: #fff;*/
  border-radius: 8px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.24s var(--ease-out-cubic), background 0.24s ease, color 0.24s ease;
}

.socials a:hover {
  color: #fff;
  background: var(--cyan);
  transform: translateY(-3px);
}

.footer-links {
  padding: 58px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.5fr;
  gap: 52px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  border-radius: 12px;
}

.footer-brand__name {
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-brand span {
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.footer-links nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--cyan);
}

.expertise-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.expertise-links h3 {
  grid-column: 1 / -1;
}

.footer-bottom {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
}

.footer-bottom nav {
  display: flex;
  gap: 28px;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 35;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 18px 40px rgba(0, 0, 29, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.24s ease, transform 0.24s var(--ease-out-cubic), box-shadow 0.24s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: scroll-top-pulse 2.6s ease-in-out infinite;
}

.scroll-top::before {
  content: "";
  position: absolute;
  inset: 19px 17px;
  background: #fff;
  clip-path: polygon(50% 0, 100% 42%, 62% 42%, 62% 100%, 38% 100%, 38% 42%, 0 42%);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 29, 0.3);
}

.main-nav > a.is-current,
.nav-item.is-current > a {
  color: #fff;
  background-color: #040722;
}

.subpage {
  background: #fff;
}

.subpage main {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.subpage main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(50% - 660px), rgba(4, 7, 34, 0.055) calc(50% - 659px), transparent calc(50% - 658px)),
    linear-gradient(90deg, transparent calc(50% - 220px), rgba(4, 7, 34, 0.045) calc(50% - 219px), transparent calc(50% - 218px)),
    linear-gradient(90deg, transparent calc(50% + 220px), rgba(4, 7, 34, 0.045) calc(50% + 221px), transparent calc(50% + 222px)),
    linear-gradient(90deg, transparent calc(50% + 660px), rgba(4, 7, 34, 0.055) calc(50% + 661px), transparent calc(50% + 662px));
  opacity: 0.72;
}

.subpage main > section {
  position: relative;
  z-index: 1;
}

.page-hero {
  position: relative;
  min-height: 500px;
  padding: 190px 0 78px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 24%, rgba(36, 198, 213, 0.28), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(183, 135, 191, 0.24), transparent 34%),
    linear-gradient(135deg, #040722 0%, #071541 54%, #010214 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 7, 34, 0.9) 0%, rgba(4, 7, 34, 0.68) 48%, rgba(4, 7, 34, 0.28) 100%),
    var(--page-hero-image, url("../assets/waves-min.png"));
  background-size: cover;
  background-position: center;
  opacity: 0.88;
  transform-origin: center;
  animation: hero-drift 24s var(--ease-in-out-cubic) infinite alternate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 7, 34, 0.1), rgba(4, 7, 34, 0.5)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 25%),
    radial-gradient(circle at 74% 58%, rgba(36, 198, 213, 0.14), transparent 28%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  align-items: center;
  gap: 56px;
}

.page-hero__content {
  max-width: 870px;
}

.page-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 730px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.page-hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-breadcrumbs {
  position: absolute;
  right: max(24px, calc((100% - var(--container)) / 2));
  bottom: 0;
  z-index: 4;
  max-width: min(520px, calc(100% - 48px));
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px 16px 38px;
  overflow: hidden;
  color: #333;
  border-radius: 25px 25px 0 0;
  background: #fff;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  line-height: 27px;
  white-space: nowrap;
  animation: breadcrumb-rise 0.7s var(--ease-out-quint) 0.18s both;
}

.page-breadcrumbs::before,
.page-breadcrumbs::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 40px;
  background: transparent;
}

.page-breadcrumbs::before {
  right: 100%;
  border-bottom-right-radius: 20px;
  box-shadow: 0 20px 0 0 #fff;
}

.page-breadcrumbs::after {
  left: 100%;
  border-bottom-left-radius: 20px;
  box-shadow: 0 20px 0 0 #fff;
}

.page-breadcrumbs a,
.page-breadcrumbs span:last-child {
  min-width: 0;
}

.page-breadcrumbs a {
  position: relative;
  flex: 0 0 auto;
}

.page-breadcrumbs a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.26s var(--ease-out-cubic);
}

.page-breadcrumbs a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.page-breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-breadcrumbs__delimiter {
  color: #c5c5c5;
}

.page-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 318px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 29, 0.26);
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 36%, rgba(36, 198, 213, 0.18)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-35%);
  animation: glass-sweep 9s var(--ease-in-out-cubic) infinite alternate;
  pointer-events: none;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 318px;
  object-fit: cover;
  transform: scale(1.03);
  animation: media-drift 18s var(--ease-in-out-cubic) infinite alternate;
}

.hero-stat-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stat {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 28px;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

.content-section {
  position: relative;
  padding: 94px 0;
  background: #fff !important;
}

.content-section--wash {
  background: var(--wash);
}

.content-section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(36, 198, 213, 0.28), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(183, 135, 191, 0.18), transparent 28%),
    linear-gradient(135deg, #040722, #061245 68%, #010214);
}

.content-inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.content-title {
  max-width: 900px;
  margin: 0 0 26px;
  color: var(--text-on-light);
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.2;
  letter-spacing: 0;
}

.content-section--dark .content-title,
.content-section--dark .section-copy {
  color: #fff;
}

.section-copy {
  max-width: 790px;
  margin: 0;
  color: #5c5d66;
  font-size: 18px;
  line-height: 1.72;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
}

.split-feature__panel {
  padding: 38px;
  border-radius: 25px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 29, 0.06);
}

.split-feature__panel p {
  margin: 0;
  color: #4f505a;
  font-size: 17px;
  line-height: 1.72;
}

.split-feature__panel p + p {
  margin-top: 18px;
}

.split-feature__image {
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 18px 45px rgba(0, 0, 29, 0.08);
}

.split-feature__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out-quint);
}

.split-feature:hover .split-feature__image img {
  transform: scale(1.055) translateX(2%);
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.page-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-card,
.value-card,
.metric-card,
.sector-card,
.listing-card,
.contact-card,
.map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 29, 0.055);
  transition:
    transform 0.42s var(--ease-out-quint),
    box-shadow 0.42s ease,
    border-color 0.42s ease;
}

.page-card::after,
.value-card::after,
.metric-card::after,
.sector-card::after,
.listing-card::after,
.contact-card::after,
.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(183, 135, 191, 0.1), transparent 42%, rgba(36, 198, 213, 0.12));
  transition: opacity 0.42s ease;
}

.page-card:hover,
.value-card:hover,
.metric-card:hover,
.sector-card:hover,
.listing-card:hover,
.contact-card:hover,
.map-card:hover {
  transform: translateY(-6px);
  border-color: rgba(36, 198, 213, 0.34);
  box-shadow: 0 24px 62px rgba(0, 0, 29, 0.12);
}

.page-card:hover::after,
.value-card:hover::after,
.metric-card:hover::after,
.sector-card:hover::after,
.listing-card:hover::after,
.contact-card:hover::after,
.map-card:hover::after {
  opacity: 1;
}

.page-card {
  padding: 0;
}

.page-card img,
.sector-card img,
.listing-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out-quint);
}

.page-card:hover img,
.sector-card:hover img,
.listing-card:hover img {
  transform: scale(1.055) translateX(2%);
}

.page-card h2,
.value-card h2,
.sector-card h2,
.listing-card h2,
.contact-card h2 {
  margin: 0 0 14px;
  color: var(--text-on-light);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: 0;
}

.page-card h2::after,
.value-card h2::after,
.sector-card h2::after,
.listing-card h2::after,
.contact-card h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 14px;
  background: var(--gradient);
  transition: width 0.32s var(--ease-out-cubic);
}

.page-card:hover h2::after,
.value-card:hover h2::after,
.sector-card:hover h2::after,
.listing-card:hover h2::after,
.contact-card:hover h2::after {
  width: 58px;
}

.page-card p,
.value-card p,
.sector-card p,
.listing-card p,
.contact-card p {
  margin: 0;
  color: #5f6068;
  line-height: 1.65;
}

.page-card__body,
.sector-card__body,
.listing-card__body {
  position: relative;
  z-index: 1;
  padding: 30px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.metric-card {
  padding: 34px;
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1;
}

.metric-card span {
  color: #5f6068;
  line-height: 1.55;
}

.value-card {
  padding: 34px;
}

.value-card::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 12px 30px rgba(36, 198, 213, 0.2);
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.logo-cloud span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: #5f6068;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  font-weight: 700;
  text-align: center;
  transition:
    transform 0.28s var(--ease-out-cubic),
    color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.logo-cloud span:hover {
  color: var(--cyan);
  border-color: rgba(36, 198, 213, 0.35);
  box-shadow: 0 14px 36px rgba(0, 0, 29, 0.08);
  transform: translateY(-4px);
}

.map-card {
  padding: 18px;
}

.map-card img {
  width: 100%;
  border-radius: 21px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 38px;
}

.filter-row span {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px 0 20px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.28s ease, border-color 0.28s ease, transform 0.28s var(--ease-out-cubic);
}

.filter-row span:first-child {
  color: #fff;
  background: var(--gradient);
  border-color: var(--ink);
}

.filter-row span:hover {
  color: var(--cyan);
  border-color: rgba(36, 198, 213, 0.4);
  transform: translateY(-2px);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.listing-card {
  background: #fff;
}

.listing-card__meta {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
}

.page-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.page-list li {
  position: relative;
  padding: 17px 22px 17px 54px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 29, 0.045);
  transition: transform 0.28s var(--ease-out-cubic), border-color 0.28s ease, color 0.28s ease;
}

.page-list li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 23px;
  width: 9px;
  height: 9px;
  background: var(--cyan);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.page-list li:hover {
  color: var(--ink);
  border-color: rgba(36, 198, 213, 0.38);
  transform: translateX(6px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.site-contact-section {
  border-top: 1px solid rgba(4, 7, 34, 0.06);
}

.contact-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card .footer-contact__row {
  color: var(--text-on-light);
}

.contact-card .footer-contact__row:hover {
  color: var(--primary);
}

.contact-card .footer-contact__icon {
  background: rgba(34,199,189,.10);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.contact-socials a {
  position: relative;
  color: var(--cyan);
  font-weight: 700;
  transition: color 0.24s ease;
}

.contact-socials a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: linear-gradient(262deg, #44b6e9 0%, #45d0bd 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s var(--ease-out-cubic);
}

.contact-socials a:hover {
  color: var(--cyan);
}

.contact-socials a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-form {
  padding: 42px;
  border-radius: 25px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 29, 0.07);
}

.contact-form .content-title {
  margin-bottom: 32px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.contact-form ::placeholder {
  color: #8c8c93;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #b9bac1;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: 0;
  transition: border-color 0.24s ease;
}

.contact-form textarea {
  min-height: 150px;
  padding-block: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(36, 198, 213, 0.72);
}

.form-consent {
  margin: 6px 0 0;
  color: #666872;
  font-size: 13px;
  line-height: 1.7;
}

.form-consent a {
  color: var(--cyan);
  font-weight: 700;
}

.contact-form .gradient-button {
  margin-top: 18px;
}

.about-page {
  background: #fff;
}

.about-page .content-title,
.about-story-card h2 {
  color: transparent;
  background: linear-gradient(262deg, #44b6e9 0%, #45d0bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.subpage main.about-page::before {
  display: none;
}

.about-story-hero {
  padding: 162px 0 92px;
  background: var(--wash);
}

.about-story-grid {
  width: min(1340px, calc(100% - 80px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-visual-card,
.about-story-card {
  margin: 15px;
  border-radius: 25px;
}

.about-visual-card {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 12%;
  background:
    linear-gradient(180deg, rgba(4, 7, 34, 0.06), rgba(4, 7, 34, 0.32)),
    url("../assets/about-meaningful.webp") center / cover no-repeat;
  box-shadow: 0 24px 70px rgba(0, 0, 29, 0.12);
}

.about-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 18%, rgba(255, 255, 255, 0.22) 46%, transparent 72%),
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.2), transparent 28%);
  opacity: 0.65;
  transform: translateX(-16%);
  animation: glass-sweep 9s var(--ease-in-out-cubic) infinite alternate;
  pointer-events: none;
}

.about-visual-card h1 {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 0;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(27px, 3.1vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
  text-align: center;
}

.about-story-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 82px 60px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(0, 0, 29, 0.065);
}

.about-story-card h2 {
  max-width: 660px;
  margin: 0 0 30px;
  color: transparent;
  background: linear-gradient(262deg, #44b6e9 0%, #45d0bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.8vw, 50px);
  line-height: 1.12;
  letter-spacing: 0;
}

.about-story-card h2 span,
.about-partner-title span {
  color: transparent;
  background: linear-gradient(262deg, #44b6e9 0%, #45d0bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.about-story-card p {
  margin: 0;
  color: #4f505a;
  font-size: 16px;
  line-height: 1.82;
}

.about-story-card p + p {
  margin-top: 18px;
}

.about-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.vision-card {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 45px rgba(0, 0, 29, 0.06);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.vision-card::after {
  content: "";
  position: absolute;
  inset: auto 30px 26px auto;
  width: 124px;
  height: 46px;
  background: url("../assets/we-watermark.svg") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.vision-card--gradient {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #0f5f78 0%, #1e6f9f 52%, #0c4e71 100%);
  box-shadow: 0 24px 65px rgba(3, 24, 41, 0.35);
}

.vision-card--gradient::after {
  filter: brightness(0) invert(1);
  opacity: 0.18;
}

.vision-card .section-kicker {
  color: var(--cyan);
}

.vision-card--gradient .section-kicker,
.vision-card--gradient h2,
.vision-card--gradient p {
  color: #fff;
}

.vision-card h2 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.22;
  letter-spacing: 0;
}

.vision-card p {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 24px 0 0;
  color: #5f6068;
  font-size: 17px;
  line-height: 1.7;
}

.vision-card.vision-card--gradient .section-kicker,
.vision-card.vision-card--gradient h2,
.vision-card.vision-card--gradient p {
  color: #fff;
}

.about-page .vision-card.vision-card--gradient.reveal-item.is-visible {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-page .vision-card.vision-card--gradient .section-kicker {
  color: #fff1b8;
}

.about-number-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.about-number-card {
  position: relative;
  min-height: 242px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(0, 0, 29, 0.055);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition:
    transform 0.36s var(--ease-out-quint),
    box-shadow 0.36s ease,
    border-color 0.36s ease;
}

.about-number-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -76px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 198, 213, 0.16), transparent 68%);
  pointer-events: none;
}

.about-number-card:hover {
  transform: translateY(-6px);
  border-color: rgba(36, 198, 213, 0.36);
  box-shadow: 0 28px 64px rgba(0, 0, 29, 0.11);
}

.about-number-card strong,
.presence-stat strong,
.management-count strong {
  display: block;
  color: transparent;
  background: linear-gradient(262deg, #44b6e9 0%, #45d0bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "Sora", sans-serif;
  line-height: 1;
}

.about-number-card strong {
  margin-bottom: 20px;
  font-size: clamp(40px, 5.2vw, 72px);
}

.about-number-card h3 {
  max-width: 470px;
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.2;
}

.about-number-card p {
  max-width: 520px;
  margin: 0;
  color: #5f6068;
  line-height: 1.66;
}

.about-values .page-grid {
  margin-top: 38px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-values .value-card {
  min-height: 330px;
  padding: 34px 30px;
}

.about-values .value-card::before {
  width: min(180px, 72%);
  height: 64px;
  border-radius: 0;
  background: url("../assets/we-watermark.svg") left center / contain no-repeat;
  box-shadow: none;
  opacity: 0.16;
}

.about-clients .section-copy {
  margin-bottom: 58px;
}

.about-partner-title {
  margin-top: 26px;
}

.client-logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.client-logo {
  min-height: 94px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 29, 0.04);
  transition:
    transform 0.28s var(--ease-out-quint),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.client-logo img {
  max-width: 150px;
  max-height: 46px;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(100%);
  transition:
    transform 0.28s var(--ease-out-quint),
    opacity 0.28s ease,
    filter 0.28s ease;
}

.client-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 198, 213, 0.32);
  box-shadow: 0 20px 46px rgba(0, 0, 29, 0.09);
}

.client-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

.management-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}

.management-count {
  width: max-content;
  min-width: 222px;
  margin-top: 30px;
  padding: 24px 28px;
  border-radius: 25px;
  background: var(--wash);
  box-shadow: inset 0 0 0 1px rgba(4, 7, 34, 0.04);
}

.management-count span,
.presence-stat span {
  display: block;
  color: #5f6068;
  font-weight: 700;
}

.management-count strong {
  margin-top: 8px;
  font-size: clamp(40px, 4.6vw, 62px);
}

.management-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 25px;
  background:
    linear-gradient(90deg, rgba(4, 7, 34, 0.12), rgba(4, 7, 34, 0.02)),
    url("../assets/about-meaningful.webp") center / cover no-repeat;
  box-shadow: 0 22px 62px rgba(0, 0, 29, 0.12);
}

.management-card::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 20px;
}

.management-card::after {
  content: "";
  position: absolute;
  right: 38px;
  bottom: 38px;
  width: 210px;
  height: 80px;
  background: url("../assets/we-watermark.svg") center / contain no-repeat;
  opacity: 0.24;
  filter: brightness(0) invert(1);
}

.presence-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.presence-stat {
  min-width: 230px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
  text-align: right;
  box-shadow: 0 16px 40px rgba(0, 0, 29, 0.055);
}

.presence-stat strong {
  margin-top: 8px;
  font-size: clamp(36px, 4.2vw, 58px);
}

.about-map-card {
  margin-top: 10px;
  background: #fff;
}

.about-map-card img {
  max-height: 560px;
  object-fit: contain;
  background: #fff;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.office-card {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 24px 12px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 29, 0.045);
  transition:
    transform 0.28s var(--ease-out-quint),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.office-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 198, 213, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 29, 0.09);
}

.office-card img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(0, 0, 29, 0.12);
}

.office-card h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.contact-form .consent-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  color: #4f505a;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-form .consent-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan);
}

@keyframes media-drift {
  from {
    transform: scale(1.02) translate3d(-0.5%, -0.4%, 0);
  }
  to {
    transform: scale(1.07) translate3d(0.6%, 0.5%, 0);
  }
}

@keyframes breadcrumb-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-item {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(10px);
  transition:
    opacity 0.8s ease var(--reveal-delay, 0ms),
    transform 0.8s var(--ease-out-quint) var(--reveal-delay, 0ms),
    filter 0.8s ease var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes motto-sheen {
  0%,
  28% {
    background-position: 120% 0;
  }
  64%,
  100% {
    background-position: -120% 0;
  }
}

@keyframes hero-content-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.02) translate3d(-0.8%, -0.5%, 0);
  }
  to {
    transform: scale(1.075) translate3d(0.8%, 0.6%, 0);
  }
}

@keyframes mark-float {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(22px, -20px, 0) rotate(4deg);
  }
}

@keyframes glass-sweep {
  from {
    transform: translateX(-12%);
    opacity: 0.32;
  }
  to {
    transform: translateX(12%);
    opacity: 0.62;
  }
}

@keyframes scroll-top-pulse {
  0%,
  100% {
    box-shadow: 0 18px 40px rgba(0, 0, 29, 0.22);
  }
  50% {
    box-shadow: 0 18px 40px rgba(0, 0, 29, 0.22), 0 0 0 10px rgba(36, 198, 213, 0.12);
  }
}

@media (max-width: 1364px) {
  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .site-header {
    height: 82px;
  }

  .site-header.is-scrolled {
    height: 74px;
  }
}

@media (max-width: 1180px) {
  .page-hero__inner,
  .split-feature,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-grid,
  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .three-panels {
    grid-template-columns: 1fr;
  }

  .three-panels article,
  .three-panels {
    min-height: auto;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .about-story-grid,
  .about-vision-grid,
  .management-shell {
    grid-template-columns: 1fr;
  }

  .about-number-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-number-card:first-child {
    grid-column: 1 / -1;
  }

  .about-values .page-grid,
  .client-logo-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .office-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .top-strip {
    left: 16px;
    width: calc(100% - 32px);
  }

  .top-strip__inner,
  .page-hero__inner,
  .content-inner,
  .section__inner,
  .cases-shell,
  .footer-cta,
  .footer-links,
  .footer-bottom {
    width: min(100% - 32px, var(--container));
  }

  .top-strip__motto {
    width: min(304px, 62vw);
  }

  .top-contact {
    display: none;
  }

  .top-strip__inner {
    width: 100%;
  }

  .site-header {
    top: 48px;
    left: 16px;
    width: calc(100% - 32px);
    padding-inline: 16px;
  }

  .site-header.is-scrolled {
    top: 0;
    left: 16px;
    width: calc(100% - 32px);
  }

  .site-header.is-scrolled + .mobile-menu {
    inset: 0 0 0 auto;
    padding-top: 96px;
  }

  .logo-link img {
    height: 40px;
    width: auto;
  }

  .hero {
    min-height: 560px;
    height: 76vh;
  }

  .page-hero {
    min-height: auto;
    padding: 176px 0 72px;
  }

  .page-hero__media {
    min-height: 320px;
  }

  .page-hero__media img {
    min-height: 320px;
  }

  .hero-stat-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 74px 0;
  }

  .content-section {
    padding: 74px 0;
  }

  .section-heading--split,
  .section-heading--with-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h1 {
    font-size: clamp(26px, 7.2vw, 40px);
  }

  .card-grid--four,
  .case-grid,
  .page-grid,
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .service-track {
    grid-auto-columns: min(82vw, 340px);
  }

  .cases-shell {
    padding: 42px 20px;
    border-radius: 26px;
  }

  .case-card {
    padding: 20px;
  }

  .case-card h2 {
    min-height: 0;
  }

  .case-card img {
    height: 260px;
  }

  .three-panels article {
    min-height: 390px;
    padding: 34px;
  }

  .three-panels article::before {
    inset: 16px;
  }

  .three-panels p {
    min-height: 0;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    padding: 56px 0;
  }

  .footer-links,
  .expertise-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .about-story-hero {
    padding: 150px 0 72px;
  }

  .about-story-grid {
    width: calc(100% - 32px);
  }

  .about-visual-card {
    min-height: 460px;
  }

  .about-story-card {
    padding: 44px 30px;
  }

  .vision-card {
    min-height: auto;
    padding: 34px;
  }

  .presence-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .presence-stat {
    width: 100%;
    text-align: left;
  }

  .about-values .page-grid,
  .client-logo-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .top-strip {
    left: 12px;
    width: calc(100% - 24px);
  }

  .top-strip__inner {
    gap: 12px;
    padding-inline: 14px;
  }

  .page-hero__inner,
  .content-inner,
  .section__inner,
  .cases-shell,
  .footer-cta,
  .footer-links,
  .footer-bottom {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: 500px;
  }

  .site-header.is-scrolled {
    left: 12px;
    width: calc(100% - 24px);
  }

  .site-header {
    left: 12px;
    width: calc(100% - 24px);
  }

  .page-hero {
    padding-top: 158px;
  }

  .page-breadcrumbs {
    right: 12px;
    max-width: calc(100% - 24px);
    padding: 12px 18px 13px 22px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 9.5vw, 44px);
  }

  .hero-stat-grid,
  .metric-grid,
  .form-row,
  .logo-cloud {
    grid-template-columns: 1fr;
  }

  .news-card img,
  .insight-card img {
    height: 220px;
  }

  .service-card {
    height: 390px;
  }

  .gradient-button,
  .solid-button {
    width: 100%;
    min-height: 52px;
  }

  .slider-controls button {
    width: 50px;
    height: 50px;
  }

  .about-story-grid {
    width: calc(100% - 24px);
  }

  .about-visual-card,
  .about-story-card {
    margin: 8px 0;
  }

  .about-visual-card {
    min-height: 360px;
    padding: 32px;
  }

  .about-story-card {
    padding: 36px 24px;
  }

  .about-number-grid,
  .about-values .page-grid,
  .client-logo-cloud,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .about-number-card:first-child {
    grid-column: auto;
  }

  .about-number-card,
  .vision-card,
  .contact-form {
    padding: 28px 22px;
  }

  .management-count {
    width: 100%;
  }

  .management-card {
    min-height: 270px;
  }

  .office-card {
    min-height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero__video,
  .decor-mark,
  .cases-mark,
  .footer-mark,
  .reveal-item,
  .scroll-top.is-visible {
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

  .reveal-item {
    opacity: 1;
  }
}

/* IA4Scale / IA4Finance / I4Sale theme overrides */
body {
  color: var(--text);
  background: var(--gradient-dark);
}

.site-header {
  color: var(--text);
  background: rgba(7, 17, 31, 0.78);
  border-color: var(--border-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.92);
  border-color: var(--border-glass);
}

.main-nav > a,
.nav-item > a {
  color: var(--text);
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.nav-item:hover > a,
.nav-item.is-open > a,
.nav-item > a:focus-visible,
.main-nav > a.is-current,
.nav-item.is-current > a {
  color: var(--bg);
  background-color: var(--primary);
}

.mega-panel {
  color: var(--text);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-glass);
}

.mega-panel a:hover {
  color: var(--primary);
}

.mobile-toggle {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-toggle span {
  background: var(--text);
}

.mobile-menu {
  background: rgba(7, 17, 31, 0.88);
  border-left: 1px solid var(--border-glass);
}

.mobile-menu a {
  color: var(--text);
  border-bottom-color: var(--border-glass);
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-nav-item {
  border-bottom-color: var(--border-glass);
}

.mobile-nav-toggle {
  color: var(--text);
}

.mobile-nav-sub a {
  color: var(--text-muted) !important;
  border-bottom-color: rgba(255, 255, 255, 0.07) !important;
}

.mobile-nav-sub a:hover {
  color: var(--primary) !important;
}

.hero,
.page-hero,
.section--cases,
.three-panels,
.site-footer,
.content-section--dark {
  background-color: var(--bg);
}

.page-hero,
.section--cases,
.site-footer {
  background-image:
    radial-gradient(circle at 14% 22%, rgba(34, 199, 189, 0.28), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(214, 177, 111, 0.2), transparent 34%),
    linear-gradient(160deg, #07111f 0%, #0c1828 52%, #050914 100%);
}

.section,
.content-section,
.subpage,
.subpage main {
  background: transparent;
}

.section-copy,
.page-card p,
.value-card p,
.sector-card p,
.listing-card p,
.contact-card p,
.footer-links a,
.footer-bottom,
.footer-bottom a,
.page-hero p {
  color: var(--text-muted);
}

.eyebrow,
.section-kicker,
.news-card h2 a:hover,
.insight-card h2 a:hover,
.case-card h2 a:hover,
.footer-links a:hover,
.footer-bottom a:hover,
.contact-socials a:hover {
  color: var(--primary);
}

.gradient-button,
.solid-button,
.top-contact {
  color: #04101d;
  border-color: transparent;
  background: var(--gradient-primary);
  box-shadow: 0 14px 30px rgba(34, 199, 189, 0.24);
}

.gradient-button:hover,
.solid-button:hover,
.top-contact:hover {
  color: var(--text);
  background: linear-gradient(135deg, #1e6f9f, #22c7bd);
}

.gradient-button--light {
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)) padding-box,
    var(--gradient-primary) border-box;
}

.card-grid .news-card,
.card-grid .insight-card,
.case-card,
.page-card,
.value-card,
.metric-card,
.sector-card,
.listing-card,
.contact-card,
.map-card,
.split-feature__panel,
.contact-form,
.vision-card,
.about-number-card,
.client-logo,
.office-card,
.management-card {
  background: var(--card-glass);
  border: 1px solid var(--border-glass);
  box-shadow: 0 16px 45px rgba(2, 8, 20, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.news-card:hover,
.insight-card:hover,
.case-card:hover,
.page-card:hover,
.value-card:hover,
.metric-card:hover,
.sector-card:hover,
.listing-card:hover,
.contact-card:hover,
.map-card:hover {
  border-color: rgba(34, 199, 189, 0.48);
}

.date-pill,
.insight-card time,
.page-breadcrumbs {
  color: var(--text-muted);
  background: rgba(12, 24, 40, 0.92);
}

.badge-ai,
.text-primary {
  color: var(--primary);
}

.badge-finance,
.text-gold {
  color: var(--finance-gold);
}

.bg-glass {
  background: var(--card-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.btn-primary {
  color: #04101d;
  background: var(--gradient-primary);
  border: 1px solid transparent;
}

.btn-secondary {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(34, 199, 189, 0.6);
}

.section-dark {
  background: var(--gradient-dark);
}

.hero-stat strong,
.metric-card strong,
.about-number-card strong,
.presence-stat strong,
.management-count strong {
  color: var(--finance-gold);
  background: none;
}

.footer-bottom {
  border-top-color: var(--border-glass);
}

.contact-form label {
  color: var(--text-on-light);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  color: var(--text-on-light);
  border-bottom-color: rgba(15, 23, 42, 0.2);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-bottom-color: var(--primary);
}

.contact-form ::placeholder {
  color: var(--text-muted);
}

.contact-form .content-title {
  color: var(--text-on-light);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ===== IA4SCALE CUSTOM ADDITIONS ===== */

/* IA4Finance header button */
.ia4finance-btn {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  margin-left: 4px;
  color: #d6b16f;
  border: 1.5px solid rgba(214,177,111,.55);
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  white-space: nowrap;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.ia4finance-btn:hover {
  background: #d6b16f;
  color: #fff;
  border-color: #d6b16f;
  transform: translateY(-1px);
}

/* Badge styles for certifications */
.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1.5px solid rgba(34,199,189,.38);
  border-radius: 999px;
  background: rgba(34,199,189,.06);
  color: #22c7bd;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .22s, border-color .22s;
}
.badge:hover {
  background: rgba(34,199,189,.14);
  border-color: rgba(34,199,189,.7);
}

/* Offer cards — 3 main service lines */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  margin-top: 44px;
}
.offer-card {
  position: relative;
  padding: 40px 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,29,.06);
  transition: transform .38s var(--ease-out-quint), box-shadow .38s ease, border-color .38s ease;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,199,189,.35);
  box-shadow: 0 22px 60px rgba(0,0,29,.12);
}
.offer-card__num {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.offer-card h3 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-on-light);
  line-height: 1.22;
}
.offer-card h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 12px;
  background: var(--gradient);
  transition: width .28s var(--ease-out-cubic);
}
.offer-card:hover h3::after { width: 52px; }
.offer-card p {
  margin: 0 0 28px;
  color: #5f6068;
  font-size: 16px;
  line-height: 1.65;
  flex: 1;
}
.offer-card li {
  color: var(--text-on-light);
}
.offer-card .gradient-button { min-height: 46px; font-size: 13px; }

/* Value chain */
.value-chain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 42px;
}
.value-chain__step {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(0,0,29,.05);
  transition: transform .3s var(--ease-out-quint), border-color .3s ease;
}
.value-chain__step:hover {
  transform: translateY(-4px);
  border-color: rgba(34,199,189,.28);
}
.value-chain__num {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(34,199,189,.22);
  line-height: 1;
  margin-bottom: 8px;
}
.value-chain__step strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 6px;
}
.value-chain__step p {
  margin: 0;
  color: #5f6068;
  font-size: 13px;
  line-height: 1.5;
}

/* Domain cards — new grid design */
.dcard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.dcard {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0,0,29,.08);
  box-shadow: 0 6px 24px rgba(0,0,29,.052);
  overflow: hidden;
  transition: transform .38s cubic-bezier(.22,.61,.36,1), box-shadow .38s ease, border-color .38s ease;
}

.dcard::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #22c7bd 0%, #44b6e9 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .42s cubic-bezier(.22,.61,.36,1);
}

.dcard:hover {
  transform: translateY(-5px);
  border-color: rgba(34,199,189,.22);
  box-shadow: 0 20px 52px rgba(0,0,29,.10);
}

.dcard:hover::after {
  transform: scaleX(1);
}

.dcard__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dcard__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(34,199,189,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c7bd;
  flex-shrink: 0;
  transition: background .3s ease, transform .3s ease;
}

.dcard:hover .dcard__icon {
  background: rgba(34,199,189,.18);
  transform: scale(1.08) rotate(-3deg);
}

.dcard__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dcard__num {
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(34,199,189,.75);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(34,199,189,.08);
  line-height: 1;
  white-space: nowrap;
}

.dcard__title {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.22;
}

.dcard__lead {
  margin: 0 0 10px;
  font-size: 13.5px;
  font-style: italic;
  color: #22c7bd;
  line-height: 1.6;
}

.dcard__body {
  flex: 1;
  margin: 0 0 18px;
  font-size: 13.5px;
  color: #5f6068;
  line-height: 1.68;
}

.dcard__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.ref-badge {
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(30,111,159,.09);
  color: #1e6f9f;
  font-family: "Sora", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
}

/* Legacy domain-card kept for fallback */
.domain-card {
  padding: 36px 40px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(0,0,29,.055);
  margin-bottom: 24px;
  transition: box-shadow .34s ease, border-color .34s ease;
}
.domain-card:hover {
  border-color: rgba(34,199,189,.28);
  box-shadow: 0 18px 50px rgba(0,0,29,.09);
}
.domain-card__header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px; }
.domain-card__num { flex: 0 0 auto; font-family: "Sora", sans-serif; font-size: 12px; font-weight: 700; color: var(--cyan); letter-spacing: .12em; text-transform: uppercase; margin-top: 5px; }
.domain-card h3 { margin: 0; font-family: "Sora", sans-serif; font-size: 21px; font-weight: 700; color: var(--text-on-light); line-height: 1.22; }
.domain-card .sub-lead { color: #5f6068; font-size: 16px; line-height: 1.65; margin: 0 0 14px; font-style: italic; }
.domain-card p { color: #5f6068; font-size: 15.5px; line-height: 1.68; margin: 0 0 10px; }
.domain-card .ref-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* Training cards */
.training-card {
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(0,0,29,.055);
  margin-bottom: 24px;
  transition: box-shadow .32s ease, border-color .32s ease;
}
.training-card:hover {
  border-color: rgba(34,199,189,.28);
  box-shadow: 0 18px 50px rgba(0,0,29,.09);
}
.training-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.training-card__num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.training-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-on-light);
}
.training-card .sub-lead {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  margin: 0 0 10px;
  display: block;
}
.training-card p { color: #5f6068; font-size: 15.5px; line-height: 1.65; margin: 0 0 10px; }
.training-card strong { color: #5f6068; }

/* Tech ecosystem */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}
.tech-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.76);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: background .22s, color .22s, border-color .22s, transform .22s;
}
.tech-badge:hover {
  background: rgba(34,199,189,.12);
  color: var(--cyan);
  border-color: rgba(34,199,189,.4);
  transform: translateY(-2px);
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
  margin-top: 44px;
}
.team-card {
  border: 1px solid var(--line);
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 36px rgba(0,0,29,.07);
  transition: transform .34s var(--ease-out-quint), box-shadow .34s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 54px rgba(0,0,29,.13);
}
.team-card__photo {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg,#040722,#071541);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__photo-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(34,199,189,.15);
  border: 2px solid rgba(34,199,189,.35);
}
.team-card__body { padding: 24px 26px; }
.team-card h3 {
  margin: 0 0 5px;
  font-family: "Sora", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}
.team-card .role {
  display: block;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  margin-bottom: 10px;
}
.team-card p { margin: 0; color: #5f6068; font-size: 14px; line-height: 1.6; }

/* Why IA4Scale */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,29,.05);
  transition: transform .3s var(--ease-out-quint), border-color .3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,199,189,.28);
}
.why-card__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(34,199,189,.22);
}
.why-card h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-on-light);
}
.why-card p { margin: 0; color: #5f6068; font-size: 14.5px; line-height: 1.58; }

/* IA4Finance dark section */
.ia4finance-section {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(7,17,31,.90) 0%, rgba(12,24,40,.85) 100%),
    url("../assets/case-finance.webp") center / cover no-repeat;
  color: #fff;
}
.ia4finance-inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 48px;
}
.ia4finance-inner h2 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(26px,3vw,36px);
  font-weight: 700;
  color: #d6b16f;
}
.ia4finance-inner p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.65;
  max-width: 680px;
}
.ia4finance-cta {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 28px;
  border: 2px solid #d6b16f;
  border-radius: 999px;
  color: #d6b16f;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .24s, color .24s;
}
.ia4finance-cta:hover { background: #d6b16f; color: #fff; }

/* Signature offers list */
.signature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 32px;
}
.signature-item {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,29,.05);
  transition: border-color .26s ease, transform .26s ease;
}
.signature-item:hover {
  border-color: rgba(34,199,189,.32);
  transform: translateY(-2px);
}
.signature-item strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 5px;
}
.signature-item p { margin: 0; color: #5f6068; font-size: 13.5px; line-height: 1.5; }

/* Footer 4-column for IA4Scale */
.footer-links--ia4scale {
  grid-template-columns: 1.2fr .65fr .85fr .8fr;
}
.footer-links--ia4scale .two-col {
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.footer-links--ia4scale .two-col h3 { grid-column: 1 / -1; }
.footer-brand-desc {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 1.58;
  margin-top: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 14px;
  font-style: normal;
  font-size: 13px;
  color: rgba(255,255,255,.52);
  font-family: "Manrope", sans-serif;
}

.footer-brand-info span,
.footer-brand-info a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.52);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-brand-info a:hover {
  color: var(--primary);
}

/* Contact form select */
.contact-form select {
  width: 100%;
  min-height: 54px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.2);
  border-radius: 0;
  background: transparent;
  color: var(--text-on-light);
  font: inherit;
  outline: 0;
  cursor: pointer;
  appearance: none;
  transition: border-color .24s ease;
}
.contact-form select:focus { border-bottom-color: var(--primary); }

/* Insight cards subgrid */
.insight-subgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  margin-top: 36px;
}

/* Dark section generic */
.section--dark {
  padding: 94px 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(36,198,213,.28), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(183,135,191,.18), transparent 28%),
    linear-gradient(135deg, #040722, #061245 68%, #010214);
  color: #fff;
}
.section--dark .content-inner { position: relative; z-index: 1; }

/* Mobile IA4Finance link */
.ia4finance-mobile { color: #d6b16f !important; }

/* Client logo marquee */
.about-clients {
  background: #f7f8fa !important;
}

.client-logo-cloud {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: logo-marquee 38s linear infinite;
}

.client-logo-cloud:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 80px;
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,29,.05);
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s var(--ease-out-cubic);
}

.client-logo:hover {
  border-color: rgba(34,199,189,.38);
  box-shadow: 0 10px 28px rgba(0,0,29,.1);
  transform: translateY(-3px);
}

.client-logo img {
  max-height: 38px;
  max-width: 116px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter .28s ease;
}

.client-logo:hover img {
  filter: grayscale(0) opacity(1);
}

@keyframes logo-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive new additions */
@media (max-width: 1100px) {
  .offer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .value-chain { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-links--ia4scale { grid-template-columns: 1fr 1fr; }
  .insight-subgrid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .offer-grid,
  .team-grid,
  .why-grid { grid-template-columns: 1fr; }
  .value-chain { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ia4finance-inner { grid-template-columns: 1fr; gap: 24px; }
  .dcard-grid { grid-template-columns: 1fr; }
  .domain-card,
  .training-card { padding: 24px 22px; }
  .footer-links--ia4scale { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .value-chain { grid-template-columns: 1fr; }
  .insight-subgrid { grid-template-columns: 1fr; }
  .signature-grid { grid-template-columns: 1fr; }
  .footer-links--ia4scale { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== IMAGE & VISUAL ENHANCEMENTS ===== */

/* Offer card cover image */
.offer-card__img {
  margin: -40px -34px 28px;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  height: 180px;
}
.offer-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out-quint);
}
.offer-card:hover .offer-card__img img {
  transform: scale(1.07);
}

/* Section split — texte + image côte à côte */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 44px;
}
.section-split--reverse { direction: rtl; }
.section-split--reverse > * { direction: ltr; }

.section-split__img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,29,.12);
}
.section-split__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-quint);
}
.section-split:hover .section-split__img img {
  transform: scale(1.04);
}
.section-split__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section-split__text .section-kicker { margin: 0; }
.section-split__text .content-title { margin: 0; }
.section-split__text .section-copy { margin: 0; }

/* Section with background image + dark overlay */
.section--img-bg {
  position: relative;
  background-size: cover;
  background-position: center;
}
.section--img-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,7,34,.88) 0%, rgba(7,17,31,.80) 100%);
}
.section--img-bg > * { position: relative; z-index: 1; }

@media (max-width: 860px) {
  .section-split,
  .section-split--reverse { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
  .offer-card__img { height: 150px; }
}

/* ============================================================
   IA4Scale AI Chat Widget — Premium
   ============================================================ */

.chat-widget-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── Trigger Capsule — compact by default, expands on hover/focus ── */
.chat-widget-trigger {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 6px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  overflow: hidden;
  max-width: 72px;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.1),
    0 18px 44px rgba(0, 0, 0, 0.08);
  transition:
    max-width 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.24s ease,
    opacity 0.22s ease;
}

.chat-widget-trigger:active {
  transform: translateY(-1px) scale(0.97);
}

/* Keyboard focus — expand + ring */
.chat-widget-trigger:focus-visible {
  max-width: 340px;
  padding: 10px 22px 10px 10px;
  outline: 2px solid #1e6f9f;
  outline-offset: 3px;
}

.chat-widget-trigger:focus-visible .chat-widget-bubble {
  max-width: 260px;
  opacity: 1;
  padding: 2px 0 2px 14px;
  transform: translateX(0);
  pointer-events: auto;
}

/* Hover expand — only on true pointer devices, only when panel is closed */
@media (hover: hover) and (pointer: fine) {
  .chat-widget-container:not(.is-open):hover .chat-widget-trigger {
    max-width: 340px;
    padding: 10px 22px 10px 10px;
    transform: translateY(-4px) scale(1.02);
    box-shadow:
      0 4px 10px rgba(0, 0, 0, 0.08),
      0 14px 34px rgba(0, 0, 0, 0.14),
      0 24px 52px rgba(0, 0, 0, 0.1);
  }

  .chat-widget-container:not(.is-open):hover .chat-widget-bubble {
    max-width: 260px;
    opacity: 1;
    padding: 2px 0 2px 14px;
    transform: translateX(0);
    pointer-events: auto;
  }
}

.chat-widget-container.is-open .chat-widget-trigger {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.86) translateY(8px);
}

/* Avatar circle */
.chat-widget-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e6f9f 0%, #22c7bd 100%);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(30, 111, 159, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: cwAvatarPulse 3s ease-in-out infinite;
}

@keyframes cwAvatarPulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(30, 111, 159, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 4px 22px rgba(30, 111, 159, 0.58), 0 0 0 7px rgba(30, 111, 159, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

/* Text bubble — hidden by default, revealed on hover/focus */
.chat-widget-bubble {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 2px 0;
  text-align: left;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transform: translateX(-8px);
  pointer-events: none;
  transition:
    max-width 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.26s ease,
    padding 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s ease;
}

.chat-widget-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.1;
}

.chat-widget-message {
  font-size: 11.5px;
  font-weight: 400;
  color: #64748b;
  white-space: nowrap;
  line-height: 1.1;
}

/* ── Round Close Button (shown when panel is open) ── */
.chat-widget-close {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e6f9f, #22c7bd);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 18px rgba(30, 111, 159, 0.45), 0 2px 6px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.6) rotate(-60deg);
  transition:
    opacity 0.24s ease,
    transform 0.34s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chat-widget-container.is-open .chat-widget-close {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) rotate(0deg);
}

.chat-widget-close:hover {
  box-shadow: 0 6px 28px rgba(30, 111, 159, 0.6);
  transform: scale(1.1) rotate(0deg) !important;
}

/* ── Chat Panel ── */
.chat-widget-panel {
  position: absolute;
  bottom: calc(100% + 6px);
  right: 0;
  width: 390px;
  height: 600px;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 16px 40px rgba(7, 17, 31, 0.13),
    0 40px 80px rgba(7, 17, 31, 0.18),
    0 0 0 1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom right;
}

.chat-widget-container.is-open .chat-widget-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ── Panel Header ── */
.chat-widget-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px 18px 20px;
  background: linear-gradient(135deg, #07111f 0%, #0c1828 40%, #1e6f9f 75%, #22c7bd 100%);
  flex-shrink: 0;
  overflow: hidden;
}

.chat-widget-header::before {
  content: "";
  position: absolute;
  top: -45px;
  left: -25px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(30, 111, 159, 0.65) 0%, transparent 65%);
  pointer-events: none;
}

.chat-widget-header::after {
  content: "";
  position: absolute;
  bottom: -35px;
  right: -5px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(34, 199, 189, 0.55) 0%, transparent 65%);
  pointer-events: none;
}

.chat-widget-header > * { position: relative; z-index: 1; }

.chat-widget-header-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.chat-widget-header-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}

.chat-widget-header-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.chat-widget-header-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11.5px;
  letter-spacing: 0.025em;
}

.chat-widget-header-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: cwDot 2.4s ease-in-out infinite;
}

@keyframes cwDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.chat-widget-panel-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.18s ease, color 0.18s ease, transform 0.22s ease;
  position: relative;
  z-index: 2;
}

.chat-widget-panel-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: rotate(90deg);
}

/* ── Panel Body / Iframe ── */
.chat-widget-body {
  flex: 1;
  overflow: hidden;
  background: #f8fafc;
}

.chat-widget-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .chat-widget-container {
    bottom: 16px;
    right: 12px;
  }

  /* Mobile: always compact, bubble never shown */
  .chat-widget-trigger {
    padding: 6px;
    max-width: 64px;
  }

  .chat-widget-bubble {
    display: none;
  }

  .chat-widget-avatar {
    width: 46px;
    height: 46px;
  }

  .chat-widget-close {
    width: 50px;
    height: 50px;
  }

  .chat-widget-panel {
    position: fixed;
    bottom: 88px;
    right: 12px;
    left: 12px;
    width: auto;
    height: 78vh;
    max-height: 680px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chat-widget-avatar { animation: none; }
  .chat-widget-header-dot { animation: none; }
  .chat-widget-panel,
  .chat-widget-trigger,
  .chat-widget-close { transition: none; }
}

/* ============================================================
   INSIGHTS — Filtres dynamiques & Labels de catégorie
   ============================================================ */

/* ── Boutons de filtre ────────────────────────────────────── */
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 20px;
  border: 1.5px solid rgba(15, 23, 42, 0.13);
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-family: "Sora", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    transform 0.24s var(--ease-out-cubic),
    box-shadow 0.24s ease;
}

.filter-btn:hover {
  color: #0e9488;
  border-color: rgba(34, 199, 189, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 199, 189, 0.13);
}

.filter-btn.is-active {
  background: linear-gradient(90deg, #22c7bd 0%, #44b7e9 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 22px rgba(34, 199, 189, 0.32);
}

.filter-btn.is-active:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(34, 199, 189, 0.42);
}

/* Scroll horizontal sur mobile */
@media (max-width: 640px) {
  #insightsFilters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  #insightsFilters::-webkit-scrollbar { display: none; }
}

/* ── Labels / Badges de catégorie ────────────────────────── */
.insight-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.insight-badge--data-ia {
  background: rgba(34, 199, 189, 0.1);
  color: #0e9488;
}

.insight-badge--governance {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.insight-badge--architecture {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.insight-badge--ai-assets {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}

.insight-badge--finance {
  background: rgba(214, 177, 111, 0.15);
  color: #9a6f28;
}

/* ── Animation de filtrage ───────────────────────────────── */
#insightsGrid {
  transition: opacity 0.15s ease;
}

#insightsGrid.is-filtering {
  opacity: 0.12;
  pointer-events: none;
}

.listing-card.ins-hidden {
  display: none !important;
}

@keyframes ins-card-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.listing-card.ins-appear {
  animation: ins-card-in 0.4s var(--ease-out-quint) both;
  animation-delay: var(--ins-delay, 0ms);
}

/* Message état vide */
.insights-empty {
  padding: 56px 0 32px;
  text-align: center;
  color: #5f6068;
  font-size: 16px;
  grid-column: 1 / -1;
}
