/* ============================================
   SOLUTIONS.CSS — Solutions Page
   ============================================ */

/* ── HERO ── */
.solutions-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  background: var(--n900);
  overflow: hidden;
  padding-top: var(--header-h);
}

.solutions-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.solutions-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.solutions-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(2, 12, 27, 0.75) 0%,
    rgba(2, 12, 27, 0.4) 50%,
    rgba(2, 12, 27, 0.8) 100%
  );
}
.solutions-hero__grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(26, 111, 240, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 111, 240, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.solutions-hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.5rem var(--pad);
  position: relative;
  z-index: 2;
}

.solutions-hero__title {
  font-family: var(--fs);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.solutions-hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* ── VISION SECTION ── */
.vision {
  background: var(--n800);
  position: relative;
  overflow: hidden;
}

.vision__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem var(--pad);
}

.vision__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.vision__header .eyebrow {
  justify-content: center;
}

.vision__flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
}

/* Wire connector between steps — centered with the 72px icon */
.vision__wire {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(93, 163, 255, 0.08),
    rgba(93, 163, 255, 0.25),
    rgba(93, 163, 255, 0.08)
  );
  margin-top: calc(1.5rem + 36px);
  align-self: flex-start;
  position: relative;
  border-radius: 1px;
}

.vision__wire::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 8px;
  height: 6px;
  background: rgba(93, 163, 255, 0.7);
  border-radius: 50%;
  filter: blur(2px);
  animation: wirePulse 2.5s ease-in-out infinite;
}

@keyframes wirePulse {
  0% {
    left: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 8px);
    opacity: 0;
  }
}

.vision__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  cursor: pointer;
  outline: none;
  padding: 1.5rem 1rem;
  border-radius: var(--r-sm);
  transition: background 0.3s;
}

.vision__step:hover {
  background: rgba(26, 111, 240, 0.06);
}

/* ── NEON ICON ── */
.vision__step-icon {
  width: 72px;
  height: 72px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision__step-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Number: visible by default, hides on hover */
.vision__step-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fs);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue3);
  letter-spacing: 0.02em;
  pointer-events: none;
  z-index: 2;
  transition:
    opacity 0.35s,
    transform 0.35s;
}

/* SVG pictogram: hidden by default, appears on hover */
.vision__step-svg {
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.4s 0.1s,
    transform 0.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision__step:hover .vision__step-num,
.vision__step.is-open .vision__step-num {
  opacity: 0;
  transform: scale(0.5);
}

.vision__step:hover .vision__step-svg,
.vision__step.is-open .vision__step-svg {
  opacity: 1;
  transform: scale(1);
}

/* Loupe icon next to each label */
.vision__step-loupe {
  width: 12px;
  height: 12px;
  stroke: rgba(93, 163, 255, 0.4);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  flex-shrink: 0;
  transition:
    stroke 0.3s,
    transform 0.3s;
}

.vision__step:hover .vision__step-loupe,
.vision__step.is-open .vision__step-loupe {
  stroke: rgba(93, 163, 255, 0.8);
  transform: scale(1.2);
}

.vision__step-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Ring always drawn (static) */
.neon-ring {
  stroke: rgba(93, 163, 255, 0.15);
  stroke-width: 1;
  transition:
    stroke 0.3s,
    filter 0.3s;
}

/* Orbiting blue light around the ring */
.neon-orbit {
  stroke: rgba(93, 163, 255, 0.8);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 8 118;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(93, 163, 255, 0.6));
  animation: neonOrbit 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.vision__step:hover .neon-orbit,
.vision__step.is-open .neon-orbit {
  opacity: 1;
}

@keyframes neonOrbit {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -126;
  }
}

/* Paths and dots */
.neon-path {
  stroke: rgba(93, 163, 255, 0.7);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 4px rgba(93, 163, 255, 0.5));
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  transition:
    stroke-dashoffset 0.6s ease,
    stroke 0.3s,
    filter 0.3s;
}

.neon-dot {
  fill: rgba(93, 163, 255, 0.8);
  stroke: none;
  opacity: 0;
  transition: opacity 0.3s 0.4s;
}

/* On hover/active: draw the paths and show dots */
.vision__step:hover .neon-ring,
.vision__step.is-open .neon-ring {
  stroke: rgba(93, 163, 255, 0.35);
  filter: drop-shadow(0 0 8px rgba(93, 163, 255, 0.3));
}

.vision__step:hover .neon-path,
.vision__step.is-open .neon-path {
  stroke-dashoffset: 0;
  stroke: rgba(93, 163, 255, 1);
  filter: drop-shadow(0 0 8px rgba(93, 163, 255, 0.7));
}

.vision__step:hover .neon-dot,
.vision__step.is-open .neon-dot {
  opacity: 1;
}

/* ── LABEL ── */
.vision__step-label {
  font-family: var(--fs);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

/* ── DESCRIPTION: hidden, reveal on hover/tap ── */
.vision__step-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  text-align: center;
  max-width: 180px;
  margin-top: 0.25rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s 0.05s;
}

.vision__step:hover .vision__step-desc,
.vision__step.is-open .vision__step-desc {
  max-height: 150px;
  opacity: 1;
}

/* ── CORE SOLUTION ── */
.core-solution {
  position: relative;
  overflow: hidden;
}

.core-solution__bg {
  position: absolute;
  inset: 0;
  background: url("../assets/clients/client-logistics.jpg") center/cover
    no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

.core-solution__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 12, 27, 0.88) 0%,
    rgba(2, 12, 27, 0.75) 50%,
    rgba(2, 12, 27, 0.9) 100%
  );
  z-index: 1;
}

.core-solution__grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(26, 111, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 111, 240, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
}

.core-solution__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 5rem var(--pad);
  position: relative;
  z-index: 3;
  text-align: center;
}

.core-solution__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.core-solution__features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.core-solution__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-family: var(--fs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-pill);
  transition: all 0.3s;
}

.core-solution__feature:hover {
  background: rgba(26, 111, 240, 0.1);
  border-color: rgba(93, 163, 255, 0.25);
}

.core-solution__feature svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue3);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.mini-case__stat {
  font-family: var(--fs);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue2);
  line-height: 1;
  white-space: nowrap;
}

.mini-case__desc {
  font-size: 0.85rem;
  color: var(--g500);
  line-height: 1.55;
}

/* ── SOLUTIONS KEY FIGURES ── */
.sol-kf {
  background: var(--n800);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sol-kf__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem var(--pad);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.sol-kf__item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.sol-kf__num {
  font-family: var(--fs);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.sol-kf__label {
  font-size: 0.65rem;
  font-family: var(--fi);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
}

.sol-kf__sep {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── REPAIR SOLUTIONS ── */
.repair-solutions {
  background: var(--n800);
  position: relative;
  overflow: hidden;
}

.repair-solutions__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(2, 12, 27, 0.88) 0%,
    rgba(2, 12, 27, 0.8) 55%,
    rgba(2, 12, 27, 0.9) 100%
  );
}

.repair-solutions__grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(26, 111, 240, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 111, 240, 0.11) 1px, transparent 1px);
  background-size: 48px 48px;
}

.repair-solutions__orb {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 111, 240, 0.25) 0%,
    rgba(26, 111, 240, 0.08) 42%,
    rgba(26, 111, 240, 0) 72%
  );
  z-index: 1;
  pointer-events: none;
}

.repair-solutions__orb--tr {
  top: -150px;
  right: -120px;
}

.repair-solutions__orb--left {
  width: 380px;
  height: 380px;
  bottom: -140px;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(93, 163, 255, 0.22) 0%,
    rgba(93, 163, 255, 0.08) 45%,
    rgba(93, 163, 255, 0) 74%
  );
}

.repair-solutions__orb--center {
  width: 460px;
  height: 460px;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(26, 111, 240, 0.16) 0%,
    rgba(26, 111, 240, 0.07) 45%,
    rgba(26, 111, 240, 0) 76%
  );
}

.repair-solutions__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem var(--pad);
  position: relative;
  z-index: 2;
}

.repair-solutions__header {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.repair-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.repair-card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-sm);
  padding: 2rem;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 36px rgba(2, 12, 27, 0.24);
}

.repair-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(26, 111, 240, 0.42), rgba(255, 255, 255, 0.06), rgba(26, 111, 240, 0.18));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}

.repair-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.repair-card__type {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 0.65rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(93, 163, 255, 0.4);
  background: rgba(26, 111, 240, 0.15);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--fi);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Scan sweep on hover */
.repair-card__scan {
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(93, 163, 255, 0.06),
    transparent
  );
  pointer-events: none;
  z-index: 0;
}

.repair-card:hover .repair-card__scan {
  animation: repairScan 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes repairScan {
  0% {
    left: -60%;
  }
  100% {
    left: 120%;
  }
}

.repair-card:hover {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(93, 163, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-color: rgba(93, 163, 255, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(2, 12, 27, 0.36), 0 0 0 1px rgba(93, 163, 255, 0.2) inset;
}

.repair-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-xs);
  background: rgba(26, 111, 240, 0.12);
  border: 1px solid rgba(26, 111, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s;
}

.repair-card:hover .repair-card__icon {
  background: rgba(26, 111, 240, 0.18);
  border-color: rgba(93, 163, 255, 0.35);
  box-shadow: 0 0 16px rgba(93, 163, 255, 0.15);
}

.repair-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue3);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s;
}

/* Icon animations on hover */
.repair-card:hover .repair-icon--pdr {
  animation: iconPdr 0.6s ease;
}
.repair-card:hover .repair-icon--smart {
  animation: iconSmart 0.5s ease;
}
.repair-card:hover .repair-icon--mech {
  animation: iconMech 0.8s ease;
}

@keyframes iconPdr {
  0%,
  100% {
    transform: rotate(0);
  }
  30% {
    transform: rotate(-12deg);
  }
  60% {
    transform: rotate(6deg);
  }
}

@keyframes iconSmart {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px) rotate(-5deg);
  }
}

@keyframes iconMech {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.repair-card__title {
  font-family: var(--fs);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.repair-card__text {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.repair-card__highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green);
}

/* ── OPERATIONAL SUPPORT ── */
.operational {
  background: var(--g50);
}

.operational__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.operational__visual {
  order: -1;
}

.operational__image-wrapper {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 1.5rem;
}

.operational__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.operational__stat-row {
  display: flex;
  gap: 1.5rem;
}

.operational__stat {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--g100);
  border-radius: var(--r-sm);
  padding: 1.25rem;
  text-align: center;
}

.operational__stat-num {
  font-family: var(--fs);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--blue2);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.operational__stat-label {
  font-size: 0.72rem;
  color: var(--g500);
  letter-spacing: 0.05em;
}

.operational__content .section-title {
  color: var(--g700);
}

.operational__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.operational__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.operational__feature-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-xs);
  background: var(--off);
  border: 1px solid var(--g100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.operational__feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.operational__feature-text {
  font-size: 0.9rem;
  color: var(--g700);
  line-height: 1.5;
}

.operational__text {
  font-size: 0.95rem;
  color: var(--g500);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.operational__mini-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--g100);
  border-radius: var(--r-sm);
}

.operational__mini-stat-num {
  font-family: var(--fs);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.operational__mini-stat-text {
  font-size: 0.82rem;
  color: var(--g500);
  line-height: 1.4;
}

/* ── DATA MINI SECTION ── */
.sol-data {
  position: relative;
  background: var(--n900);
  padding: 3.5rem 0;
  overflow: hidden;
}

.sol-data__grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(26, 111, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 111, 240, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
}

.sol-data__inner {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
  text-align: center;
}

.sol-data__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.sol-data__pills {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sol-data__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-pill);
  font-family: var(--fs);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: all 0.3s;
}

.sol-data__pill:hover {
  background: rgba(26, 111, 240, 0.1);
  border-color: rgba(93, 163, 255, 0.25);
}

.sol-data__pill svg {
  width: 15px;
  height: 15px;
  stroke: var(--blue3);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── CLIENT SOLUTIONS ── */
.client-solutions {
  position: relative;
  overflow: hidden;
  background: var(--n900);
}

/* Client carousel (same as homepage) */
.clients__carousel {
  position: relative;
  overflow: hidden;
}
.clients__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 3;
}
.clients__arrow--prev {
  left: 8px;
}
.clients__arrow--next {
  right: 8px;
}
.clients__arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--blue2);
}
.clients__arrow svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.clients__track {
  display: flex;
  gap: 1rem;
  touch-action: pan-x pinch-zoom;
}
.client-card {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
  flex-shrink: 0;
}
.client-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.client-card:hover .client-card__image {
  transform: scale(1.06);
}
.client-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 12, 27, 0.9) 0%,
    rgba(2, 12, 27, 0.3) 55%,
    transparent 100%
  );
}
.client-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}
.client-card__tag {
  font-family: var(--fs);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.3rem;
}
.client-card__title {
  font-family: var(--fs);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0;
  transition: margin-bottom 0.3s;
}
.client-card:hover .client-card__title {
  margin-bottom: 0.35rem;
}
.client-card__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.4s,
    opacity 0.3s 0.05s;
}
.client-card:hover .client-card__desc,
.client-card.is-tapped .client-card__desc {
  max-height: 80px;
  opacity: 1;
}

.sol-clients-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/index/index-solutions-bg.jpeg") center/cover
    no-repeat;
  opacity: 0.08;
}

.sol-clients-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(2, 12, 27, 0.88) 0%,
    rgba(2, 12, 27, 0.72) 50%,
    rgba(2, 12, 27, 0.88) 100%
  );
}

.client-solutions__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem var(--pad);
  position: relative;
  z-index: 2;
}

.client-solutions__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.client-solutions__header .eyebrow {
  justify-content: center;
}

.client-solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Image-based client cards — compact */
.sol-client-card {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  transition: transform 0.4s var(--ease);
}

.sol-client-card:hover {
  transform: translateY(-4px);
}

.sol-client-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.sol-client-card:hover .sol-client-card__img {
  transform: scale(1.06);
}

.sol-client-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 12, 27, 0.85) 0%,
    rgba(2, 12, 27, 0.2) 60%,
    transparent 100%
  );
  transition: background 0.4s;
}

.sol-client-card:hover .sol-client-card__overlay {
  background: linear-gradient(
    to top,
    rgba(6, 21, 46, 0.92) 0%,
    rgba(6, 21, 46, 0.4) 60%,
    rgba(26, 111, 240, 0.06) 100%
  );
}

.sol-client-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}

.sol-client-card__tag {
  font-family: var(--fs);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.3rem;
}

.sol-client-card__text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ── STRATEGIC PARTNER ── */
.strategic {
  background: var(--n800);
  position: relative;
  overflow: hidden;
}

.strategic__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem var(--pad);
}

.strategic__header {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* Tighter CTA on solutions page */
/* ── CTA FINAL (solutions page) ── */
.cta-final {
  background: linear-gradient(135deg, #0a1628 0%, #0f2247 50%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(26, 111, 240, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-final__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem var(--pad);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-final__eyebrow {
  justify-content: center;
}

.cta-final__title {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-final__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.strategic + .cta-final .cta-final__inner {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.strategic__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.strategic__card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-sm);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.strategic__card:hover {
  background: rgba(26, 111, 240, 0.06);
  border-color: rgba(93, 163, 255, 0.2);
  transform: translateY(-4px);
}

/* Holographic icon container */
.strategic__holo {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  position: relative;
}

.strategic__holo svg {
  width: 100%;
  height: 100%;
}

/* Holographic SVG — unified style */
.strat-shape {
  stroke: rgba(93, 163, 255, 0.35);
  stroke-width: 1.5;
  fill: none;
  transition:
    stroke 0.4s,
    filter 0.4s;
}

.strat-dot-accent {
  fill: rgba(93, 163, 255, 0.3);
  stroke: rgba(93, 163, 255, 0.5);
  stroke-width: 1;
  transition: fill 0.4s;
}

/* Hover — glow up */
.strategic__card:hover .strat-shape {
  stroke: rgba(93, 163, 255, 0.75);
  filter: drop-shadow(0 0 6px rgba(93, 163, 255, 0.3));
}

.strategic__card:hover .strat-dot-accent {
  fill: rgba(93, 163, 255, 0.6);
}

/* Idle pulse animation */
.strategic__holo svg {
  animation: holoBreath 3s ease-in-out infinite;
}

.strategic__card:nth-child(2) .strategic__holo svg {
  animation-delay: 0.5s;
}
.strategic__card:nth-child(3) .strategic__holo svg {
  animation-delay: 1s;
}
.strategic__card:nth-child(4) .strategic__holo svg {
  animation-delay: 1.5s;
}

@keyframes holoBreath {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Scan line on card hover */
.strategic__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(93, 163, 255, 0.5),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.strategic__card:hover::before {
  left: 120%;
}

.strategic__title {
  font-family: var(--fs);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .operational__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .operational__visual {
    order: 0;
  }

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

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

  .repair-solutions__grid {
    grid-template-columns: 1fr 1fr;
  }

  .client-solutions__grid {
    grid-template-columns: 1fr;
  }

  .vision__flow {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .vision__wire {
    width: 24px;
  }
}

/* Stats context label */
.operational__stats-context {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  /* Fix background-attachment: fixed on mobile (iOS doesn't support it) */

  .solutions-hero__ctas > .btn--primary-lg {
    padding: 1.1rem 0;
    width: 100%;
    justify-content: center;
  }
  .core-solution__bg {
    background-attachment: scroll;
  }

  .repair-solutions__grid {
    grid-template-columns: 1fr;
  }

  .client-solutions__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .strategic__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .sol-data__pills {
    flex-direction: column;
    align-items: center;
  }

  .sol-data__pill {
    width: 100%;
  }

  .operational__stat-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  /* Mobile: wrap + smaller wires */
  .vision__flow {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .vision__wire {
    display: none;
  }

  .vision__step {
    padding: 1.25rem 0.75rem;
  }

  .vision__step-icon {
    width: 56px;
    height: 56px;
  }

  /* Mobile: no hover, tap only via .is-open */
  .vision__step:hover .vision__step-desc {
    max-height: 0;
    opacity: 0;
  }
  .vision__step:hover .vision__step-num {
    opacity: 1;
    transform: none;
  }
  .vision__step:hover .vision__step-svg {
    opacity: 0;
    transform: scale(0.7);
  }
  .vision__step:hover .neon-path {
    stroke-dashoffset: 80;
  }
  .vision__step:hover .neon-dot {
    opacity: 0;
  }
  .vision__step:hover .neon-ring {
    stroke: rgba(93, 163, 255, 0.15);
    filter: none;
  }
  .vision__step:hover .neon-orbit {
    opacity: 0;
  }
  .vision__step.is-open .neon-orbit {
    opacity: 1;
  }
  .vision__step:hover .vision__step-loupe {
    stroke: rgba(93, 163, 255, 0.4);
    transform: none;
  }
  .vision__step:hover {
    background: transparent;
  }

  .vision__step.is-open {
    background: rgba(26, 111, 240, 0.06);
  }
  .vision__step.is-open .vision__step-desc {
    max-height: 150px;
    opacity: 1;
  }
  .vision__step.is-open .vision__step-num {
    opacity: 0;
    transform: scale(0.5);
  }
  .vision__step.is-open .vision__step-svg {
    opacity: 1;
    transform: scale(1);
  }
  .vision__step.is-open .neon-path {
    stroke-dashoffset: 0;
  }
  .vision__step.is-open .neon-dot {
    opacity: 1;
  }
  .vision__step.is-open .neon-ring {
    stroke: rgba(93, 163, 255, 0.35);
  }
  .vision__step.is-open .vision__step-loupe {
    stroke: rgba(93, 163, 255, 0.8);
    transform: scale(1.2);
  }

  .vision__arrow {
    display: none;
  }
}
