:root {
  --paper: #f5f7f4;
  --paper-2: #fffefb;
  --ink: #081217;
  --text: #2f3336;
  --muted: #6e7477;
  --line: #dfe4df;
  --red: #42d7b6;
  --pink: #2cd6aa;
  --violet: #1b5f64;
  --blue: #071b24;
  --cyan: #42d7b6;
  --lime: #9cf2d7;
  --shadow: 0 30px 90px rgba(18, 24, 28, 0.11);
  --shadow-strong: 0 34px 120px rgba(14, 21, 25, 0.18);
  --glass: rgba(255, 255, 255, 0.68);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(66, 215, 182, 0.14), transparent 25%),
    radial-gradient(circle at 86% 6%, rgba(255, 59, 37, 0.08), transparent 28%),
    radial-gradient(circle at 60% 92%, rgba(27, 95, 100, 0.10), transparent 34%),
    var(--paper);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.65), transparent 34%),
    repeating-linear-gradient(90deg, rgba(23, 18, 20, 0.018) 0 1px, transparent 1px 72px);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 30%, rgba(66, 215, 182, 0.12), transparent 22%),
    radial-gradient(circle at 78% 24%, rgba(255, 59, 37, 0.08), transparent 24%),
    radial-gradient(circle at 60% 72%, rgba(27, 95, 100, 0.10), transparent 28%);
  filter: blur(26px);
  animation: ambientShift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes ambientShift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }

  100% {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  pointer-events: none;
}

.nav-wrap {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(23, 18, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 24px 80px rgba(23, 18, 20, 0.12);
  backdrop-filter: blur(20px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  /* justify-content: center; */
  width: 178px;
  min-height: 44px;
  padding: 8px 0px;
  /* border: 1px solid rgba(255,255,255,0.16); */
  /* border-radius: 12px; */
  /* background: #071014; */
  /* box-shadow: inset 0 0 0 1px rgba(66,215,182,0.18), 0 16px 40px rgba(8,18,23,0.16); */
}

.brand img {
  width: 154px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(23, 18, 20, 0.08);
  border-radius: 999px;
  background: rgba(23, 18, 20, 0.04);
  color: #39332f;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 15px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--red);
  background: white;
  transform: translateY(-1px);
}

.header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px 0 20px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.header-cta i {
  position: relative;
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 50%;
  background: var(--cyan);
  transition: transform 0.25s ease;
}

.header-cta i::before {
  content: "->";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.header-cta:hover i {
  transform: rotate(45deg);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #071014, #0b5f5a);
  box-shadow: 0 18px 42px rgba(8, 18, 23, 0.22);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(23, 18, 20, 0.16);
}

.btn-light {
  color: var(--blue);
  background: white;
}

.btn-dark {
  color: white;
  background: var(--ink);
}

.hero {
  min-height: 88vh;
  position: relative;
  padding: 138px 0 82px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 252, 0.72), rgba(245, 247, 244, 1)),
    radial-gradient(circle at 76% 25%, rgba(66, 215, 182, 0.16), transparent 26%),
    radial-gradient(circle at 88% 68%, rgba(255, 59, 37, 0.10), transparent 28%),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  background-image:
    linear-gradient(rgba(23, 18, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 18, 20, 0.045) 1px, transparent 1px);
  background-size: 74px 74px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.58;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(430px, 33vw, 520px);
  /* gap: clamp(36px, 5vw, 72px); */
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #128d78;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero-title,
.section-title,
.contact-title {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hero-title {
  max-width: 840px;
  margin: 24px 0 0;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.98;
}

.hero-title span,
.section-title span {
  color: #0bb391;
}

.hero-title .rotating-word {
  position: relative;
  display: inline-grid;
  min-width: 5.9ch;
  vertical-align: baseline;
  color: #0bb391;
}

.hero-title .rotating-word span {
  grid-area: 1 / 1;
  color: inherit;
  opacity: 0;
  transform: translateY(0.36em);
  animation: rotateHeroWord 6s cubic-bezier(.2, .8, .2, 1) infinite;
}

.hero-title .rotating-word span:nth-child(2) {
  animation-delay: 2s;
}

.hero-title .rotating-word span:nth-child(3) {
  animation-delay: 4s;
}

@keyframes rotateHeroWord {
  0% {
    opacity: 0;
    transform: translateY(0.36em);
  }

  8%,
  28% {
    opacity: 1;
    transform: translateY(0);
  }

  36%,
  100% {
    opacity: 0;
    transform: translateY(-0.32em);
  }
}

.hero-text {
  max-width: 625px;
  margin: 24px 0 0;
  color: #5d5650;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.metric-scene {
  position: relative;
  min-height: clamp(380px, 31vw, 430px);
  border: 1px solid rgba(23, 18, 20, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 50% 50%, rgba(75, 21, 145, 0.08), transparent 56%);
  box-shadow: 0 30px 90px rgba(43, 28, 21, 0.1);
  overflow: hidden;
  padding: 0;
}

.proof-item {
  position: absolute;
  width: clamp(176px, 37%, 220px);
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(23, 18, 20, 0.09);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(43, 28, 21, 0.1);
  animation: floatCard 5.8s ease-in-out infinite;
}

.proof-item strong {
  color: var(--violet);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.proof-item span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
  font-size: 13px;
}

.proof-a {
  left: 8%;
  top: 8%;
}

.proof-b {
  right: 6%;
  top: 38%;
  animation-delay: -1.6s;
}

.proof-c {
  left: 13%;
  bottom: 10%;
  animation-delay: -3s;
}

.metric-orbit {
  position: absolute;
  inset: 18% 15%;
  border: 1px solid rgba(75, 21, 145, 0.18);
  border-radius: 50%;
  animation: rotateOrbit 22s linear infinite;
}

.metric-orbit::before,
.metric-orbit::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 32px rgba(243, 50, 31, 0.55);
}

.metric-orbit::before {
  left: 50%;
  top: -7px;
}

.metric-orbit::after {
  right: 10%;
  bottom: 12%;
  background: var(--cyan);
  box-shadow: 0 0 32px rgba(33, 197, 199, 0.55);
}

.metric-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(118px, 26%, 150px);
  height: clamp(118px, 26%, 150px);
  display: grid;
  place-items: center;
  align-content: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: white;
  background: radial-gradient(circle at 35% 25%, #65f2d0, var(--cyan) 42%, #0d3f42);
  box-shadow: 0 26px 80px rgba(66, 215, 182, 0.25);
}

.metric-core span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-core strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.04em;
}

@keyframes rotateOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) clamp(390px, 36vw, 470px);
    gap: 44px;
  }

  .hero-title {
    font-size: clamp(44px, 5.6vw, 76px);
  }
}

.ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg,
      #071014,
      #0c4949,
      #42d7b6);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: tickerLoop 25s linear infinite;
  will-change: transform;
}

.ticker-track span {
  flex-shrink: 0;
  padding: 10px 34px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ticker-track span::after {
  content: "/";
  margin-left: 34px;
  opacity: .55;
}

@keyframes tickerLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

@keyframes tickerLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

.client-strip {
  margin: 40px 0;
  padding: 36px 0;

  background:
    rgba(255, 255, 255, .75);

  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 24px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .04);

  backdrop-filter: blur(12px);
}

.client-strip .container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: center;
}

.client-header p {
  margin: 0;
  color: #6b7174;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.6;
}

.logo-marquee {
  overflow: hidden;
  position: relative;
}



.logo-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: logoScroll 40s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-track img{
  height:46px;
  width:auto;
  object-fit:contain;

  opacity:.65;

  transition:
    transform .35s ease,
    opacity .35s ease;
}

.logo-track img:hover{
  opacity:1;
  transform:translateY(-4px) scale(1.04);
}

@keyframes logoScroll {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}

@media(max-width:768px) {

  .client-strip .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .client-header {
    text-align: center;
  }

  .logo-track {
    gap: 45px;
  }

  .logo-track img {
    height: 32px;
  }

}

.client-inner {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  padding: 34px 0;
}

.client-inner p {
  max-width: 180px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 34px;
  color: #969087;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.section {
  position: relative;
  padding: 48px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 28px auto auto 50%;
  width: min(520px, 44vw);
  height: min(520px, 44vw);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(33, 197, 199, 0.08), transparent 62%);
  transform: translateX(-50%);
  filter: blur(10px);
  pointer-events: none;
  opacity: 0.7;
}

.section>.container {
  position: relative;
  z-index: 1;
}

.section-head {
  margin-bottom: 46px;
}

.section-head.center {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 54px;
  align-items: end;
}

.section-title {
  max-width: 900px;
  margin: 16px 0 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
}

.section-title.compact {
  max-width: 760px;
}

.section-lede {
  margin: 18px 0 0;
  /* color: var(--muted); */
  font-size: 16px;
  line-height: 1.72;
}

.gap-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(66, 215, 182, 0.10), transparent 26%),
    linear-gradient(180deg, rgba(27, 95, 100, 0.055), transparent 55%),
    var(--paper);
}

.gap-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.16fr 1fr;
  gap: 26px;
  align-items: center;
  margin-top: 54px;
}

.gap-map::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(66, 215, 182, 0.42), transparent);
}

.gap-card {
  position: relative;
  z-index: 1;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(23, 18, 20, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.54));
  box-shadow: 0 24px 70px rgba(42, 24, 16, 0.06);
  backdrop-filter: blur(16px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.gap-card.dim {
  opacity: .45;
  filter: grayscale(.2);
  transition:
    opacity .45s ease,
    transform .45s ease,
    filter .45s ease,
    box-shadow .45s ease;
}

.gap-card.dim:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-10px);
}

.gap-card.featured {
  position: relative;
  min-height: 320px;
  border: 2px solid rgba(6, 214, 160, .4);
  background:
    radial-gradient(circle at top right,
      rgba(6, 214, 160, .18),
      transparent 40%),
    linear-gradient(135deg,
      rgba(255, 255, 255, .98),
      rgba(255, 255, 255, .92));

  box-shadow:
    0 30px 100px rgba(6, 214, 160, .18),
    0 0 0 1px rgba(6, 214, 160, .12);

  transform: scale(1.06);
  z-index: 5;
  overflow: hidden;
}

.gap-map {
  align-items: center;
}

.gap-card.featured h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 12px;
}

.gap-card.featured p {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

.gap-map::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 2px;

  background: linear-gradient(90deg,
      transparent,
      rgba(6, 214, 160, .6),
      transparent);
}

.gap-card.featured::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(6, 214, 160, .08);
  top: -40px;
  right: -40px;
}

.gap-card.featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;

  background: linear-gradient(135deg,
      #06D6A0,
      #063141,
      #06D6A0);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  animation: borderGlow 4s linear infinite;
}

@keyframes borderGlow {
  100% {
    filter: hue-rotate(360deg);
  }
}

.growth-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.growth-logo img {
  width: 170px;
  height: auto;
  display: block;
  transition: all .4s ease;
  filter:
    drop-shadow(0 0 20px rgba(6, 214, 160, .2));
}

.gap-card.featured:hover .growth-logo img {
  transform: scale(1.05);
}

.gap-card:hover {
  transform: translateY(-8px);
  border-color: rgba(66, 215, 182, 0.28);
  box-shadow: var(--shadow);
}


.gap-card.dim {
  opacity: .45 !important;
  filter: grayscale(.25);
  transition: all .45s ease;
}

.gap-card.dim:hover {
  opacity: 1 !important;
  filter: none;
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.gap-map:hover .gap-card.dim {
  opacity: .25;
}

.gap-map .gap-card.dim:hover {
  opacity: 1 !important;
}

.tag,
.label {
  width: max-content;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tag {
  margin-bottom: 14px;
  padding: 7px 11px;
  color: white;
  background: #071014;
}

.card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 12px;
  color: #0b8f79;
  background: rgba(66, 215, 182, 0.12);
  font-weight: 900;
}

.gap-card h3,
.service-card h3,
.industry-card h3 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.gap-card p,
.service-card p,
.industry-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.gap-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 850px;
  margin: 50px auto 0;
  text-align: center;
}

.gap-cta h3 {
  margin: 0;
  color: #0b5f5a;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.gap-cta div {
  display: flex;
  gap: 12px;
}

.solutions-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(66, 215, 182, 0.14), transparent 28%),
    var(--paper-2);
}

.featured-slider {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(66, 215, 182, 0.24), transparent 28%),
    var(--blue);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.featured-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(.2, .8, .2, 1);
}

.featured-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(340px, 1fr);
  gap: 0;
  opacity: 0.34;
  transition: opacity 0.45s ease;
}

.featured-slide.active {
  opacity: 1;
}

.featured-slide>div:first-child {
  padding: 42px 42px 86px;
}

.label {
  padding: 8px 11px;
  color: var(--lime);
  background: rgba(66, 215, 182, 0.12);
}

.featured-slide h3 {
  max-width: 430px;
  margin: 18px 0 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.featured-slide p {
  max-width: 470px;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.feature-controls {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(3, 27, 49, 0.55);
  backdrop-filter: blur(14px);
}

.feature-controls button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.feature-controls button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

.feature-controls span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.feature-controls .active-dot {
  width: 30px;
  background: var(--cyan);
}

.campaign-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background:
    radial-gradient(circle at 66% 45%, rgba(66, 215, 182, 0.38), transparent 26%),
    radial-gradient(circle at 42% 54%, rgba(255, 59, 37, 0.16), transparent 24%);
}

.campaign-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 55%, black, transparent 72%);
  pointer-events: none;
}

.campaign-visual.brand-engine {
  background:
    radial-gradient(circle at 65% 34%, rgba(66, 215, 182, 0.34), transparent 26%),
    radial-gradient(circle at 42% 58%, rgba(156, 242, 215, 0.28), transparent 25%);
}

.campaign-visual.digital-system {
  background:
    radial-gradient(circle at 66% 45%, rgba(27, 95, 100, 0.42), transparent 26%),
    radial-gradient(circle at 42% 54%, rgba(66, 215, 182, 0.38), transparent 24%);
}

.visual-rings {
  position: absolute;
  inset: 18% 8%;
  border-radius: 999px;
  transform: skewX(-18deg);
  background: repeating-linear-gradient(90deg, rgba(33, 197, 199, 0.18) 0 24px, rgba(255, 255, 255, 0.04) 24px 52px);
  animation: drift 5s ease-in-out infinite;
}

.dash-card {
  position: absolute;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 27, 49, 0.74);
  backdrop-filter: blur(14px);
}

.dash-card.main {
  left: 10%;
  right: 12%;
  bottom: 42px;
  padding: 22px;
}

.dash-card span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dash-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 34px;
}

.dash-card.mini {
  min-width: 112px;
  padding: 15px;
}

.dash-card.one {
  right: 12%;
  top: 58px;
}

.dash-card.two {
  left: 12%;
  top: 108px;
}

@keyframes drift {
  50% {
    transform: skewX(-18deg) translateX(24px);
  }
}

.service-grid {
  counter-reset: service;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  padding: 1px;
  border: 1px solid rgba(11, 179, 145, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(11, 179, 145, 0.32), rgba(8, 18, 23, 0.10), rgba(11, 179, 145, 0.18));
  box-shadow:
    0 34px 110px rgba(8, 18, 23, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.50);
  overflow: hidden;
}

.service-card {
  counter-increment: service;
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 24px 26px;
  border: 0;
  border-radius: 0;
  color: white;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #071217;
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.service-card::before {
  content: counter(service, decimal-leading-zero);
  position: absolute;
  top: 24px;
  right: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 179, 145, 0.30);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 35% 25%, rgba(11, 179, 145, 0.28), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 34px rgba(11, 179, 145, 0.10);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  z-index: 2;
}





























/* --- Premium Lite Service Grid (5 Columns) --- */

.premium-service-grid {
  counter-reset: premium-service;
  display: grid;
  /* Forces exactly 5 equal columns */
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px; /* Slightly tighter gap to fit 5 columns well */
  margin-top: 32px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-service-card {
  counter-increment: premium-service;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 32px 20px 28px; /* Adjusted padding for tighter 5-column fit */
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), 
              box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.4s ease;
}

/* Elegant numbering system */
.premium-service-card::before {
  content: "0" counter(premium-service);
  position: absolute;
  top: 24px;
  right: 20px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #a0abb8;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

/* Subtle top accent line that expands on hover */
.premium-service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #42d7b6, #2cd6aa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Hover Interactions */
.premium-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  border-color: rgba(66, 215, 182, 0.3);
}

.premium-service-card:hover::after {
  transform: scaleX(1);
}

.premium-service-card:hover::before {
  color: #0b5f5a; 
}

/* Typography adjustments for 5 columns */
.premium-service-card h3 {
  margin: 24px 0 0;
  color: #081217;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px; /* Slightly smaller for narrow columns */
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.premium-service-card p {
  margin: 14px 0 0;
  color: #5d6569;
  font-size: 13px; /* Slightly smaller for narrow columns */
  line-height: 1.6;
  flex-grow: 1; 
}

/* Premium Tags */
.premium-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}

.premium-service-tags span {
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #4a545c;
  background: #f1f4f7;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.premium-service-card:hover .premium-service-tags span {
  background: #ffffff;
  border-color: #e0e6ec;
}

/* Responsive adjustments (keeps it looking good on smaller screens) */
@media (max-width: 1200px) {
  .premium-service-grid {
    grid-template-columns: repeat(3, 1fr); /* Drops to 3 columns on tablets/small laptops */
  }
}

@media (max-width: 768px) {
  .premium-service-grid {
    grid-template-columns: repeat(2, 1fr); /* Drops to 2 columns on large phones */
  }
}

@media (max-width: 580px) {
  .premium-service-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    padding: 0;
    background: transparent;
    border: none;
  }
  
  .premium-service-card {
    min-height: auto;
    padding: 32px 24px;
  }
}


























/* --- Premium Lite Industry Grid --- */

.premium-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.premium-industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

/* Icon Styling */
.industry-icon-wrapper {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 14px;
  background: #f1f8f7; /* Very soft teal background */
  color: #0b5f5a; /* Brand dark teal */
  transition: all 0.4s ease;
}

.industry-icon-wrapper svg {
  width: 24px;
  height: 24px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Typography */
.premium-industry-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 0;
  color: #081217;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.premium-industry-card p {
  margin: 0;
  color: #6e7477;
  font-size: 14px;
  line-height: 1.65;
  flex-grow: 1;
}

/* Interactive Arrow */
.industry-arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  font-size: 20px;
  color: #42d7b6;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* "Hot" / Trending Indicator */
.hot-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ff5f46; /* Warm accent color */
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 95, 70, 0.4);
  animation: pulseHot 2s infinite;
}

@keyframes pulseHot {
  0% { box-shadow: 0 0 0 0 rgba(255, 95, 70, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(255, 95, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 95, 70, 0); }
}

/* Hover Effects */
.premium-industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(11, 95, 90, 0.08);
  border-color: rgba(66, 215, 182, 0.2);
}

.premium-industry-card:hover .industry-icon-wrapper {
  background: linear-gradient(135deg, #42d7b6, #0b5f5a);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(66, 215, 182, 0.3);
}

.premium-industry-card:hover .industry-icon-wrapper svg {
  transform: scale(1.15);
}

.premium-industry-card:hover .industry-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .premium-industry-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets/laptops */
  }
}

@media (max-width: 680px) {
  .premium-industry-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 16px;
  }
  
  .premium-industry-card {
    padding: 24px 20px;
  }
  
  .industry-arrow {
    right: 20px;
    bottom: 24px;
  }
}






































.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #0bb391, rgba(11, 179, 145, 0.16));
  transform: scaleX(0.55);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background:
    radial-gradient(circle at 80% 15%, rgba(11, 179, 145, 0.20), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    #071217;
  box-shadow: 0 34px 110px rgba(8, 18, 23, 0.24);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-index {
  position: relative;
  z-index: 1;
  color: #0bb391;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.service-orb {
  position: absolute;
  right: 20px;
  top: 18px;
  width: 58px;
  height: 58px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 48%);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent),
    color-mix(in srgb, var(--accent), transparent 78%);
  animation: serviceOrb 5.5s ease-in-out infinite;
}

.service-orb::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent), transparent 35%);
}

.service-card h3,
.service-card p,
.service-card a,
.service-tags {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  max-width: 210px;
  margin: 74px 0 0;
  color: white;
  font-size: 21px;
  line-height: 1.15;
}

.service-card p {
  color: rgba(255, 255, 255, 0.62);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.service-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(11, 179, 145, 0.20);
  border-radius: 999px;
  color: rgba(221, 255, 248, 0.86);
  background: rgba(11, 179, 145, 0.08);
  font-size: 11px;
  font-weight: 900;
}

.service-card a {
  width: max-content;
  margin-top: 24px;
  color: #0bb391;
  font-weight: 900;
}

@keyframes serviceOrb {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(10px) rotate(8deg);
  }
}

.process-section {
  overflow: visible;
  color: white;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 12% 16%, rgba(11, 179, 145, 0.16), transparent 28%),
    radial-gradient(circle at 84% 80%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 76% 16%, rgba(11, 179, 145, 0.10), transparent 28%),
    linear-gradient(135deg, #071014, #111a1f 54%, #071219);
  background-size: 72px 72px, 72px 72px, auto, auto, auto, auto;
}

.process-section::before {
  inset: 54px auto auto 50%;
  width: min(760px, 64vw);
  height: min(760px, 64vw);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
  filter: blur(18px);
  opacity: 0.82;
}

.process-section .container {
  display: grid;
  grid-template-columns: minmax(270px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(44px, 6vw, 86px);
  align-items: start;
}

.process-section .section-head {
  position: sticky;
  top: 118px;
  display: block;
  margin-bottom: 0;
}

.process-section .section-title {
  max-width: 520px;
}

.process-section .section-title,
.process-section .eyebrow {
  color: white;
}

.process-section .section-lede {
  color: rgba(255, 255, 255, 0.62);
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 12px 0 12px 52px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 15px;
  right: auto;
  top: 20px;
  bottom: 20px;
  width: 2px;
  height: auto;
  background:
    linear-gradient(180deg, transparent, rgba(11, 179, 145, 0.78), rgba(255, 255, 255, 0.24), rgba(11, 179, 145, 0.72), transparent);
  box-shadow: 0 0 24px rgba(11, 179, 145, 0.18);
  pointer-events: none;
}

.process-steps::after {
  display: none;
}

.process-step {
  position: relative;
  min-height: 214px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px 34px 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035)),
    rgba(7, 18, 23, 0.74);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  opacity: 0.66;
  transform: translateX(18px) scale(0.985);
  transition: transform 0.45s cubic-bezier(.2, .8, .2, 1), background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
  z-index: 1;
}

.process-step:nth-child(1) {
  grid-column: auto;
  align-self: stretch;
}

.process-step:nth-child(2) {
  grid-column: auto;
  align-self: stretch;
}

.process-step:nth-child(3) {
  grid-column: auto;
  align-self: stretch;
}

.process-step:nth-child(4) {
  grid-column: auto;
  align-self: stretch;
}

.process-step:nth-child(5) {
  grid-column: auto;
  align-self: stretch;
}

.process-step::before {
  content: "";
  position: absolute;
  left: -52px;
  top: 44px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #ffffff, #9cf2d7 31%, #0bb391 66%, #075145);
  box-shadow:
    0 0 0 8px rgba(11, 179, 145, 0.08),
    0 0 34px rgba(11, 179, 145, 0.24);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.process-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(11, 179, 145, 0.18), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 30%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.process-step:hover {
  transform: translateX(0) scale(1);
  border-color: rgba(11, 179, 145, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(18, 23, 26, 0.82);
  box-shadow: 0 30px 100px rgba(11, 179, 145, 0.11);
}

.process-step:hover::after,
.process-step.is-active::after {
  opacity: 1;
}

.process-step.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  border-color: rgba(11, 179, 145, 0.42);
  box-shadow:
    0 30px 100px rgba(11, 179, 145, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.process-step.is-active::before {
  transform: scale(1.12);
  box-shadow:
    0 0 0 10px rgba(11, 179, 145, 0.12),
    0 0 42px rgba(11, 179, 145, 0.38);
}

.process-number {
  position: relative;
  top: auto;
  left: auto;
  width: max-content;
  margin-bottom: 28px;
  padding: 8px 12px;
  border: 1px solid rgba(11, 179, 145, 0.22);
  border-radius: 999px;
  color: rgba(221, 255, 248, 0.86);
  background: rgba(11, 179, 145, 0.08);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
}

.process-step h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: white;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.process-step p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.68;
}

.video-section {
  background: var(--paper);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(520px, 1fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
}

.video-copy .section-title {
  max-width: 620px;
}

.video-poster {
  position: relative;
  min-height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 26px;
  cursor: pointer;
  background: #120d10;
  box-shadow: 0 38px 130px rgba(18, 24, 28, 0.22);
  border: 1px solid rgba(23, 18, 20, 0.08);
}

.poster-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(1.08) contrast(1.02);
  pointer-events: none;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 24%, rgba(15, 10, 8, 0.10) 52%, rgba(15, 10, 8, 0.38)),
    linear-gradient(135deg, rgba(243, 50, 31, 0.08), rgba(75, 21, 145, 0.10));
}

.poster-shapes,
.poster-shapes::before,
.poster-shapes::after {
  position: absolute;
  inset: 8%;
  content: "";
  display: none;
  z-index: 1;
}

.poster-shapes::before {
  inset: 14% -6%;
  transform: rotate(180deg);
  animation-delay: -1.8s;
}

.poster-shapes::after {
  inset: -8% 10%;
  animation-delay: -0.7s;
}

.video-open-button {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: white;
  background: rgba(18, 13, 16, 0.62);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.22s ease, background 0.22s ease;
}

.video-open-button span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--ink);
  font-size: 13px;
}

.video-open-button:hover {
  transform: translateY(-2px);
  background: rgba(18, 13, 16, 0.78);
}

@keyframes floatBits {
  50% {
    transform: translateY(-20px) rotate(4deg);
  }
}

.work-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(66, 215, 182, 0.10), transparent 26%),
    var(--paper-2);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: white;
  cursor: pointer;
}

.slider-controls span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4ceda;
}

.slider-controls .active-dot {
  width: 34px;
  border-radius: 999px;
  background: var(--cyan);
}

.case-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 44px;
  padding: 36px;
  border: 1px solid rgba(227, 0, 87, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(227, 0, 87, 0.07), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.case-category {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--pink);
  background: rgba(227, 0, 87, 0.09);
  font-size: 12px;
  font-weight: 900;
}

.case-copy h3 {
  margin: 18px 0 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.case-box {
  margin-top: 20px;
  padding-left: 18px;
  border-left: 4px solid var(--line);
}

.case-box.result {
  border-color: var(--pink);
}

.case-box b {
  color: #66606a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-box p {
  margin: 8px 0 0;
  color: #544e49;
  line-height: 1.66;
}

.product-window {
  min-height: 360px;
  overflow: hidden;
  border: 12px solid #2a2f3a;
  border-radius: 18px;
  background: #eef3f8;
  box-shadow: 0 26px 90px rgba(10, 29, 54, 0.24);
}

.window-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  background: #153e6a;
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.window-body {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 16px;
}

.window-body aside,
.window-body main {
  border: 1px solid #dfe6ee;
  border-radius: 7px;
  background: white;
}

.window-body aside {
  padding: 14px;
}

.window-body aside i,
.window-body main>i {
  display: block;
  height: 11px;
  margin-bottom: 13px;
  border-radius: 999px;
  background: #e1e8f0;
}

.window-body main {
  padding: 15px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.metric-row div {
  min-height: 76px;
  padding: 12px;
  border: 1px solid #e3e9f0;
  border-radius: 7px;
  background: #f8fafc;
}

.metric-row small {
  display: block;
  margin-bottom: 9px;
  color: #7a8797;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-row strong {
  color: var(--blue);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 22px;
}

.impact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.impact-row strong {
  display: block;
  color: var(--violet);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.impact-row span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.people-section {
  color: white;
  background:
    radial-gradient(circle at 82% 16%, rgba(66, 215, 182, 0.30), transparent 26%),
    radial-gradient(circle at 20% 80%, rgba(255, 59, 37, 0.12), transparent 28%),
    linear-gradient(135deg, #071014, #102c2e 58%, #061e2a);
}

.people-section .section-title,
.people-section .eyebrow {
  color: white;
}

.stat-rows {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-row {
  display: grid;
  grid-template-columns: 0.36fr 0.62fr 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-row strong {
  color: var(--cyan);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1;
}

.stat-row h3 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.14;
}

.stat-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.stat-row a {
  min-width: 116px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.industries-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(75, 21, 145, 0.08), transparent 28%),
    var(--paper);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 80px;
}

.industry-card {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  transition: transform 0.25s ease, color 0.25s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  color: var(--violet);
}

.industry-card h3 {
  width: max-content;
  max-width: 100%;
  /* border-bottom: 3px solid currentColor; */
}

.industry-card.hot h3 {
  color: #0b8f79;
}

.testimonials-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 95, 70, 0.08), transparent 28%),
    var(--paper-2);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(23, 18, 20, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62)),
    #f7f4ee;
  box-shadow: 0 24px 70px rgba(42, 24, 16, 0.06);
}

.testimonial-card p {
  margin: 0;
  color: #4d5356;
  font-size: 15px;
  line-height: 1.75;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
}

.testimonial-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
}

.contact-section {
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(66, 215, 182, 0.26), transparent 26%),
    linear-gradient(135deg, #071014, #0b5f5a 56%, #42d7b6);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
}

.contact-section .eyebrow {
  color: white;
}

.contact-title {
  max-width: 850px;
  margin: 16px 0 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
}

.contact-title span {
  color: #9cf2d7;
}

.footer {
  padding: 60px 0 28px;
  color: white;
  background: #101010;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.56fr);
  gap: 42px;
}

.footer-brand {
  color: white;
}

.footer p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
}

.footer nav {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer nav b {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(13, 10, 11, 0.82);
  backdrop-filter: blur(12px);
}

.video-modal.open {
  display: grid;
}

.video-frame {
  width: min(1120px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.48);
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--red);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }

  .process-section .container {
    display: block;
  }

  .process-section .section-head {
    position: relative;
    top: auto;
    margin-bottom: 44px;
  }

  .hero-grid,
  .section-head.split,
  .featured-slide,
  .video-layout,
  .case-card,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .gap-map,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    min-height: auto;
    padding: 12px 0 12px 44px;
  }

  .process-steps::after,
  .process-step::after {
    display: none;
  }

  .process-step {
    grid-column: auto !important;
    align-self: stretch !important;
    min-height: 220px;
  }

  .gap-map::before {
    display: none;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .metric-scene {
    width: min(100%, 560px);
    min-height: 390px;
    justify-self: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header .header-cta {
    min-height: 40px;
    padding: 0 8px 0 14px;
    font-size: 13px;
  }

  .header-cta i {
    width: 28px;
    height: 28px;
  }

  .brand {
    width: 146px;
    min-height: 38px;
    padding: 7px 10px;
  }

  .brand img {
    width: 126px;
  }

  .hero {
    padding: 108px 0 58px;
  }

  .hero-title {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-actions,
  .gap-cta,
  .client-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .client-list {
    justify-content: flex-start;
  }

  .section {
    padding: 37px 0;
  }

  .section-title {
    font-size: clamp(31px, 9vw, 44px);
  }

  .gap-map,
  .service-grid,
  .process-steps,
  .testimonial-grid,
  .industry-grid,
  .impact-row,
  .metric-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    gap: 14px;
    padding: 12px 0 12px 34px;
    border-radius: 20px;
  }

  .process-step {
    min-height: auto;
    padding: 24px 22px 24px;
    border-right: 0;
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step::before {
    top: 30px;
    left: -34px;
    right: auto;
    width: 20px;
    height: 20px;
  }

  .process-number {
    font-size: 11px;
  }

  .featured-slide>div:first-child,
  .case-card {
    padding: 24px;
  }

  .feature-controls {
    right: 24px;
    bottom: 22px;
  }

  .campaign-visual,
  .video-poster {
    min-height: auto;
  }

  .video-open-button {
    right: 14px;
    bottom: 14px;
    min-height: 42px;
    padding-left: 14px;
    font-size: 13px;
  }

  .metric-scene {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 16px;
  }

  .proof-item {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    animation: none;
  }

  .metric-orbit,
  .metric-core {
    display: none;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .window-body aside {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@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-title .rotating-word span:first-child {
    opacity: 1;
    transform: none;
  }
}


.unbend-logo {
  width: 100%;
  height: auto;
  display: block;
  transition:
    transform .6s cubic-bezier(.22, 1, .36, 1),
    filter .6s ease,
    opacity .6s ease;
  transform-origin: center;
}

.brand:hover .unbend-logo {
  transform: scale(1.05);
  filter:
    drop-shadow(0 0 18px rgba(6, 214, 160, .25)) drop-shadow(0 0 30px rgba(6, 214, 160, .15));
}

.footer-brand:hover .unbend-logo {
  transform: translateY(-2px);
  filter:
    drop-shadow(0 0 20px rgba(6, 214, 160, .2));
}

.brand {
  position: relative;
  overflow: hidden;
}

.brand::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    linear-gradient(120deg,
      transparent 30%,
      rgba(6, 214, 160, .18) 50%,
      transparent 70%);
  transform: translateX(-150%) rotate(15deg);
  animation: logoShine 7s infinite;
}

@keyframes logoShine {
  0% {
    transform: translateX(-150%) rotate(15deg);
  }

  20% {
    transform: translateX(150%) rotate(15deg);
  }

  100% {
    transform: translateX(150%) rotate(15deg);
  }
}

.site-header.scrolled .nav-wrap {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(28px);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, .08),
    0 0 0 1px rgba(255, 255, 255, .4);
}


.metric-core {
  animation:
    pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow:
      0 26px 80px rgba(66, 215, 182, .25);
  }

  50% {
    box-shadow:
      0 26px 120px rgba(66, 215, 182, .45);
  }
}


@media (max-width:680px) {

  .brand {
    width: 170px;
    min-height: 44px;
    padding: 8px 12px;
  }

  .brand img {
    width: 150px;
  }

}

@media (max-width: 768px) {

  .gap-cta {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
    padding: 0 10px;
  }

  .gap-cta h3 {
    width: 100%;
    margin: 0;
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.2;
  }

  .gap-cta div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .gap-cta .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

}

@media (max-width:768px) {

  .gap-cta {
    padding: 30px 20px;
    border-radius: 24px;
    background:
      linear-gradient(135deg,
        rgba(6, 214, 160, .05),
        rgba(255, 255, 255, .6));
  }

}
