:root {
  --bg: #f7f9fc;
  --panel: #fff;
  --text: #0e1a33;
  --muted: #566583;
  --line: rgba(14, 26, 51, .10);
  /* Brand */
  --brand: #22019a;
  --brand2: #6755f0;
  --accent: #FFC24A;
  --shadow: 0 20px 60px rgba(18, 32, 60, .12);
  --shadow2: 0 10px 28px rgba(18, 32, 60, .10);
  --r12: 12px;
  --r16: 16px;
  --r20: 20px;
  --r28: 28px;
  --r34: 34px;
  --max: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.kicker {
  font: 900 12px/1 Inter, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(14, 26, 51, .62);
}

.h1 {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(34px, 4.4vw, 66px);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 14px 0 12px;
  font-weight: 900;
}

.h2 {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.10;
  letter-spacing: -.03em;
  margin: 0 0 12px;
  font-weight: 900;
}

.h3 {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 12px;
  font-weight: 900;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

/* =========================
   2) SCROLL PROGRESS BAR
========================= */
/* Scroll progress bar */
#scrollbar.scrollbar,
.scrollbar#scrollbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  /* increase if you want: 5px/6px */
  width: 0%;
  z-index: 99999;
  background: linear-gradient(90deg, #6755f0, #FFC24A);
  border-radius: 0 999px 999px 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
  pointer-events: none;
}

/* If you have a fixed header, keep bar above it */
.nav {
  z-index: 9999;
}

/* =========================
   3) BUTTONS (GLOBAL)
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .86);
  font-weight: 900;
  cursor: pointer;
  user-select: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .03);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

.btn.primary {
  border: none;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #fff;
}

.btn.small {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
}

/* Button shine */
.btn::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, .55),
      rgba(255, 255, 255, 0));
  transform: rotate(16deg) translateX(-60%);
  opacity: 0;
  transition: opacity .25s var(--ease);
}

.btn:hover::after {
  opacity: .85;
  animation: btnShine 1.1s var(--ease) both;
}

@keyframes btnShine {
  0% {
    transform: rotate(16deg) translateX(-60%);
  }

  100% {
    transform: rotate(16deg) translateX(60%);
  }
}

/* =========================
   4) HEADER / NAV
========================= */
/* NAV always on top (PC + Mobile) */
.nav {
  position: fixed;
  /* ✅ works everywhere */
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Prevent hamburger going to next line */
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
  padding: 12px 0;
}

/* IMPORTANT: push page down so nav doesn’t cover content */
body {
  padding-top: 96px;
  /* desktop nav height approx (logo 80px + padding) */
}

/* Desktop menu normal */
.menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile tweaks */
@media (max-width: 900px) {
  body {
    padding-top: 72px;
  }

  /* mobile nav height */

  .menu {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .brand img {
    width: 150px;
    height: 56px;
    object-fit: contain;
  }

  .nav-wrap {
    padding: 8px 0;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 180px;
  height: 80px;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu a {
  font-weight: 800;
  font-size: 14px;
  color: rgba(14, 26, 51, .84);
  padding: 10px;
  border-radius: 12px;
  transition: .2s ease;
  white-space: nowrap;
}

.menu a:hover {
  background: rgba(47, 107, 255, .08);
}

/* =========================
   5) MOBILE SHEET
========================= */
.hamburger {
  display: none;
  /* shown on mobile */
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .90);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  flex: 0 0 auto;
}

.hamburger:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

.bars {
  width: 18px;
  height: 12px;
  position: relative;
}

.bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: rgba(14, 26, 51, .82);
  transition: .25s ease;
}

.bars span:nth-child(1) {
  top: 0;
}

.bars span:nth-child(2) {
  top: 5px;
}

.bars span:nth-child(3) {
  top: 10px;
}

.sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.sheet.open {
  display: block;
}

.sheet .backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 36, .42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* full height panel + scroll */
.sheet .panel {
  position: absolute;
  left: 12px;
  right: 12px;
  top: calc(12px + env(safe-area-inset-top));
  bottom: calc(12px + env(safe-area-inset-bottom));

  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .22);

  padding: 14px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;

  transform: translateY(-8px);
  animation: sheetIn .22s var(--ease) both;
}

@keyframes sheetIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sheet-links {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.sheet-links a {
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 16px;
  color: rgba(14, 26, 51, .90);
  background: rgba(14, 26, 51, .03);
  border: 1px solid rgba(14, 26, 51, .06);
}

.sheet-links a:hover {
  background: rgba(47, 107, 255, .08);
  border-color: rgba(47, 107, 255, .14);
}

/* Bottom button sticky */
.sheet-actions {
  position: sticky;
  bottom: 0;
  margin-top: 12px;
  padding-top: 12px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, .75));
}

.sheet-actions .btn {
  width: 100%;
}

/* =========================
   MOBILE SWITCH + FIXED NAV (guaranteed sticky)
========================= */
@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  /* ✅ mobile pe fixed so it never drops down */
  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
  }

  /* ✅ body padding so content not hidden under fixed nav */
  body {
    padding-top: 72px;
  }

  .brand img {
    width: 150px;
    height: 56px;
  }

  .nav-wrap {
    padding: 8px 0;
  }
}

/* =========================
   6) HERO
========================= */
.hero {
  position: relative;
  padding: 86px 0 72px;
  overflow: hidden;
  isolation: isolate;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  animation: heroGlow 12s var(--ease) infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .55), transparent 45%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, .45), transparent 42%),
    radial-gradient(circle at 55% 82%, rgba(255, 255, 255, .35), transparent 46%);
  filter: blur(42px);
  opacity: .55;
  animation: heroMist 18s var(--ease) infinite alternate;
}

@keyframes heroGlow {
  0% {
    filter: blur(0);
    opacity: .72;
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    filter: blur(1px);
    opacity: .9;
    transform: translate3d(0, -6px, 0) scale(1.02);
  }
}

@keyframes heroMist {
  0% {
    opacity: .45;
    transform: translate3d(-1%, 0, 0) scale(1);
  }

  100% {
    opacity: .65;
    transform: translate3d(1%, -1%, 0) scale(1.02);
  }
}

.heroSpot {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(520px 320px at var(--mx, 50%) var(--my, 35%),
      rgba(255, 255, 255, .55),
      rgba(255, 255, 255, 0) 60%);
  mix-blend-mode: overlay;
  opacity: .55;
  transition: opacity .35s var(--ease);
}

.hero:hover .heroSpot {
  opacity: .75;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: start;
}

.hero-lead {
  max-width: 68ch;
  color: rgba(14, 26, 51, .74);
  font-weight: 650;
  margin: 0;
}

/* CTA bar */
.cta-bar {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 55px rgba(18, 32, 60, .12);
  max-width: 860px;
  animation: breathe 7.5s var(--ease) infinite;
}

@keyframes breathe {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 55px rgba(18, 32, 60, .12);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 26px 70px rgba(18, 32, 60, .14);
  }
}

.cta-left {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(14, 26, 51, .78);
  font-weight: 850;
  font-size: 13px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 18px rgba(47, 107, 255, .22);
  flex: 0 0 auto;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  min-height: 520px;
  animation: floatGroup 8.5s var(--ease) infinite;
}

@keyframes floatGroup {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-photo {
  border-radius: var(--r28);
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .58);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(18, 32, 60, .16);
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.hero-photo:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 32px 90px rgba(18, 32, 60, .18);
}

.hero-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transform: scale(1.01);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 360px at 20% 10%, rgba(255, 255, 255, .30), transparent 60%),
    radial-gradient(720px 360px at 85% 20%, rgba(47, 107, 255, .12), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .12));
  pointer-events: none;
  opacity: .9;
}

.hero-cards {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 44px rgba(18, 32, 60, .12);
  padding: 14px;
  position: relative;
  overflow: hidden;
  min-width: 0;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.hero-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 70px rgba(18, 32, 60, .16);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(220px 120px at 20% 20%, rgba(47, 107, 255, .18), transparent 60%),
    radial-gradient(220px 120px at 80% 70%, rgba(24, 198, 165, .14), transparent 60%);
  opacity: .9;
  pointer-events: none;
}

.hero-card b {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 900;
  letter-spacing: -.01em;
  position: relative;
}

.hero-card span {
  display: block;
  margin-top: 6px;
  color: rgba(14, 26, 51, .70);
  font-weight: 650;
  font-size: 13px;
  position: relative;
}

/* =========================
   7) ABOUT
========================= */
.aboutSplitWrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 22px;
  align-items: stretch;
}

.aboutLeft {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow2);
  padding: 22px;
}

.aboutAcc {
  display: grid;
  gap: 0;
}

.aboutAccBtn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 18px 4px;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -.02em;
  color: var(--text);
  border-top: 1px solid rgba(14, 26, 51, .10);
}

.aboutAccBtn:first-child {
  border-top: 0;
  padding-top: 8px;
}

.aboutChevron {
  font-size: 18px;
  opacity: .7;
  transform: rotate(0);
  transition: transform .35s var(--ease);
}

.aboutAccBtn.is-open .aboutChevron {
  transform: rotate(180deg);
}

.aboutAccPanel {
  max-height: 0;
  overflow: hidden;
  padding: 0 4px;
  border-bottom: 1px solid rgba(14, 26, 51, .10);
  transition: max-height .55s cubic-bezier(.18, .9, .18, 1), padding .55s cubic-bezier(.18, .9, .18, 1);
}

.aboutAccPanel.is-open {
  max-height: 220px;
  padding-bottom: 18px;
}

.aboutAccPanel p {
  margin: 8px 0 0;
  color: rgba(14, 26, 51, .74);
  font-weight: 650;
  line-height: 1.6;
  max-width: 62ch;
}

.aboutRight {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(14, 26, 51, .10);
  box-shadow: var(--shadow2);
  background: rgba(255, 255, 255, .92);
}

.aboutImageWrap {
  padding: 18px;
  height: 100%;
  min-height: 420px;
  display: grid;
  place-items: center;
}

#aboutImage {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(14, 26, 51, .10);
  box-shadow: 0 22px 60px rgba(18, 32, 60, .12);
  opacity: 1;
  transform: translateX(0);
  transition: opacity .45s ease, transform .45s cubic-bezier(.2, .8, .2, 1);
}

#aboutImage.fade-out {
  opacity: 0;
  transform: translateX(18px);
}

/* =========================
   8) SERVICES (Copilot) — FULL CSS (UPDATED FOR LUCIDE ICONS + COLORED ICONS)
   Replace your existing Services CSS with this
========================= */

.servicesCopilot .svcWrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: start;
}

/* LEFT HERO */
.svcHero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(14, 26, 51, .10);
  box-shadow: var(--shadow2);
  height: calc(2 * 280px + 18px);
}

.svcHeroMedia {
  position: absolute;
  inset: 0;
}

.svcHeroMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.svcHeroGradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(30, 18, 10, .92),
      rgba(30, 18, 10, .55),
      rgba(30, 18, 10, 0));
  z-index: 1;
}

.svcHeroBody {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  color: #fff;
}

.svcHeroBody h2 {
  margin: 0 0 6px;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 900;
  letter-spacing: -.02em;
}

.svcHeroBody p {
  margin: 0 0 14px;
  font-weight: 650;
  line-height: 1.5;
}

/* GRID */
.svcGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* CARD */
.svcCard {
  border-radius: 16px;
  border: 1px solid rgba(14, 26, 51, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow2);
  padding: 18px;
  min-height: 285px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  display: block;
  overflow: visible;
}

/* subtle sheen */
.svcCard::after {
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(520px 240px at 30% 10%, rgba(103, 85, 240, .10), transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}

.svcCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(18, 32, 60, .14);
  border-color: rgba(47, 107, 255, .18);
}

.svcCard:hover::after {
  opacity: 1;
}

.svcCard h4 {
  margin: 0 0 8px;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 900;
  font-size: 15px;
}

.svcCard p {
  margin: 0;
  color: rgba(14, 26, 51, .72);
  font-weight: 550;
  line-height: 1.55;
  font-size: medium;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================
   ICON — UPDATED FOR LUCIDE (NO EMOJIS)
   - Colored icon (not white) because bg is white
========================= */
.svcIcon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 18px;

  /* premium light badge */
  background: linear-gradient(135deg, rgba(103, 85, 240, .16), rgba(34, 1, 154, .08));
  border: 1px solid rgba(103, 85, 240, .22);

  /* icon color */
  color: #22019a;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .65),
    0 10px 26px rgba(34, 1, 154, .12);

  transition: transform .45s cubic-bezier(.2, .8, .2, 1),
    box-shadow .45s cubic-bezier(.2, .8, .2, 1),
    border-color .45s cubic-bezier(.2, .8, .2, 1);
}

/* lucide svg sizing */
.svcIcon svg,
.svcIcon i {
  width: 22px;
  height: 22px;
  display: block;
}

.svcIcon svg {
  stroke-width: 2;
}

.svcCard:hover .svcIcon {
  transform: translateY(-6px) scale(1.06);
  border-color: rgba(103, 85, 240, .36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .72),
    0 18px 44px rgba(103, 85, 240, .18);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .servicesCopilot .svcWrap {
    grid-template-columns: 1fr;
  }

  .svcHero {
    height: 360px;
  }

  .svcGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .svcGrid {
    grid-template-columns: 1fr;
  }

  .svcCard {
    min-height: auto;
  }

  .svcCard p {
    -webkit-line-clamp: 4;
  }
}

/* =========================
   9) SOLUTIONS (Spotlight)
========================= */
.glassSection {
  position: relative;
}

.solutionsSpotlight {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.solutionsSpotlight .spotCard {
  grid-column: span 3;
}

.solutionsSpotlight .spotWide {
  grid-column: span 6;
}

.spotCard {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 18px 18px 16px;
  background:
    linear-gradient(120deg,
      rgba(120, 110, 255, .18),
      rgba(90, 150, 255, .12),
      rgba(190, 120, 255, .14));
  border: 1px solid rgba(120, 110, 255, .25);
  box-shadow: 0 18px 50px rgba(90, 80, 200, .15);
  transition:
    transform .45s cubic-bezier(.2, .8, .2, 1),
    box-shadow .45s cubic-bezier(.2, .8, .2, 1),
    background .35s ease,
    border-color .35s ease;
}

.spotCard::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(120deg,
      rgba(120, 110, 255, .35),
      rgba(90, 150, 255, .20),
      rgba(190, 120, 255, .26),
      rgba(120, 110, 255, .35));
  filter: blur(14px);
  opacity: .25;
  animation: glowFlow 10s linear infinite;
  pointer-events: none;
}

@keyframes glowFlow {
  0% {
    transform: translateX(-8%) rotate(0deg);
  }

  100% {
    transform: translateX(8%) rotate(360deg);
  }
}

.spotCard::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .70);
  opacity: .9;
  pointer-events: none;
}

.spotFx {
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 280px at var(--mx, 50%) var(--my, 20%),
      rgba(120, 110, 255, .22),
      rgba(90, 150, 255, .12) 35%,
      transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.spotCard:hover {
  background: rgba(255, 255, 255, .95);
  border-color: rgba(15, 23, 42, .12);
  transform: translateY(-10px);
  box-shadow: 0 34px 90px rgba(15, 23, 42, .18);
}

.spotCard:hover .spotFx {
  opacity: 1;
}

.spotHead {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.spotIcon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, .04);
  border: 1px solid rgba(15, 23, 42, .08);
  color: #0f172a;
  font-weight: 900;
  font-size: 16px;
}

.spotCard h4 {
  margin: 2px 0 0;
  font-size: 16.5px;
  line-height: 1.25;
  font-weight: 850;
  color: #0f172a;
}

.spotCard p {
  margin: 0;
  color: #334155;
  line-height: 1.55;
  font-weight: 560;
}

/* Solutions card cursor-follow glow */
.spotCard {
  position: relative;
  overflow: hidden;
}

.spotCard .spotFx {
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--sx, 50%) var(--sy, 50%),
      rgba(100, 140, 255, .22),
      transparent 55%);
  opacity: 0;
  transition: opacity .18s ease;
}

.spotCard:hover .spotFx {
  opacity: 1;
}

/* =========================
   10) INDUSTRIES (FULL CSS + LUCIDE ICONS)
========================= */

.industriesGlass {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0b1222;
}

/* Video background */
.industriesVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05);
}

/* Shade overlay */
.industriesShade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .35));
}

/* Layout */
.industriesLayout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

/* Right panel */
.industriesPanel {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.industriesPanelInner {
  padding: 16px;
  display: grid;
  gap: 12px;
}

/* Row buttons */
.indRow {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .10);
  cursor: pointer;
  text-align: left;
  transition:
    transform .45s var(--ease),
    background .45s var(--ease),
    box-shadow .45s var(--ease),
    border-color .45s var(--ease);
}

.indRow:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

/* Active state (optional: add .is-active via JS) */
.indRow.is-active {
  background:
    radial-gradient(420px 180px at 20% 50%, rgba(57, 255, 20, .20), transparent 60%),
    rgba(255, 255, 255, .14);
  border-color: rgba(57, 255, 20, .22);
}

/* === Icon (Lucide/SVG friendly) === */
.indIcon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;

  background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .92);

  flex: 0 0 auto;

  animation: indFloat 4.2s var(--ease) infinite;
  transition:
    transform .45s var(--ease),
    box-shadow .45s var(--ease),
    border-color .45s var(--ease),
    background .45s var(--ease);
}

@keyframes indFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Make lucide icons size consistent */
.indIcon svg,
.indIcon i {
  width: 22px;
  height: 22px;
  display: block;
}

.indIcon svg {
  stroke-width: 2;
}

.indRow:hover .indIcon {
  transform: translateY(-2px) scale(1.06);
  border-color: rgba(103, 85, 240, .40);
  box-shadow: 0 16px 40px rgba(103, 85, 240, .18);
}

.indRow.is-active .indIcon {
  background:
    radial-gradient(70% 70% at 30% 30%, rgba(57, 255, 20, .22), transparent 65%),
    linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06));
  border-color: rgba(57, 255, 20, .28);
  box-shadow: 0 16px 44px rgba(57, 255, 20, .12);
}

/* Text */
.indText {
  font-family: Manrope, Inter, sans-serif;
  font-weight: 900;
  letter-spacing: -.01em;
  font-size: 18px;
  line-height: 1.15;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Optional arrow support (if you add arrow span) */
.indArrow {
  opacity: .7;
  font-weight: 900;
  transform: translateX(0);
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}

.indRow:hover .indArrow {
  opacity: 1;
  transform: translateX(6px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  .industriesLayout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industriesCopy {
    order: 1;
  }

  .industriesPanel {
    order: 2;
  }
}

@media (max-width: 560px) {
  .industriesPanelInner {
    padding: 14px;
  }

  .indRow {
    padding: 12px;
    border-radius: 16px;
  }

  .indText {
    font-size: 16px;
  }
}


/* =========================
   WHY US — CLEAN PREMIUM VERSION
========================= */

.whyFrame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 40px;

  background: linear-gradient(135deg,
      rgba(255, 255, 255, .78),
      rgba(245, 247, 255, .60));

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(120, 110, 255, .18);

  box-shadow:
    0 40px 120px rgba(20, 18, 60, .12);

  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}

/* Soft animated gradient glow background */
.whyFrame::before {
  content: "";
  position: absolute;
  inset: -80px;
  background:
    radial-gradient(800px 480px at 20% 25%, rgba(120, 110, 255, .25), transparent 60%),
    radial-gradient(750px 450px at 80% 60%, rgba(90, 150, 255, .20), transparent 60%);
  opacity: .35;
  animation: subtleMove 14s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes subtleMove {
  0% {
    transform: translate3d(-12px, -8px, 0) scale(1.02);
  }

  100% {
    transform: translate3d(16px, 10px, 0) scale(1.04);
  }
}

.whyFrame>* {
  position: relative;
  z-index: 2;
}

/* =========================
   CARDS GRID
========================= */

.whyCards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.whyCards .whyCard:nth-child(1),
.whyCards .whyCard:nth-child(2),
.whyCards .whyCard:nth-child(3) {
  grid-column: span 4;
}

.whyCards .whyCard:nth-child(4) {
  grid-column: 3 / span 4;
}

.whyCards .whyCard:nth-child(5) {
  grid-column: 7 / span 4;
}

/* =========================
   CARD DESIGN
========================= */

.whyCard {
  position: relative;
  border-radius: 24px;
  padding: 26px;

  background: #ffffff;

  border: 1px solid rgba(120, 110, 255, .12);

  box-shadow:
    0 20px 50px rgba(20, 18, 60, .08);

  transition:
    transform .45s cubic-bezier(.2, .8, .2, 1),
    box-shadow .45s cubic-bezier(.2, .8, .2, 1);

  opacity: 0;
  transform: translateY(20px);
  animation: cardIn .8s cubic-bezier(.2, .8, .2, 1) forwards;
  animation-delay: calc(var(--i) * 100ms);
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.whyCard:hover {
  transform: translateY(-14px);
  box-shadow:
    0 35px 80px rgba(120, 110, 255, .18);
}

/* =========================
   ICON DESIGN
========================= */

.whyTop {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.whyIcon {
  width: 44px;
  height: 44px;
  border-radius: 14px;

  display: grid;
  place-items: center;

  background: linear-gradient(135deg, #7c6cff, #5a46c8);
  color: white;
  font-size: 18px;

  box-shadow:
    0 12px 30px rgba(120, 110, 255, .35);

  transition: transform .4s ease;
}

.whyCard:hover .whyIcon {
  transform: scale(1.1) rotate(-6deg);
}

.whyCard b {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.whyCard p {
  margin: 0;
  line-height: 1.6;
  font-weight: 560;
  color: #334155;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .whyCards {
    grid-template-columns: 1fr 1fr;
  }

  .whyCards .whyCard {
    grid-column: auto !important;
  }
}

@media (max-width: 640px) {
  .whyCards {
    grid-template-columns: 1fr;
  }
}

/* =========================
   12) HOW WE HELP (Banner)
========================= */
.helpBanner {
  padding-top: 30px;
}

.helpCard {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(14, 26, 51, .10);
  box-shadow: var(--shadow2);
  background: linear-gradient(90deg,
      #b9d0f2 0%,
      #cfe0fb 45%,
      #eaf2ff 70%,
      #f6d2b8 100%);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 18px;
  padding: 34px 34px;
  position: relative;
}

.helpCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 320px at 20% 40%, rgba(255, 255, 255, .45), transparent 60%),
    radial-gradient(700px 320px at 80% 55%, rgba(255, 255, 255, .28), transparent 62%);
  pointer-events: none;
}

.helpContent {
  position: relative;
  z-index: 1;
}

.helpTitle {
  margin: 0 0 14px;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.12;
  color: #0e1a33;
  max-width: 26ch;
}

.helpList {
  margin: 0 0 18px;
  padding-left: 18px;
  color: rgba(14, 26, 51, .82);
  font-weight: 650;
  line-height: 1.7;
}

.helpActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.helpMedia {
  position: relative;
  z-index: 1;
  min-height: 240px;
  display: grid;
  place-items: center;
}

.helpMainImg {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(14, 26, 51, .10);
  box-shadow: 0 22px 60px rgba(18, 32, 60, .12);
  transform: translateZ(0);
}

/* =========================
   13) PLATFORM (Tabs + Panels)
========================= */
.platform-accent {
  position: relative;
}

.platform-accent::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -60px;
  width: min(720px, 70vw);
  height: 520px;
  background: url("assets/img/path.png") no-repeat right top;
  background-size: cover;
  opacity: .22;
  filter: saturate(1.05) contrast(1.05);
  pointer-events: none;
  transform: rotate(-6deg);
}

.sticky-tabs {
  position: sticky;
  top: 86px;
  z-index: 5;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(18, 32, 60, .06);
  margin-top: 22px;
  overflow: hidden;
}

.tab {
  border: 1px solid rgba(47, 107, 255, .16);
  background: rgba(255, 255, 255, .9);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  transition: .2s ease;
  color: rgba(14, 26, 51, .82);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.tab:hover {
  background: rgba(47, 107, 255, .07);
}

.tab.active {
  border: none;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #fff;
}

.feature-panel {
  border: 1px solid var(--line);
  border-radius: var(--r28);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow2);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  margin-top: 16px;
  min-width: 0;
}

.feature-copy {
  padding: 26px;
}

.feature-copy p {
  margin: 0;
  color: rgba(14, 26, 51, .74);
  font-weight: 650;
}

.bullets {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 800;
  color: rgba(14, 26, 51, .78);
}

.bullets li i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
}

.feature-media {
  position: relative;
  background: linear-gradient(180deg, rgba(47, 107, 255, .06), rgba(24, 198, 165, .05));
  border-left: 1px solid var(--line);
  min-height: 140px;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   14) TEAM (FULL CSS - FIXED FOR MOBILE)
========================= */

.teamGridTiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  padding-bottom: 18px;
  margin-top: 18px;
  /* optional if you remove inline margin */
}

/* Card */
.teamTile {
  position: relative;
  border-radius: 18px;
  background: #eef1f6;
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .10);
  overflow: visible;
  /* desktop: allows label to float outside */
  transition:
    transform .55s cubic-bezier(.2, .8, .2, 1),
    box-shadow .55s cubic-bezier(.2, .8, .2, 1);
  margin-bottom: 50px;
  /* space for floating label (desktop/tablet) */
}

/* Photo wrapper */
.tilePhoto {
  height: 300px;
  /* better framing than 260px */
  border-radius: 18px;
  overflow: hidden;
  background: #dfe4ec;
}

/* Photo */
.tilePhoto img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: 50% 20%;
  /* face-friendly crop */

  transform: scale(1.02);
  transition: transform .75s cubic-bezier(.2, .8, .2, 1);
}

/* Floating info label */
.tileInfo {
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  width: calc(100% - 34px);

  padding: 10px 14px;
  border-radius: 12px;

  background: #fff;
  border: 1px solid rgba(15, 23, 42, .12);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .14);

  text-align: center;
  transition:
    transform .55s cubic-bezier(.2, .8, .2, 1),
    box-shadow .55s cubic-bezier(.2, .8, .2, 1);
}

.tileInfo b {
  display: block;
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: .45px;
  text-transform: uppercase;
  color: #0f172a;
  line-height: 1.1;
}

.tileInfo span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 650;
  color: #6b7280;
}

/* Hover */
.teamTile:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 100px rgba(15, 23, 42, .16);
}

.teamTile:hover .tilePhoto img {
  transform: scale(1.06);
}

.teamTile:hover .tileInfo {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 14px 40px rgba(15, 23, 42, .16);
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .teamGridTiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .tilePhoto {
    height: 320px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .teamGridTiles {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Make it clean: info sits below photo (no floating label) */
  .teamTile {
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 20px;
  }

  .tilePhoto {
    height: 340px;
    border-radius: 20px 20px 0 0;
  }

  .tilePhoto img {
    object-position: 50% 18%;
    transform: scale(1.06);
  }

  .tileInfo {
    position: static;
    transform: none;
    width: 100%;
    border-radius: 0 0 20px 20px;
    box-shadow: none;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    padding: 14px 14px;
  }

  .teamTile:hover .tileInfo {
    transform: none;
  }
}

@media (max-width: 560px) {
  .tilePhoto img {
    object-fit: contain;
    transform: none;
  }
}


/* =========================
   15) CLIENTS
========================= */
.clientsShell {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: center;
  border-radius: 28px;
  padding: 26px;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 26px 90px rgba(15, 23, 42, .10);
  background: #fff;
}

.clientsWall {
  position: relative;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background: #fbfcff;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.clientsWall .fadeTop,
.clientsWall .fadeBottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 74px;
  z-index: 5;
  pointer-events: none;
}

.clientsWall .fadeTop {
  top: 0;
  background: linear-gradient(to bottom, #fff 15%, rgba(255, 255, 255, 0));
}

.clientsWall .fadeBottom {
  bottom: 0;
  background: linear-gradient(to top, #fff 15%, rgba(255, 255, 255, 0));
}

.logoCol {
  position: relative;
  overflow: hidden;
}

.logoTrack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 10px 6px;
  will-change: transform;
}

.logoCard {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 14px 38px rgba(15, 23, 42, .08);
  padding: 18px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
}

.logoCard img {
  height: 66px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: .95;
}

.logoCol.down .logoTrack {
  animation: colDown 10s linear infinite;
}

.logoCol.up .logoTrack {
  animation: colUp 10s linear infinite;
}

@keyframes colDown {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes colUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.clientsWall:hover .logoTrack {
  animation-play-state: paused;
}

/* =========================
   CLIENTS — MOBILE FIX (2 columns, no marquee)
========================= */
@media (max-width: 900px) {

  .clientsShell {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  /* Wall becomes a simple grid container */
  .clientsWall {
    height: auto;
    padding: 12px;
    overflow: visible;
    grid-template-columns: 1fr;
    /* wall itself is 1 col; grid is inside */
    gap: 12px;
  }

  .clientsWall .fadeTop,
  .clientsWall .fadeBottom {
    display: none;
  }

  /* Hide the 3 scrolling columns on mobile */
  .clientsWall .logoCol {
    display: none !important;
  }

  /* New mobile grid injected by JS */
  .clientsWall .clientsGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* ✅ 2 logos per row */
    gap: 12px;
  }

  .logoCard {
    min-height: 84px;
    padding: 14px;
    border-radius: 16px;
  }

  .logoCard img {
    height: 54px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: .95;
  }
}



/* =========================
   16) CONTACT (UPDATED: ICONS + MAP)
========================= */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.panel2 {
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow2);
  border-radius: 18px;
  padding: 18px;
  min-width: 0;
}

/* ===== Info boxes grid ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ibox {
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow2);
  border-radius: 16px;
  padding: 14px;
  min-width: 0;
}

/* Row with icon + title */
.iboxTop {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.iboxTop b {
  font-family: Manrope, Inter, sans-serif;
  font-weight: 900;
  margin: 0;
  color: #0f172a;
}

/* Lucide icon badge (colored, not white) */
.iboxIcon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(103, 85, 240, .16), rgba(34, 1, 154, .08));
  border: 1px solid rgba(103, 85, 240, .22);
  color: #22019a;

  box-shadow: 0 10px 24px rgba(34, 1, 154, .10);
}

.iboxIcon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.ibox span {
  display: block;
  color: rgba(14, 26, 51, .74);
  font-weight: 650;
  line-height: 1.45;
}


/* =========================
   16) CONTACT (SAME HEIGHT + ICON FIX)
========================= */
/* Contact form validation UI */
.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: rgba(239, 68, 68, .85) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .14) !important;
}

.field input.is-valid,
.field select.is-valid,
.field textarea.is-valid {
  border-color: rgba(34, 197, 94, .8) !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .12) !important;
}

.status {
  margin-top: 12px;
  font-weight: 650;
}

.status.ok {
  color: #16a34a;
}

.status.bad {
  color: #dc2626;
}

.status.info {
  color: #0ea5e9;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  /* ✅ both columns same height */
}

#formStatus {
  margin-top: 16px;
  text-align: center;
  width: 100%;
  display: block;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 12px;
}

#formStatus.bad {
  background: rgba(239, 68, 68, .08);
  color: #dc2626;
}

#formStatus.ok {
  background: rgba(34, 197, 94, .08);
  color: #16a34a;
}

#formStatus.info {
  background: rgba(14, 165, 233, .08);
  color: #0ea5e9;
}

/* Shared panel style */
.panel2 {
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow2);
  border-radius: 18px;
  padding: 18px;
  min-width: 0;
  height: 100%;
  /* ✅ allow stretching */
}

/* LEFT panel becomes flex column so map can fill space */
.contactLeft {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* Each info box */
.ibox {
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow2);
  border-radius: 16px;
  padding: 14px;
  min-width: 0;
}

/* TOP row (icon + title) — FIXED ALIGN */
.iboxTop {
  display: flex;
  align-items: center;
  /* ✅ no tilt */
  gap: 10px;
  margin-bottom: 8px;
  line-height: 1;
}

.iboxTop b {
  display: block;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 900;
  margin: 0;
  color: #0f172a;
}

/* Icon badge (no tilt) */
.iboxIcon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;

  background: linear-gradient(135deg, rgba(103, 85, 240, .16), rgba(34, 1, 154, .08));
  border: 1px solid rgba(103, 85, 240, .22);
  color: #22019a;
  box-shadow: 0 10px 24px rgba(34, 1, 154, .10);

  flex: 0 0 auto;
}

.iboxIcon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  display: block;
  /* ✅ removes baseline tilt */
}

/* Text */
.ibox span {
  display: block;
  color: rgba(14, 26, 51, .74);
  font-weight: 650;
  line-height: 1.45;
}

.ibox a {
  color: rgba(14, 26, 51, .78);
  font-weight: 750;
  text-decoration: none;
}

.ibox a:hover {
  text-decoration: underline;
}

/* Map fills remaining height inside left panel */
.mapCard {
  margin-top: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 55px rgba(18, 32, 60, .10);

  flex: 1 1 auto;
  /* ✅ take remaining space */
  min-height: 320px;
  /* keeps map visible */
}

.mapCard iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

@media only screen and (max-width: 480px) {
  .FooterImg {
    margin-left: 0 !important;
    display: block;
    margin-right: auto;
    margin-left: auto;
    /* auto center */
    width: 80% !important;
    height: auto !important;
    margin-left: 30px !important;
  }
}

/* RIGHT FORM */
.contactCard {
  margin: 0;
  /* ✅ remove auto center */
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: 0 22px 70px rgba(15, 23, 42, .12);
  height: 100%;
  /* ✅ match left */
}

.contactCard .row2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 14px;
}

.contactCard .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.contactCard label {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

.req {
  color: #ef4444;
  margin-left: 2px;
}

.contactCard input,
.contactCard select,
.contactCard textarea {
  width: 100%;
  border-radius: 999px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, .12);
  background: rgba(248, 250, 252, .95);
  font-weight: 650;
  color: #0f172a;
  outline: none;
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}

.contactCard textarea {
  border-radius: 14px;
  min-height: 110px;
  resize: vertical;
  padding-top: 12px;
}

.contactCard input:focus,
.contactCard select:focus,
.contactCard textarea:focus {
  border-color: rgba(120, 110, 255, .55);
  box-shadow: 0 0 0 6px rgba(120, 110, 255, .14);
}

.contactCard ::placeholder {
  color: rgba(100, 116, 139, .85);
  font-weight: 600;
}

.contactBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 8px auto 0;
  padding: 12px 18px;
  border-radius: 12px;
  min-width: 170px;
}

.contactBtn .arrow {
  transition: transform .25s ease;
}

.contactBtn:hover .arrow {
  transform: translateX(4px);
}

.status {
  margin-top: 12px;
  font-weight: 750;
  font-size: 13px;
  color: rgba(14, 26, 51, .75);
}

.status.ok {
  color: #16a34a;
}

.status.bad {
  color: #dc2626;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .contact {
    grid-template-columns: 1fr;
  }

  .mapCard {
    min-height: 260px;
  }

  .mapCard iframe {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .contactCard .row2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mapCard {
    min-height: 240px;
  }

  .mapCard iframe {
    min-height: 240px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .contact {
    grid-template-columns: 1fr;
  }

  .contactCard {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .contactCard .row2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mapCard iframe {
    height: 240px;
  }
}

/* =========================
   17) FOOTER
========================= */
footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
  background: rgba(255, 255, 255, .70);
  color: rgba(14, 26, 51, .68);
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.foot a {
  font-weight: 850;
  color: rgba(14, 26, 51, .70);
}

.foot a:hover {
  color: rgba(14, 26, 51, .95);
}

/* =========================
   18) REVEAL + MOTION
========================= */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(.99);
  filter: blur(6px);
  will-change: transform, opacity, filter;
  transition:
    opacity .75s var(--ease),
    transform .75s var(--ease),
    filter .75s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.show {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

[data-stagger] {
  transition-delay: var(--delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cta-bar,
  .hero-media {
    animation: none;
  }

  .btn::after {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .whyFrame::before,
  .whyFrame::after {
    animation: none;
  }

  .whyCard {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .whyCard:hover {
    transform: none;
  }

  .logoTrack {
    animation: none !important;
  }
}

/* =========================
   19) RESPONSIVE
========================= */
@media (max-width:1200px) {
  .teamGridTiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width:980px) {
  .section {
    padding: 76px 0;
  }

  .menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 72px 0 54px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
    animation: none;
  }

  .hero-photo img {
    height: 320px;
  }

  .aboutSplitWrap {
    grid-template-columns: 1fr;
  }

  .aboutAccBtn {
    font-size: 22px;
  }

  .servicesCopilot .svcWrap {
    grid-template-columns: 1fr;
  }

  .svcHero {
    height: 420px;
    margin-bottom: 18px;
  }

  .svcGrid {
    grid-template-columns: 1fr;
  }

  .solutionsSpotlight {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutionsSpotlight .spotCard,
  .solutionsSpotlight .spotWide {
    grid-column: auto !important;
  }

  .industriesLayout {
    grid-template-columns: 1fr;
  }

  .whyCards {
    grid-template-columns: repeat(2, 1fr);
  }

  .whyCards .whyCard {
    grid-column: auto !important;
  }

  .whyFrame {
    padding: 18px;
    border-radius: 28px;
  }

  .helpCard {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .helpTitle {
    max-width: 100%;
  }

  .helpMedia {
    min-height: 200px;
  }

  .helpMainImg {
    max-width: 520px;
  }

  .platform-accent::before {
    opacity: .14;
    right: -220px;
  }

  #platform {
    scroll-margin-top: 82px;
    padding-top: 100px;
  }

  .sticky-tabs {
    top: 82px;
  }

  .feature-panel {
    grid-template-columns: 1fr;
  }

  .feature-media {
    border-left: none;
    border-top: 1px solid var(--line);
    min-height: 260px;
  }

  .teamGridTiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clientsShell {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .contactCard .row2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width:640px) {
  .whyCards {
    grid-template-columns: 1fr;
  }

  .solutionsSpotlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width:520px) {
  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding: 66px 0;
  }

  .hero-photo img {
    height: 260px;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .teamGridTiles {
    grid-template-columns: 1fr;
  }

  .clientsWall {
    grid-template-columns: 1fr;
    height: auto;
  }

  .clientsWall .fadeTop,
  .clientsWall .fadeBottom {
    display: none;
  }
}
/* Back to Top Button */
.button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgb(20, 20, 20);
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
  cursor: pointer;

  /* ALL Animations Smooth */
  transition: 
    width 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
    border-radius 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
    background-color 0.45s ease,
    opacity 0.5s ease;

  overflow: hidden;
  opacity: 0;         
  pointer-events: none;
  position: fixed;     
  bottom: 30px;        
  right: 30px;         
  z-index: 9999;
}

/* Smooth Icon */
.svgIcon {
  width: 12px;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.svgIcon path {
  fill: white;
}

/* Hover Effect */
.button:hover {
  width: 150px;
  border-radius: 50px;
  background-color: rgb(133, 100, 253);
}

.button:hover .svgIcon {
  transform: translateY(-220%);
}

/* Smooth Label Animation */
.button::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  font-size: 0px;
  opacity: 0;
  transition: all 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.button:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: 50%;
  transform: translateY(50%);
}

/* Show on scroll */
.button.show {
  opacity: 1;
  pointer-events: auto;
}
