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

:root {
  --global-palette1: #124f98;
  --global-palette2: #47c9f3;
  --global-palette3: #071b38;
  --global-palette4: #0e2341;
  --global-palette5: #374352;
  --global-palette6: #697380;
  --global-palette7: #b8cae0;
  --global-palette8: #e7edf5;
  --global-palette9: #ffffff;
  --ink: var(--global-palette3);
  --text: var(--global-palette5);
  --muted: var(--global-palette6);
  --line: rgba(18, 79, 152, .13);
  --glass: rgba(255, 255, 255, .72);
  --blue-wash: rgba(71, 201, 243, .15);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 18px 60px rgba(7, 27, 56, .10);
  --shadow-soft: 0 9px 28px rgba(7, 27, 56, .08);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--global-palette9);
  font-family: 'Parkinsans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.62;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(71, 201, 243, .35);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  transition: top .2s;
}

.skip-link:focus {
  top: 16px;
}

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--global-palette1), var(--global-palette2));
}

.bg-grid,
.bg-orb,
.noise {
  pointer-events: none;
  position: fixed;
  z-index: -3;
}

.bg-grid {
  inset: 0;
  opacity: .34;
  background-image: linear-gradient(rgba(18, 79, 152, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 79, 152, .045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .5) 34%, transparent 78%);
}

.bg-orb {
  border-radius: 50%;
  filter: blur(10px);
  opacity: .56;
  animation: drift 16s ease-in-out infinite alternate;
}

.orb-a {
  width: 310px;
  height: 310px;
  background: rgba(71, 201, 243, .20);
  top: 8vh;
  right: -110px;
}

.orb-b {
  width: 220px;
  height: 220px;
  background: rgba(18, 79, 152, .09);
  top: 55vh;
  left: -80px;
  animation-delay: -8s;
}

.noise {
  inset: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.95'/%3E%3C/svg%3E");
}

@keyframes drift {
  to {
    transform: translate3d(32px, -26px, 0) scale(1.08);
  }
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-sm {
  padding: 40px 0 ;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--global-palette1);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--global-palette2);
  box-shadow: 0 0 0 6px rgba(71, 201, 243, .16);
}

.kicker {
  max-width: 680px;
  margin: 0 auto 18px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -.055em;
  line-height: 1.03;
}

h1 {
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
}

h2 {
  font-weight: 400;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -.035em;
}

p {
  color: var(--text);
}

.lead {
  max-width: 660px;
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  color: var(--global-palette5);
}

.text-center {
  text-align: center;
}

.text-center .lead {
  margin-inline: auto;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: .86rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
  transition: transform .34s var(--ease), background .34s var(--ease), color .34s var(--ease), border-color .34s var(--ease), box-shadow .34s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--global-palette1);
  color: white;
  box-shadow: 0 10px 24px rgba(18, 79, 152, .22);
}

.btn-primary:hover {
  background: var(--global-palette3);
  box-shadow: 0 15px 34px rgba(7, 27, 56, .24);
}

.btn-secondary {
  border-color: rgba(18, 79, 152, .18);
  background: rgba(255, 255, 255, .66);
  backdrop-filter: blur(14px);
  color: var(--global-palette1);
}

.btn-secondary:hover {
  border-color: var(--global-palette2);
  background: rgba(71, 201, 243, .10);
}

.btn-ghost {
  padding-inline: 0;
  color: var(--global-palette1);
  min-height: auto;
  background: none;
}

.btn-ghost:hover {
  color: var(--global-palette3);
}

.arrow {
  width: 18px;
  height: 18px;
  transition: transform .25s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 120;
  margin-top: 14px;
}

.nav-shell {
  width: min(1240px, calc(100vw - 28px));
  min-height: 68px;
  margin-inline: auto;
  padding: 9px 10px 9px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(18, 79, 152, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: saturate(155%) blur(18px);
  -webkit-backdrop-filter: saturate(155%) blur(18px);
  box-shadow: 0 10px 32px rgba(7, 27, 56, .06);
  transition: min-height .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.site-header.scrolled .nav-shell {
  min-height: 60px;
  box-shadow: 0 12px 38px rgba(7, 27, 56, .11);
  background: rgba(255, 255, 255, .88);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 144px;
}

.brand img {
  width: 144px;
  height: auto;
}

.nav-links {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  list-style: none;
}

.nav-links a {
  position: relative;
  padding: 10px 13px;
  color: var(--global-palette5);
  font-size: 13px;
  font-weight: 500;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 5px;
  height: 2px;
  width: 0;
  border-radius: 99px;
  background: var(--global-palette2);
  transform: translateX(-50%);
  transition: width .3s var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--global-palette1);
}

.nav-links a:hover::after,
.nav-links a[aria-current='page']::after {
  width: 17px;
}

.nav-cta {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1.6px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform .25s var(--ease), opacity .25s;
}

.menu-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(5.6px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-5.6px) rotate(-45deg);
}

.hero {
  min-height: 765px;
  padding: 118px 0 85px;
  display: grid;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 56px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
}

.hero h1 em {
  color: var(--global-palette1);
  font-style: normal;
}

.hero-copy .lead {
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 12px;
}

.trust-avatars {
  display: flex;
  padding-left: 4px;
}

.trust-avatars span {
  width: 25px;
  height: 25px;
  margin-left: -4px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d5edf7, #7bd6ef);
  color: var(--global-palette1);
  font-size: 8px;
  font-weight: 700;
}

.hero-visual {
  min-height: 490px;
  position: relative;
}

.glass-panel {
  background: var(--glass);
  border: 1px solid rgba(18, 79, 152, .14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.dashboard-card {
  position: absolute;
  inset: 31px 0 0 43px;
  padding: 24px;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(71, 201, 243, .19);
  filter: blur(4px);
  right: -42px;
  top: -62px;
}

.dashboard-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.dash-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dash-value {
  color: var(--ink);
  margin-top: 7px;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  letter-spacing: -.06em;
  font-weight: 500;
}

.dash-rise {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(71, 201, 243, .15);
  color: #087fa6;
  font-size: 11px;
  font-weight: 700;
}

.chart {
  position: relative;
  height: 190px;
  margin-top: 23px;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 37px, rgba(18, 79, 152, .11) 38px 39px);
}

.chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart path {
  fill: none;
  stroke: var(--global-palette1);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 5px 4px rgba(18, 79, 152, .18));
}

.chart .area {
  fill: url(#heroGradient);
  stroke: none;
  filter: none;
}

.chart-dot {
  fill: white;
  stroke: var(--global-palette2);
  stroke-width: 4;
}

.metric-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 19px;
}

.metric {
  padding: 14px;
  border: 1px solid rgba(18, 79, 152, .10);
  border-radius: 15px;
  background: rgba(255, 255, 255, .55);
}

.metric b {
  display: block;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -.05em;
}

.metric span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.floating-note {
  position: absolute;
  padding: 13px 16px;
  border: 1px solid rgba(18, 79, 152, .13);
  border-radius: 17px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.note-left {
  left: -22px;
  top: 74px;
  animation: bob 4.6s ease-in-out infinite;
}

.note-right {
  right: -12px;
  bottom: 45px;
  animation: bob 4.2s ease-in-out infinite reverse;
}

.note-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 7px;
  border-radius: 10px;
  color: var(--global-palette1);
  background: rgba(71, 201, 243, .17);
  font-weight: 700;
}

.floating-note b {
  display: block;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: -.02em;
}

.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.orbit {
  position: absolute;
  right: 8px;
  top: -14px;
  width: 110px;
  height: 110px;
  border: 1px dashed rgba(18, 79, 152, .26);
  border-radius: 50%;
  animation: rotate 15s linear infinite;
}

.orbit::before,
.orbit::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--global-palette2);
  box-shadow: 0 0 0 6px rgba(71, 201, 243, .12);
}

.orbit::before {
  left: 4px;
  top: 26px;
}

.orbit::after {
  bottom: 12px;
  right: 18px;
  background: var(--global-palette1);
}

@keyframes bob {
  50% {
    transform: translateY(-12px);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}



















/* .logo-strip { padding: 0 0 82px; }
.logo-strip-inner { display: flex; justify-content: space-between; align-items: center; gap: 26px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-strip span { color: var(--muted); font-size: 12px; }
.partner-mini { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.partner-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--global-palette5); background: rgba(255,255,255,.58); font-size: 11px; font-weight: 600; }
.partner-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--global-palette2); } */

.logo-strip {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(18, 79, 152, 0.1);
  border-bottom: 1px solid rgba(18, 79, 152, 0.1);
}

.logo-strip-head {
  margin-bottom: 16px;
}

.logo-strip-head span {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--global-palette5);
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right,
      transparent,
      black 9%,
      black 91%,
      transparent);
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 9%,
      black 91%,
      transparent);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: partnerMarquee 24s linear infinite;
  padding: 4px 0;
}

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





.partner-pill img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  filter: none;
  opacity: 1;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

/* When one card is hovered, every other icon becomes black & white */
.logo-marquee.is-hovering .partner-pill:not(.is-active) img {
  filter: grayscale(1) contrast(1.35);
  opacity: 0.35;
}

/* Hovered icon always remains colored */
.logo-marquee.is-hovering .partner-pill.is-active img {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

.logo-marquee.is-hovering .partner-pill:not(.is-active) {
  opacity: 0.7;
}





.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding: 11px 18px;
  border: 1px solid rgba(18, 79, 152, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(7, 27, 56, 0.05);
  color: var(--global-palette3);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.partner-pill img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.partner-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(71, 201, 243, 0.55);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 35px rgba(18, 79, 152, 0.13);
}

@keyframes partnerMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .logo-strip {
    padding: 18px 0;
  }

  .logo-strip-head span {
    font-size: 12px;
    padding: 0 20px;
    line-height: 1.5;
  }

  .logo-marquee-track {
    gap: 10px;
    animation-duration: 18s;
  }

  .partner-pill {
    padding: 9px 14px;
    font-size: 13px;
  }

  .partner-pill img {
    width: 18px;
    height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    animation: none;
  }
}








.split-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 48px;
}

.split-head .lead {
  margin-bottom: 0;
}

.stack-stage {
  position: relative;
  min-height: 620px;
}

.stack-copy {
  position: sticky;
  top: 140px;
  width: 38%;
  z-index: 3;
}

.stack-copy h2 {
  margin-top: 14px;
  margin-bottom: 17px;
}

.stack-cards {
  width: 55%;
  margin-left: auto;
  padding: 30px 0;
  position: relative;
}

.stack-card {
  position: sticky;
  top: 128px;
  min-height: 250px;
  margin-bottom: 22px;
  padding: 27px 28px;
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(18, 79, 152, .13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 35px rgba(7, 27, 56, .08);
  backdrop-filter: blur(13px);
  transform-origin: center top;
  overflow: hidden;
}

.stack-card::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  right: -56px;
  bottom: -88px;
  border-radius: 50%;
  background: rgba(71, 201, 243, .12);
}

.stack-index {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--global-palette1);
  background: linear-gradient(145deg, rgba(71, 201, 243, .24), rgba(18, 79, 152, .08));
  font-size: 12px;
  font-weight: 700;
}

.stack-card p {
  max-width: 450px;
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.stack-link {
  width: 35px;
  height: 35px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 79, 152, .15);
  border-radius: 50%;
  color: var(--global-palette1);
  transition: background .25s, color .25s, transform .25s;
}

.stack-card:hover .stack-link {
  color: white;
  background: var(--global-palette1);
  transform: rotate(-45deg);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 28px;
}

.proof-panel {
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.proof-panel::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  right: -145px;
  top: -225px;
  border-radius: 50%;
  background: rgba(71, 201, 243, .12);
}

.proof-panel h2 {
  position: relative;
  max-width: 700px;
  margin-top: 13px;
}

.stats-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 35px;
  background: rgba(18, 79, 152, .12);
  border-radius: 18px;
  overflow: hidden;
}

.stat {
  padding: 20px 16px;
  background: rgba(255, 255, 255, .64);
}

.stat b {
  display: block;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1;
  letter-spacing: -.07em;
  font-weight: 500;
}

.stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.partner-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.partner-card h3 {
  margin: 14px 0 10px;
}

.partner-card p {
  font-size: 13px;
}

.partner-list {
  display: grid;
  gap: 11px;
  margin-top: 25px;
}

.partner-list div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .58);
  color: var(--global-palette5);
  font-size: 12px;
  font-weight: 600;
}

.partner-list i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--global-palette2);
}

.process-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.process-intro h2 {
  margin: 14px 0 17px;
}

.process-visual {
  position: relative;
  padding: 28px 0 28px 48px;
}

.process-line {
  position: absolute;
  left: 67px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  border-radius: 99px;
  background: rgba(18, 79, 152, .14);
  overflow: hidden;
}

.process-line span {
  display: block;
  width: 100%;
  height: 0;
  background: linear-gradient(var(--global-palette2), var(--global-palette1));
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid transparent;
  border-radius: 18px;
  transition: background .35s, border .35s, transform .35s;
}

.process-item:hover,
.process-item.is-active {
  transform: translateX(5px);
  border-color: var(--line);
  background: rgba(255, 255, 255, .7);
  box-shadow: var(--shadow-soft);
}

.process-dot {
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
  margin: 5px 0 0 11px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--global-palette7);
  box-shadow: 0 0 0 1px rgba(18, 79, 152, .19);
  transition: background .35s, box-shadow .35s, transform .35s;
}

.process-item.is-active .process-dot {
  background: var(--global-palette2);
  box-shadow: 0 0 0 7px rgba(71, 201, 243, .14), 0 0 0 1px rgba(18, 79, 152, .21);
  transform: scale(1.15);
}

.process-item h3 {
  margin: 0 0 5px;
  font-size: 1.08rem;
}

.process-item p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 13px;
}




















/* .case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-card {
  position: relative;
  min-height: 390px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.case-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 46px rgba(7, 27, 56, .13);
}

.case-surface {
  position: absolute;
  inset: 0 0 39%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(18, 79, 152, .13), rgba(71, 201, 243, .33));
}

.case-surface::before {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  left: -26px;
  bottom: -60px;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 50%;
}

.case-surface::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  right: 10px;
  top: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .35);
  transform: rotate(25deg);
}

.case-graph {
  position: absolute;
  inset: 42px 26px auto;
  height: 108px;
  border: 1px solid rgba(18, 79, 152, .13);
  border-radius: 17px;
  background: rgba(255, 255, 255, .60);
  box-shadow: 0 13px 24px rgba(18, 79, 152, .11);
  backdrop-filter: blur(12px);
}

.case-graph svg {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
}

.case-graph path {
  fill: none;
  stroke: var(--global-palette1);
  stroke-width: 3;
  stroke-linecap: round;
}

.case-tag {
  position: relative;
  display: inline-flex;
  width: max-content;
  padding: 6px 9px;
  border-radius: 99px;
  color: var(--global-palette1);
  background: rgba(71, 201, 243, .13);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.case-card h3 {
  position: relative;
  margin: 12px 0 9px;
}

.case-card p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.case-results {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.case-results span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--global-palette5);
  background: rgba(255, 255, 255, .68);
  font-size: 10px;
  font-weight: 600;
} */

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Card layout */
.case-card {
  --case-cover-height: 238px;

  position: relative;
  min-height: 470px;
  padding: 0 23px 23px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Important: removes overlap */
  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;

  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.case-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 46px rgba(7, 27, 56, 0.13);
}

/* Top visual / cover area */
.case-surface {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: auto;

  height: var(--case-cover-height);
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;

  background: linear-gradient(
    135deg,
    rgba(18, 79, 152, 0.13),
    rgba(71, 201, 243, 0.33)
  );
}

.case-surface::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  left: -26px;
  bottom: -60px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
}

.case-surface::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: 10px;
  top: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(25deg);
}

/* Graph inside cover */
.case-graph {
  position: absolute;
  top: 42px;
  right: 26px;
  left: 26px;
  height: 108px;

  border: 1px solid rgba(18, 79, 152, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 13px 24px rgba(18, 79, 152, 0.11);
  backdrop-filter: blur(12px);
}

.case-graph svg {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
}

.case-graph path {
  fill: none;
  stroke: var(--global-palette1);
  stroke-width: 3;
  stroke-linecap: round;
}

/* Content starts only after the cover */
.case-tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: max-content;
  margin-top: calc(var(--case-cover-height) + 22px);
  padding: 6px 9px;

  border-radius: 99px;
  color: var(--global-palette1);
  background: rgba(71, 201, 243, 0.13);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.case-card h3 {
  position: relative;
  z-index: 2;
  margin: 12px 0 9px;

  color: var(--global-palette3);
  font-size: clamp(1.35rem, 1.7vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.case-card p {
  position: relative;
  z-index: 2;
  margin: 0;

  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.case-results {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: auto; /* Keeps result badges aligned at the bottom */
  padding-top: 16px;
}

.case-results span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;

  color: var(--global-palette5);
  background: rgba(255, 255, 255, 0.82);

  font-size: 10px;
  font-weight: 600;
}

/* Tablet */
@media (max-width: 1024px) {
  .case-card {
    --case-cover-height: 220px;
    min-height: 455px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    --case-cover-height: 210px;
    min-height: 440px;
  }

  .case-graph {
    top: 35px;
    right: 22px;
    left: 22px;
  }

  .case-card h3 {
    font-size: 1.45rem;
  }
}














.testimonial {
  padding: 52px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 26px;
}

.quote-mark {
  color: var(--global-palette2);
  font-size: 62px;
  line-height: .6;
  font-family: Georgia, serif;
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.2vw, 2.05rem);
  line-height: 1.35;
  letter-spacing: -.04em;
  font-weight: 400;
}

.testimonial footer {
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}

.testimonial footer b {
  color: var(--global-palette1);
}

.cta-surface {
  position: relative;
  padding: 66px;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--global-palette3), var(--global-palette1));
  color: white;
}

.cta-surface::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -255px;
  top: -300px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(255, 255, 255, .06), 0 0 0 108px rgba(255, 255, 255, .04);
}

.cta-surface .eyebrow {
  color: #a8ecff;
}

.cta-surface .eyebrow::before {
  background: #a8ecff;
  box-shadow: 0 0 0 6px rgba(168, 236, 255, .14);
}

.cta-surface h2,
.cta-surface p {
  position: relative;
  color: white;
}

.cta-surface h2 {
  max-width: 760px;
  margin: 15px 0 17px;
}

.cta-surface p {
  max-width: 560px;
  color: rgba(255, 255, 255, .73);
}

.cta-surface .btn-primary {
  position: relative;
  background: white;
  color: var(--global-palette1);
  box-shadow: none;
}

.cta-surface .btn-primary:hover {
  background: var(--global-palette2);
  color: var(--ink);
}

.page-hero {
  padding: 132px 0 72px;
  position: relative;
}

.page-hero .eyebrow {
  margin-bottom: 16px;
}

.page-hero h1 {
  max-width: 940px;
}

.page-hero .lead {
  max-width: 680px;
  margin-top: 23px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 11px;
}

.breadcrumb a:hover {
  color: var(--global-palette1);
}

.breadcrumb span {
  opacity: .55;
}

.service-deck {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-deck .service-card {
  min-height: 282px;
}

.service-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 6px 20px rgba(7, 27, 56, .04);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border .4s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(71, 201, 243, .7);
  box-shadow: 0 18px 40px rgba(7, 27, 56, .10);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(18, 79, 152, .13);
  border-radius: 15px;
  color: var(--global-palette1);
  background: linear-gradient(135deg, rgba(71, 201, 243, .18), rgba(18, 79, 152, .05));
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  position: relative;
  margin-bottom: 10px;
}

.service-card p {
  position: relative;
  max-width: 430px;
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 13px;
}

.service-card .btn-ghost {
  position: relative;
  font-size: 12px;
}

.service-card::after {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  right: -50px;
  bottom: -65px;
  border: 1px solid rgba(18, 79, 152, .12);
  border-radius: 50%;
  transition: transform .5s var(--ease);
}

.service-card:hover::after {
  transform: scale(1.35);
}

.service-feature {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 40px;
  align-items: center;
}

.service-feature h2 {
  margin: 14px 0 16px;
}

.feature-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--global-palette5);
  font-size: 13px;
}

.feature-list li i {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(71, 201, 243, .18);
  color: var(--global-palette1);
  font-size: 10px;
  font-style: normal;
}

.feature-visual {
  min-height: 285px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(71, 201, 243, .26), rgba(18, 79, 152, .08));
}

.feature-visual .micro-card {
  position: absolute;
  padding: 14px;
  border: 1px solid rgba(18, 79, 152, .11);
  border-radius: 16px;
  background: rgba(255, 255, 255, .73);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.micro-card b {
  color: var(--ink);
  font-size: 15px;
}

.micro-card span {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.micro-card.one {
  top: 42px;
  left: 37px;
}

.micro-card.two {
  right: 30px;
  bottom: 37px;
}

.feature-visual .signal-ring {
  position: absolute;
  width: 215px;
  height: 215px;
  right: 54px;
  top: 35px;
  border: 1px dashed rgba(18, 79, 152, .25);
  border-radius: 50%;
  animation: rotate 14s linear infinite;
}

.signal-ring::before {
  content: '';
  position: absolute;
  inset: 41px;
  border: 1px solid rgba(18, 79, 152, .19);
  border-radius: 50%;
}

.signal-ring::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 22px;
  right: 31px;
  border-radius: 50%;
  background: var(--global-palette2);
  box-shadow: 0 0 0 10px rgba(71, 201, 243, .12);
}

.about-story {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 55px;
  align-items: center;
}

.story-visual {
  min-height: 460px;
  position: relative;
}

.story-core {
  position: absolute;
  inset: 18px 32px 30px 0;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, rgba(18, 79, 152, .17), rgba(71, 201, 243, .38));
  overflow: hidden;
}

.story-core::after {
  content: '';
  position: absolute;
  width: 310px;
  height: 310px;
  left: -126px;
  top: -120px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(255, 255, 255, .12), 0 0 0 64px rgba(255, 255, 255, .08);
}

.story-core p {
  position: relative;
  max-width: 230px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.story-chip {
  position: absolute;
  z-index: 2;
  padding: 13px 15px;
  border: 1px solid rgba(18, 79, 152, .13);
  border-radius: 15px;
  background: rgba(255, 255, 255, .80);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.story-chip.a {
  top: 49px;
  right: 0;
}

.story-chip.b {
  right: 27px;
  bottom: 0;
}

.story-chip b {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.story-chip span {
  color: var(--muted);
  font-size: 10px;
}

.story-copy h2 {
  margin: 13px 0 18px;
}

.story-copy p {
  max-width: 610px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.value-card {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(255, 255, 255, .68);
}

.value-number {
  display: block;
  margin-bottom: 17px;
  color: var(--global-palette2);
  font-weight: 600;
  font-size: 12px;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 9px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.team-commitment {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 26px;
}

.commitment-card {
  min-height: 400px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.commitment-card h2 {
  margin: 14px 0 16px;
}

.commitment-points {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.commitment-points div {
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 13px;
  color: var(--global-palette5);
}

.commitment-points i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--global-palette1);
  background: rgba(71, 201, 243, .15);
  font-style: normal;
  font-size: 11px;
}

.principle-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--global-palette1), var(--global-palette3));
  color: white;
}

.principle-card h3,
.principle-card p {
  position: relative;
  color: white;
}

.principle-card p {
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
}

.principle-card .big-quote {
  position: relative;
  margin-top: auto;
  color: #a8ecff;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.07;
  letter-spacing: -.05em;
}

.principle-card::after {
  content: '';
  position: absolute;
  width: 310px;
  height: 310px;
  right: -160px;
  bottom: -160px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, .06), 0 0 0 76px rgba(255, 255, 255, .04);
}

.blog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 26px;
}

.category-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, .75);
  font-size: 11px;
  font-weight: 600;
  transition: .25s;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--global-palette1);
  border-color: rgba(71, 201, 243, .75);
  background: rgba(71, 201, 243, .11);
}

.search-mini {
  width: min(245px, 100%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
}

.search-mini input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
}

.search-mini svg {
  width: 16px;
  color: var(--global-palette1);
}

.featured-article {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .77);
}

.article-art {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(18, 79, 152, .18), rgba(71, 201, 243, .38));
}

.article-art::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  left: -75px;
  bottom: -80px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, .1);
}

.article-art .content-card {
  position: absolute;
  width: 55%;
  right: 35px;
  top: 74px;
  padding: 18px;
  border: 1px solid rgba(18, 79, 152, .12);
  border-radius: 19px;
  background: rgba(255, 255, 255, .75);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.content-card span {
  display: block;
  height: 7px;
  margin-bottom: 9px;
  border-radius: 100px;
  background: rgba(18, 79, 152, .12);
}

.content-card span:nth-child(2) {
  width: 75%;
}

.content-card span:nth-child(3) {
  width: 57%;
}

.article-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-copy h2 {
  margin: 12px 0 13px;
  font-size: clamp(1.85rem, 3.3vw, 3rem);
}

.article-copy p {
  font-size: 13px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
}

.article-meta b {
  color: var(--global-palette1);
  font-weight: 600;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .76);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.article-thumb {
  min-height: 176px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(71, 201, 243, .31), rgba(18, 79, 152, .13));
}

.article-thumb::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  top: -57px;
  right: -36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .85);
}

.article-thumb::after {
  content: '';
  position: absolute;
  width: 76px;
  height: 76px;
  left: 27px;
  bottom: 20px;
  transform: rotate(25deg);
  border-radius: 14px;
  background: rgba(255, 255, 255, .49);
}

.article-card:nth-child(2) .article-thumb {
  background: linear-gradient(135deg, rgba(18, 79, 152, .12), rgba(231, 237, 245, .92));
}

.article-card:nth-child(3) .article-thumb {
  background: linear-gradient(135deg, rgba(71, 201, 243, .18), rgba(18, 79, 152, .24));
}

.article-body {
  padding: 22px;
}

.article-body h3 {
  margin: 10px 0;
  font-size: 1.28rem;
}

.article-body p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.article-body .article-meta {
  margin-top: 15px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.contact-details {
  padding: 34px;
}

.contact-details h2 {
  margin: 13px 0 14px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 29px;
}

.contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .55);
}

.contact-row i {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--global-palette1);
  background: rgba(71, 201, 243, .16);
  font-style: normal;
}

.contact-row b {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.contact-row span,
.contact-row a {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.contact-map {
  position: relative;
  min-height: 182px;
  margin-top: 21px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(18, 79, 152, .10), rgba(71, 201, 243, .17));
}

.contact-map::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image: linear-gradient(35deg, transparent 45%, rgba(18, 79, 152, .25) 46% 47%, transparent 48%), linear-gradient(-48deg, transparent 47%, rgba(18, 79, 152, .20) 48% 49%, transparent 50%);
  background-size: 45px 45px;
}

.map-pin {
  position: absolute;
  left: 54%;
  top: 46%;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  background: var(--global-palette1);
  color: white;
  box-shadow: 0 10px 18px rgba(18, 79, 152, .28);
  transform: rotate(-45deg);
}

.map-pin span {
  transform: rotate(45deg);
  font-size: 13px;
}

.contact-form {
  padding: 35px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--global-palette5);
  font-size: 11px;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 14px;
  outline: none;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .68);
  color: var(--ink);
  font-size: 13px;
  transition: border .25s, box-shadow .25s, background .25s;
}

.field textarea {
  min-height: 139px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--global-palette2);
  background: white;
  box-shadow: 0 0 0 4px rgba(71, 201, 243, .13);
}

.form-note {
  margin-top: 15px;
  color: var(--muted);
  font-size: 10px;
}

.form-message {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--global-palette1);
  font-size: 12px;
  font-weight: 600;
}

.site-footer {
  padding: 68px 0 24px;
  border-top: 1px solid var(--line);
  background: linear-gradient(to bottom, rgba(231, 237, 245, .28), rgba(255, 255, 255, .65));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .75fr .75fr 1fr;
  gap: 30px;
}

.footer-brand img {
  width: 157px;
}

.footer-brand p {
  max-width: 320px;
  margin: 15px 0 21px;
  color: var(--muted);
  font-size: 12px;
}

.footer-socials {
  display: flex;
  gap: 9px;
}

.social {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--global-palette1);
  background: rgba(255, 255, 255, .67);
  font-size: 11px;
  font-weight: 700;
  transition: .25s;
}

.social:hover {
  color: white;
  background: var(--global-palette1);
  transform: translateY(-2px);
}

.footer-col h3 {
  margin: 4px 0 15px;
  color: var(--global-palette5);
  font-size: 12px;
  letter-spacing: 0;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-col li,
.footer-col a {
  color: var(--muted);
  font-size: 12px;
}

.footer-col a:hover {
  color: var(--global-palette1);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact div {
  display: grid;
  gap: 2px;
}

.footer-contact b {
  color: var(--global-palette5);
  font-size: 11px;
}

.footer-contact span,
.footer-contact a {
  color: var(--muted);
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 27px;
  margin-top: 45px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.footer-bottom a:hover {
  color: var(--global-palette1);
}

.cursor-dot,
.cursor-ring {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 300;
  transform: translate(-50%, -50%);
  transition: opacity .25s, width .2s, height .2s, background .2s;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--global-palette1);
}

.cursor-ring {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(18, 79, 152, .38);
  border-radius: 50%;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.ready {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 36px, 850px);
  }

  .nav-shell {
    width: min(100% - 20px, 900px);
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 75px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(19px);
    box-shadow: var(--shadow);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: .25s var(--ease);
  }

  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .nav-links a::after {
    left: 14px;
    bottom: 7px;
    transform: none;
  }

  .nav-links a:hover::after,
  .nav-links a[aria-current='page']::after {
    width: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 95px;
  }

  .hero-grid,
  .split-head,
  .process-wrap,
  .about-story,
  .team-commitment,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual {
    min-height: 460px;
    max-width: 670px;
    width: 100%;
    margin-inline: auto;
  }

  .dashboard-card {
    inset: 30px 20px 0 36px;
  }

  .stack-copy {
    position: relative;
    top: auto;
    width: 100%;
    margin-bottom: 22px;
  }

  .stack-cards {
    width: 100%;
    padding-top: 0;
  }

  .stack-card {
    position: relative;
    top: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .process-wrap {
    gap: 25px;
  }

  .process-visual {
    padding-left: 0;
  }

  .process-line {
    left: 19px;
  }

  .case-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-card:last-child,
  .article-card:last-child {
    grid-column: span 2;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-col:last-child {
    grid-column: span 3;
  }

  .service-feature {
    grid-template-columns: 1fr;
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .article-art {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 30px);
    --radius-xl: 25px;
  }

  body {
    font-size: 14px;
  }

  .brand img {
    width: 130px;
  }

  .nav-shell {
    min-height: 58px;
    padding: 7px 7px 7px 14px;
    border-radius: 17px;
  }

  .site-header.scrolled .nav-shell {
    min-height: 56px;
  }

  .hero {
    padding: 78px 0 52px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    gap: 9px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .dashboard-card {
    inset: 24px 0 0 12px;
    padding: 17px;
  }

  .chart {
    height: 142px;
  }

  .metric-row {
    gap: 6px;
  }

  .metric {
    padding: 10px 8px;
  }

  .metric b {
    font-size: 15px;
  }

  .floating-note {
    padding: 10px 11px;
  }

  .note-left {
    left: -7px;
    top: 56px;
  }

  .note-right {
    right: -5px;
    bottom: 9px;
  }

  .orbit {
    width: 85px;
    height: 85px;
    right: 0;
    top: -9px;
  }

  .logo-strip {
    padding-bottom: 50px;
  }

  .logo-strip-inner {
    display: grid;
    justify-content: stretch;
  }

  .partner-mini {
    justify-content: flex-start;
  }

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 54px 0;
  }

  .split-head {
    gap: 17px;
    margin-bottom: 29px;
  }

  .stack-card {
    min-height: 0;
    padding: 21px;
    grid-template-columns: 44px 1fr;
    gap: 13px;
  }

  .stack-link {
    display: none;
  }

  .stack-index {
    width: 43px;
    height: 43px;
    border-radius: 13px;
  }

  .stats-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-panel,
  .partner-card,
  .testimonial,
  .cta-surface,
  .service-feature,
  .commitment-card,
  .contact-details,
  .contact-form {
    padding: 25px;
  }

  .testimonial {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quote-mark {
    font-size: 50px;
  }

  .process-item {
    grid-template-columns: 35px 1fr;
    padding: 15px;
  }

  .process-dot {
    margin-left: 7px;
  }

  .process-line {
    left: 14px;
  }

  .case-grid,
  .article-grid,
  .service-deck,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .case-card:last-child,
  .article-card:last-child {
    grid-column: auto;
  }

  .case-card {
    min-height: 350px;
  }

  .cta-surface {
    border-radius: 25px;
  }

  .page-hero {
    padding: 105px 0 54px;
  }

  .service-card {
    min-height: 0;
  }

  .values-grid {
    margin-top: 24px;
  }

  .team-commitment {
    gap: 18px;
  }

  .article-copy {
    padding: 26px;
  }

  .article-art .content-card {
    right: 21px;
    top: 50px;
  }

  .blog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-mini {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

  .footer-col:last-child {
    grid-column: span 2;
  }

  .footer-bottom {
    display: grid;
    margin-top: 33px;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/* --------------------------------------------------------------------------
   Motion refinement — calm, deliberate and conversion-first.
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.service-motion-section {
  padding-top: 32px;
  overflow: clip;
}

.service-motion-head {
  max-width: 730px;
  margin: 0 0 72px;
}

.service-motion-head h2 {
  max-width: 710px;
  margin: 14px 0 18px;
}

.service-motion-head .lead {
  max-width: 670px;
}

/* The service list is a visual sequence rather than a dashboard grid. */
.service-deck {
  counter-reset: service;
  display: block;
  max-width: 860px;
  margin-left: auto;
  padding: 1px 0 20vh;
  position: relative;
}

.service-deck::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 -44px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(18, 79, 152, .18) 8%, rgba(71, 201, 243, .45) 52%, rgba(18, 79, 152, .12) 92%, transparent);
}

.service-deck::after {
  content: '';
  position: sticky;
  display: block;
  top: 119px;
  width: 12px;
  height: 12px;
  margin: -18px 0 0 -50px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--global-palette2);
  box-shadow: 0 0 0 1px rgba(18, 79, 152, .24), 0 0 0 9px rgba(71, 201, 243, .10), 0 9px 18px rgba(18, 79, 152, .12);
}

.service-deck .service-motion-card {
  --card-accent: var(--global-palette1);
  counter-increment: service;
  position: sticky;
  top: 112px;
  min-height: 318px;
  margin: 0 0 21vh;
  padding: 38px 42px 35px 112px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(18, 79, 152, .15);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(247, 251, 255, .78));
  box-shadow: 0 24px 58px rgba(7, 27, 56, .10), inset 0 1px 0 rgba(255, 255, 255, .92);
  transform-origin: 50% 50%;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.service-deck .service-motion-card:nth-child(even) {
  margin-left: 7%;
}

.service-deck .service-motion-card:nth-child(3n) {
  --card-accent: var(--global-palette2);
}

.service-deck .service-motion-card:nth-child(4n) {
  --card-accent: var(--global-palette3);
}

.service-deck .service-motion-card::before {
  content: '0' counter(service);
  position: absolute;
  top: 38px;
  left: 37px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 79, 152, .14);
  border-radius: 16px;
  color: var(--global-palette1);
  background: rgba(255, 255, 255, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92), 0 8px 18px rgba(7, 27, 56, .06);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.service-deck .service-motion-card::after {
  width: 235px;
  height: 235px;
  right: -76px;
  bottom: -118px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 22%, transparent);
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--card-accent) 10%, transparent), transparent 67%);
  transition: transform .55s var(--ease), opacity .55s var(--ease);
}

.service-deck .service-motion-card:hover {
  border-color: rgba(71, 201, 243, .78);
  background: linear-gradient(135deg, #fff, rgba(235, 249, 255, .84));
  box-shadow: 0 30px 64px rgba(7, 27, 56, .14), inset 0 1px 0 #fff;
  transform: none;
}

.service-deck .service-motion-card:hover::after {
  transform: scale(1.13);
}

.service-deck .service-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  color: var(--card-accent);
  border-color: color-mix(in srgb, var(--card-accent) 22%, transparent);
  background: linear-gradient(135deg, rgba(255, 255, 255, .87), color-mix(in srgb, var(--card-accent) 10%, transparent));
}

.service-deck .service-card h3 {
  max-width: 520px;
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.2vw, 2.12rem);
}

.service-deck .service-card p {
  max-width: 560px;
  margin-bottom: 23px;
  font-size: 13px;
}

.service-deck .service-card .btn-ghost {
  color: var(--card-accent);
}

.service-deck .service-card.from-center::before {
  box-shadow: 0 0 0 1px rgba(18, 79, 152, .13), 0 0 0 7px rgba(71, 201, 243, .08), 0 8px 18px rgba(7, 27, 56, .07);
}

/* Rebuilt process rail: restrained numbered nodes with one obvious reading direction. */
.process-visual {
  padding: 8px 0 8px 0;
}

.process-list {
  counter-reset: process;
  gap: 10px;
}

.process-line {
  left: 32px;
  top: 47px;
  bottom: 47px;
  width: 2px;
  overflow: visible;
  background: linear-gradient(to bottom, rgba(18, 79, 152, .10), rgba(18, 79, 152, .20), rgba(18, 79, 152, .10));
}

.process-line::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: 999px;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, .35) 0 6px, transparent 6px 12px);
  mix-blend-mode: screen;
}

.process-line span {
  height: 100%;
  transform: scaleY(0);
  transform-origin: top center;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--global-palette2), var(--global-palette1));
  box-shadow: 0 0 18px rgba(71, 201, 243, .45);
}

.process-item {
  counter-increment: process;
  grid-template-columns: 74px 1fr;
  gap: 17px;
  min-height: 105px;
  padding: 22px 22px 22px 0;
  border: 1px solid transparent;
  border-radius: 20px;
  transform: none;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.process-item:hover,
.process-item.is-active {
  transform: none;
  border-color: rgba(18, 79, 152, .12);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 14px 31px rgba(7, 27, 56, .06);
}

.process-dot {
  width: 28px;
  height: 28px;
  margin: 0 0 0 19px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  background: var(--global-palette8);
  box-shadow: 0 0 0 1px rgba(18, 79, 152, .16), 0 5px 12px rgba(7, 27, 56, .07);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease), color .35s var(--ease);
}

.process-dot::after {
  content: '0' counter(process);
  color: var(--global-palette1);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .02em;
}

.process-item.is-active .process-dot {
  background: var(--global-palette1);
  box-shadow: 0 0 0 1px rgba(18, 79, 152, .20), 0 0 0 8px rgba(71, 201, 243, .12), 0 10px 22px rgba(18, 79, 152, .20);
  transform: scale(1.08);
}

.process-item.is-active .process-dot::after {
  color: #fff;
}

.process-item h3 {
  margin: 1px 0 6px;
}

.process-item p {
  max-width: 580px;
}

@media (max-width: 980px) {
  .service-motion-section {
    padding-top: 12px;
  }

  .service-motion-head {
    margin-bottom: 35px;
  }

  .service-deck {
    max-width: none;
    padding-bottom: 0;
  }

  .service-deck::before,
  .service-deck::after {
    display: none;
  }

  .service-deck .service-motion-card,
  .service-deck .service-motion-card:nth-child(even) {
    position: relative;
    top: auto;
    min-height: 0;
    margin: 0 0 16px;
    padding: 31px 30px 30px 98px;
  }

  .process-line {
    left: 27px;
  }

  .process-item {
    grid-template-columns: 64px 1fr;
  }

  .process-dot {
    margin-left: 14px;
  }
}

@media (max-width: 640px) {
  .service-motion-head {
    margin-bottom: 28px;
  }

  .service-deck .service-motion-card,
  .service-deck .service-motion-card:nth-child(even) {
    padding: 28px 22px 26px 78px;
    border-radius: 22px;
  }

  .service-deck .service-motion-card::before {
    left: 20px;
    top: 28px;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    font-size: 9px;
  }

  .service-deck .service-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    border-radius: 14px;
  }

  .service-deck .service-card h3 {
    font-size: 1.42rem;
  }

  .service-deck .service-card p {
    font-size: 12px;
  }

  .process-visual {
    padding-top: 0;
  }

  .process-line {
    left: 22px;
    top: 42px;
    bottom: 42px;
  }

  .process-item {
    grid-template-columns: 55px 1fr;
    min-height: 0;
    padding: 18px 14px 18px 0;
  }

  .process-dot {
    width: 25px;
    height: 25px;
    margin-left: 10px;
  }
}





















:root {
  --bd-blue: #124f98;
  --bd-dark: #0b1b31;
  --bd-text: #132238;
  --bd-muted: #6b7788;
  --bd-border: #dfe7f0;
  --bd-soft-blue: #edf5ff;
}

.bd-services-showcase {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: var(--bd-text);
  padding: 120px 0 0;
}

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

.bd-services-heading {
  max-width: 730px;
  margin-bottom: 72px;
}

.bd-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--bd-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.bd-services-heading h2 {
  max-width: 700px;
  margin: 0;
  color: var(--bd-text);
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.bd-services-heading p {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--bd-muted);
  font-size: 17px;
  line-height: 1.7;
}

.bd-services-experience {
  position: relative;
}

.bd-services-pin {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(36px, 7vw, 120px);
  min-height: 100vh;
  padding: 30px 0 80px;
  align-items: center;
  top: 60px;
}

/* LEFT SERVICE LIST */
.bd-service-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--bd-border);
}

.bd-service-item {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--bd-border);
  background: transparent;
  color: #8793a3;
  text-align: left;
  cursor: pointer;
  transition: color 0.35s ease, padding-left 0.35s ease;
}

.bd-service-item::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 10px;
  background: var(--bd-blue);
  content: "";
  transform: translateY(-50%);
  transition: height 0.35s ease;
}

.bd-service-item:hover,
.bd-service-item.active {
  color: var(--bd-text);
  padding-left: 16px;
}

.bd-service-item.active::before {
  height: 46%;
}

.bd-service-number {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.bd-service-name {
  font-size: clamp(16px, 1.45vw, 21px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

/* RIGHT IMAGE AREA */
.bd-service-visuals {
  position: relative;
  min-height: min(650px, 70vh);
  overflow: hidden;
  border: 1px solid #dce6f1;
  border-radius: 24px;
  background: #f4f8fc;
  box-shadow: 0 24px 70px rgba(18, 79, 152, 0.12);
}

.bd-service-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.07);
}

.bd-service-visual.active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.bd-service-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bd-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 27, 50, 0.88) 0%,
      rgba(7, 27, 50, 0.48) 50%,
      rgba(7, 27, 50, 0.1) 100%
    ),
    linear-gradient(
      0deg,
      rgba(7, 27, 50, 0.55) 0%,
      transparent 58%
    );
}

.bd-visual-content {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 5vw, 64px);
  right: 28px;
  bottom: clamp(28px, 7vw, 68px);
  max-width: 540px;
  color: #ffffff;
}

.bd-visual-content span {
  display: block;
  margin-bottom: 12px;
  color: #b9d8ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bd-visual-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.bd-visual-content p {
  max-width: 450px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.65;
}

.bd-progress-line {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 24px;
  width: 120px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.bd-progress-line span {
  display: block;
  width: 14.28%;
  height: 100%;
  background: #ffffff;
  transform-origin: left center;
}

/* TABLET */
@media (max-width: 900px) {
  .bd-services-showcase {
    padding-top: 30px;
  }

  .bd-services-pin {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 48px;
  }

  .bd-service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
    border-top: 0;
  }

  .bd-service-item {
    padding: 15px 0;
  }

  .bd-service-visuals {
    min-height: 520px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .bd-container {
    width: min(100% - 32px, 1320px);
  }

  .bd-services-heading {
    margin-bottom: 40px;
  }

  .bd-services-heading p {
    font-size: 15px;
  }

  .bd-services-pin {
    min-height: 100svh;
    gap: 24px;
  }

  .bd-service-list {
    grid-template-columns: 1fr;
  }

  .bd-service-item {
    grid-template-columns: 35px 1fr;
    padding: 12px 0;
  }

  .bd-service-item:hover,
  .bd-service-item.active {
    padding-left: 10px;
  }

  .bd-service-name {
    font-size: 15px;
  }

  .bd-service-visuals {
    min-height: 450px;
    border-radius: 18px;
  }

  .bd-visual-content h3 {
    font-size: 34px;
  }

  .bd-visual-content p {
    font-size: 14px;
  }
}