/* ==========================================================================
   TECHSMITHS - MAIN STYLESHEET
   ========================================================================== */

:root {
  --white: #ffffff;
  --soft-bg: #f7f7fa;
  --soft-bg-2: #f3f1fa;
  --text: #111118;
  --muted: #666672;
  --purple: #6c4bff;
  --purple-light: #a785ff;
  --lavender: #eee9ff;
  --accent-pink: #ff6fae;
  --accent-blue: #45c4ff;
  --border: #e7e6ec;
  --dark: #111224;

  --font-head: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1360px;
  --side-pad: clamp(18px, 4vw, 60px);
  --section-pad: clamp(60px, 10vw, 160px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
/* overflow-x: clip (not hidden) - hidden forces the UA to auto-compute overflow-y: auto,
   turning body into a scroll container and silently breaking position: sticky everywhere */
html, body { max-width: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
input { font: inherit; }
svg { display: block; }

.container {
  max-width: 1826px;
  margin: 0 auto;
  padding: 0 28px 0 34px;
}

section { position: relative; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

em { font-style: normal; color: var(--purple); }

.label {
  display: inline-block;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple);
  margin-bottom: 18px;
}

.section-heading {
  font-size: clamp(42px, 5vw, 64px);
  margin-bottom: 20px;
}

.section-text {
  font-size: clamp(16px, 1.1vw, 18px);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 28px;
}

.highlight { color: var(--purple); }

/* ---------- buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.45s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn svg { transition: transform 0.35s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translate(3px, -3px); }
.btn-primary { background: var(--text); color: var(--white); }
.btn-primary:hover { background: var(--purple); }
  background: transparent;
  color: var(--text);
}
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--purple);
}
.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: var(--white);
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  position: relative;
  padding-bottom: 3px;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.link-underline:hover::after { transform: scaleX(0); transform-origin: left; }
.link-underline svg { transition: transform 0.35s var(--ease); }
.link-underline:hover svg { transform: translateX(3px); }

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot { width: 6px; height: 6px; background: var(--purple); }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid var(--purple-light); transition: width .25s ease, height .25s ease, opacity .25s ease; opacity: .7; }
.cursor-ring.is-active { width: 54px; height: 54px; opacity: 1; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 18px; left: 24px; right: 24px;
  z-index: 1000;
  padding: 10px 0;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 25px 60px -20px rgba(10, 8, 20, 0.5);
  transition: top 0.4s var(--ease), padding 0.4s var(--ease), background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.is-scrolled {
  top: 12px;
  padding: 8px 0;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 65px -18px rgba(10, 8, 20, 0.55);
}
.nav-inner {
  width: 100%;
  padding: 0 clamp(20px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: inline-flex; align-items: center; }
.logo-img { height: 62px; width: auto; object-fit: contain; display: block; }
.footer-logo .logo-img { height: 46px; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-link { font-size: 16px; font-weight: 500; position: relative; padding: 4px 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--purple); transition: width 0.35s var(--ease);
}
.nav-link:hover::after { width: 100%; }

/* Services mega-menu (desktop) */
.nav-item-dropdown { position: relative; }
.nav-link-drop { display: inline-flex; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
.nav-drop-caret { transition: transform .25s ease; }
.nav-item-dropdown.is-open .nav-drop-caret { transform: rotate(180deg); }
.mega-menu {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%);
  width: min(780px, 88vw); background: #fff; border-radius: 20px; padding: 30px 8px 22px;
  box-shadow: 0 30px 70px rgba(17,17,24,.18); border: 1px solid rgba(17,17,24,.06);
  opacity: 0; visibility: hidden; pointer-events: none; z-index: 400;
}
.nav-item-dropdown.is-open .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.mega-menu-inner { display: grid; grid-template-columns: 1fr 1fr 1fr 1.4fr; gap: 4px 22px; padding: 0 22px; }
.mega-col { display: flex; flex-direction: column; gap: 11px; }
.mega-col-label { margin-bottom: 2px; color: #6C4BFF; font: 700 12px/1 var(--font-head); letter-spacing: .14em; text-transform: uppercase; }
.mega-col a { color: #111118; font-size: 14px; font-weight: 500; text-decoration: none; transition: color .2s ease, transform .2s ease; display: inline-block; }
.mega-col a:hover { color: #6C4BFF; transform: translateX(3px); }
.mega-col-automate { border-left: 1px solid rgba(17,17,24,.08); padding-left: 22px; }
/* "Start a project" pill: one line, arrow in its own circle. Scoped under .mega-col so it beats ".mega-col a { display: inline-block }" */
.mega-col .mega-cta { margin-top: 14px; align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; padding: 7px 7px 7px 18px; border-radius: 100px; white-space: nowrap; background: linear-gradient(135deg, #6C4BFF, #9E45E8); color: #fff !important; font: 700 13px/1 var(--font-head) !important; box-shadow: 0 8px 20px rgba(108,75,255,.32); transition: transform .25s ease, box-shadow .25s ease, filter .25s ease; }
.mega-col .mega-cta svg { flex: 0 0 auto; width: 26px; height: 26px; padding: 6px; border-radius: 50%; background: rgba(255,255,255,.22); transition: transform .25s ease, background .25s ease; }
.mega-col .mega-cta:hover { transform: translateY(-2px) !important; color: #fff !important; filter: brightness(1.06); box-shadow: 0 12px 26px rgba(108,75,255,.42); }
.mega-col .mega-cta:hover svg { transform: translateX(2px); background: rgba(255,255,255,.32); }
.mega-col .mega-cta:focus-visible { outline: 2px solid #6C4BFF; outline-offset: 3px; }
@media (max-width: 1100px) { .mega-menu { width: min(600px, 90vw); } .mega-menu-inner { grid-template-columns: repeat(2, 1fr); row-gap: 20px; } .mega-col-automate { border-left: none; padding-left: 0; } }

.nav-contact { display:flex; align-items:center; gap:16px; margin-left:26px; }
.nav-phone-copy { text-align:right; line-height:1.08; }
.nav-phone-copy span { display:block; color:#f03cff; font-size:13px; margin-bottom:6px; }
.nav-phone-copy a { color:#111; font-size:16px; font-weight:700; white-space:nowrap; }
.nav-phone { width:49px; height:49px; display:grid; place-items:center; border-radius:50%; background:#edf0f3; color:#111; transition: background .3s ease, color .3s ease; }
.nav-phone:hover { background: var(--purple); color: #fff; }
.nav-cta { min-height:56px; display:inline-flex; align-items:center; gap:10px; padding:0 22px 0 7px; border-radius:6px; color:#fff; background:linear-gradient(100deg,#ee00f5,#5255e8); font-size:15px; }
.nav-cta span { display:grid; place-items:center; width:42px; height:42px; border-radius:4px; background:#fff; color:#a721f2; font-size:32px; line-height:1; }
.nav-cta strong { white-space:nowrap; }
.nav-toggle { display: none; position: relative; z-index: 1001; width: 44px; height: 44px; align-items: center; justify-content: center; }

.mobile-menu {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px var(--side-pad);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s var(--ease), opacity 0.4s ease, visibility 0.5s;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 22px; margin-bottom: 40px; max-height: 78vh; overflow-y: auto; }
.mobile-link { font-family: var(--font-head); font-size: 32px; font-weight: 700; }
.mobile-accordion-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; text-align: left; cursor: pointer; }
.mobile-accordion-caret { flex-shrink: 0; transition: transform .25s ease; }
.mobile-accordion-trigger.is-open .mobile-accordion-caret { transform: rotate(180deg); }
.mobile-accordion-panel { display: flex; flex-direction: column; gap: 14px; padding: 4px 0 4px 4px; }
.mobile-accordion-panel a { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: #55556a; }
.mobile-accordion-panel a:hover { color: #6C4BFF; }
.mobile-cta { align-self: flex-start; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 175px var(--side-pad) 90px;
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--soft-bg) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1826px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

/* ---------- colorful hero background blobs ---------- */
.hero-blobs { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform; }
.blob-purple {
  width: 480px; height: 480px; background: var(--purple); opacity: 0.4;
  top: -140px; right: 6%;
  animation: blobFloat1 17s ease-in-out infinite;
}
.blob-pink {
  width: 380px; height: 380px; background: var(--accent-pink); opacity: 0.32;
  bottom: -100px; right: 24%;
  animation: blobFloat2 14s ease-in-out infinite;
}
.blob-blue {
  width: 340px; height: 340px; background: var(--accent-blue); opacity: 0.28;
  top: 32%; left: -90px;
  animation: blobFloat3 19s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-35px, 45px) scale(1.08); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -35px) scale(1.06); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, 30px) scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-blob { animation: none; }
}
.hero-label { }
.hero-heading {
  font-size: clamp(64px, 7vw, 92px);
  margin-bottom: 26px;
}
.hero-heading .line { display: block; overflow: hidden; }
.hero-text { font-size: clamp(16px, 1.2vw, 19px); color: var(--muted); max-width: 46ch; margin-bottom: 34px; }
.hero-buttons { display: flex; align-items: center; gap: 20px; margin-bottom: 46px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 16px; }
.hero-proof p { font-size: 14px; color: var(--muted); }
.hero-proof strong { color: var(--text); }
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 2.5px solid var(--white);
  margin-left: -12px;
}
.avatar-stack img:first-child { margin-left: 0; }

.hero-right { position: relative; }
.hero-visual { position: relative; width: 100%; aspect-ratio: 4 / 4.4; will-change: transform; }
#heroCanvas { position: absolute; inset: -18%; width: 136%; height: 136%; z-index: 0; pointer-events: none; }
.hero-shot {
  position: relative; z-index: 1;
  width: 84%; height: 82%; object-fit: cover;
  margin: 6% auto 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(17, 17, 24, 0.28);
}
.card-brand { bottom: 20%; right: -8%; }
.card-app { bottom: -2%; left: 8%; }

/* ---------- right-side agency accents: orbiting dots + sparkles ---------- */
.hero-orbit {
  position: absolute; z-index: 3;
  top: -3%; right: 2%;
  width: 90px; height: 90px;
  animation: orbitSpin 13s linear infinite;
}
.orbit-dot { position: absolute; border-radius: 50%; }
.orbit-dot-1 {
  top: 0; left: 50%; width: 11px; height: 11px;
  background: var(--accent-pink); box-shadow: 0 0 18px 2px var(--accent-pink);
  transform: translateX(-50%);
}
.orbit-dot-2 {
  bottom: 6%; right: 0; width: 8px; height: 8px;
  background: var(--accent-blue); box-shadow: 0 0 16px 2px var(--accent-blue);
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.hero-spark { position: absolute; z-index: 3; animation: sparkPulse 2.6s ease-in-out infinite; }
.hero-spark-1 { top: -6%; right: 22%; color: var(--accent-blue); animation-delay: .3s; }
.hero-spark-2 { bottom: 3%; left: 36%; color: var(--accent-pink); animation-delay: 1.1s; }
@keyframes sparkPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-orbit, .hero-spark { animation: none; }
}

.hero-scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid var(--border); border-radius: 20px;
}
.hero-scroll-cue span {
  display: block; width: 4px; height: 8px; border-radius: 3px; background: var(--purple);
  margin: 7px auto 0; animation: scrollcue 1.8s infinite ease;
}
@keyframes scrollcue { 0% { transform: translateY(0); opacity: 1;} 70% { transform: translateY(14px); opacity: 0;} 100% { opacity: 0; } }

/* ==========================================================================
   HERO - DARK VARIANT (agency/AI-forward hero requested by client)
   ========================================================================== */
.hero.hero-dark {
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 700px at 75% 15%, rgba(108, 75, 255, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 800px 650px at 12% 85%, rgba(69, 196, 255, 0.22) 0%, transparent 55%),
    linear-gradient(160deg, #0a0a16 0%, #0d0a1e 50%, #090714 100%);
}
.hero-dark .hero-label { color: var(--accent-pink); }
.hero-dark .hero-heading { color: #f5f4ff; }
.hero-dark .hero-heading em.highlight,
.hero-dark .hero-heading em.highlight .word {
  background: linear-gradient(90deg, var(--purple-light), var(--accent-pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-dark .hero-text { color: rgba(255, 255, 255, 0.65); }
.hero-dark .hero-proof p { color: rgba(255, 255, 255, 0.55); }
.hero-dark .hero-proof strong { color: #fff; }
.hero-dark .avatar-stack img { border-color: rgba(10, 8, 20, 0.9); }
.hero-dark .btn-primary {
  background: linear-gradient(100deg, var(--purple), var(--accent-pink));
  color: #fff;
}
.hero-dark .btn-primary:hover { filter: brightness(1.12); }
.hero-dark .hero-scroll-cue { border-color: rgba(255, 255, 255, 0.22); }

.hero-dark .hero-blob { filter: blur(110px); }
.hero-dark .blob-purple { opacity: 0.55; }
.hero-dark .blob-pink { opacity: 0.42; }
.hero-dark .blob-blue { opacity: 0.4; }

/* robot sized/positioned to match the full-height shadow backdrop behind it */
.hero-visual-robot {
  position: absolute;
  z-index: 1;
  right: 18%;
  bottom: 105px;
  height: min(74vh, 680px);
  width: 31vw;
  max-width: 460px;
  pointer-events: none;
}
.hero-visual-robot .hero-orbit,
.hero-visual-robot .hero-spark {
  pointer-events: auto;
}
/* full right-side backdrop — covers the whole banner height on the right, robot sits in front of it */
.hero-shadow-img {
  position: absolute;
  z-index: 0;
  right: 0; top: 0;
  width: 62%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
  opacity: 0.95;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%);
  mask-image: linear-gradient(90deg, transparent, #000 12%);
  animation: shadowPulse 5s ease-in-out infinite;
}
@keyframes shadowPulse {
  0%, 100% { opacity: 0.88; }
  50% { opacity: 1; }
}
.hero-robot-img {
  position: absolute;
  right: 0; bottom: 0;
  height: 100%;
  width: auto; max-width: none;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 45px rgba(108, 75, 255, 0.35));
}
@media (prefers-reduced-motion: reduce) {
  .hero-shadow-img { animation: none; }
}

/* ---------- left social rail ---------- */
.hero-social-rail {
  position: absolute; z-index: 2;
  left: 22px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.rail-line { width: 1px; height: 56px; background: rgba(255, 255, 255, 0.2); }
.hero-social-rail a { color: rgba(255, 255, 255, 0.55); transition: color 0.3s ease, transform 0.3s ease; }
.hero-social-rail a:hover { color: #fff; transform: translateY(-2px); }

/* ---------- big bottom marquee watermark ---------- */
.hero-marquee {
  position: absolute; left: 0; right: 0; bottom: 4%;
  z-index: 0; overflow: hidden; pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.hero-marquee-track { display: flex; width: max-content; animation: heroMarquee 32s linear infinite; }
.hero-marquee-group {
  display: flex; white-space: nowrap;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(56px, 8vw, 130px); line-height: 1;
  color: rgba(255, 255, 255, 0.07);
}
.hero-marquee-group .outline { -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.22); color: transparent; }
@keyframes heroMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track { animation: none; }
}

/* ---------- floating chat bubble ---------- */
@keyframes chatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee-section { padding: 60px 0;  }
.marquee-label { text-align: center; width: 100%; display: block; }
.marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee-section:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-group { display: flex; align-items: center; }
.logo-item {
  font-family: var(--font-head); font-weight: 700; font-size: 22px;
  color: var(--muted); opacity: 0.55;
  padding: 0 44px;
  white-space: nowrap;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-section { padding: var(--section-pad) 0; overflow: hidden; }
.process-top { max-width: 640px; margin: 0 auto 20px; text-align: center; }
.process-top .section-text { margin: 0 auto; }

.process-arc-wrap { position: relative; padding-top: clamp(40px, 6vw, 80px); }
.arc-dome {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: min(1400px, 92vw);
  aspect-ratio: 2.6 / 1;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(ellipse at center, var(--soft-bg-2) 0%, var(--soft-bg) 60%, transparent 100%);
  z-index: 0;
}

.process-arc {
  position: relative;
  z-index: 1;
  height: clamp(560px, 46vw, 660px);
}
.arc-line { position: absolute; left: 0; bottom: 0; width: 100%; height: 100%; overflow: visible; }
.arc-bg { fill: none; stroke: var(--border); stroke-width: 3; }
.arc-fill { fill: none; stroke: url(#arcGradient); stroke-width: 3; stroke-dasharray: 1500; stroke-dashoffset: 1500; }

.process-node {
  position: absolute;
  left: var(--nx);
  bottom: var(--ny);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 232px;
  text-align: center;
}
.node-content {
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.process-node.is-active .node-content { opacity: 1; transform: translateY(0); }
.node-content h3 {
  font-family: var(--font-head); font-weight: 800; font-size: 15px;
  line-height: 1.25; margin-bottom: 8px; color: var(--node-color);
}
.node-content ul { display: flex; flex-direction: column; gap: 4px; }
.node-content li { font-size:12px; line-height: 1.45; color: var(--muted); text-align: left; }
.node-content li strong { color: var(--text); font-weight: 700; }

.node-icon {
  width: 58px; height: 58px; border-radius: 50% 50% 50% 6px;
  background: var(--node-color);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 14px 26px -10px color-mix(in srgb, var(--node-color) 65%, transparent);
  transition: transform .4s var(--ease);
}
.process-node.is-active .node-icon { transform: scale(1.08); }
.node-number {
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; border: 3px solid var(--node-color);
  color: var(--node-color);
  font-family: var(--font-head); font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.process-node.is-active .node-number { background: var(--node-color); color: #fff; }

.process-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; position: relative; z-index: 1; }
.process-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background .3s ease, transform .3s ease; }
.process-dots span.is-active { background: var(--dot-color); transform: scale(1.3); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-section { padding: var(--section-pad) 0 0; background: var(--soft-bg); }
.services-top { text-align: center; padding-bottom: 60px; }
.services-top .section-text { margin: 0 auto 0; }
.services-top .section-heading { margin-bottom: 18px; }

.services-interactive {
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: 0;
  position: relative;
}
.services-nav-col { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; }
.services-nav-list { width: 100%; border-right: 1px solid var(--border); padding-right: 30px; }
.service-nav-item {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 4px;
  font-size: 15px; font-weight: 600; color: var(--muted);
  cursor: pointer;
  transition: color .35s ease, padding-left .35s ease;
  border-left: 2px solid transparent;
}
.service-nav-item .snum { font-family: var(--font-head); font-size: 12px; color: var(--border); width: 20px; flex-shrink: 0; }
.service-nav-item.is-active { color: var(--text); padding-left: 8px; border-left-color: var(--purple); }
.service-nav-item.is-active .snum { color: var(--purple); }

.services-stage { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.services-panel { position: relative; width: 100%; padding: 0 0 0 60px; }
.service-panel-item {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.service-panel-item.is-active { display: grid; }
.service-panel-copy .service-icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--lavender); color: var(--purple);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.service-panel-copy .service-number { font-family: var(--font-head); font-size: 13px; color: var(--muted); letter-spacing: .1em; margin-bottom: 12px; display: block; }
.service-panel-copy h3 { font-size: clamp(30px, 3vw, 42px); margin-bottom: 16px; }
.service-panel-copy p { color: var(--muted); font-size: 16px; max-width: 42ch; margin-bottom: 24px; }
.service-keywords { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.service-keywords span { font-size: 12.5px; font-weight: 600; padding: 8px 16px; border-radius: 100px; background: var(--white); border: 1px solid var(--border); color: var(--text); }

.service-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3.3; box-shadow: 0 30px 60px -25px rgba(17,17,24,.2); }
.service-visual img { width: 100%; height: 100%; object-fit: cover; }

.services-accordion { display: none; padding: 40px var(--side-pad) 80px; }
.accordion-item {  }
.accordion-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; text-align: left; gap: 16px;
}
.accordion-head .a-left { display: flex; align-items: center; gap: 14px; }
.accordion-head .service-icon-sm { width: 38px; height: 38px; border-radius: 10px; background: var(--lavender); color: var(--purple); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.accordion-head h4 { font-size: 16.5px; }
.accordion-head .a-plus { transition: transform .35s var(--ease); flex-shrink: 0; color: var(--purple); }
.accordion-item.is-open .a-plus { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.accordion-body-inner { padding: 0 0 26px 52px; }
.accordion-body-inner img { border-radius: var(--radius-md); margin-top: 16px; aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.accordion-body-inner p { color: var(--muted); font-size: 15px; }

/* ==========================================================================
   WHY CHOOSE
   ========================================================================== */
.why-section { padding: var(--section-pad) 0; }
.why-grid { display: grid; grid-template-columns: 0.82fr 1fr 0.82fr; gap: 40px; align-items: center; }
.why-center { position: relative; }
.why-image-wrap { position: relative; transform: rotate(-2.5deg); }
.why-image { width: 100%; aspect-ratio: 3/3.6; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 40px 70px -30px rgba(17,17,24,.3); }
.why-overlay {
  position: absolute; left: -8%; top: 12%; transform: rotate(4deg);
  background: var(--white); border-radius: var(--radius-md);
  padding: 18px 22px; box-shadow: 0 20px 40px -18px rgba(17,17,24,.22);
  font-family: var(--font-head); font-weight: 700; font-size: 17px; line-height: 1.25;
}
.why-avatars { position: absolute; right: -6%; bottom: 8%; transform: rotate(3deg); display: flex; align-items: center; background: var(--white); border-radius: 100px; padding: 8px; box-shadow: 0 20px 40px -18px rgba(17,17,24,.22); }
.why-avatars img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--white); margin-left: -10px; }
.why-avatars img:first-child { margin-left: 0; }
.avatar-more { width: 36px; height: 36px; border-radius: 50%; background: var(--purple); color: var(--white); font-size:12px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-left: -10px; }

.feature-list { display: flex; flex-direction: column; gap: 30px; }
.feature-item { display: flex; gap: 16px; }
.feature-number { font-family: var(--font-head); font-weight: 700; color: var(--purple-light); font-size: 15px; padding-top: 2px; }
.feature-item h3 { font-size: 17px; margin-bottom: 6px; }
.feature-item p { font-size: 14.5px; color: var(--muted); }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats-section { background: var(--dark); color: var(--white); padding: clamp(70px, 8vw, 110px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; text-align: center; }
.stat-number { font-family: var(--font-head); font-weight: 800; font-size: clamp(38px, 4vw, 56px); color: var(--white); margin-bottom: 10px; }
.stat-label { font-size: 13.5px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }

/* ==========================================================================
   PROJECTS
   ========================================================================== */
.projects-section { padding: var(--section-pad) 0; }
.projects-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 56px; }
.projects-top-right { max-width: 420px; text-align: right; margin-left: auto; }
.projects-top-right .section-text { margin-left: auto; text-align: right; }

.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.project-card { display: block; group: card; }
.project-image-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/11; margin-bottom: 22px; }
.project-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.project-card:hover .project-image-wrap img { transform: scale(1.045); }
.project-info { display: flex; justify-content: space-between; align-items: center; padding-bottom: 22px;  transition: border-color .35s ease; }
.project-card:hover .project-info { border-color: var(--text); }
.project-title { font-size: 22px; margin-bottom: 6px; transition: transform .35s var(--ease); }
.project-card:hover .project-title { transform: translateX(6px); }
.project-service { font-size: 13.5px; color: var(--muted); }
.project-arrow {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .4s var(--ease), background .35s ease, color .35s ease, border-color .35s ease;
}
.project-card:hover .project-arrow { transform: translate(4px, -4px); background: var(--purple); color: var(--white); border-color: var(--purple); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-section { padding: var(--section-pad) 0; background: var(--soft-bg); }
.gallery-top { margin-bottom: 44px; }
.gallery-filters { display: flex; gap: 10px; margin-top: 30px; flex-wrap: wrap; }
.filter-btn { padding: 11px 22px; border-radius: 100px; font-size: 14px; font-weight: 600; border: 1px solid var(--border); background: var(--white); color: var(--muted); transition: all .3s ease; }
.filter-btn.is-active, .filter-btn:hover { background: var(--text); color: var(--white); border-color: var(--text); }

.gallery-swiper { padding: 0 var(--side-pad) 10px; overflow: visible; }
.gallery-swiper .swiper-wrapper { }
.gallery-slide {
  width: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery-slide .g-tag {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  padding: 7px 14px; border-radius: 100px; font-size: 12px; font-weight: 700;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section { padding: var(--section-pad) 0; }
.testimonials-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 60px; align-items: center; }
.testimonial-nav { display: flex; gap: 12px; margin-top: 30px; }
.t-nav-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all .3s ease; }
.t-nav-btn:hover { background: var(--text); color: var(--white); border-color: var(--text); }

.testimonials-right { position: relative; min-width: 0; }
.abstract-shape {
  position: absolute; right: -8%; top: -14%;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--purple-light), var(--lavender) 70%, transparent 100%);
  filter: blur(4px); opacity: .55; z-index: 0;
}
.testimonial-swiper { position: relative; z-index: 1; min-width: 0; }
.testimonial-slide { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(34px, 4vw, 60px); }
.quote-icon { color: var(--purple-light); margin-bottom: 24px; }
.quote-text { font-family: var(--font-head); font-size: clamp(21px, 2vw, 28px); font-weight: 600; line-height: 1.4; margin-bottom: 34px; }
.client-info { display: flex; align-items: center; gap: 14px; }
.client-info img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.client-name { font-weight: 700; font-size: 15px; }
.client-role { font-size: 13.5px; color: var(--muted); }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-section { padding: var(--section-pad) 0; }
.blog-top { margin-bottom: 50px; }
.blog-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; }
.blog-card { display: block; }
.blog-image-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; }
.blog-card-featured .blog-image-wrap { aspect-ratio: 16/11.5; }
.blog-card-small .blog-image-wrap { aspect-ratio: 16/10; }
.blog-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.blog-card:hover .blog-image-wrap img { transform: scale(1.05); }
.blog-category { position: absolute; left: 18px; top: 18px; background: var(--white); padding: 7px 14px; border-radius: 100px; font-size: 12px; font-weight: 700; }
.blog-info { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.blog-meta { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.blog-title { font-size: clamp(19px, 1.8vw, 26px); transition: color .3s ease; max-width: 26ch; }
.blog-card:hover .blog-title { color: var(--purple); }
.blog-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .35s var(--ease); }
.blog-card:hover .blog-arrow { background: var(--purple); color: var(--white); border-color: var(--purple); transform: translate(3px,-3px); }
.blog-stack { display: flex; flex-direction: column; gap: 28px; }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-section { padding: var(--section-pad) 0; }
.cta-inner {
  background: var(--lavender);
  border-radius: var(--radius-lg);
  padding: clamp(50px, 6vw, 90px) clamp(30px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  position: relative;
}
.cta-inner .section-heading { margin-bottom: 16px; }
.cta-buttons { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 30px; }
.cta-right { position: relative; height: 260px; display: flex; align-items: center; justify-content: center; }
.cta-blob {
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, var(--purple-light) 60%, var(--purple) 100%);
  box-shadow: 0 40px 80px -20px rgba(108,75,255,.45);
  will-change: transform;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--white); border-top: 1px solid var(--border); padding: var(--section-pad) 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr 1.2fr; gap: 40px; padding-bottom: 60px; }
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-text { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; max-width: 26ch; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all .3s ease; }
.footer-socials a:hover { background: var(--purple); border-color: var(--purple); color: var(--white); }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; color: var(--muted); }
.footer-col a { display: block; font-size: 14.5px; margin-bottom: 14px; color: var(--text); transition: color .3s ease; width: fit-content; }
.footer-col a:hover { color: var(--purple); }
.footer-newsletter h4 { font-size: 15px; margin-bottom: 10px; }
.footer-newsletter p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.footer-newsletter form { display: flex; border: 1px solid var(--border); border-radius: 100px; padding: 5px 5px 5px 20px; }
.footer-newsletter input { flex: 1; border: none; outline: none; font-size: 14px; background: transparent; }
.footer-newsletter button { width: 38px; height: 38px; border-radius: 50%; background: var(--text); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .3s ease; }
.footer-newsletter button:hover { background: var(--purple); }
.newsletter-msg { min-height: 18px; margin-top: 10px; font-size: 12.5px; color: var(--purple); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 30px; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--muted); }

/* ==========================================================================
   MODAL (SHOWREEL)
   ========================================================================== */

/* ---------- reveal helpers used by JS ---------- */
[data-reveal] { will-change: transform, opacity; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

@media (min-width: 1025px) { .service-panel-item.is-active { animation: servicePanelIn .7s cubic-bezier(.22,1,.36,1) both; } .service-panel-item.is-active .service-panel-copy { animation: serviceCopyIn .7s cubic-bezier(.22,1,.36,1) both; } .service-panel-item.is-active .service-visual { animation: serviceImageIn .8s cubic-bezier(.22,1,.36,1) .06s both; } } @keyframes servicePanelIn { from { opacity:0; transform:translateY(22px) scale(.985); } to { opacity:1; transform:translateY(0) scale(1); } } @keyframes serviceCopyIn { from { opacity:0; transform:translateX(-18px); } to { opacity:1; transform:translateX(0); } } @keyframes serviceImageIn { from { opacity:0; transform:translateX(24px) scale(.97); } to { opacity:1; transform:translateX(0) scale(1); } }

/* Refined services layout */
.services-section { position:relative; overflow:hidden; padding-top:clamp(72px,8vw,110px); background:radial-gradient(circle at 18% 35%, rgba(118,76,255,.07), transparent 26%), var(--soft-bg); }
.services-section::before { content:''; position:absolute; width:260px; height:260px; border:1px solid rgba(118,76,255,.16); border-radius:50%; top:190px; left:22%; box-shadow:0 0 0 18px rgba(118,76,255,.025), 0 0 0 36px rgba(118,76,255,.018); pointer-events:none; }
.services-top { padding-bottom:28px; position:relative; z-index:1; }
.services-top .section-heading { max-width:620px; margin-left:auto; margin-right:auto; }
.services-top .section-text { max-width:520px; }
.services-interactive { position:relative; z-index:1; }
.services-nav-list { padding-right:24px; }
.service-nav-item { padding:11px 4px; font-size:14px; }
.services-panel { padding-left:48px; }
.service-panel-copy h3 { margin-top:4px; }
.service-visual { box-shadow:0 24px 55px -22px rgba(64,42,140,.3); }
@media (max-width:1024px) { .services-section { padding-top:64px; } .services-top { padding-bottom:20px; } }


/* Navbar proportions refinement */
.nav-inner { min-height:122px; border-radius:8px; }
.navbar { padding-top:12px; padding-bottom:24px; }
@media (max-width:768px) { .navbar { padding-top:8px; padding-bottom:14px; } .nav-inner { min-height:88px; border-radius:7px; } }

.nav-inner { border-radius:2px; }
@media (max-width:768px) { .nav-inner { border-radius:2px; } }

/* Navbar interaction refinement */
.nav-inner { position:relative; }
.nav-links { position:absolute; left:50%; transform:translateX(-50%); margin-left:0; gap:30px; }
.nav-link { font-size:18px; }
.nav-contact { margin-left:auto; position:relative; z-index:2; }
.nav-phone-copy a { cursor:pointer; transition:color .25s ease; }
.nav-phone-copy a:hover { color:#8b28f5; }
.nav-phone { cursor:pointer; transition:transform .3s ease, background .3s ease; }
.nav-phone:hover { transform:rotate(-45deg) scale(1.08); background:#e4d9ff; }
.nav-cta { position:relative; overflow:hidden; isolation:isolate; animation:contactPulse 2.8s ease-in-out infinite; }
.nav-cta::after { content:''; position:absolute; inset:0; width:38%; background:linear-gradient(105deg,transparent,rgba(255,255,255,.42),transparent); transform:translateX(-180%) skewX(-18deg); animation:contactShine 3.4s ease-in-out infinite; pointer-events:none; z-index:-1; }
.nav-cta:hover { animation-play-state:paused; transform:translateY(-2px); box-shadow:0 10px 24px rgba(111,43,236,.3); }
@keyframes contactPulse { 0%,100% { box-shadow:0 6px 16px rgba(111,43,236,.12); } 50% { box-shadow:0 9px 24px rgba(111,43,236,.28); } }
@keyframes contactShine { 0%,55% { transform:translateX(-180%) skewX(-18deg); } 78%,100% { transform:translateX(360%) skewX(-18deg); } }
@media (max-width:1024px) { .nav-links { position:static; transform:none; } .nav-link { font-size:16px; } }

/* Stronger navbar emphasis */
.nav-link { font-size:20px; font-weight:600; letter-spacing:.01em; }
.nav-cta { background:linear-gradient(110deg,#ed00f5,#742cff,#4d62f5,#ed00f5); background-size:280% 100%; animation:contactGradient 4s ease infinite, contactFloat 2.2s ease-in-out infinite; }
.nav-cta::before { content:''; position:absolute; inset:2px; border-radius:4px; border:1px solid rgba(255,255,255,.28); pointer-events:none; }
.nav-cta::after { width:48%; animation:contactShine 2.6s ease-in-out infinite; }
.nav-cta span,.nav-cta strong { position:relative; z-index:1; }
.nav-cta:hover { transform:translateY(-4px) scale(1.025); filter:saturate(1.2) brightness(1.08); box-shadow:0 14px 32px rgba(111,43,236,.42); }
@keyframes contactGradient { 0%,100% { background-position:0% 50%; } 50% { background-position:100% 50%; } }
@keyframes contactFloat { 0%,100% { box-shadow:0 7px 16px rgba(111,43,236,.18); } 50% { box-shadow:0 12px 28px rgba(111,43,236,.42); } }
@media (max-width:1024px) { .nav-link { font-size:17px; } }
@media (prefers-reduced-motion:reduce) { .nav-cta { animation:none; } .nav-cta::after { animation:none; } }

.nav-link-service { display:inline-flex; align-items:center; gap:5px; }
.service-caret { font-size:15px; line-height:1; color:currentColor; transform:translateY(-1px); transition:transform .25s ease; }
.nav-link-service:hover .service-caret { transform:translateY(1px); }

.nav-phone-copy { display:flex; flex-direction:column; align-items:flex-end; }
.nav-phone-copy a { display:block; cursor:pointer; }

.service-caret { display:inline-block; width:0; height:0; margin-left:2px; border-left:4px solid transparent; border-right:4px solid transparent; border-top:5px solid currentColor; transform:translateY(1px); transition:transform .25s ease; }
.nav-link-service:hover .service-caret { transform:translateY(3px); }

/* Larger navbar contact controls */
.nav-phone-copy span { font-size:14px; }
.nav-phone-copy a { font-size:18px; line-height:1.12; }
.nav-phone { width:58px; height:58px; }
.nav-phone svg { width:23px; height:23px; }
.nav-cta { min-height:64px; padding-right:25px; font-size:17px; gap:12px; }
.nav-cta span { width:48px; height:48px; font-size:30px; }
.nav-cta span svg { width:20px; height:20px; }
@media (max-width:768px) { .nav-phone-copy a { font-size:15px; } .nav-cta { min-height:52px; font-size:14px; padding-right:13px; } .nav-cta span { width:38px; height:38px; } }
.marquee-label { max-width:900px; margin:0 auto 28px; line-height:1.35; text-transform:none; letter-spacing:.02em; font-size:15px; }
.logo-item { display:flex; align-items:center; justify-content:center; width:210px; height:74px; padding:0 28px; }
.logo-item img { display:block; max-width:150px; max-height:48px; width:auto; height:auto; object-fit:contain; filter:grayscale(1); opacity:.58; transition:filter .3s ease, opacity .3s ease, transform .3s ease; }
.logo-item:hover img { filter:grayscale(0); opacity:1; transform:scale(1.06); }
@media (max-width:768px) { .marquee-section { padding:44px 0; } .marquee-label { padding:0 22px; font-size:13px; } .logo-item { width:160px; height:62px; padding:0 18px; } .logo-item img { max-width:120px; max-height:38px; } }
/* Continuous full-color client logo slider */
.marquee-track { display:flex; width:max-content; will-change:transform; animation:marquee 24s linear infinite; }
.marquee-group { display:flex; align-items:center; flex-shrink:0; }
.logo-item { flex:0 0 210px; }
.logo-item img { filter:none; opacity:1; }
.marquee-section:hover .marquee-track { animation-play-state:running; }
@media (max-width:768px) { .logo-item { flex-basis:160px; } .marquee-track { animation-duration:20s; } }

.marquee-heading { position:relative; width:fit-content; max-width:calc(100% - 44px); margin:0 auto 34px; text-align:center; font-size:clamp(22px,2.6vw,38px); line-height:1.18; letter-spacing:-.035em; color:#12121d; }
.marquee-heading::before { content:''; display:block; width:46px; height:4px; margin:0 auto 15px; border-radius:8px; background:linear-gradient(90deg,#7728ff,#21bdf4); box-shadow:0 0 18px rgba(119,40,255,.28); }
.marquee-heading em { font-style:normal; background:linear-gradient(90deg,#7925ff,#e323e9,#268ef6); -webkit-background-clip:text; background-clip:text; color:transparent; }
.marquee-heading span { display:block; color:#6f6d7b; font-size:.72em; font-weight:500; letter-spacing:0; margin-top:8px; }
@media (max-width:768px) { .marquee-heading { font-size:24px; margin-bottom:24px; } .marquee-heading span { font-size:.78em; } }

/* Full-size original-color client logos */
.logo-item { flex-basis:250px; height:96px; }
.logo-item img { max-width:190px; max-height:64px; filter:none !important; opacity:1 !important; mix-blend-mode:normal; }
@media (max-width:768px) { .logo-item { flex-basis:190px; height:78px; } .logo-item img { max-width:150px; max-height:50px; } }

/* Seamless never-ending logo marquee */
.marquee-track { width:max-content; display:flex; animation-name:marquee; animation-duration:22s; animation-timing-function:linear; animation-iteration-count:infinite; animation-fill-mode:none; }
.marquee-group { flex:0 0 auto; }
.marquee-wrap { overflow:hidden; }

/* Keep the next logo directly after Automyta */
.marquee-group { width:1250px; min-width:1250px; flex:0 0 1250px; }
.logo-item { flex:0 0 250px; width:250px; }
@media (max-width:768px) { .marquee-group { width:950px; min-width:950px; flex-basis:950px; } .logo-item { flex-basis:190px; width:190px; } }

/* Breathing room between hero banner and client slider */
.marquee-section { margin-top:clamp(34px,5vw,72px); padding:clamp(72px,8vw,110px) 0 clamp(58px,7vw,90px); }
.marquee-heading { margin-bottom:38px; }
.logo-item img { filter:none !important; opacity:1 !important; }
@media (max-width:768px) { .marquee-section { margin-top:28px; padding:58px 0 54px; } }
.marquee-track, .marquee-group { gap:0 !important; margin:0 !important; padding:0 !important; } .logo-item { margin:0 !important; }
/* Extra-large client logos */
.logo-item { flex-basis:280px; width:280px; height:112px; }
.logo-item img { max-width:225px; max-height:78px; }
.marquee-group { width:1400px; min-width:1400px; flex-basis:1400px; }
@media (max-width:768px) { .logo-item { flex-basis:220px; width:220px; height:88px; } .logo-item img { max-width:180px; max-height:62px; } .marquee-group { width:1100px; min-width:1100px; flex-basis:1100px; } }

.logo-item { flex-basis:320px; width:320px; height:128px; }
.logo-item img { max-width:260px; max-height:90px; }
.marquee-group { width:1600px; min-width:1600px; flex-basis:1600px; }
@media (max-width:768px) { .logo-item { flex-basis:245px; width:245px; height:98px; } .logo-item img { max-width:205px; max-height:72px; } .marquee-group { width:1225px; min-width:1225px; flex-basis:1225px; } }

/* Restore strong original logo colors */
.marquee-section, .marquee-wrap, .marquee-track, .marquee-group, .logo-item { opacity:1 !important; }
.logo-item img { filter:brightness(1.18) saturate(1.45) contrast(1.12) !important; opacity:1 !important; mix-blend-mode:normal !important; }

.logo-item { text-decoration:none; cursor:pointer; }
.logo-item:focus-visible { outline:2px solid #762cff; outline-offset:5px; border-radius:8px; }

/* Fix six-logo marquee spacing */
.marquee-group { width:1920px; min-width:1920px; flex-basis:1920px; }
.logo-item { flex:0 0 320px; width:320px; }
@media (max-width:768px) { .marquee-group { width:1470px; min-width:1470px; flex-basis:1470px; } .logo-item { flex:0 0 245px; width:245px; } }

/* Compact services scrollytelling footprint */
.services-section { padding-bottom:0; }
.services-interactive { margin-bottom:0; }
/* Reference-inspired process cards */
.process-section { padding:clamp(82px,9vw,125px) 0; background:linear-gradient(180deg,#fbfaff 0%,#f1efff 100%); overflow:hidden; }
.process-top { text-align:center; max-width:680px; margin:0 auto 48px; }
.process-top .label { margin-bottom:14px; }
.process-top .section-heading { font-size:clamp(38px,5vw,62px); line-height:1; margin-bottom:16px; }
.process-top .section-text { margin:0 auto; max-width:560px; }
.process-arc-wrap { position:relative; max-width:1280px; margin:0 auto; padding:18px var(--side-pad) 30px; }
.process-arc-wrap::before { content:''; position:absolute; inset:0 0 18px; background:radial-gradient(circle at 50% 0%,rgba(125,75,255,.12),transparent 52%); pointer-events:none; }
.process-arc { display:grid; grid-template-columns:repeat(5,1fr); gap:20px; position:relative; z-index:1; }
.arc-line,.arc-dome,.process-dots { display:none; }
.process-node { position:relative !important; inset:auto !important; display:flex; flex-direction:column; min-height:330px; padding:0; border-radius:24px; background:linear-gradient(145deg,rgba(106,72,255,.72),rgba(44,188,242,.55)); box-shadow:0 22px 45px rgba(77,52,168,.14); }
.process-node:nth-child(2n) { background:linear-gradient(145deg,rgba(139,71,255,.72),rgba(218,65,221,.52)); transform:translateY(28px) !important; }
.process-node:nth-child(3n) { background:linear-gradient(145deg,rgba(36,139,255,.72),rgba(40,205,207,.52)); }
.node-content { order:2; margin:38px 14px 14px; padding:22px 20px; flex:1; border-radius:18px; background:rgba(255,255,255,.94); box-shadow:0 12px 25px rgba(50,32,112,.1); }
.node-content h3 { color:#19182b; font-size:18px; line-height:1.15; margin-bottom:13px; }
.node-content ul { margin:0; padding:0; list-style:none; }
.node-content li { color:#747285; font-size:12px; line-height:1.55; margin-bottom:6px; }
.node-icon { position:absolute; top:15px; right:15px; width:48px; height:48px; display:grid; place-items:center; border-radius:50%; background:rgba(255,255,255,.9); color:#7046ff; }
.node-number { position:absolute; top:27px; left:18px; color:#fff; font-size:21px; font-weight:800; }
.process-node.is-active { filter:saturate(1.12); }
.process-node.is-active .node-icon { transform:scale(1.1); }
@media (max-width:1024px) { .process-arc { grid-template-columns:repeat(2,1fr); } .process-node:nth-child(2n) { transform:none !important; } }
@media (max-width:600px) { .process-section { padding:70px 0; } .process-arc { grid-template-columns:1fr; gap:18px; } .process-node,.process-node:nth-child(2n) { min-height:270px; transform:none !important; } .node-content { margin-top:34px; } }/* Close reference match: three layered process cards */
.process-section { background:#fbf8f0; padding:clamp(82px,9vw,124px) 0 106px; }
.process-top { max-width:650px; margin-bottom:54px; }
.process-top .section-heading { font-family:Georgia,'Times New Roman',serif; font-size:clamp(42px,5vw,64px); font-weight:700; letter-spacing:-.04em; color:#343342; }
.process-top .section-text { color:#77747c; font-size:14px; }
.process-arc-wrap { max-width:1180px; }
.process-arc { grid-template-columns:repeat(3,1fr); gap:54px; }
.process-node { min-height:340px; border-radius:16px 16px 16px 16px; background:linear-gradient(145deg,#7553ff,#2b9bf1); box-shadow:none; }
.process-node::before { content:''; position:absolute; z-index:-1; inset:-20px 0 0 -18px; border-radius:16px; background:linear-gradient(145deg,#4d2fc2,#6d4aff); opacity:.95; }
.process-node:nth-child(2n) { transform:translateY(0) !important; background:linear-gradient(145deg,#ad8bff,#d43bda); }
.process-node:nth-child(2n)::before { background:linear-gradient(145deg,#84702e,#b9aa57); }
.process-node:nth-child(3n) { background:linear-gradient(145deg,#36a1ff,#4cc7e8); }
.process-node:nth-child(3n)::before { background:linear-gradient(145deg,#d09c46,#e5c581); }
.process-node:nth-child(n+4) { display:none; }
.node-content { margin:20px -18px 14px 20px; padding:30px 24px 22px; border-radius:18px; }
.node-content h3 { font-family:Georgia,'Times New Roman',serif; font-size:22px; }
.node-content li { font-size:13px; }
.node-number { top:19px; right:-5px; left:auto; min-width:58px; height:42px; display:flex; align-items:center; justify-content:center; border-radius:22px 0 0 22px; background:rgba(255,255,255,.9); color:#5f4ae8; font-size:20px; }
.node-icon { display:none; }
@media (max-width:900px) { .process-arc { gap:30px; } }
@media (max-width:650px) { .process-arc { grid-template-columns:1fr; gap:28px; } .process-node { min-height:300px; } .process-node:nth-child(n+4) { display:flex; } }/* Why Choose: reference-inspired motion polish */
.why-section { overflow:hidden; }
.why-center { perspective:1000px; }
.why-image-wrap { animation:whyFloat 6s ease-in-out infinite; transform-origin:center; }
.why-image-wrap::before { content:''; position:absolute; inset:-14px; border:1px solid rgba(111,73,255,.16); border-radius:var(--radius-lg); transform:rotate(4deg); animation:whyRing 8s ease-in-out infinite; pointer-events:none; }
.why-image { transition:transform .7s cubic-bezier(.22,1,.36,1), filter .7s ease; }
.why-center:hover .why-image { transform:scale(1.035) rotate(1deg); filter:saturate(1.1) contrast(1.04); }
.why-overlay { transition:transform .45s cubic-bezier(.22,1,.36,1),box-shadow .45s ease; }
.why-center:hover .why-overlay { transform:translateY(-8px) rotate(-2deg); box-shadow:0 24px 45px -18px rgba(83,48,180,.3); }
.why-avatars { animation:avatarFloat 4s ease-in-out 1s infinite; }
.feature-item { position:relative; padding:16px 0 16px 0; border-bottom:1px solid rgba(111,73,255,.12); transition:transform .35s ease,padding-left .35s ease; }
.feature-item::after { content:''; position:absolute; left:0; bottom:-1px; width:0; height:2px; background:linear-gradient(90deg,#7046ff,#27c4ef); transition:width .45s ease; }
.feature-item:hover { transform:translateX(8px); }
.feature-item:hover::after { width:100%; }
.feature-number { transition:color .3s ease,transform .3s ease; }
.feature-item:hover .feature-number { color:#7046ff; transform:scale(1.12); }
@keyframes whyFloat { 0%,100% { transform:rotate(-2.5deg) translateY(0); } 50% { transform:rotate(-1deg) translateY(-10px); } }
@keyframes whyRing { 0%,100% { transform:rotate(4deg) scale(1); opacity:.55; } 50% { transform:rotate(1deg) scale(1.025); opacity:1; } }
@keyframes avatarFloat { 0%,100% { transform:rotate(3deg) translateY(0); } 50% { transform:rotate(1deg) translateY(-6px); } }
@media (prefers-reduced-motion:reduce) { .why-image-wrap,.why-avatars,.why-image-wrap::before { animation:none; } }/* Premium four-card process section */
.process-section { padding:clamp(86px,9vw,130px) 0; background:#F8F7FC; overflow:hidden; }
.process-container { width:min(1360px,calc(100% - 44px)); margin:0 auto; }
.process-header { text-align:center; max-width:680px; margin:0 auto 60px; }
.process-eyebrow { margin:0 0 14px; color:#6C4BFF; font:700 12px/1 var(--font-head); letter-spacing:2px; }
.process-header h2 { margin:0 0 16px; color:#111118; font:800 clamp(38px,5vw,58px)/1.05 var(--font-head); letter-spacing:-.04em; }
.process-subtitle { max-width:650px; margin:0 auto; color:#6A6A74; font:400 16px/1.65 var(--font-body); }
/* vertical process list: alternating number-circle / content either side of a center spine */
.ptl-list { position: relative; max-width: 980px; margin: 0 auto; }
.ptl-list::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: #E4E1F2; transform: translateX(-50%); z-index: 0; }
.ptl-fill { position: absolute; left: 50%; top: 0; width: 2px; height: 0; background: linear-gradient(180deg,#8b5cf6,#6d28d9); transform: translateX(-50%); z-index: 0; }

.ptl-item { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 110px 1fr; align-items: center; min-height: 140px; }
.ptl-item + .ptl-item { margin-top: 6px; }

.ptl-circle {
  position: relative; z-index: 2; display: grid; place-items: center;
  width: 74px; height: 74px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(150deg, #8b5cf6, #7c3aed 60%, #6d28d9);
  color: #fff; font: 800 24px/1 var(--font-head);
  box-shadow: 0 16px 30px rgba(108,75,255,.32), 0 0 0 6px #fff;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.ptl-item[data-side="left"] .ptl-circle { grid-column: 1; justify-self: end; }
.ptl-item[data-side="right"] .ptl-circle { grid-column: 3; justify-self: start; }
.ptl-item:hover .ptl-circle { transform: scale(1.08); box-shadow: 0 20px 38px rgba(108,75,255,.4), 0 0 0 6px #fff; }

.ptl-gutter { position: relative; grid-column: 2; height: 100%; }
.ptl-gutter::before {
  content: ''; position: absolute; left: 50%; top: 50%; z-index: 2;
  width: 15px; height: 15px; border-radius: 50%; transform: translate(-50%,-50%);
  background: #7c3aed; box-shadow: 0 0 0 5px #fff, 0 0 0 6px #E4E1F2;
}
.ptl-gutter::after { content: ''; position: absolute; top: 50%; height: 2px; background: #D9D2F5; transform: translateY(-50%); }
.ptl-item[data-side="left"] .ptl-gutter::after { left: 0; right: 50%; }
.ptl-item[data-side="right"] .ptl-gutter::after { left: 50%; right: 0; }

.ptl-content { grid-column: 1; justify-self: start; max-width: 340px; text-align: left; }
.ptl-item[data-side="right"] .ptl-content { grid-column: 3; }
.ptl-content h3 { margin: 0 0 8px; color: #111118; font: 700 20px/1.2 var(--font-head); }
.ptl-content p { margin: 0; color: #6A6A74; font: 400 14px/1.65 var(--font-body); }

@media (max-width: 900px) {
  .ptl-item { grid-template-columns: 1fr 90px 1fr; min-height: 120px; }
  .ptl-circle { width: 62px; height: 62px; font-size: 20px; }
  .ptl-content { max-width: 280px; }
}
@media (max-width: 720px) {
  .ptl-list::before, .ptl-fill { left: 37px; }
  .ptl-item, .ptl-item[data-side="right"] { grid-template-columns: 74px 1fr; gap: 18px; }
  .ptl-item[data-side="left"] .ptl-circle,
  .ptl-item[data-side="right"] .ptl-circle { grid-column: 1; grid-row: 1; justify-self: start; }
  .ptl-gutter { display: none; }
  .ptl-content, .ptl-item[data-side="right"] .ptl-content { grid-column: 2; grid-row: 1; max-width: none; }
}
@media (max-width: 480px) {
  .ptl-list::before, .ptl-fill { left: 29px; }
  .ptl-item, .ptl-item[data-side="right"] { grid-template-columns: 58px 1fr; gap: 14px; min-height: 0; }
  .ptl-item + .ptl-item { margin-top: 26px; }
  .ptl-circle { width: 58px; height: 58px; font-size: 18px; box-shadow: 0 10px 20px rgba(108,75,255,.3), 0 0 0 5px #fff; }
  .ptl-content h3 { font-size: 17px; }
  .ptl-content p { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) { .ptl-circle { transition: none; } }

/* Compact premium navbar proportions */
.navbar { padding-top:10px; padding-bottom:18px; }
.nav-inner { min-height:88px; padding-left:28px; padding-right:22px; }
.logo-img { height:52px; }
.nav-link { font-size:18px; }
.nav-phone-copy span { font-size:12px; margin-bottom:3px; }
.nav-phone-copy a { font-size:15px; line-height:1.05; }
.nav-phone { width:48px; height:48px; }
.nav-cta { min-height:52px; padding-right:17px; font-size:15px; }
.nav-cta span { width:38px; height:38px; font-size:24px; }
@media (max-width:768px) { .navbar { padding-top:7px; padding-bottom:12px; } .nav-inner { min-height:70px; padding-left:16px; padding-right:12px; } .logo-img { height:42px; } .nav-cta { min-height:44px; font-size:12px; } .nav-cta span { width:32px; height:32px; } }
/* Cinematic Services showcase */
.services-showcase { position:relative; overflow:hidden; padding:clamp(100px,11vw,150px) 0; background:#F7F7FA; }
.services-showcase::before { content:''; position:absolute; width:620px; height:620px; right:-260px; top:-260px; border-radius:50%; background:rgba(108,75,255,.07); filter:blur(14px); pointer-events:none; }
.services-container { width:min(1360px,calc(100% - 44px)); margin:0 auto; position:relative; z-index:1; }
.services-showcase-top { display:grid; grid-template-columns:1.1fr .72fr; align-items:end; gap:60px; margin-bottom:72px; }
.services-eyebrow { display:inline-flex; align-items:center; gap:9px; margin-bottom:20px; color:#6C4BFF; font:700 12px/1 var(--font-head); letter-spacing:2px; text-transform:uppercase; }
.services-eyebrow i { width:8px; height:8px; border-radius:50%; background:#6C4BFF; box-shadow:0 0 0 5px #EEE9FF; }
.services-heading h2 { margin:0; color:#111118; font:800 clamp(48px,5vw,72px)/.98 var(--font-head); letter-spacing:-.055em; }
.services-intro { max-width:420px; padding-bottom:4px; }
.services-intro p { margin:0 0 26px; color:#666672; font:400 16px/1.7 var(--font-body); }
.services-cta { display:inline-flex; align-items:center; gap:14px; min-height:44px; color:#111118; font:700 14px/1 var(--font-head); text-decoration:none; }
.services-cta span { display:grid; place-items:center; width:36px; height:36px; flex-shrink:0; border:1px solid #6C4BFF; border-radius:50%; color:#6C4BFF; transition:transform .3s ease,background .3s ease,color .3s ease; }
.services-cta:hover span { transform:translate(4px,-4px); color:#fff; background:#6C4BFF; }
/* Bay-window 3D services carousel ? GSAP ScrollTrigger pinned on desktop/tablet,
   lightweight native swipe on mobile. See assets/js/services-showcase.js. */
.services-perspective {
  position: relative; perspective: 1400px; perspective-origin: 50% 50%; overflow: hidden;
  padding: 30px 0 20px;
}
.services-track {
  display: flex; gap: 14px; width: max-content; padding: 0 calc(50% - 135px);
  transform-style: preserve-3d; will-change: transform;
}
.service-slide {
  position: relative; flex: 0 0 auto; width: 240px; height: 420px; border-radius: 20px;
  overflow: hidden; display: block; text-decoration: none; color: #fff; background: #12121c;
  box-shadow: 0 24px 50px rgba(17,17,24,.22); transform-style: preserve-3d;
  backface-visibility: hidden; will-change: transform;
}
@media (min-width:1440px) { .service-slide { width: 270px; height: 460px; } }
.service-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s ease; }
.service-slide:hover img { transform: scale(1.04); }
.service-slide-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top,rgba(8,8,16,.92),rgba(8,8,16,.18) 58%,transparent); }
.service-slide-copy { position: absolute; left: 22px; right: 18px; bottom: 22px; }
.service-slide-num { display: block; margin-bottom: 8px; color: #C7B9FF; font: 700 12px/1 var(--font-head); letter-spacing: .14em; }
.service-slide-copy h3 { margin: 0 0 6px; font: 700 clamp(19px,2vw,24px)/1.12 var(--font-head); letter-spacing: -.03em; transition: transform .35s ease; }
.service-slide:hover .service-slide-copy h3 { transform: translateY(-4px); }
.service-slide-copy p { margin: 0 0 10px; max-width: 92%; color: rgba(255,255,255,.72); font: 400 12.5px/1.5 var(--font-body); }
.service-slide-arrow { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); color: #fff; transition: transform .3s ease, background .3s ease; }
.service-slide-arrow svg { width: 14px; height: 14px; }
.service-slide:hover .service-slide-arrow { transform: translate(3px,-3px); background: #6C4BFF; border-color: #6C4BFF; }
.service-slide:focus-visible { outline: 3px solid #6C4BFF; outline-offset: 4px; }

.services-nav { display: flex; align-items: center; justify-content: flex-end; gap: 14px; margin-top: 14px; }
.services-nav-btn {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(108,75,255,.4); background: #fff; color: #6C4BFF; cursor: pointer;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.services-nav-btn svg { width: 18px; height: 18px; }
.services-nav-btn:hover { background: #6C4BFF; color: #fff; transform: scale(1.06); }
.services-nav-btn[disabled] { opacity: .4; cursor: default; pointer-events: none; }
.services-nav-status { min-width: 64px; text-align: center; color: #6A6A74; font: 700 12px/1 var(--font-head); letter-spacing: .08em; }

@media (max-width:1100px) { .services-showcase-top { gap: 35px; } .service-slide { width: 225px; height: 400px; } .services-track { padding: 0 calc(50% - 112px); } }
@media (max-width:768px) {
  .services-showcase { padding: 80px 0; }
  .services-container { width: min(100% - 32px,520px); }
  .services-showcase-top { grid-template-columns: 1fr; gap: 22px; margin-bottom: 44px; }
  .services-heading h2 { font-size: 44px; }
  .services-perspective { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; scrollbar-width: none; touch-action: pan-x; perspective: 900px; padding: 16px 0 30px; }
  .services-perspective::-webkit-scrollbar { display: none; }
  .services-track { padding: 0 9vw; will-change: auto; }
  .service-slide { width: 82vw; max-width: 340px; height: 420px; scroll-snap-align: start; }
  .services-nav { justify-content: center; }
}
@media (prefers-reduced-motion:reduce) {
  .service-slide, .service-slide img, .service-slide-copy h3, .service-slide-arrow { transition: none; }
  .services-perspective { overflow-x: auto; }
  .services-track { flex-wrap: nowrap; }
}
.ui-icon { width:18px; height:18px; flex:0 0 auto; display:block; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.services-cta .ui-icon { width:18px; height:18px; }

/* Dark footer theme */
.footer {
  background: linear-gradient(135deg, #080a24 0%, #111338 58%, #241044 100%);
  border-top-color: rgba(255,255,255,.12);
  color: #fff;
}
.footer .footer-text,
.footer .footer-newsletter p,
.footer .footer-bottom { color: rgba(255,255,255,.68); }
.footer .footer-col h4 { color: rgba(255,255,255,.58); }
.footer .footer-col a { color: rgba(255,255,255,.92); }
.footer .footer-col a:hover { color: #c76bff; }
.footer-socials a { border-color: rgba(255,255,255,.24); color: #fff; }
.footer-socials a:hover { background: #7c4dff; border-color: #7c4dff; }
.footer-newsletter form { border-color: rgba(255,255,255,.24); }
.footer-newsletter input { color: #fff; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.58); }
.footer-newsletter button { background: #fff; color: #0b0d2b; }
.footer-newsletter button:hover { background: #c72cff; color: #fff; }
.footer-bottom { border-top-color: rgba(255,255,255,.14); }
/* Cinematic project CTA */
.project-cta { position:relative; min-height:100vh; overflow:hidden; display:grid; place-items:center; padding:100px 20px; background:#17194f; color:#fff; isolation:isolate; }
.project-cta-inner { position:relative; z-index:2; width:min(1250px,100%); display:flex; flex-direction:column; align-items:center; text-align:center; }
.project-badge { padding:9px 13px; border-radius:4px; background:#372080; color:#b35cff; font-size:12px; font-weight:800; letter-spacing:.04em; }
.project-cta-title { margin:28px 0 -2px; display:flex; flex-direction:column; font-size:clamp(76px,10vw,170px); font-weight:900; line-height:.84; letter-spacing:-.07em; text-transform:uppercase; }
.project-cta-title span { display:block; }
.project-cta-link { position:relative; z-index:3; display:inline-flex; align-items:center; gap:18px; margin-top:-2px; padding:8px 78px 8px 58px; border-radius:100px; background:#fff; color:#5963ff; font-size:clamp(38px,5vw,78px); font-weight:900; line-height:1; letter-spacing:-.06em; text-decoration:none; transform:rotate(-3deg); transition:transform .35s ease; }
.project-cta-link:hover { transform:rotate(-2deg) scale(1.015); }
.project-cta-arrow { position:absolute; right:-16px; top:50%; display:grid; place-items:center; width:clamp(78px,9vw,124px); aspect-ratio:1; border-radius:50%; background:linear-gradient(135deg,#7437ff,#ff6a7a); color:#fff; transform:translateY(-50%); transition:transform .35s ease; }
.project-cta-link:hover .project-cta-arrow { transform:translateY(-50%) rotate(10deg) scale(1.06); }
.project-cta-arrow svg { width:42%; fill:none; stroke:currentColor; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; transition:transform .35s ease; }
.project-cta-link:hover .project-cta-arrow svg { transform:translate(3px,-3px); }
.project-orbit { position:absolute; z-index:0; left:50%; top:50%; border:2px solid rgba(255,255,255,.16); border-radius:50%; transform:translate(-50%,-50%); pointer-events:none; }
.project-orbit-one { width:min(1100px,90vw); height:min(1100px,90vw); }
.project-orbit-two { width:min(820px,72vw); height:min(820px,72vw); }
.project-orbit-three { width:min(560px,52vw); height:min(560px,52vw); opacity:.8; }
@media (max-width:700px) { .project-cta { min-height:78vh; padding:90px 16px; } .project-cta-title { font-size:clamp(56px,16vw,90px); } .project-cta-link { padding:12px 58px 12px 28px; font-size:clamp(32px,10vw,48px); } .project-cta-arrow { right:-10px; width:72px; } .project-orbit-one { width:720px; height:720px; } .project-orbit-two { width:520px; height:520px; } .project-orbit-three { width:350px; height:350px; } }
@media (prefers-reduced-motion:reduce) { .project-cta-link,.project-cta-arrow,.project-cta-arrow svg { transition:none; } }
/* Scroll-driven testimonials */
.testimonials-section { position:relative; min-height:420vh; overflow:hidden; background:#faf8fb; color:#111118; }
.testimonials-sticky { position:sticky; top:0; min-height:100vh; display:flex; flex-direction:column; justify-content:center; padding:80px 20px; }
.testimonials-heading { position:relative; z-index:2; text-align:center; margin-bottom:34px; }
.testimonials-badge { display:inline-block; padding:8px 13px; border-radius:4px; background:#ead4fa; color:#9b38ed; font-size:12px; font-weight:800; letter-spacing:.08em; }
.testimonials-heading h2 { margin:18px 0 0; font-size:clamp(42px,5vw,72px); line-height:.98; letter-spacing:-.055em; }
.testimonials-stage { position:relative; z-index:3; width:min(900px,100%); height:270px; margin:0 auto; }
.testimonial-row { position:absolute; inset:0; display:grid; grid-template-columns:250px 1fr; gap:26px; align-items:center; will-change:transform,opacity; }
.testimonial-photo { position:relative; height:250px; overflow:hidden; border-radius:18px; box-shadow:0 18px 36px rgba(25,20,50,.15); }
.testimonial-photo-bg { position:absolute; inset:-12px; width:calc(100% + 24px); height:calc(100% + 24px); object-fit:cover; filter:blur(10px); }
.testimonial-photo:after { content:""; position:absolute; inset:0; background:linear-gradient(135deg,rgba(123,86,255,.25),rgba(255,145,174,.2)); }
.testimonial-avatar { position:absolute; z-index:1; left:50%; top:50%; width:140px; height:140px; transform:translate(-50%,-50%); object-fit:cover; border-radius:50%; border:4px solid rgba(255,255,255,.7); }
.testimonial-card { min-height:210px; padding:36px 44px; border-radius:18px; background:linear-gradient(135deg,rgba(255,220,205,.82),rgba(255,255,255,.96) 45%,rgba(216,180,255,.72)); box-shadow:0 20px 45px rgba(20,20,40,.15); transform:rotate(1.5deg); }
.testimonial-row:nth-child(2) .testimonial-card { transform:rotate(-1deg); }.testimonial-row:nth-child(3) .testimonial-card { transform:rotate(1deg); }.testimonial-row:nth-child(4) .testimonial-card { transform:rotate(-1.5deg); }
.testimonial-stars { display:flex; gap:3px; color:#ffa329; font-size:23px; letter-spacing:1px; margin-bottom:12px; }.testimonial-stars svg { width:22px; fill:currentColor; stroke:currentColor; }
.testimonial-card p { margin:0 0 20px; font-size:clamp(17px,2vw,22px); line-height:1.45; }.testimonial-card h3 { margin:0; font-size:16px; letter-spacing:.03em; }
.testimonials-glow { position:absolute; width:430px; height:430px; border-radius:50%; filter:blur(80px); opacity:.26; pointer-events:none; }.testimonials-glow-one { background:#d7c1ff; left:-160px; top:20%; }.testimonials-glow-two { background:#ffd9d0; right:-180px; bottom:10%; }
@media (max-width:767px) { .testimonials-section { min-height:auto; padding:100px 16px; }.testimonials-sticky { position:relative; min-height:auto; padding:0; }.testimonials-heading { margin-bottom:44px; }.testimonials-heading h2 { font-size:clamp(38px,11vw,58px); }.testimonials-stage { height:auto; display:flex; flex-direction:column; gap:42px; }.testimonial-row { position:relative; inset:auto; display:flex; flex-direction:column; gap:16px; opacity:0; transform:translateY(70px); }.testimonial-photo { width:100%; height:230px; }.testimonial-card { width:100%; padding:28px 24px; transform:none!important; }.testimonial-card p { font-size:17px; } }
@media (prefers-reduced-motion:reduce) { .testimonial-row { opacity:1!important; transform:none!important; } }
/* Reference footer layout */
.footer-reference { background:#17194f; color:#fff; padding:0 30px 18px; border:0; }
.footer-reference-top { min-height:170px; display:flex; align-items:center; justify-content:space-between; gap:40px; }
.footer-reference-logo img { width:260px; max-width:48vw; height:auto; filter:brightness(0) invert(1); opacity:.96; }
.footer-reference-nav { display:flex; align-items:center; gap:38px; }
.footer-reference-nav a { color:#fff; font-size:17px; text-decoration:none; transition:color .25s ease; }
.footer-reference-nav a:hover { color:#c36cff; }
.footer-reference-divider { height:1px; background:rgba(255,255,255,.28); }
.footer-reference-grid { min-height:700px; display:grid; grid-template-columns:1.65fr .82fr .95fr; }
.footer-reference-grid > div { padding:58px 40px 40px 0; }
.footer-reference-grid > div + div { border-left:1px solid rgba(255,255,255,.28); padding-left:70px; }
.footer-reference-about { position:relative; }
.footer-reference-about > p { max-width:540px; margin:0; color:rgba(255,255,255,.96); font-size:18px; line-height:1.58; }
.footer-reference-robot { position:absolute; width:230px; max-height:260px; object-fit:contain; right:10px; bottom:0; filter:drop-shadow(0 18px 22px rgba(0,0,0,.2)); }
.footer-reference-grid h2 { margin:0 0 26px; font-size:27px; }
.footer-reference-links a { display:block; color:#fff; font-size:18px; margin:0 0 22px; text-decoration:none; }
.footer-reference-links a:hover { color:#c36cff; }
.footer-reference-contact p { margin:0 0 18px; color:rgba(255,255,255,.84); font-size:17px; line-height:1.45; }
.footer-reference-contact b { display:inline-block; width:26px; color:#ff7a16; }
.footer-reference-contact h3 { margin:28px 0 8px; font-size:17px; border-bottom:1px solid #fff; width:max-content; padding-bottom:4px; }
.footer-reference-copyright { padding-top:20px; text-align:center; color:#fff; font-size:16px; }
@media (max-width:800px) { .footer-reference { padding:0 18px 18px; }.footer-reference-top { min-height:140px; flex-direction:column; align-items:flex-start; justify-content:center; gap:24px; }.footer-reference-nav { flex-wrap:wrap; gap:14px 22px; }.footer-reference-nav a { font-size:15px; }.footer-reference-grid { display:block; min-height:0; }.footer-reference-grid > div,.footer-reference-grid > div + div { padding:38px 0; border-left:0; border-top:1px solid rgba(255,255,255,.28); }.footer-reference-about { min-height:300px; }.footer-reference-robot { width:170px; right:0; bottom:10px; }.footer-reference-grid h2 { font-size:24px; } }
/* Consistent testimonial ratings */
.testimonial-star-icons { display:flex; gap:3px; align-items:center; }
.testimonial-star-icons svg { width:22px; height:22px; display:block; fill:#ffa329; stroke:#ffa329; stroke-width:1; }
/* Animated Why Choose Us showcase */
.why-choose-section { position:relative; overflow:hidden; background:#fff; padding:105px 0 90px; color:#111118; }
.why-choose-inner { position:relative; }
.why-choose-heading { position:relative; z-index:2; margin-bottom:35px; }
.why-choose-heading p { margin:0 0 12px; color:#7c3aed; font-size:12px; font-weight:800; letter-spacing:.12em; }
.why-choose-heading h2 { margin:0; max-width:650px; font-size:clamp(38px,4.2vw,64px); line-height:.98; letter-spacing:-.055em; }
.why-choose-layout { position:relative; min-height:580px; display:grid; grid-template-columns:205px minmax(260px,1fr) minmax(330px,1.05fr); gap:22px; align-items:stretch; }
.why-choose-wave { position:absolute; border-radius:34px; pointer-events:none; }
.why-choose-wave-one { width:72%; height:500px; left:2%; top:245px; background:linear-gradient(130deg,#8b4bd1,#c95be8 52%,#73269c); transform:rotate(-3deg); opacity:.95; }
.why-choose-wave-two { width:48%; height:610px; right:0; top:155px; background:linear-gradient(145deg,#7c3aed,#c026d3); opacity:.9; border-radius:32px 0 0 32px; }
.why-choose-stats { position:relative; z-index:3; display:flex; flex-direction:column; justify-content:flex-end; gap:25px; padding-bottom:28px; }
.why-stat { width:175px; min-height:122px; padding:20px; border-radius:6px; color:#fff; background:linear-gradient(145deg,#76209a,#bd5aec); box-shadow:0 18px 30px rgba(103,32,146,.25); }
.why-stat strong { display:block; font-size:36px; line-height:1; letter-spacing:-.04em; }.why-stat span { display:block; height:1px; margin:12px 0 10px; background:rgba(255,255,255,.4); }.why-stat p { margin:0; font-size:12px; line-height:1.35; }
.why-choose-visual { position:relative; z-index:2; display:flex; align-items:flex-end; justify-content:center; overflow:visible; }
.why-choose-robot { width:min(540px,125%); height:620px; object-fit:contain; object-position:center bottom; filter:drop-shadow(0 28px 22px rgba(31,10,52,.22)); }
.why-choose-panel { position:relative; z-index:3; align-self:stretch; margin:0 0 50px -18px; padding:42px 42px 34px; border-radius:28px; background:linear-gradient(135deg,#7c3aed 0%,#9333ea 42%,#c026d3 100%); color:#fff; box-shadow:0 28px 50px rgba(94,32,143,.28); }
.why-benefit { padding:0 0 17px; margin-bottom:15px; border-bottom:1px solid rgba(255,255,255,.36); }.why-benefit h3 { margin:0 0 7px; font-size:16px; }.why-benefit p { margin:0; max-width:390px; font-size:12px; line-height:1.45; color:rgba(255,255,255,.9); }
.why-choose-cta { display:inline-flex; align-items:center; gap:12px; min-height:44px; margin-top:2px; padding:14px 16px; border-radius:5px; background:#ff6b1a; color:#fff; font-size:12px; font-weight:800; text-decoration:none; transition:transform .3s ease,background .3s ease; }.why-choose-cta:hover { transform:translateX(5px); background:#ff842f; }.why-choose-cta svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.why-review { position:absolute; z-index:5; right:-10px; bottom:-10px; display:flex; align-items:center; gap:10px; padding:13px 20px; border-radius:18px 0 0 0; background:#fff; box-shadow:0 12px 35px rgba(27,16,50,.18); }.why-review-avatars { display:flex; }.why-review-avatars img { width:30px; height:30px; border:2px solid #fff; border-radius:50%; object-fit:cover; margin-left:-8px; }.why-review-avatars img:first-child { margin-left:0; }.why-review strong { font-size:23px; }.why-review small { position:absolute; left:87px; top:47px; width:155px; color:#777; font-size:8px; letter-spacing:.08em; white-space:nowrap; }
@media (max-width:1024px) { .why-choose-section { padding:80px 0; }.why-choose-layout { grid-template-columns:170px 1fr 1.1fr; min-height:520px; }.why-choose-panel { padding:30px 24px; }.why-choose-robot { height:540px; }.why-stat { width:155px; } }
@media (max-width:767px) { .why-choose-section { padding:75px 0 100px; }.why-choose-heading h2 { font-size:clamp(34px,9vw,52px); }.why-choose-layout { display:flex; flex-direction:column; min-height:0; gap:22px; }.why-choose-stats { order:1; flex-direction:row; padding:0; }.why-stat { flex:1; width:auto; min-height:112px; }.why-choose-visual { order:2; min-height:370px; }.why-choose-robot { width:100%; height:430px; }.why-choose-panel { order:3; margin:0; padding:28px 22px; }.why-choose-wave-one { width:120%; height:420px; left:-10%; top:325px; }.why-choose-wave-two { width:85%; height:480px; top:525px; }.why-review { position:relative; right:auto; bottom:auto; align-self:flex-end; margin-top:15px; border-radius:18px; }.why-review small { position:static; width:auto; } }
@media (prefers-reduced-motion:reduce) { .why-choose-section * { transition:none!important; } }
/* Reference-accurate desktop composition */
@media (min-width:1025px) {
  .why-choose-section { min-height:650px; padding:24px 0 0; }
  .why-choose-inner { max-width:1200px; min-height:626px; }
  .why-choose-heading { position:absolute; left:32px; top:0; margin:0; z-index:6; }
  .why-choose-heading h2 { font-size:clamp(38px,3.35vw,54px); line-height:.95; max-width:470px; }
  .why-choose-layout { min-height:590px; padding-top:92px; grid-template-columns:205px minmax(315px,1fr) 400px; gap:0; }
  .why-choose-wave-one { width:63%; height:500px; left:0; top:125px; }
  .why-choose-wave-two { width:42%; height:590px; right:0; top:92px; }
  .why-choose-stats { padding:0 0 28px 14px; justify-content:flex-end; gap:25px; }
  .why-stat { width:175px; }
  .why-choose-visual { align-items:flex-end; }
  .why-choose-robot { width:116%; height:590px; margin-left:-12%; }
  .why-choose-panel { height:590px; margin:0 0 0 -10px; padding:48px 40px 32px; border-radius:30px 0 0 30px; }
  .why-review { right:-1px; bottom:0; border-radius:18px 0 0 0; }
}
/* Review badge clipping fix */
.why-review { box-sizing:border-box; width:180px; min-height:78px; padding:12px 14px 22px; right:0; overflow:visible; white-space:nowrap; }
.why-review-avatars { flex:0 0 auto; }
.why-review strong { line-height:1; }
.why-review small { left:14px; top:auto; bottom:7px; width:auto; max-width:calc(100% - 28px); overflow:hidden; text-overflow:ellipsis; font-size:8px; }
@media (max-width:767px) { .why-review { width:180px; min-height:70px; padding-bottom:20px; } .why-review small { left:14px; bottom:6px; position:absolute; } }
/* Final review badge composition */
.why-review { width:240px; min-height:82px; right:0; bottom:0; padding:14px 18px 24px; gap:12px; border-radius:18px 0 0 0; }
.why-review-avatars img { width:31px; height:31px; }
.why-review strong { font-size:28px; letter-spacing:-.04em; }
.why-review small { left:18px; right:18px; bottom:8px; width:auto; max-width:none; text-align:center; font-size:8px; letter-spacing:.07em; }
@media (max-width:767px) { .why-review { width:220px; min-height:78px; } .why-review small { left:14px; right:14px; } }
/* Main banner robot image loop */
.hero-robot-slider { position:absolute; z-index:1; inset:0; overflow:hidden; }
.hero-robot-slide { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; object-position:center bottom; opacity:0; transform:scale(1.035); transition:opacity .9s ease, transform 1.2s cubic-bezier(.22,1,.36,1); pointer-events:none; }
.hero-robot-slide.is-active { opacity:1; transform:scale(1); }
@media (prefers-reduced-motion:reduce) { .hero-robot-slide { transition:none; } }
/* Hero robot images fitted to the banner composition */
.hero-visual-robot { right:10%; bottom:58px; width:38vw; max-width:570px; height:min(82vh,760px); }
.hero-robot-slider { width:100%; height:100%; }
.hero-robot-slide { object-fit:contain; object-position:center bottom; filter:drop-shadow(0 30px 45px rgba(0,0,0,.28)) drop-shadow(0 0 30px rgba(110,70,255,.2)); }
@media (max-width:1024px) { .hero-visual-robot { right:4%; width:46vw; height:70vh; bottom:40px; } }
@media (max-width:600px) { .hero-visual-robot { right:0; width:78vw; height:55vh; bottom:28px; } .hero-robot-slide { object-position:center bottom; } }
/* Keep Why Choose heading clear of the robot on small screens */
@media (max-width:767px) {
  .why-choose-heading { padding-right:72px; }
  .why-choose-heading h2 { max-width:440px; font-size:clamp(32px,8.4vw,48px); line-height:.96; }
  .why-choose-visual { justify-content:flex-end; overflow:visible; }
  .why-choose-robot { width:92%; max-width:430px; transform:translateX(9%); }
}
@media (min-width:768px) and (max-width:1024px) {
  .why-choose-heading h2 { max-width:520px; }
  .why-choose-robot { transform:translateX(8%); }
}
@media (max-width:767px) {
  .why-choose-heading { width:52%; max-width:52%; padding-right:0; }
  .why-choose-heading h2 { max-width:none; font-size:clamp(27px,7vw,42px); line-height:.98; letter-spacing:-.06em; }
  .why-choose-layout { position:relative; }
  .why-choose-visual { width:100%; justify-content:flex-end; }
  .why-choose-robot { width:70%; max-width:360px; transform:translateX(12%); }
}
@media (max-width:767px) {
  .why-choose-heading { display:block; width:100%; max-width:100%; padding:0 24px 0 0; margin-bottom:18px; position:relative; z-index:10; }
  .why-choose-heading h2 { width:100%; max-width:430px; font-size:clamp(30px,8.5vw,48px); line-height:.98; }
  .why-choose-layout { clear:both; }
  .why-choose-visual { margin-top:10px; min-height:350px; }
  .why-choose-robot { width:68%; max-width:330px; transform:translateX(10%); }
}
.why-choose-heading { text-align:left !important; margin-left:0 !important; margin-right:auto !important; align-self:flex-start; }
.why-choose-heading h2, .why-choose-heading p { text-align:left !important; }
@media (max-width:767px) { .why-choose-heading { width:100%; max-width:100%; padding-left:0; padding-right:12px; } }
/* Portfolio embed presentation fixes */
.gallery-embed-section { background:#fff !important; }
.gallery-embed-section #pfw { max-width:1400px; margin:0 auto; padding:0 20px 80px; background:#fff !important; color:#111118 !important; }
.gallery-embed-section #pfw .pfw-grid { column-count:5 !important; column-gap:16px; }
.gallery-embed-section #pfw .pfw-card { background:#fff; border-color:#e8e8ef; border-radius:14px; box-shadow:0 8px 22px rgba(20,20,40,.06); }
.gallery-embed-section #pfw .pfw-wrap { max-height:300px; }
.gallery-embed-section #pfw .pfw-still, .gallery-embed-section #pfw .pfw-vid { object-fit:contain; background:#fff; }
.gallery-embed-section #pfw .pfw-card:hover .pfw-still, .gallery-embed-section #pfw .pfw-card:hover .pfw-vid { transform:scale(1.02); filter:brightness(.98); }
@media (max-width:1200px) { .gallery-embed-section #pfw .pfw-grid { column-count:4 !important; } }
@media (max-width:800px) { .gallery-embed-section #pfw .pfw-grid { column-count:2 !important; } .gallery-embed-section #pfw { padding-left:12px; padding-right:12px; } }
@media (max-width:520px) { .gallery-embed-section #pfw .pfw-grid { column-count:1 !important; } }
/* Fill video tiles without changing image tile framing */
.gallery-embed-section #pfw .pfw-vid { object-fit:cover !important; width:100%; height:100%; background:#111; }
.gallery-embed-section #pfw .pfw-wrap:has(.pfw-vid) { background:#111; }
/* Portfolio heading and visible filters */
.gallery-embed-section .gallery-top { margin-bottom:28px; }
.gallery-embed-section .gallery-top .label { color:#6948ff; }
.gallery-embed-section .gallery-top .section-heading { max-width:620px; }
.gallery-embed-section #pfw { --pfw-bg:#fff; --pfw-ink:#111118; --pfw-dim:#555b6e; --pfw-line:#e2e4ec; --pfw-linehi:#bfc4d2; --pfw-soft:#fff; background:#fff !important; }
.gallery-embed-section #pfw .pfw-bar { justify-content:flex-start; margin-bottom:18px; }
.gallery-embed-section #pfw .pfw-f { color:#4e5668; background:#fff; border-color:#e1e3eb; }
.gallery-embed-section #pfw .pfw-f:hover { color:#111118; background:#f5f3ff; border-color:#8a72ff; }
.gallery-embed-section #pfw .pfw-f.pfw-on { color:#fff; background:linear-gradient(135deg,#6948ff,#9e45e8); border-color:transparent; }
/* Centered portfolio heading */
.gallery-embed-section .gallery-top { text-align:center; }
.gallery-embed-section .gallery-top .label { text-align:center; }
.gallery-embed-section .gallery-top .section-heading { max-width:none; margin-left:auto; margin-right:auto; text-align:center; }
.gallery-embed-section #pfw .pfw-bar { justify-content:center; }
/* Subtle testimonial corners */
.testimonial-photo,
.testimonial-card { border-radius:5px; }
.testimonial-photo, .testimonial-card { border-radius:2px; }

/* Navbar subtle 2px corners */
.navbar { border-radius:2px !important; }
.nav-inner { border-radius:2px !important; }
.navbar, .nav-inner { border-radius:5px !important; }

.navbar, .nav-inner { border-radius:15px !important; }

/* Edge-to-edge portfolio media fit */
.gallery-embed-section #pfw .pfw-wrap { background:#101010; }
.gallery-embed-section #pfw .pfw-still,
.gallery-embed-section #pfw .pfw-vid { object-fit:cover !important; object-position:center; background:#101010; }
/* Eye-catching stats section */
.stats-section { position:relative; overflow:hidden; isolation:isolate; background:linear-gradient(115deg,#0d0d24 0%,#15143a 52%,#211044 100%); padding:86px 0 92px; }
.stats-section::before { content:""; position:absolute; z-index:-1; width:520px; height:520px; left:50%; top:50%; transform:translate(-50%,-50%); border:1px solid rgba(173,116,255,.18); border-radius:50%; box-shadow:0 0 0 75px rgba(115,69,255,.025),0 0 0 150px rgba(115,69,255,.02); }
.stats-section::after { content:""; position:absolute; z-index:-1; width:320px; height:320px; right:-100px; top:-180px; border-radius:50%; background:radial-gradient(circle,rgba(205,64,255,.3),transparent 68%); filter:blur(10px); }
.stats-grid { position:relative; display:grid; grid-template-columns:repeat(5,1fr); gap:0; }
.stat-item { position:relative; text-align:center; padding:10px 25px; transition:transform .35s ease; }
.stat-item:not(:last-child)::after { content:""; position:absolute; right:0; top:18%; width:1px; height:64%; background:linear-gradient(transparent,rgba(184,147,255,.5),transparent); }
.stat-item:hover { transform:translateY(-8px); }
.stat-number { margin:0 0 13px; font-size:clamp(48px,5vw,72px); line-height:1; letter-spacing:-.07em; background:linear-gradient(100deg,#fff 20%,#d99aff 80%); -webkit-background-clip:text; background-clip:text; color:transparent; text-shadow:0 0 30px rgba(181,102,255,.18); }
.stat-label { margin:0; color:rgba(224,214,255,.72); font-size:12px; font-weight:700; letter-spacing:.13em; }
@media (max-width:767px) { .stats-section { padding:64px 0; }.stats-grid { grid-template-columns:repeat(2,1fr); row-gap:34px; }.stat-item { padding:8px 12px; }.stat-item:nth-child(2)::after { display:none; }.stat-item:last-child { grid-column:1/-1; }.stat-number { font-size:44px; }.stat-label { font-size:12px; } }
/* Two-second site preloader */
.site-preloader { position:fixed; inset:0; z-index:100000; display:grid; place-items:center; background:#10112f; opacity:1; visibility:visible; transition:opacity .55s ease, visibility .55s ease; }
.site-preloader img { display:block; width:min(210px,42vw); height:auto; object-fit:contain; }
.site-preloader.is-hidden { opacity:0; visibility:hidden; pointer-events:none; }
@media (prefers-reduced-motion:reduce) { .site-preloader { transition:none; } }
/* White transparent-style preloader presentation */
.site-preloader { background:#fff; }
.site-preloader img { mix-blend-mode:screen; }
.site-preloader img { mix-blend-mode:normal; opacity:1; visibility:visible; }

.site-preloader img { width:min(360px,70vw); max-height:70vh; }

/* Final Why Choose overlap correction */
@media (min-width:1200px) {
  .why-choose-heading { left:32px; width:470px; }
  .why-choose-heading h2 { max-width:470px; }
  .why-choose-robot { transform:translateX(55%); }
}
@media (min-width:1025px) and (max-width:1199px) {
  .why-choose-heading { left:20px; width:420px; }
  .why-choose-heading h2 { max-width:420px; font-size:42px; }
  .why-choose-robot { transform:translateX(28%); }
}
/* Place robot inside the marked central zone */
@media (min-width:1200px) {
  .why-choose-robot { transform:translateX(0) !important; }
  .why-choose-visual { z-index:4; }
  .why-choose-panel { z-index:5; }
}
@media (min-width:1025px) and (max-width:1199px) {
  .why-choose-robot { transform:translateX(4%) !important; }
}
/* Keep heading visually before the robot */
@media (min-width:1200px) {
  .why-choose-heading { z-index:10; }
  .why-choose-robot { transform:translateX(26%) !important; }
  .why-choose-heading h2 { max-width:440px; }
}
@media (min-width:1025px) and (max-width:1199px) {
  .why-choose-heading { z-index:10; }
  .why-choose-robot { transform:translateX(18%) !important; }
}
.why-choose-robot { will-change:transform,opacity; }

/* Force every portfolio media tile to fill its card */
.gallery-embed-section #pfw .pfw-wrap { width:100% !important; height:280px !important; max-height:none !important; aspect-ratio:auto !important; position:relative !important; overflow:hidden !important; }
.gallery-embed-section #pfw .pfw-wrap picture,
.gallery-embed-section #pfw .pfw-still,
.gallery-embed-section #pfw .pfw-vid { position:absolute !important; inset:0 !important; display:block !important; width:100% !important; height:100% !important; min-width:100% !important; min-height:100% !important; object-fit:cover !important; object-position:center !important; }
@media (max-width:767px) { .gallery-embed-section #pfw .pfw-wrap { height:240px !important; } }
/* Six-card stacked testimonial sequence */
.testimonials-section { min-height:calc(100vh + 4320px); }
.testimonial-row:nth-child(5) .testimonial-card { transform:rotate(-2deg); }
.testimonial-row:nth-child(6) .testimonial-card { transform:rotate(1.8deg); }
@media (max-width:767px) { .testimonials-section { min-height:auto; } }
/* New testimonial stories section */
.testimonials-new { position:relative; overflow:hidden; background:linear-gradient(135deg,#10112f,#1a1744 55%,#32104e); color:#fff; padding:120px 0; isolation:isolate; }
.testimonials-new-inner { position:relative; z-index:2; }.testimonials-new-head { display:flex; justify-content:space-between; align-items:end; gap:50px; margin-bottom:48px; }.testimonials-new-head span { color:#b886ff; font-size:12px; font-weight:800; letter-spacing:.15em; }.testimonials-new-head h2 { margin:14px 0 0; font-size:clamp(48px,6vw,84px); line-height:.9; letter-spacing:-.07em; }.testimonials-new-head h2 em { color:#c16bff; font-style:normal; }.testimonials-new-head>p { max-width:320px; margin:0 0 6px; color:rgba(255,255,255,.66); line-height:1.55; }
.testimonials-new-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }.testimonial-new-card { min-height:245px; display:flex; flex-direction:column; padding:28px; border:1px solid rgba(255,255,255,.13); border-radius:15px; background:rgba(255,255,255,.07); backdrop-filter:blur(12px); box-shadow:0 20px 50px rgba(0,0,0,.16); transition:transform .35s ease,border-color .35s ease,background .35s ease; }.testimonial-new-card:hover { transform:translateY(-8px) rotate(.4deg); border-color:rgba(195,113,255,.75); background:rgba(255,255,255,.11); }.testimonial-new-featured { grid-column:span 2; min-height:300px; background:linear-gradient(135deg,rgba(127,79,255,.8),rgba(202,62,218,.65)); }.testimonial-new-top { display:flex; justify-content:space-between; align-items:center; }.testimonial-new-quote { color:#fff; font-size:70px; line-height:.5; }.testimonial-new-stars { color:#ffb02e; letter-spacing:2px; font-size:17px; }.testimonial-new-card>p { margin:24px 0 auto; max-width:520px; font-size:18px; line-height:1.5; color:rgba(255,255,255,.9); }.testimonial-new-card:not(.testimonial-new-featured)>p { font-size:16px; }.testimonial-new-number { color:#c790ff; font-size:12px; font-weight:800; letter-spacing:.1em; }.testimonial-new-person { display:flex; align-items:center; gap:11px; margin-top:24px; }.testimonial-new-person img { width:40px; height:40px; border-radius:50%; object-fit:cover; border:2px solid rgba(255,255,255,.7); }.testimonial-new-person strong,.testimonial-new-person small { display:block; }.testimonial-new-person strong { font-size:12px; letter-spacing:.06em; }.testimonial-new-person small { margin-top:3px; color:rgba(255,255,255,.55); font-size:12px; }.testimonials-new-orb { position:absolute; z-index:-1; border:1px solid rgba(191,130,255,.2); border-radius:50%; }.testimonials-new-orb-one { width:700px;height:700px;left:-300px;top:0; }.testimonials-new-orb-two { width:500px;height:500px;right:-220px;bottom:-260px; }
@media (max-width:800px) { .testimonials-new { padding:85px 0; }.testimonials-new-head { display:block; }.testimonials-new-head>p { margin-top:24px; }.testimonials-new-grid { grid-template-columns:1fr; }.testimonial-new-featured { grid-column:auto; } }
/* Alternate editorial testimonials design */
.testimonials-new { background:#f7f7fb; color:#111118; padding:110px 0; }
.testimonials-new::before { content:"CLIENT VOICES"; position:absolute; right:-30px; top:50%; transform:rotate(90deg); color:rgba(105,72,255,.08); font-size:clamp(60px,9vw,150px); font-weight:900; letter-spacing:-.08em; }
.testimonials-new-head { display:block; text-align:center; margin-bottom:58px; }.testimonials-new-head span { color:#6948ff; }.testimonials-new-head h2 { color:#111118; font-size:clamp(48px,6vw,82px); }.testimonials-new-head h2 em { color:#6948ff; }.testimonials-new-head>p { max-width:540px; margin:24px auto 0; color:#686b78; }
.testimonials-new-grid { grid-template-columns:repeat(3,1fr); gap:20px; }.testimonial-new-card { position:relative; min-height:270px; padding:32px; border:1px solid #e5e5ee; border-radius:12px; background:#fff; box-shadow:0 14px 35px rgba(29,24,66,.07); }.testimonial-new-card::before { content:""; position:absolute; left:0; top:24px; bottom:24px; width:4px; border-radius:0 4px 4px 0; background:linear-gradient(#6948ff,#c45dff); }.testimonial-new-featured { grid-column:auto; min-height:270px; background:#fff; }.testimonial-new-card:hover { transform:translateY(-7px); border-color:#cfc5ff; background:#fff; }.testimonial-new-quote { color:#6948ff; }.testimonial-new-stars { color:#f4a72c; }.testimonial-new-card>p,.testimonial-new-card:not(.testimonial-new-featured)>p { color:#313240; font-size:16px; line-height:1.55; }.testimonial-new-number { color:#6948ff; }.testimonial-new-person strong { color:#171722; }.testimonial-new-person small { color:#858694; }.testimonial-new-orb { border-color:rgba(105,72,255,.12); }.testimonial-new-orb-one { left:-400px; }.testimonial-new-orb-two { right:-300px; }
@media (max-width:800px) { .testimonials-new { padding:80px 0; }.testimonials-new-grid { grid-template-columns:1fr; }.testimonial-new-featured { grid-column:auto; } }
.testimonial-new-card { will-change:transform,opacity; }
.testimonial-new-card::after { content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none; opacity:0; background:linear-gradient(135deg,rgba(105,72,255,.08),transparent 55%); transition:opacity .35s ease; }
.testimonial-new-card:hover::after { opacity:1; }
/* New cinematic testimonial composition */
.testimonials-new { background:#0e102d; color:#fff; padding:130px 0 145px; }
.testimonials-new::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 15% 35%,rgba(113,72,255,.28),transparent 30%),radial-gradient(circle at 85% 70%,rgba(216,57,211,.2),transparent 32%); pointer-events:none; }
.testimonials-new-head { position:relative; display:grid; grid-template-columns:1fr 330px; align-items:end; gap:70px; margin-bottom:62px; text-align:left; }.testimonials-new-head span { color:#be7cff; }.testimonials-new-head h2 { color:#fff; font-size:clamp(54px,7vw,100px); line-height:.86; }.testimonials-new-head h2 em { color:#c06aff; }.testimonials-new-head>p { color:rgba(255,255,255,.62); margin:0 0 6px; }
.testimonials-new-grid { position:relative; grid-template-columns:repeat(12,1fr); gap:18px; }.testimonial-new-card { min-height:255px; padding:30px; border:1px solid rgba(255,255,255,.15); border-radius:18px; background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.035)); box-shadow:0 24px 70px rgba(0,0,0,.25); }.testimonial-new-card:nth-child(1) { grid-column:span 7; min-height:330px; background:linear-gradient(135deg,#6948ff,#b934cb); }.testimonial-new-card:nth-child(2) { grid-column:span 5; }.testimonial-new-card:nth-child(3) { grid-column:span 4; }.testimonial-new-card:nth-child(4) { grid-column:span 4; }.testimonial-new-card:nth-child(5) { grid-column:span 4; }.testimonial-new-card:nth-child(6) { grid-column:4 / span 5; }
.testimonial-new-card::before { background:linear-gradient(180deg,#ca76ff,#5e4aff); width:3px; top:25px; bottom:25px; }.testimonial-new-card:hover { border-color:#bc75ff; background:linear-gradient(145deg,rgba(156,94,255,.26),rgba(255,255,255,.06)); }.testimonial-new-card>p,.testimonial-new-card:not(.testimonial-new-featured)>p { color:rgba(255,255,255,.9); }.testimonial-new-person strong { color:#fff; }.testimonial-new-person small { color:rgba(255,255,255,.55); }.testimonial-new-number { color:#c681ff; }.testimonial-new-quote { color:#fff; }
@media (max-width:800px) { .testimonials-new { padding:90px 0; }.testimonials-new-head { display:block; text-align:left; margin-bottom:40px; }.testimonials-new-head>p { margin-top:24px; }.testimonials-new-grid { display:grid; grid-template-columns:1fr; }.testimonial-new-card:nth-child(n) { grid-column:auto; min-height:245px; } }
/* Central orbit testimonial design */
.testimonials-orbit { position:relative; overflow:hidden; background:#03052d; color:#fff; padding:105px 0 125px; min-height:720px; }
.testimonials-orbit::before { content:""; position:absolute; width:850px;height:850px; border:1px solid rgba(145,111,255,.12); border-radius:50%; left:50%; top:55%; transform:translate(-50%,-50%); box-shadow:0 0 0 95px rgba(112,72,255,.025),0 0 0 190px rgba(112,72,255,.018); }
.testimonials-orbit-head { position:relative; z-index:2; text-align:center; }.testimonials-orbit-head span { color:#bd72ff; font-size:12px; font-weight:800; letter-spacing:.15em; }.testimonials-orbit-head h2 { margin:16px 0 18px; font-size:clamp(42px,5vw,70px); line-height:.95; letter-spacing:-.06em; }.testimonials-orbit-head p { max-width:760px; margin:0 auto; color:rgba(255,255,255,.68); line-height:1.55; font-size:15px; }
.testimonials-orbit-stage { position:relative; width:min(900px,100%); height:470px; margin:38px auto 0; }.orbit-testimonial-card { position:absolute; z-index:3; left:50%; top:18px; width:min(490px,80vw); min-height:400px; transform:translateX(-50%); padding:43px 42px 32px; border-radius:16px; text-align:center; background:linear-gradient(135deg,#5428ff 0%,#9e39c7 55%,#ff4d5e 100%); box-shadow:0 28px 70px rgba(0,0,0,.32); }.orbit-main-avatar { width:116px;height:116px;margin:0 auto 20px;border-radius:50%;overflow:hidden;border:5px solid rgba(255,255,255,.8); }.orbit-main-avatar img { width:100%;height:100%;object-fit:cover; }.orbit-stars { color:#ffd15a; letter-spacing:3px; font-size:18px; margin-bottom:18px; } .orbit-stars svg{display:inline-block;width:18px;height:18px;fill:currentColor;vertical-align:middle}.orbit-testimonial-card blockquote { margin:0 auto 22px; max-width:390px; font-size:20px; font-weight:600; font-style:italic; line-height:1.5; }.orbit-testimonial-card strong,.orbit-testimonial-card small { display:block; }.orbit-testimonial-card strong { font-size:16px; }.orbit-testimonial-card small { margin-top:5px; color:rgba(255,255,255,.7); font-size:12px; }
.orbit-avatar { position:absolute; z-index:2; width:66px;height:66px;padding:4px;border-radius:14px;background:linear-gradient(135deg,#ff9a9e,#fad0c4); box-shadow:0 15px 30px rgba(0,0,0,.25); }.orbit-avatar img { width:100%;height:100%;border-radius:10px;object-fit:cover; }.orbit-avatar-one { left:10%; top:20px; }.orbit-avatar-two { left:20%; top:190px; background:linear-gradient(135deg,#ffd194,#70e1f5); }.orbit-avatar-three { right:18%; top:85px; background:linear-gradient(135deg,#a18cd1,#fbc2eb); }.orbit-avatar-four { right:8%; top:275px; background:linear-gradient(135deg,#84fab0,#8fd3f4); }
@media (max-width:700px) { .testimonials-orbit { padding:80px 0 95px; }.testimonials-orbit-head h2 { font-size:42px; }.testimonials-orbit-head p { font-size:14px; }.testimonials-orbit-stage { height:530px; }.orbit-testimonial-card { top:25px; min-height:420px; padding:32px 24px; width:calc(100% - 30px); }.orbit-testimonial-card blockquote { font-size:17px; }.orbit-avatar { width:48px;height:48px; }.orbit-avatar-one { left:0; top:10px; }.orbit-avatar-two { left:3%; top:430px; }.orbit-avatar-three { right:2%; top:430px; }.orbit-avatar-four { right:0; top:10px; } }

/* Testimonial prev/next navigation (added ? does not alter existing card/avatar styling above) */
.orbit-nav-btn {
  position: absolute; top: 48%; z-index: 4; transform: translateY(-50%);
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.25);
  color: #fff; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  cursor: pointer; transition: background .3s ease, transform .3s ease;
}
.orbit-nav-btn svg { width: 20px; height: 20px; display: block; }
.orbit-nav-btn:hover:not([disabled]) { background: rgba(255,255,255,.2); transform: translateY(-50%) scale(1.06); }
.orbit-nav-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.orbit-nav-btn[disabled] { opacity: .45; cursor: default; pointer-events: none; }
.orbit-nav-prev { left: -64px; }
.orbit-nav-next { right: -64px; }
@media (max-width:1024px) { .orbit-nav-prev { left: -34px; } .orbit-nav-next { right: -34px; } }
@media (max-width:700px) {
  .orbit-nav-btn { top: auto; bottom: 12px; transform: none; width: 44px; height: 44px; }
  .orbit-nav-btn:hover:not([disabled]) { transform: scale(1.06); }
  .orbit-nav-prev { left: calc(50% - 50px); }
  .orbit-nav-next { left: calc(50% + 6px); right: auto; }
}
@media (prefers-reduced-motion:reduce) { .orbit-nav-btn { transition: none; } }
/* Alternate light testimonial background */
.testimonials-orbit { background:radial-gradient(circle at 50% 45%,#ffffff 0%,#f3efff 48%,#e7ddff 100%); color:#111118; }
.testimonials-orbit::before { border-color:rgba(105,72,255,.16); box-shadow:0 0 0 95px rgba(105,72,255,.035),0 0 0 190px rgba(105,72,255,.025); }
.testimonials-orbit-head h2 { color:#111118; }.testimonials-orbit-head p { color:#626477; }
/* Revert testimonial background */
.testimonials-orbit { background:#03052d; color:#fff; }
.testimonials-orbit-head h2 { color:#fff; }
.testimonials-orbit-head p { color:rgba(255,255,255,.68); }

/* Separate adjacent section backgrounds */
.services-showcase { background:#fff !important; }
.why-choose-section { background:#f5f2ff !important; }
.process-section { background:#fbf8f0 !important; }
.stats-section { border-top:1px solid rgba(105,72,255,.12); }
/* Distinguish testimonials from final CTA */
.testimonials-orbit { background:linear-gradient(135deg,#15164a 0%,#25205d 55%,#37145b 100%) !important; border-bottom:1px solid rgba(190,130,255,.2); }
.project-cta { background:#090b29 !important; border-top:1px solid rgba(255,255,255,.1); }
/* Main banner robot image framing */
.hero-visual-robot { overflow:visible; }
.hero-robot-slider { right:0; left:auto; width:100%; height:100%; }
.hero-robot-slide { object-fit:contain !important; object-position:center bottom !important; transform:translateY(24px) scale(.98); }
.hero-robot-slide.is-active { transform:translateY(0) scale(1); }
@media (min-width:1025px) { .hero-visual-robot { right:7%; width:39vw; max-width:570px; height:min(84vh,760px); bottom:42px; } }
@media (max-width:600px) { .hero-visual-robot { right:-4%; width:82vw; height:56vh; bottom:22px; } }
.footer-reference-contact a{color:inherit;text-decoration:none}.footer-reference-contact a:hover{color:#c36cff}.floating-contact-actions{position:fixed;right:22px;bottom:24px;z-index:1000;display:flex;flex-direction:column;align-items:flex-end;gap:12px}.floating-contact-actions a{display:flex;align-items:center;gap:9px;border-radius:999px;text-decoration:none;box-shadow:0 12px 30px rgba(5,7,40,.28);transition:transform .25s ease}.floating-contact-actions a:hover{transform:translateY(-4px)}.floating-whatsapp{padding:12px 17px 12px 13px;background:#25d366;color:#071b10}.floating-talk{padding:12px 17px 12px 13px;background:#17194f;color:#fff}.floating-contact-actions span{display:grid;place-items:center;width:25px;height:25px;border-radius:50%;background:#fff;font-size:18px;font-weight:800}.floating-contact-actions strong{font-size:13px}@media(max-width:600px){.floating-contact-actions{right:14px;bottom:14px;gap:8px}.floating-contact-actions a{padding:10px 13px 10px 10px}.floating-contact-actions strong{font-size:12px}}

.floating-contact-actions .floating-icon{display:grid;place-items:center;width:25px;height:25px;border-radius:50%;background:#fff}.floating-contact-actions .floating-icon svg{width:17px;height:17px;fill:currentColor}.floating-whatsapp .floating-icon{color:#25d366}.floating-talk .floating-icon{color:#17194f}

/* Circular WhatsApp launcher on the right side */
.floating-contact-actions .floating-whatsapp{width:56px;height:56px;padding:0;justify-content:center;border-radius:50%;background:#25d366}.floating-contact-actions .floating-whatsapp strong{display:none}.floating-contact-actions .floating-whatsapp .floating-icon{width:42px;height:42px;background:transparent;color:#fff}.floating-contact-actions .floating-whatsapp .floating-icon svg{width:30px;height:30px}.floating-contact-actions .floating-talk{border-radius:999px}@media(max-width:600px){.floating-contact-actions .floating-whatsapp{width:52px;height:52px}.floating-contact-actions .floating-whatsapp .floating-icon{width:40px;height:40px}}

/* WhatsApp left, Talk right */
.floating-contact-actions .floating-whatsapp{position:fixed;left:22px;bottom:24px;z-index:1001}@media(max-width:600px){.floating-contact-actions .floating-whatsapp{left:14px;bottom:14px}}

/* Official-style circular Talk button on the right */
.floating-contact-actions .floating-talk{position:fixed;right:22px;bottom:24px;z-index:1001;width:56px;height:56px;padding:0;justify-content:center;border-radius:50%;background:#17194f;color:#fff;border:2px solid rgba(255,255,255,.25)}.floating-contact-actions .floating-talk strong{display:none}.floating-contact-actions .floating-talk .floating-icon{width:42px;height:42px;background:#fff;color:#17194f}.floating-contact-actions .floating-talk .floating-icon svg{width:23px;height:23px}@media(max-width:600px){.floating-contact-actions .floating-talk{right:14px;bottom:14px;width:52px;height:52px}.floating-contact-actions .floating-talk .floating-icon{width:40px;height:40px}}

.footer-reference-contact .contact-icon{display:inline-flex;align-items:center;justify-content:center;width:26px;color:#ff7a16}.footer-reference-contact .contact-icon svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.footer-reference-contact h3{font-size:18px;letter-spacing:.01em}

/* Compact mobile navbar */
@media(max-width:768px){.navbar{padding:4px 0!important;top:8px!important}.nav-inner{min-height:54px!important;height:54px!important;padding:0 12px!important;gap:8px!important;border-radius:8px!important}.logo-img{height:32px!important;max-width:145px}.nav-toggle{width:38px;height:38px}.nav-toggle svg{width:21px;height:21px}.nav-links,.nav-contact{display:none!important}}
@media(max-width:380px){.nav-inner{min-height:50px!important;height:50px!important}.logo-img{height:29px!important}.nav-toggle{width:34px;height:34px}}

/* Mobile navbar breathing space */
@media(max-width:768px){.navbar{padding:10px 0 18px!important}.nav-inner{width:calc(100% - 28px)!important;margin:0 14px!important;padding:0 14px!important;min-height:56px!important;height:56px!important}}@media(max-width:380px){.navbar{padding-top:8px!important;padding-bottom:15px!important}.nav-inner{width:calc(100% - 22px)!important;margin:0 11px!important;height:53px!important;min-height:53px!important}}

/* Keep mobile hero clean below the navbar */


/* Revert extra mobile navbar spacing */
@media(max-width:768px){.navbar{padding:4px 0!important}.nav-inner{width:100%!important;margin:0!important;padding:0 12px!important;min-height:54px!important;height:54px!important}}@media(max-width:380px){.navbar{padding:4px 0!important}.nav-inner{width:100%!important;margin:0!important;height:50px!important;min-height:50px!important;padding:0 12px!important}}

/* Mobile navbar reference layout */
@media(max-width:768px){.navbar{top:22px!important;padding:0!important}.nav-inner{width:calc(100% - 48px)!important;margin:0 24px!important;min-height:58px!important;height:58px!important;padding:0 16px!important;border-radius:16px!important;background:#fff!important;box-shadow:0 8px 22px rgba(20,15,60,.12)}.logo-img{height:31px!important;max-width:132px}.nav-toggle{width:34px;height:34px}.nav-toggle svg{width:19px;height:19px}}@media(max-width:380px){.nav-inner{width:calc(100% - 36px)!important;margin:0 18px!important;height:56px!important;min-height:56px!important}.logo-img{height:29px!important}}

/* Restore original mobile responsive behavior */
@media(max-width:768px){.navbar{top:18px!important;left:24px!important;right:24px!important;padding:10px 0!important;border-radius:100px!important}.nav-inner{width:100%!important;margin:0!important;height:auto!important;min-height:0!important;padding:0 16px!important;border-radius:0!important;background:transparent!important;box-shadow:none!important}.logo-img{height:30px!important;max-width:none}.nav-toggle{width:44px;height:44px}.nav-toggle svg{width:24px;height:24px}}}@media(max-width:380px){.navbar{left:24px!important;right:24px!important}.nav-inner{height:auto!important;min-height:0!important}.logo-img{height:30px!important}}

/* Remove extra white gap below mobile navbar */
@media(max-width:768px){.hero{padding-top:92px!important;margin-top:0!important}.hero-inner{margin-top:0!important}}@media(max-width:380px){.hero{padding-top:86px!important}}

/* Remove thin white seam above purple mobile hero */
@media(max-width:768px){.hero.hero-dark{margin-top:-2px!important;border-top:0!important;background-color:#0a0a16!important;background-clip:border-box!important}.hero.hero-dark::before,.hero.hero-dark::after{border-top:0!important;box-shadow:none!important}}

@media(max-width:768px){.hero.hero-dark{isolation:isolate;overflow:visible!important}.hero.hero-dark::before{content:'';position:absolute;z-index:-1;left:0;right:0;top:-12px;height:14px;background:#0b0a1b;pointer-events:none}}

@media(max-width:768px){.hero.hero-dark::before{display:none!important}}

@media(max-width:768px){.hero.hero-dark{padding-top:0!important;margin-top:0!important;border-top:0!important}.hero.hero-dark .hero-inner{margin-top:0!important;padding-top:0!important}}

@media(max-width:768px){.hero.hero-dark{padding-top:92px!important;margin-top:0!important}.hero.hero-dark .hero-inner{margin-top:0!important;padding-top:0!important}}@media(max-width:380px){.hero.hero-dark{padding-top:86px!important}}



/* Mobile Why Choose responsive repair */
@media(max-width:768px){.why-choose-section{overflow:hidden!important;padding:72px 0 0!important}.why-choose-inner{width:100%!important;max-width:none!important;padding:0 22px!important}.why-choose-heading{width:100%!important;max-width:100%!important;position:relative!important;z-index:5!important}.why-choose-heading p{font-size:12px!important;letter-spacing:.16em!important;margin-bottom:16px!important}.why-choose-heading h2{font-size:clamp(31px,8.5vw,42px)!important;line-height:.98!important;letter-spacing:-.055em!important;max-width:350px!important;margin:0!important}.why-choose-layout{display:flex!important;flex-direction:column!important;gap:0!important;padding:0!important}.why-choose-visual{order:2!important;width:100%!important;height:390px!important;margin-top:24px!important;position:relative!important}.why-choose-robot{position:absolute!important;width:82%!important;max-width:390px!important;height:auto!important;right:-8%!important;left:auto!important;bottom:-12px!important;top:auto!important;transform:none!important;object-fit:contain!important}.why-choose-benefits,.why-choose-stats,.why-choose-review{display:none!important}}@media(max-width:390px){.why-choose-section{padding-top:62px!important}.why-choose-inner{padding:0 18px!important}.why-choose-heading h2{font-size:clamp(29px,8.8vw,36px)!important}.why-choose-visual{height:350px!important}.why-choose-robot{width:88%!important;right:-12%!important}}


/* Premium TechSmiths footer */
.ts-footer{position:relative;overflow:hidden;background:linear-gradient(135deg,#11143f 0%,#171b59 58%,#241047 100%);color:#fff;padding:80px clamp(20px,5vw,76px) 22px}.ts-footer-glow{position:absolute;width:520px;height:520px;right:-220px;top:-260px;border-radius:50%;background:radial-gradient(circle,rgba(168,85,247,.28),transparent 68%);pointer-events:none}.ts-footer-top{position:relative;z-index:1;max-width:1400px;margin:0 auto;display:grid;grid-template-columns:1.35fr .75fr 1fr 1.15fr;gap:56px}.ts-footer-brand{max-width:370px}.ts-footer-logo{display:inline-flex;margin-bottom:24px}.ts-footer-logo img{width:220px;height:auto;filter:brightness(0) invert(1);opacity:.95}.ts-footer-brand p{color:rgba(255,255,255,.7);font-size:15px;line-height:1.75;margin-bottom:17px}.ts-footer-tagline{color:#caa7ff;font-size:12px;letter-spacing:.11em;text-transform:uppercase}.ts-footer-socials{display:flex;gap:10px;margin-top:28px}.ts-footer-socials a{display:grid;place-items:center;width:42px;height:42px;border:1px solid rgba(255,255,255,.2);border-radius:12px;color:#fff;transition:.3s ease}.ts-footer-socials a:hover{background:#8b5cf6;border-color:#a855f7;transform:translateY(-4px);box-shadow:0 10px 24px rgba(139,92,246,.35)}.ts-footer-socials svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.ts-footer-socials a:first-child svg{fill:currentColor;stroke:none}.ts-footer-label{display:block;color:#caa7ff;font-size:12px;letter-spacing:.18em;text-transform:uppercase;margin-bottom:10px}.ts-footer h2{font-size:23px;letter-spacing:-.03em;margin:0 0 24px}.ts-footer-column a{display:block;width:max-content;max-width:100%;color:rgba(255,255,255,.72);font-size:14px;text-decoration:none;margin:0 0 15px;transition:.28s ease}.ts-footer-column a:hover{color:#fff;transform:translateX(5px)}.ts-footer-contact p{display:flex;align-items:flex-start;gap:10px;color:rgba(255,255,255,.72);font-size:13px;line-height:1.55;margin:0 0 13px}.ts-footer-contact p svg{flex:0 0 17px;width:17px;height:17px;margin-top:2px;fill:none;stroke:#caa7ff;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.ts-footer-contact a{color:inherit;text-decoration:none}.ts-footer-contact a:hover{color:#fff}.ts-footer-hours{display:grid;gap:6px;margin:22px 0;color:rgba(255,255,255,.72);font-size:13px}.ts-footer-hours strong{color:#fff;font-size:14px}
.ts-footer-bottom{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px 20px;max-width:1400px;margin:46px auto 0;padding-top:22px;border-top:1px solid rgba(255,255,255,.14)}
.ts-footer-bottom span{color:rgba(255,255,255,.6);font-size:13px}
.ts-footer-bottom a{display:grid;place-items:center;width:38px;height:38px;flex-shrink:0;border:1px solid rgba(255,255,255,.2);border-radius:50%;color:#fff;transition:.3s ease}
.ts-footer-bottom a:hover{background:#8b5cf6;border-color:#a855f7;transform:translateY(-3px)}
.ts-footer-bottom svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.ts-footer-contact p>span{color:#fff;font-weight:600;white-space:nowrap}.ts-footer-contact p>span+a{color:inherit}

.ts-footer-office{margin:0 0 15px}.ts-footer-office>strong{display:block;color:#fff;font-size:12px;margin:0 0 5px}.ts-footer-office p{margin-bottom:0}.ts-footer-contact p>span{color:#fff;font-weight:600;white-space:nowrap}

/* ==========================================================================
   SHARED INNER-PAGE HERO ? identical on About / Portfolio / Blog / Career /
   Contact / every service page. Only the eyebrow + title text differ.
   ========================================================================== */
.inner-hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 380px; display: flex; align-items: center; justify-content: center;
  padding: 140px 20px 70px;
  background: linear-gradient(135deg,#11143f 0%,#171b59 58%,#241047 100%);
  color: #fff; text-align: center;
}
.inner-hero-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(10px); z-index: -1; }
.inner-hero-glow-one { width: 560px; height: 560px; left: -220px; top: -260px; background: radial-gradient(circle,rgba(168,85,247,.32),transparent 68%); }
.inner-hero-glow-two { width: 480px; height: 480px; right: -200px; bottom: -260px; background: radial-gradient(circle,rgba(99,102,241,.26),transparent 68%); }
.inner-hero-orbit {
  position: absolute; left: 50%; top: 50%; width: 720px; height: 720px; transform: translate(-50%,-50%);
  border: 1px solid rgba(168,85,247,.16); border-radius: 50%; z-index: -1; pointer-events: none;
  box-shadow: 0 0 0 70px rgba(139,92,246,.03), 0 0 0 140px rgba(139,92,246,.02);
}
.inner-hero-lines { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.inner-hero-lines span { position: absolute; height: 1px; width: 100%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.08),transparent); }
.inner-hero-lines span:nth-child(1) { top: 30%; }
.inner-hero-lines span:nth-child(2) { top: 55%; }
.inner-hero-lines span:nth-child(3) { top: 78%; }
.inner-hero-inner { position: relative; z-index: 1; }
.inner-hero-eyebrow { display: inline-block; margin-bottom: 18px; color: #caa7ff; font: 700 12px/1 var(--font-head); letter-spacing: .22em; text-transform: uppercase; }
.inner-hero-title { margin: 0; font: 800 clamp(40px,6vw,72px)/1.02 var(--font-head); letter-spacing: -.03em; }
@media (max-width: 768px) {
  .inner-hero { min-height: 300px; padding: 120px 18px 56px; }
  .inner-hero-title { font-size: clamp(32px,9vw,46px); }
  .inner-hero-orbit { width: 460px; height: 460px; }
}
@media (prefers-reduced-motion: reduce) { .inner-hero * { animation: none !important; transition: none !important; } }

.ts-footer,.ts-footer *{box-sizing:border-box}.ts-footer-top>*,.ts-footer-bottom>*{min-width:0}.ts-footer-contact{min-width:0}.ts-footer-contact p{overflow-wrap:anywhere}.ts-footer-contact p>span+a{overflow-wrap:anywhere}.ts-footer-column a{white-space:normal}.ts-footer-logo img{max-width:100%;height:auto}@media(max-width:1024px){.ts-footer-top{grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);gap:36px}.ts-footer-contact{grid-column:1 / -1;max-width:680px}}@media(max-width:768px){.ts-footer-top{grid-template-columns:1fr!important;gap:32px!important}.ts-footer-contact{grid-column:auto!important;max-width:none}.ts-footer-bottom{align-items:flex-start}.ts-footer-bottom span{max-width:calc(100% - 56px)}}

/* Final footer stability fixes */
.ts-footer{width:100%;max-width:100%;clear:both}.ts-footer-top{width:100%;min-width:0}.ts-footer-contact p{min-width:0}.ts-footer-contact p svg{flex-shrink:0}.ts-footer-contact p>span,.ts-footer-contact p>a{min-width:0}.ts-footer-bottom{width:100%;min-width:0}@media(max-width:768px){.ts-footer-top{width:100%}.ts-footer-contact p{align-items:flex-start}.ts-footer-bottom{gap:12px}.ts-footer-bottom a{margin-left:auto;flex-shrink:0}}

/* Fix footer excess height and visual overflow */
.ts-footer{height:auto!important;min-height:0!important;overflow:hidden!important}.ts-footer-top{height:auto!important;min-height:0!important}.ts-footer-bottom{height:auto!important;min-height:0!important}.ts-footer-glow{pointer-events:none!important}@media(max-width:768px){.ts-footer{padding-bottom:20px!important}.ts-footer-top{display:grid!important}.ts-footer-bottom{margin-bottom:0!important}}
.ts-footer svg{display:inline-block;max-width:24px;max-height:24px}.ts-footer-bottom>a svg{width:16px!important;height:16px!important;display:block}.ts-footer-bottom>a{display:grid;place-items:center}


/* ==========================================================================
   Testimonials - service-aware content (assets/data/testimonials.js).
   Same orbit design; this block only adds: initials avatar, neutral orbit tiles that do not
   overlap the card, hidden stars / arrows when there is nothing to show, an evenly centred stage
   and a mobile stage that grows with the quote.
   ========================================================================== */
.testimonials-orbit-inner.container { padding-left: 31px; padding-right: 31px; }
.orbit-stars[hidden], .orbit-nav-btn[hidden] { display: none !important; }
.orbit-main-avatar { display: grid; place-items: center; background: linear-gradient(135deg, rgba(255,255,255,.26), rgba(255,255,255,.08)); }
.orbit-initials { font: 800 38px/1 var(--font-head); letter-spacing: .02em; color: #fff; text-shadow: 0 2px 14px rgba(20,10,80,.35); }
.orbit-testimonial-card strong { text-transform: uppercase; letter-spacing: .02em; }
.orbit-testimonial-card blockquote { overflow-wrap: anywhere; }
.orbit-avatar svg { display: block; width: 100%; height: 100%; padding: 14px; border-radius: 10px; color: #3b2a8f; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; background: rgba(255,255,255,.55); }
.orbit-avatar-two svg, .orbit-avatar-four svg { color: #1c4f7a; }
.testimonials-orbit-stage { height: 500px; }
.orbit-avatar-one   { left: calc((100% - min(490px, 80vw)) / 2 - 84px); top: 24px; }
.orbit-avatar-two   { left: 12px; top: 300px; }
.orbit-avatar-three { left: auto; right: calc((100% - min(490px, 80vw)) / 2 - 84px); top: 92px; }
.orbit-avatar-four  { left: auto; right: 12px; top: 360px; }
@media (max-width: 900px) { .orbit-nav-prev { left: -24px; } .orbit-nav-next { right: -24px; } }
@media (max-width: 700px) {
  .testimonials-orbit-inner.container { padding-left: 16px; padding-right: 16px; }
  .testimonials-orbit-head h2 { overflow-wrap: anywhere; }
  .testimonials-orbit-stage { height: auto; padding: 92px 0 84px; }
  .orbit-testimonial-card { position: relative; left: auto; top: auto; transform: none; width: 100%; min-height: 0; margin: 0 auto; padding: 32px 22px 30px; }
  .orbit-initials { font-size: 34px; }
  .orbit-avatar-one   { left: 8%; top: 8px; }
  .orbit-avatar-four  { left: auto; right: 8%; top: 8px; }
  .orbit-avatar-two   { left: 8%; top: auto; bottom: 8px; }
  .orbit-avatar-three { left: auto; right: 8%; top: auto; bottom: 8px; }
  .orbit-nav-btn { bottom: 16px; }
  .orbit-nav-prev { left: calc(50% - 50px); right: auto; }
  .orbit-nav-next { left: calc(50% + 6px); right: auto; }
}

/* Final mobile testimonial layout fix */
@media (max-width: 700px) {
  .testimonials-orbit { overflow: hidden; padding: 64px 0 86px; }
  .testimonials-orbit-inner.container {
    width: 100%; max-width: none; box-sizing: border-box; margin: 0;
    padding-left: 16px !important; padding-right: 16px !important;
  }
  .testimonials-orbit-head { width: 100%; box-sizing: border-box; padding: 0 4px; }
  .testimonials-orbit-head h2 {
    font-size: clamp(32px, 10vw, 42px); line-height: .98;
    overflow-wrap: normal; word-break: normal;
  }
  .testimonials-orbit-head p { max-width: 100%; font-size: 13px; }
  .testimonials-orbit-stage {
    width: 100%; max-width: 100%; height: auto !important; min-height: 0;
    box-sizing: border-box; margin: 30px 0 0; padding: 72px 0 84px !important;
  }
  .orbit-testimonial-card {
    display: block; position: relative !important; inset: auto !important;
    transform: none !important; width: 100% !important; max-width: 100% !important;
    min-height: 0 !important; box-sizing: border-box; margin: 0 !important;
    padding: 28px 20px 26px !important; border-radius: 18px;
  }
  .orbit-main-avatar { width: 88px; height: 88px; margin-bottom: 16px; }
  .orbit-testimonial-card blockquote {
    max-width: 100%; font-size: 16px; line-height: 1.45; overflow-wrap: break-word;
  }
  .orbit-stars svg { width: 16px !important; height: 16px !important; }
  .orbit-avatar { width: 42px !important; height: 42px !important; }
  .orbit-avatar-one { left: 4px !important; top: 8px !important; }
  .orbit-avatar-four { right: 4px !important; top: 8px !important; }
  .orbit-avatar-two, .orbit-avatar-three { display: none; }
  .orbit-nav-btn {
    top: auto !important; bottom: 12px !important;
    width: 42px !important; height: 42px !important;
  }
  .orbit-nav-prev { left: calc(50% - 48px) !important; right: auto !important; }
  .orbit-nav-next { left: calc(50% + 6px) !important; right: auto !important; }
}
/* Animated transparent navbar logo */
.nav-logo .animated-logo {
  transform-origin: center;
  animation: techsmithsLogoFloat 3.6s ease-in-out infinite;
  will-change: transform, filter;
}
@keyframes techsmithsLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.025); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-logo .animated-logo { animation: none; }
}
/* Keep the animated preloader logo fitted inside the navbar */
.nav-logo { display: inline-flex; align-items: center; justify-content: center; overflow: hidden; }
.nav-logo .logo-img { width: auto; max-width: 180px; height: 52px; object-fit: contain; }
@media (max-width: 768px) { .nav-logo .logo-img { max-width: 140px; height: 36px; } }
/* Larger fitted animated navbar logo */
.nav-logo .logo-img { max-width: 220px; height: 66px; }
@media (max-width: 768px) { .nav-logo .logo-img { max-width: 165px; height: 44px; } }
@media (max-width: 380px) { .nav-logo .logo-img { max-width: 150px; height: 40px; } }
/* White navbar surface */
.navbar { background: #ffffff !important; }
.navbar .nav-link,
.navbar .nav-phone-copy,
.navbar .nav-phone-copy a,
.navbar .nav-toggle { color: #111118; }
/* Mobile white navbar fit */
@media (max-width: 768px) {
  .navbar { left: 24px !important; right: 24px !important; top: 18px !important; padding: 0 !important; background: transparent !important; }
  .navbar .nav-inner { width: 100% !important; min-height: 64px !important; height: 64px !important; padding: 0 18px !important; border-radius: 999px !important; background: #ffffff !important; box-shadow: 0 8px 22px rgba(20,15,60,.14); }
  .nav-logo .logo-img { height: 48px !important; max-width: 175px !important; }
  .navbar .nav-toggle { color: #111118 !important; width: 44px !important; height: 44px !important; }
}
@media (max-width: 380px) {
  .navbar { left: 18px !important; right: 18px !important; }
  .navbar .nav-inner { min-height: 60px !important; height: 60px !important; padding: 0 16px !important; }
  .nav-logo .logo-img { height: 44px !important; max-width: 160px !important; }
}
/* Remove the mobile banner top gap */
@media (max-width: 768px) {
  .hero { margin-top: -6px !important; border-top: 0 !important; }
}
/* Remove the remaining white strip above the mobile banner */
@media (max-width: 768px) {
  header.navbar { margin-bottom: -12px !important; }
  .hero { margin-top: -18px !important; }
}
/* Testimonial responsive guardrails */
.testimonials-orbit { overflow: hidden; }
@media (max-width: 900px) {
  .testimonials-orbit-inner.container { width: 100%; max-width: 100%; box-sizing: border-box; }
  .testimonials-orbit-head h2 { max-width: 100%; font-size: clamp(36px, 8vw, 64px); overflow-wrap: normal; }
  .testimonials-orbit-head p { max-width: 620px; padding: 0 16px; box-sizing: border-box; }
  .testimonials-orbit-stage { width: 100%; max-width: 100%; box-sizing: border-box; overflow: hidden; }
  .orbit-testimonial-card { max-width: min(490px, calc(100vw - 32px)); box-sizing: border-box; }
}
@media (max-width: 700px) {
  .testimonials-orbit-head h2 { font-size: clamp(30px, 10vw, 44px); line-height: 1; }
  .testimonials-orbit-head p { padding: 0; }
  .orbit-testimonial-card { width: 100% !important; max-width: 100% !important; }
}
