/* ===================== Tokens ===================== */
:root{
  --navy-950:#050814;
  --navy-900:#0a0f24;
  --navy-800:#111b40;
  --navy-700:#1c2c60;
  --blue-600:#2a4bde;
  --blue-500:#3b63f0;
  --blue-400:#7092ff;
  --cyan-400:#4fd6e0;
  --violet-500:#7c5cff;
  --pink-500:#ef4d8a;
  --warm-1:#ff9142;
  --warm-2:#ef4d8a;
  --green-500:#22c55e;

  --ink:#0c1024;
  --gray-700:#3d4358;
  --gray-600:#5b6478;
  --gray-400:#8b93a7;
  --gray-200:#e3e7f2;
  --gray-100:#f1f3f9;
  --bg:#ffffff;
  --bg-alt:#f6f8fc;

  --grad-brand:linear-gradient(135deg,#1c2c60,#2a4bde 55%,#4fd6e0);
  --grad-warm:linear-gradient(135deg,var(--warm-1),var(--warm-2));

  --shadow-sm:0 2px 10px rgba(10,15,36,.06);
  --shadow-md:0 12px 30px rgba(10,15,36,.10);
  --shadow-lg:0 24px 60px rgba(10,15,36,.16);

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:26px;

  --container:1180px;
  --header-h:76px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4,h5{
  font-family:'Sora',system-ui,sans-serif;
  margin:0 0 .5em;
  line-height:1.18;
  color:var(--navy-900);
  letter-spacing:-0.01em;
}
p{margin:0 0 1em;color:var(--gray-600);line-height:1.7;}
a{color:inherit;text-decoration:none;}
a,button{touch-action:manipulation;}
a.is-placeholder-link{pointer-events:none;cursor:default;}
ul{margin:0;padding:0;list-style:none;}
button{font-family:inherit;cursor:pointer;background:none;border:none;color:inherit;}
img{max-width:100%;display:block;}
.icon{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}

.container{max-width:var(--container);margin:0 auto;padding:0 24px;}

.skip-link{
  position:absolute;left:-999px;top:0;background:var(--navy-900);color:#fff;padding:10px 16px;border-radius:8px;z-index:999;
}
.skip-link:focus{left:16px;top:16px;}

/* ===================== Reveal animation ===================== */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s cubic-bezier(.22,1,.36,1),transform .7s cubic-bezier(.22,1,.36,1);}
.reveal.in-view{opacity:1;transform:translateY(0);}

/* ===================== Buttons & badges ===================== */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 26px;border-radius:999px;
  font-weight:600;font-size:.95rem;font-family:'Sora',sans-serif;
  white-space:nowrap;transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
}
.btn .icon{transition:transform .25s ease;}
.btn:hover .icon{transform:translate(3px,-1px);}
.btn-primary{background:var(--grad-brand);color:#fff;box-shadow:0 10px 24px rgba(42,75,222,.32);}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 32px rgba(42,75,222,.4);}
.btn-outline-dark{border:1.5px solid rgba(10,15,36,.18);color:var(--navy-900);}
.btn-outline-dark:hover{background:var(--navy-900);color:#fff;transform:translateY(-2px);}
.btn-dark{background:var(--navy-900);color:#fff;border:1px solid rgba(255,255,255,.14);}
.btn-dark:hover{background:var(--navy-800);}
.btn-warm{background:var(--grad-warm);color:#fff;box-shadow:0 10px 24px rgba(239,77,138,.35);}
.btn-warm:hover{transform:translateY(-2px);box-shadow:0 16px 32px rgba(239,77,138,.42);}
.btn-light{background:#fff;color:var(--navy-900);box-shadow:0 10px 24px rgba(10,15,36,.2);}
.btn-light:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(10,15,36,.26);}
.btn-sm{padding:10px 18px;font-size:.85rem;}
.btn-block{width:100%;justify-content:center;}

.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 16px;border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  color:#dbe3ff;font-size:.82rem;font-weight:600;letter-spacing:.02em;
  backdrop-filter:blur(6px);
}
.badge-dot{width:7px;height:7px;border-radius:50%;background:var(--cyan-400);box-shadow:0 0 0 0 rgba(79,214,224,.6);animation:pulseDot 2s infinite;}
@keyframes pulseDot{0%{box-shadow:0 0 0 0 rgba(79,214,224,.55);}70%{box-shadow:0 0 0 8px rgba(79,214,224,0);}100%{box-shadow:0 0 0 0 rgba(79,214,224,0);}}
.dot-pulse{width:6px;height:6px;border-radius:50%;background:var(--cyan-400);}

.tag{display:inline-block;padding:5px 14px;border-radius:999px;font-size:.75rem;font-weight:700;letter-spacing:.02em;margin-bottom:14px;}
.tag-violet{background:rgba(124,92,255,.1);color:var(--violet-500);border:1px solid rgba(124,92,255,.3);}
.tag-blue{background:rgba(42,75,222,.1);color:var(--blue-600);border:1px solid rgba(42,75,222,.3);}
.tag-pink{background:rgba(239,77,138,.1);color:var(--pink-500);border:1px solid rgba(239,77,138,.3);}
.tag-outline{background:transparent;color:var(--gray-600);border:1px solid var(--gray-200);}

/* ===================== Brand ===================== */
.brand{position:relative;display:inline-flex;align-items:center;flex:none;gap:10px;width:max-content;max-width:100%;touch-action:manipulation;}
.brand-chip{
  display:inline-flex;align-items:center;background:#fff;
  padding:8px 16px;border-radius:12px;box-shadow:var(--shadow-sm);
  transition:transform .25s ease,box-shadow .25s ease;
}
.brand:hover .brand-chip{transform:translateY(-1px);box-shadow:var(--shadow-md);}
.brand-logo-img{height:24px;width:auto;display:block;}
.brand-chip-lg{padding:14px 22px;border-radius:14px;}
.brand-chip-lg .brand-logo-img{height:32px;}

/* ===================== Header ===================== */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:200;
  height:var(--header-h);
  display:flex;align-items:center;
  background:rgba(255,255,255,0);
  transform:translateY(0);
  transition:background .35s ease,box-shadow .35s ease,height .35s ease,
             transform .26s cubic-bezier(.4,0,.2,1),opacity .22s ease;
}
.site-header.scrolled{
  height:64px;background:rgba(255,255,255,.85);backdrop-filter:blur(14px);
  box-shadow:0 4px 24px rgba(10,15,36,.08);
}
.site-header.nav-hidden{
  transform:translateY(-100%);opacity:0;pointer-events:none;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;width:100%;}
.main-nav{display:flex;align-items:center;gap:30px;}
.nav-link{font-size:.94rem;font-weight:600;color:rgba(255,255,255,.85);position:relative;padding:6px 0;transition:color .2s;}
.nav-link::after{
  content:"";position:absolute;left:0;bottom:-2px;height:2px;width:0;
  background:var(--grad-brand);transition:width .25s ease;
}
.nav-link:hover,.nav-link.active{color:var(--cyan-400);}
.nav-link:hover::after,.nav-link.active::after{width:100%;}
.site-header.scrolled .nav-link{color:var(--navy-800);}
.site-header.scrolled .nav-link:hover,.site-header.scrolled .nav-link.active{color:var(--blue-600);}
.header-actions{display:flex;align-items:center;gap:16px;}

.nav-toggle{display:none;flex-direction:column;justify-content:center;gap:5px;width:36px;height:36px;}
.nav-toggle span{width:100%;height:2px;background:#fff;border-radius:2px;transition:transform .3s,opacity .3s,background .3s;}
.site-header.scrolled .nav-toggle span{background:var(--navy-900);}
.nav-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.is-open span:nth-child(2){opacity:0;}
.nav-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.mobile-nav{
  position:fixed;top:var(--header-h);left:0;right:0;z-index:190;
  background:#fff;box-shadow:0 20px 40px rgba(10,15,36,.14);
  display:flex;flex-direction:column;padding:0 24px;gap:4px;
  max-height:0;overflow:hidden;opacity:0;visibility:hidden;pointer-events:none;
  transition:max-height .35s ease,opacity .3s ease,padding .35s ease,visibility 0s linear .35s;
}
.mobile-nav.is-open{max-height:70vh;padding:18px 24px 26px;opacity:1;visibility:visible;pointer-events:auto;overflow-y:auto;transition-delay:0s;}
.mobile-nav .nav-link{padding:12px 4px;border-bottom:1px solid var(--gray-100);color:var(--navy-800);}
.mobile-nav .nav-link:hover,.mobile-nav .nav-link.active{color:var(--blue-600);}
.mobile-nav .btn{margin-top:14px;}

/* ===================== Header navigation dropdowns ===================== */
.nav-item{position:relative;display:flex;align-items:center;}
.nav-item .nav-caret{
  display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;
  color:rgba(255,255,255,.75);transition:transform .25s ease,color .2s ease,background .2s ease;margin-left:1px;
}
.nav-item .nav-caret svg{width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:2.4;}
.site-header.scrolled .nav-item .nav-caret{color:var(--gray-400);}
.nav-item:hover .nav-caret{color:var(--cyan-400);}
.site-header.scrolled .nav-item:hover .nav-caret{color:var(--blue-600);}
.nav-item.is-open .nav-caret{transform:rotate(180deg);color:var(--cyan-400);}
.site-header.scrolled .nav-item.is-open .nav-caret{color:var(--blue-600);}
.nav-item.is-open > .nav-link{color:var(--cyan-400);}
.nav-item.is-open > .nav-link::after{width:100%;}
.site-header.scrolled .nav-item.is-open > .nav-link{color:var(--blue-600);}

.nav-dropdown{
  position:absolute;top:100%;left:50%;transform:translate(-50%,6px);
  min-width:280px;background:#fff;border-radius:var(--radius-md);box-shadow:var(--shadow-lg);
  padding:10px;opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .2s ease,transform .2s ease,visibility .2s;z-index:210;
}
.nav-item:hover .nav-dropdown,
.nav-item.is-open .nav-dropdown{opacity:1;visibility:visible;pointer-events:auto;transform:translate(-50%,0);}
.dropdown-link{
  display:flex;align-items:center;justify-content:space-between;gap:10px;width:100%;
  padding:11px 14px;border-radius:10px;font:inherit;font-size:.92rem;font-weight:600;color:var(--navy-800);
  background:none;border:none;text-align:left;cursor:pointer;transition:background .2s,color .2s;
}
.dropdown-link:hover{background:var(--bg-alt);color:var(--blue-600);}
.nav-dropdown-hire{min-width:245px;}
.hire-dropdown-option{user-select:none;}
span.hire-dropdown-option{cursor:default;}
span.hire-dropdown-option:hover{background:var(--bg-alt);color:var(--navy-800);}
.hire-dropdown-link{cursor:pointer;}
.dropdown-item{position:relative;}
.dropdown-arrow{width:14px;height:14px;flex:none;stroke:var(--gray-400);stroke-width:2.2;fill:none;transition:stroke .2s ease;}
.dropdown-item:hover .dropdown-arrow,
.dropdown-item.is-open .dropdown-arrow{stroke:var(--blue-600);}

.nav-flyout{
  position:absolute;top:0;left:100%;transform:translateX(6px);
  min-width:240px;background:#fff;border-radius:var(--radius-md);box-shadow:var(--shadow-lg);
  padding:10px;opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .2s ease,transform .2s ease,visibility .2s;
}
.dropdown-item:hover .nav-flyout,
.dropdown-item.is-open .nav-flyout{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(0);}

/* Mobile Services accordion */
.mnav-group{border-bottom:1px solid var(--gray-100);}
.mnav-head,.mnav-subhead{display:flex;align-items:center;justify-content:space-between;gap:8px;}
.mnav-head .nav-link{border-bottom:none;flex:1;}
.mnav-toggle{
  width:38px;height:38px;flex:none;display:flex;align-items:center;justify-content:center;
  color:var(--gray-400);transition:transform .25s ease,color .2s ease;
}
.mnav-toggle svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2.2;}
.mnav-toggle.is-open{transform:rotate(180deg);color:var(--blue-600);}
.mnav-toggle-sm{width:32px;height:32px;}
.mnav-toggle-sm svg{width:15px;height:15px;}
.mnav-sub{max-height:0;overflow:hidden;visibility:hidden;pointer-events:none;transition:max-height .35s ease,visibility 0s linear .35s;padding-left:6px;}
.mnav-sub.is-open{max-height:720px;padding-bottom:6px;visibility:visible;pointer-events:auto;transition-delay:0s;}
.mnav-sublink{display:block;padding:10px 8px;font-size:.9rem;font-weight:600;color:var(--gray-600);}
.mnav-sublink:hover{color:var(--blue-600);}
.mnav-hire-option{user-select:none;}
span.mnav-hire-option{cursor:default;}
span.mnav-hire-option:hover{color:var(--gray-600);}
.mnav-hire-link{cursor:pointer;}
.mnav-subgroup{border-top:1px dashed var(--gray-100);}
.mnav-subhead .mnav-sublink{flex:1;padding:10px 8px;}
.mnav-subsub{max-height:0;overflow:hidden;visibility:hidden;pointer-events:none;transition:max-height .3s ease,visibility 0s linear .3s;padding-left:14px;}
.mnav-subsub.is-open{max-height:200px;padding-bottom:4px;visibility:visible;pointer-events:auto;transition-delay:0s;}
.mnav-subsublink{display:block;padding:9px 8px;font-size:.85rem;font-weight:600;color:var(--gray-400);}
.mnav-subsublink:hover{color:var(--blue-600);}

/* ===================== Mobile App Development Reference Hero ===================== */
.mad-reference-hero{position:relative;padding-top:var(--header-h);overflow:hidden;background:#fff;}
.mad-reference-canvas{position:relative;width:100%;max-width:1774px;aspect-ratio:1774/887;margin:0 auto;}
.mad-reference-canvas img{width:100%;height:100%;display:block;object-fit:contain;}
.mad-reference-cta{
  position:absolute;z-index:2;left:6.85%;top:82.85%;width:24.35%;height:7.2%;
  border-radius:999px;
}
.mad-reference-cta:focus-visible{outline:4px solid var(--blue-600);outline-offset:4px;}
.mad-reference-seo{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* ===================== Hero ===================== */
.hero{
  position:relative;overflow:hidden;
  padding:calc(var(--header-h) + 64px) 0 100px;
  background:radial-gradient(120% 120% at 15% 0%,var(--navy-800) 0%,var(--navy-900) 45%,var(--navy-950) 100%);
  color:#fff;
}
.hero-glow{position:absolute;border-radius:50%;filter:blur(70px);opacity:.55;pointer-events:none;}
.hero-glow.g1{width:520px;height:520px;background:var(--blue-500);top:-180px;right:-120px;animation:floatSlow 12s ease-in-out infinite;}
.hero-glow.g2{width:420px;height:420px;background:var(--violet-500);bottom:-160px;left:-120px;animation:floatSlow 14s ease-in-out infinite reverse;}
@keyframes floatSlow{0%,100%{transform:translate(0,0) scale(1);}50%{transform:translate(30px,-20px) scale(1.08);}}
.hero-grid{
  position:absolute;inset:0;opacity:.15;pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.5) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.5) 1px,transparent 1px);
  background-size:46px 46px;
  mask-image:radial-gradient(circle at 30% 30%,rgba(0,0,0,.9),transparent 65%);
}
.hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:center;}
.hero-title{font-size:clamp(2.2rem,4vw,3.35rem);color:#fff;font-weight:700;}
.hero-title em{font-style:normal;color:var(--cyan-400);}
.hero-text{color:#b9c2de;font-size:1.05rem;max-width:520px;}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;margin:26px 0 30px;}
.hero-cta .btn-outline-dark{border-color:rgba(255,255,255,.28);color:#fff;}
.hero-cta .btn-outline-dark:hover{background:#fff;color:var(--navy-900);}
.hero-meta{display:flex;gap:26px;flex-wrap:wrap;color:#9aa5c8;font-size:.88rem;}
.hero-meta-item{display:flex;align-items:center;gap:8px;}
.hero-meta-item .icon{color:var(--cyan-400);}

.hero-visual{position:relative;display:flex;align-items:center;justify-content:center;height:420px;}
.orb-rings{position:relative;width:340px;height:340px;}
.ring{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.16);inset:0;}
.ring.r2{inset:34px;border-color:rgba(255,255,255,.22);}
.ring.r3{inset:68px;border-color:rgba(255,255,255,.3);}
.ring{animation:spin 22s linear infinite;}
.ring.r2{animation-duration:16s;animation-direction:reverse;}
.ring.r3{animation-duration:11s;}
@keyframes spin{to{transform:rotate(360deg);}}
.orb-core{
  position:absolute;inset:112px;border-radius:50%;
  background:var(--grad-brand);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 0 60px rgba(79,214,224,.5),0 0 0 10px rgba(255,255,255,.05);
  animation:pulseCore 3.4s ease-in-out infinite;
}
.orb-badge{
  width:66%;height:66%;border-radius:50%;background:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 10px rgba(0,0,0,.12);
}
.orb-mark-img{width:52%;height:auto;display:block;}
@keyframes pulseCore{0%,100%{box-shadow:0 0 40px rgba(79,214,224,.35),0 0 0 8px rgba(255,255,255,.04);}50%{box-shadow:0 0 70px rgba(79,214,224,.6),0 0 0 14px rgba(255,255,255,.07);}}
.chip{
  position:absolute;padding:8px 14px;border-radius:999px;font-size:.78rem;font-weight:700;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2);color:#fff;
  backdrop-filter:blur(6px);animation:floatChip 6s ease-in-out infinite;
}
.chip.c1{top:0;left:10px;animation-delay:0s;}
.chip.c2{top:40px;right:-10px;animation-delay:.6s;}
.chip.c3{bottom:30px;left:-16px;animation-delay:1.2s;}
.chip.c4{bottom:-6px;right:20px;animation-delay:1.8s;}
@keyframes floatChip{0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}

/* ===================== About / Stats ===================== */
.about{padding:110px 0;background:var(--bg);}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
.about-copy h2{font-size:clamp(1.8rem,3vw,2.3rem);}
.stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.stat-card{
  position:relative;background:var(--bg-alt);border-radius:var(--radius-md);
  padding:26px 22px;opacity:0;transform:translateY(16px);
  transition:transform .3s ease,box-shadow .3s ease;
}
.stat-grid.in-view .stat-card{animation:statIn .5s ease forwards;}
@keyframes statIn{to{opacity:1;transform:translateY(0);}}
.stat-grid .stat-card:nth-child(1){animation-delay:0s;}
.stat-grid .stat-card:nth-child(2){animation-delay:.08s;}
.stat-grid .stat-card:nth-child(3){animation-delay:.16s;}
.stat-grid .stat-card:nth-child(4){animation-delay:.24s;}
.stat-grid .stat-card:nth-child(5){animation-delay:.32s;}
.stat-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);}
.stat-icon{
  display:flex;width:38px;height:38px;border-radius:10px;align-items:center;justify-content:center;
  background:#fff;color:var(--blue-600);margin-bottom:14px;box-shadow:var(--shadow-sm);
}
.stat-icon svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;}
.stat-num{display:block;font-family:'Sora',sans-serif;font-size:2.1rem;font-weight:700;color:var(--navy-900);}
.stat-label{font-size:.85rem;color:var(--gray-600);}
.orb-mid{
  grid-column:span 1;display:flex;align-items:center;justify-content:center;
  border-radius:50%;width:60px;height:60px;margin:auto;
  background:var(--grad-brand);box-shadow:0 0 34px rgba(42,75,222,.4);
}
.orb-badge-sm{width:70%;height:70%;box-shadow:none;}
.orb-badge-sm .orb-mark-img{width:60%;}

/* ===================== Section head ===================== */
.section-head{max-width:700px;margin:0 auto 56px;text-align:center;}
.section-head h2{font-size:clamp(1.7rem,3vw,2.3rem);}
.section-head p{font-size:1.02rem;}
.section-head.center{text-align:center;}
.section-head.split{max-width:none;margin:0 0 40px;display:flex;justify-content:space-between;align-items:flex-end;gap:24px;text-align:left;}
.section-head.split p{max-width:640px;}
.section-head em{font-style:italic;font-weight:600;}

/* ===================== Services ===================== */
.services{padding:110px 0 60px;background:var(--bg-alt);}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border:1px solid var(--gray-200);border-radius:var(--radius-lg);overflow:hidden;background:#fff;}
.service-card{position:relative;isolation:isolate;overflow:hidden;padding:38px 32px;border-right:1px solid var(--gray-200);border-bottom:1px solid var(--gray-200);transition:background .3s ease,transform .3s ease,box-shadow .3s ease;}
.service-card:nth-child(3n){border-right:none;}
.service-card:nth-child(n+4){border-bottom:none;}
.service-card::before{
  content:"";position:absolute;inset:0;z-index:0;padding:2px;pointer-events:none;opacity:0;
  background:linear-gradient(125deg,var(--blue-600),#852cff 48%,var(--pink-500));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;transition:opacity .28s ease;
}
.service-card::after{
  content:"";position:absolute;z-index:0;inset:-35%;pointer-events:none;opacity:0;
  background:radial-gradient(circle at 30% 28%,rgba(82,176,255,.2),rgba(119,70,255,.08) 28%,transparent 58%);
  transform:scale(.78);transition:opacity .3s ease,transform .38s ease;
}
.service-card:is(:hover,:focus-visible){z-index:2;background:#f8f9ff;transform:translateY(-3px);box-shadow:0 18px 40px rgba(42,75,222,.12);}
.service-card:is(:hover,:focus-visible)::before,.service-card:is(:hover,:focus-visible)::after{opacity:1;}
.service-card:is(:hover,:focus-visible)::after{transform:scale(1);}
.service-card:focus-visible{outline:3px solid rgba(42,75,222,.3);outline-offset:-4px;}
.service-icon{
  display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border-radius:12px;margin-bottom:18px;
}
.service-icon svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.7;}
.service-icon.svc-1{background:rgba(124,92,255,.1);color:var(--violet-500);}
.service-icon.svc-2{background:rgba(42,75,222,.1);color:var(--blue-600);}
.service-icon.svc-3{background:rgba(79,214,224,.12);color:#1aa9b4;}
.service-icon.svc-4{background:rgba(239,77,138,.1);color:var(--pink-500);}
.service-icon.svc-5{background:rgba(59,99,240,.1);color:var(--blue-500);}
.service-icon.svc-6{background:rgba(124,92,255,.1);color:var(--violet-500);}
.service-card .service-icon,.service-card h3,.service-card p{position:relative;z-index:1;}
.service-card .service-icon{transition:transform .3s ease,box-shadow .3s ease;}
.service-card h3{font-size:1.15rem;margin-bottom:10px;transition:color .25s ease;}
.service-card p{font-size:.92rem;margin:0;}
.service-card:is(:hover,:focus-visible) .service-icon{transform:translateY(-3px) scale(1.04);box-shadow:0 10px 24px rgba(42,75,222,.12);}
.service-card:is(:hover,:focus-visible) h3{color:transparent;background:linear-gradient(110deg,var(--blue-600),#8b2cff 52%,var(--pink-500));-webkit-background-clip:text;background-clip:text;}

.cta-banner{
  position:relative;overflow:hidden;margin-top:50px;padding:44px 48px;border-radius:var(--radius-lg);
  background:linear-gradient(120deg,var(--navy-950),var(--navy-800) 45%,var(--blue-600) 120%);
  display:flex;align-items:center;justify-content:space-between;gap:30px;color:#fff;
}
.cta-banner h3{color:#fff;font-size:1.5rem;margin-bottom:8px;}
.cta-banner p{color:#c3cbea;margin:0;}
.cta-glow{position:absolute;width:340px;height:340px;background:var(--pink-500);border-radius:50%;filter:blur(90px);opacity:.35;right:-80px;top:-100px;}
.cta-banner .btn{position:relative;z-index:2;flex:none;}

/* ===================== Navigate AI ===================== */
.ai-nav{padding:100px 0;background:var(--bg);}
.ai-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border-top:1px solid var(--gray-200);}
.ai-card{padding:34px 30px;border-right:1px solid var(--gray-200);border-bottom:1px solid var(--gray-200);transition:transform .3s ease;}
.ai-card:nth-child(3n){border-right:none;}
.ai-card:hover{transform:translateY(-3px);}
.ai-card h4{font-size:1.08rem;font-weight:600;color:var(--navy-900);margin:0;}
.ai-card-cta{
  position:relative;overflow:hidden;background:linear-gradient(135deg,var(--navy-950),var(--blue-600) 130%);
  color:#fff;display:flex;flex-direction:column;justify-content:center;gap:16px;
}
.ai-card-cta h4{color:#fff;font-size:1.2rem;}
.ai-glow{position:absolute;width:220px;height:220px;background:var(--pink-500);filter:blur(70px);opacity:.5;bottom:-80px;right:-60px;border-radius:50%;}
.ai-card-cta .btn{position:relative;z-index:2;width:fit-content;}

/* ===================== Industries ===================== */
.industries{padding:100px 0;background:var(--bg-alt);}
.carousel-arrows{display:flex;gap:10px;flex:none;}
.arrow-btn{
  width:44px;height:44px;border-radius:50%;background:#fff;border:1px solid var(--gray-200);
  display:flex;align-items:center;justify-content:center;color:var(--navy-800);transition:.25s;
}
.arrow-btn svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;}
.arrow-btn:hover,.arrow-btn.is-active{background:var(--navy-900);color:#fff;border-color:var(--navy-900);}
.industry-track-wrap{overflow:hidden;padding:6px 0 10px;}
.industry-track{
  display:flex;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;padding:4px 24px 20px;
  scrollbar-width:none;
}
.industry-track::-webkit-scrollbar{display:none;}
.industry-card{
  scroll-snap-align:start;flex:0 0 300px;background:#fff;border-radius:var(--radius-md);
  padding:28px 26px 0;box-shadow:var(--shadow-sm);transition:transform .3s ease,box-shadow .3s ease;overflow:hidden;
}
.industry-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);}
.industry-icon{
  display:inline-flex;width:40px;height:40px;border-radius:10px;align-items:center;justify-content:center;
  background:rgba(239,77,138,.1);color:var(--pink-500);margin-bottom:16px;
}
.industry-icon svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.7;}
.industry-card h4{font-size:1.1rem;margin-bottom:8px;height:1.4em;}
.industry-card p{
  font-size:.88rem;margin:0;
  display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:4;overflow:hidden;
}
.industry-media{height:150px;margin:14px -26px 0;border-radius:0;background-size:cover;background-position:center;position:relative;overflow:hidden;transition:transform .4s ease;}
.industry-card:hover .industry-media{transform:scale(1.05);}
.industry-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(10,15,36,0) 40%,rgba(10,15,36,.35));}
.m-health{background-image:url('../assets/industries/healthcare.jpg');}
.m-realestate{background-image:url('../assets/industries/real-estate.jpg');}
.m-education{background-image:url('../assets/industries/education.jpg');}
.m-finance{background-image:url('../assets/industries/finance.jpg');}
.m-sports{background-image:url('../assets/industries/sports.jpg');}
.m-logistics{background-image:url('../assets/industries/logistics.jpg');}
.m-travel{background-image:url('../assets/industries/travel.jpg');}
.m-retail{background-image:url('../assets/industries/retail.jpg');}

/* ===================== Tech depth ===================== */
.tech-depth{padding:100px 0;background:#fff;}
.tech-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:50px;align-items:flex-start;}
.tech-visual{
  position:relative;height:400px;border-radius:var(--radius-lg);overflow:hidden;
  background:linear-gradient(160deg,var(--navy-900),var(--navy-950));
}
.tech-visual-img{
  width:100%;height:100%;object-fit:cover;object-position:center;
  transition:transform .5s ease;
}
.tech-visual:hover .tech-visual-img{transform:scale(1.04);}
.tech-accordion{display:flex;flex-direction:column;}
.tech-item{border-bottom:1px solid var(--gray-200);}
.tech-head{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:20px 4px;background:none;border:none;text-align:left;cursor:pointer;
}
.tech-head-left{display:flex;align-items:center;gap:16px;min-width:0;}
.tech-toggle-circle{
  display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;flex:none;
  background:#fff;border:1.5px solid var(--gray-200);
  transition:background .3s ease,border-color .3s ease;
}
.tech-toggle-circle svg{
  width:14px;height:14px;stroke:var(--navy-800);stroke-width:2.2;fill:none;
  transition:transform .3s ease,stroke .3s ease;
}
.tech-item.is-open .tech-toggle-circle{background:var(--navy-900);border-color:var(--navy-900);}
.tech-item.is-open .tech-toggle-circle svg{stroke:#fff;transform:rotate(90deg);}
.tech-title{font-family:'Sora',sans-serif;font-weight:600;font-size:1.05rem;color:var(--navy-900);}
.tech-item .chev{width:18px;height:18px;stroke:var(--gray-600);stroke-width:2;fill:none;flex:none;transition:transform .3s ease,stroke .3s ease;}
.tech-item.is-open .chev{transform:rotate(180deg);stroke:var(--blue-600);}
.tech-body{max-height:0;overflow:hidden;transition:max-height .32s cubic-bezier(.4,0,.2,1),opacity .28s ease;opacity:0;}
.tech-item.is-open .tech-body{max-height:760px;opacity:1;}
.tech-pills{display:flex;flex-wrap:wrap;gap:10px;padding:8px 4px 28px 50px;}
.tech-pill{
  display:inline-flex;align-items:center;padding:9px 18px;border-radius:999px;
  background:#fff;border:1px solid rgba(42,75,222,.22);
  color:var(--navy-800);font-size:.86rem;font-weight:600;line-height:1.2;
  transition:background .2s ease,border-color .2s ease;
}
.tech-pill:hover{background:rgba(42,75,222,.05);border-color:rgba(42,75,222,.4);}

/* ===================== Process ===================== */
.process{padding:100px 0;background:var(--bg-alt);}
.process-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px;}
.process-card{
  background:#fff;border-radius:var(--radius-md);padding:30px 28px;transition:transform .3s ease,box-shadow .3s ease;
}
.process-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);}
.process-card.wide{grid-column:span 1;}
.process-card h3{font-size:1.15rem;margin-bottom:8px;}
.process-card p{font-size:.9rem;margin:0;}
.process-grid > .process-card:nth-child(3),
.process-grid > .process-card:nth-child(4),
.process-grid > .process-card:nth-child(5){grid-column:span 1;}
@media (min-width:860px){
  .process-grid{grid-template-columns:repeat(6,1fr);}
  .process-grid > .process-card:nth-child(1){grid-column:span 3;}
  .process-grid > .process-card:nth-child(2){grid-column:span 3;}
  .process-grid > .process-card:nth-child(3){grid-column:span 2;}
  .process-grid > .process-card:nth-child(4){grid-column:span 2;}
  .process-grid > .process-card:nth-child(5){grid-column:span 2;}
}
.diagram{position:relative;height:120px;margin-bottom:24px;}
.dg-connector{position:absolute;inset:0;width:100%;height:100%;overflow:visible;}
.dg-connector path,.dg-connector ellipse{
  fill:none;stroke:var(--gray-200);stroke-width:2;stroke-dasharray:5 7;
  animation:dashFlow 1.4s linear infinite;
}
@keyframes dashFlow{to{stroke-dashoffset:-24;}}

.dnode{
  position:absolute;transform:translate(-50%,-50%) scale(.8);
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 13px;border-radius:999px;background:#fff;
  box-shadow:var(--shadow-sm);border:1px solid var(--gray-200);
  font-size:.75rem;font-weight:700;color:var(--navy-800);white-space:nowrap;
  opacity:0;transition:transform .3s ease,box-shadow .25s ease;
}
.dnode svg{width:14px;height:14px;fill:none;stroke:var(--blue-600);stroke-width:2;flex:none;}
.dnode:hover{transform:translate(-50%,-50%) scale(1.08);box-shadow:var(--shadow-md);z-index:2;}
.process-grid.in-view .dnode{animation:dnodeIn .5s ease forwards;}
@keyframes dnodeIn{to{opacity:1;transform:translate(-50%,-50%) scale(1);}}
.diagram .dnode:nth-of-type(1){animation-delay:.05s;}
.diagram .dnode:nth-of-type(2){animation-delay:.16s;}
.diagram .dnode:nth-of-type(3){animation-delay:.27s;}
.diagram .dnode:nth-of-type(4){animation-delay:.38s;}
.diagram .dnode:nth-of-type(5){animation-delay:.49s;}

.dnode.center-badge{
  width:44px;height:44px;padding:0;border-radius:50%;justify-content:center;
  background:var(--grad-brand);border:none;box-shadow:0 8px 20px rgba(42,75,222,.35);
}
.dnode.center-badge img{width:19px;height:auto;display:block;}

.mini-bars{display:flex;align-items:flex-end;gap:8px;height:74px;margin-bottom:22px;}
.mini-bars span{
  flex:1;height:var(--h);border-radius:6px 6px 0 0;background:linear-gradient(180deg,var(--cyan-400),var(--blue-600));
  transform:scaleY(0);transform-origin:bottom;transition:transform .6s cubic-bezier(.22,1,.36,1);
}
.process-grid.in-view .mini-bars span{transform:scaleY(1);}
.mini-bars span:nth-child(1){transition-delay:.05s;}
.mini-bars span:nth-child(2){transition-delay:.12s;}
.mini-bars span:nth-child(3){transition-delay:.19s;}
.mini-bars span:nth-child(4){transition-delay:.26s;}
.mini-bars span:nth-child(5){transition-delay:.33s;}
.mini-bars span:nth-child(6){transition-delay:.4s;}
.mini-bars span:nth-child(7){transition-delay:.47s;}

/* ===================== FAQ ===================== */
.faq{padding:100px 0;background:#fff;}
.faq-list{max-width:800px;margin:0 auto;}
.faq-item{border-bottom:1px solid var(--gray-200);}
.faq-q{
  width:100%;display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding:24px 4px;text-align:left;font-family:'Sora',sans-serif;font-weight:700;font-size:1.05rem;color:var(--navy-900);
}
.faq-item .chev{width:20px;height:20px;stroke:var(--gray-600);stroke-width:2;fill:none;flex:none;transition:transform .3s ease;}
.faq-item.is-open .chev{transform:rotate(180deg);color:var(--blue-600);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;}
.faq-item.is-open .faq-a{max-height:200px;}
.faq-a p{padding:0 4px 20px;margin:0;font-size:.94rem;}
.faq-extra{max-height:0;overflow:hidden;transition:max-height .5s ease;}
.faq-extra.is-open{max-height:2000px;}
.faq-more-wrap{text-align:center;margin-top:36px;}
#faqMoreBtn.is-open,#mlFaqMoreBtn.is-open,#deFaqMoreBtn.is-open,#mobileFaqMoreBtn.is-open,#webFaqMoreBtn.is-open,#saasFaqMoreBtn.is-open,#uiuxFaqMoreBtn.is-open{display:none;}

/* ===================== Insights ===================== */
.insights{padding:100px 0;background:var(--bg-alt);}
.insights-grid{display:grid;grid-template-columns:1.1fr 1fr;gap:40px;}
.insight-feature{background:#fff;border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-sm);transition:transform .3s ease,box-shadow .3s ease;}
.insight-feature:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
.insight-media{
  height:220px;background-image:url('../assets/insights/real-estate-software.jpg');
  background-size:cover;background-position:center top;
}
.insight-feature .tag,.insight-feature h3,.insight-feature p{padding-left:26px;padding-right:26px;}
.insight-feature .tag{margin-top:22px;}
.insight-feature h3{font-size:1.2rem;}
.insight-feature p{padding-bottom:26px;}
.insight-list{display:flex;flex-direction:column;gap:0;}
.insight-row{padding:26px 0;border-bottom:1px solid var(--gray-200);}
.insight-row:first-child{padding-top:0;}
.insight-row h4{font-size:1.08rem;margin-bottom:8px;}
.insight-row p{font-size:.9rem;margin:0;}

/* ===================== Book a Call CTA ===================== */
.book-call{padding:40px 0 100px;background:#fff;overflow-x:hidden;}
.book-call-top{padding-top:calc(var(--header-h) + 40px);}
.book-call-frame{position:relative;}
.book-call-card{
  position:relative;overflow:hidden;
  border-radius:36px;border:1px solid rgba(10,20,50,.08);
  background:linear-gradient(180deg,#ffffff,#f6f8fd);
  box-shadow:0 30px 70px rgba(10,20,50,.07);
  padding:88px 40px;
}
.book-call-grid{
  position:absolute;inset:0;pointer-events:none;
  background-image:repeating-linear-gradient(90deg,rgba(10,20,50,.05) 0 1px,transparent 1px 58px);
  mask-image:radial-gradient(ellipse 60% 55% at 50% 40%,rgba(0,0,0,.9),transparent 78%);
  -webkit-mask-image:radial-gradient(ellipse 60% 55% at 50% 40%,rgba(0,0,0,.9),transparent 78%);
}
.book-call-glow{position:absolute;border-radius:50%;filter:blur(80px);pointer-events:none;}
.book-call-glow.g1{
  width:420px;height:420px;top:-180px;left:-140px;
  background:radial-gradient(circle,rgba(42,75,222,.20),transparent 70%);
  animation:ctaDrift 17s ease-in-out infinite alternate;
}
.book-call-glow.g2{
  width:380px;height:380px;bottom:-170px;right:-120px;
  background:radial-gradient(circle,rgba(79,214,224,.16),transparent 70%);
  animation:ctaDrift 21s ease-in-out infinite alternate-reverse;
}
@keyframes ctaDrift{from{transform:translate(0,0);}to{transform:translate(20px,-14px);}}

.book-call-content{position:relative;z-index:1;max-width:720px;margin:0 auto;text-align:center;}
.badge.badge-light{
  background:rgba(42,75,222,.07);border-color:rgba(42,75,222,.18);color:var(--blue-600);
}
.book-call-head h2{
  margin-top:20px;font-size:clamp(1.9rem,4vw,2.9rem);line-height:1.28;color:var(--navy-900);
}
.book-call-head h2 em{
  font-family:Georgia,'Times New Roman',serif;font-style:italic;font-weight:500;color:var(--blue-600);
}
.book-call-lead{color:var(--gray-600);font-size:1.05rem;max-width:560px;margin:22px auto 40px;}
.book-call-lead strong{color:var(--navy-900);font-weight:700;}
.btn-book{
  background:var(--navy-950);color:#fff;padding:18px 34px;font-size:1rem;
  box-shadow:0 10px 28px rgba(10,20,50,.22);
  transition:transform .26s cubic-bezier(.4,0,.2,1),box-shadow .26s ease,background .26s ease;
}
.btn-book:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 18px 42px rgba(42,75,222,.32);
  background:var(--navy-900);
}
.book-call-note{margin:22px 0 0;font-size:.82rem;letter-spacing:.02em;color:var(--gray-400);}

@media (max-width:760px){
  .book-call{padding:20px 0 70px;}
  .book-call-top{padding-top:calc(var(--header-h) + 20px);}
  .book-call-card{padding:64px 22px;border-radius:26px;}
  .book-call-glow.g1,.book-call-glow.g2{width:260px;height:260px;filter:blur(60px);}
  .btn-book{width:100%;justify-content:center;padding:18px 20px;}
}

/* ===================== Contact ===================== */
.contact{padding:100px 0;background:#fff;}
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:56px;}
.contact-info h2{font-size:clamp(1.7rem,3vw,2.2rem);margin-bottom:28px;}
.info-item{display:flex;align-items:center;gap:20px;margin-bottom:26px;}
.info-icon{
  width:66px;height:66px;border-radius:14px;background:var(--navy-900);color:#fff;flex:none;
  display:flex;align-items:center;justify-content:center;
}
.info-icon svg{width:26px;height:26px;fill:none;stroke:currentColor;stroke-width:1.6;}
.info-item h5{font-size:.95rem;margin-bottom:4px;}
.info-item a,.info-item span{font-size:.95rem;color:var(--gray-600);}
.info-item a:hover{color:var(--blue-600);}
.career-card{
  display:flex;align-items:center;gap:20px;margin-top:64px;padding:20px;border-radius:var(--radius-md);
  background:var(--bg-alt);transition:.25s;
}
.career-card:hover{background:var(--gray-100);transform:translateY(-2px);}
.career-card h5{font-size:.95rem;margin-bottom:4px;}
.career-card p{font-size:.85rem;margin:0;}
.career-card .icon{margin-left:auto;color:var(--navy-800);flex:none;}

.contact-form{background:var(--bg-alt);border-radius:var(--radius-lg);padding:38px;}
.contact-form h3{margin-bottom:6px;}
.contact-form > p{font-size:.92rem;margin-bottom:24px;}
.form-row{display:flex;gap:16px;}
.form-row .field{flex:1;}
.field{position:relative;margin-bottom:18px;}
.field.grow{flex:1;}
.field input,.field textarea,.field select,#country{
  width:100%;padding:14px 14px;border-radius:10px;border:1px solid var(--gray-200);
  background:#fff;font-family:inherit;font-size:.94rem;color:var(--ink);resize:vertical;
  transition:border-color .2s,box-shadow .2s;
}
.field select{appearance:none;}
.field input:focus,.field textarea:focus,.field select:focus{
  outline:none;border-color:var(--blue-500);box-shadow:0 0 0 3px rgba(59,99,240,.14);
}
.field label{
  position:absolute;left:14px;top:14px;color:var(--gray-400);font-size:.94rem;pointer-events:none;
  transition:.2s ease;background:transparent;padding:0 4px;
}
.field input:focus + label,.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,.field textarea:not(:placeholder-shown) + label{
  top:-9px;left:10px;font-size:.72rem;background:var(--bg-alt);color:var(--blue-600);border-radius:4px;
}
.phone-row{align-items:flex-start;}
.code-select{
  max-width:72px;flex:none;padding:14px 10px;border-radius:10px;border:1px solid var(--gray-200);
  background:#fff;font-family:inherit;font-size:.94rem;color:var(--ink);text-align:center;
  transition:border-color .2s,box-shadow .2s;
}
.code-select:focus{outline:none;border-color:var(--blue-500);box-shadow:0 0 0 3px rgba(59,99,240,.14);}
.file-row{display:flex;flex-wrap:wrap;align-items:center;gap:12px;margin-bottom:22px;}
.file-label{display:inline-flex;align-items:center;gap:8px;font-weight:600;font-size:.9rem;color:var(--navy-800);border:1.5px dashed var(--gray-200);padding:10px 16px;border-radius:10px;transition:.2s;}
.file-label:hover{border-color:var(--blue-500);color:var(--blue-600);}
.hint{font-size:.78rem;color:var(--gray-400);}
.form-success{
  display:none;margin:14px 0 0;text-align:center;color:#1a8a4b;background:rgba(26,138,75,.08);
  padding:12px;border-radius:10px;font-size:.9rem;
}
.form-success.is-visible{display:block;}

/* ===================== Footer ===================== */
.site-footer{background:var(--navy-950);color:#c7cee6;padding-top:64px;}
.footer-top{display:flex;justify-content:space-between;align-items:center;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,.08);flex-wrap:wrap;gap:20px;}
.footer-social{display:flex;gap:12px;}
.footer-social a{
  width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.15);
  display:flex;align-items:center;justify-content:center;transition:.25s;
}
.footer-social a svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.8;}
.footer-social a:hover{background:var(--blue-600);border-color:var(--blue-600);transform:translateY(-2px);}

.footer-office{padding:36px 0 10px;}
.office-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:var(--radius-md);padding:22px 26px;max-width:420px;}
.office-card h5{color:#fff;margin-bottom:6px;}
.office-card p{color:#a6afd0;margin-bottom:10px;font-size:.9rem;}
.office-card a{display:block;font-size:.9rem;color:#dbe3ff;margin-bottom:4px;}
.office-card a:hover{color:var(--cyan-400);}

.footer-links{display:grid;grid-template-columns:.85fr .7fr 1.45fr;gap:clamp(36px,7vw,100px);padding:40px 0;}
.footer-col h5{color:#fff;font-size:.95rem;margin-bottom:16px;letter-spacing:.02em;}
.footer-col a{display:block;padding:6px 0;font-size:.9rem;color:#a6afd0;transition:.2s;}
.footer-col a:hover{color:var(--cyan-400);padding-left:4px;}

.footer-bottom{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
  padding:22px 0 28px;border-top:1px solid rgba(255,255,255,.08);font-size:.82rem;color:#7d86a8;
}

/* ===================== Back to top ===================== */
.back-top{
  position:fixed;right:24px;bottom:24px;width:46px;height:46px;border-radius:50%;
  background:var(--navy-900);color:#fff;display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow-md);opacity:0;transform:translateY(10px);pointer-events:none;
  transition:opacity .3s,transform .3s,background .3s;z-index:150;
}
.back-top svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;}
.back-top.is-visible{opacity:1;transform:translateY(0);pointer-events:auto;}
.back-top:hover{background:var(--blue-600);}

/* ===================== Responsive ===================== */
@media (max-width:1024px){
  .about-grid,.tech-grid,.contact-grid{grid-template-columns:1fr;}
  .insights-grid{grid-template-columns:1fr;}
  .stat-grid{grid-template-columns:repeat(2,1fr);}
  .tech-visual{height:280px;order:2;}
}
@media (max-width:900px){
  .services-grid,.ai-grid{grid-template-columns:repeat(2,1fr);}
  .service-card:nth-child(3n){border-right:1px solid var(--gray-200);}
  .service-card:nth-child(2n){border-right:none;}
  .ai-card:nth-child(3n){border-right:1px solid var(--gray-200);}
  .ai-card:nth-child(2n){border-right:none;}
  .hero-inner{grid-template-columns:1fr;text-align:center;}
  .hero-text{margin:0 auto;}
  .hero-cta,.hero-meta{justify-content:center;}
  .hero-visual{height:320px;}
  .section-head.split{flex-direction:column;align-items:flex-start;}
}
@media (max-width:1024px){
  .footer-links{grid-template-columns:1fr 1fr;}
}
@media (max-width:760px){
  .main-nav{display:none;}
  .nav-toggle{display:flex;}
  .header-actions{gap:10px;}
  .header-actions .btn-dark{
    display:inline-flex;min-height:36px;padding:9px 14px;border:0;
    background:linear-gradient(105deg,#1b4fe0,#157ff2 66%,#1cbfe0);color:#fff;
    font-size:.7rem;line-height:1;box-shadow:0 8px 19px rgba(22,83,213,.25);
  }
  .header-actions .btn-dark:hover{background:linear-gradient(105deg,#1746c9,#1172dc 66%,#18abc9);color:#fff;}
  .header-actions .btn-dark .dot-pulse{width:5px;height:5px;background:#fff;}
  .footer-links{grid-template-columns:1fr 1fr;}
  .process-grid{grid-template-columns:1fr!important;}
  .process-grid .process-card{grid-column:span 1!important;}
  .dnode{font-size:.68rem;padding:6px 10px;gap:5px;}
  .dnode svg{width:12px;height:12px;}
  .dnode.center-badge{width:38px;height:38px;}
  .dnode.center-badge img{width:16px;}
  .career-card{margin-top:40px;}
  .info-icon{width:56px;height:56px;border-radius:12px;}
  .info-icon svg{width:22px;height:22px;}
}
@media (max-width:390px){
  .header-inner{gap:8px;}
  .brand-chip{padding:7px 10px;}
  .brand-logo-img{height:21px;}
  .header-actions{gap:7px;}
  .header-actions .btn-dark{min-height:34px;padding:8px 10px;font-size:.64rem;}
  .header-actions .btn-dark .dot-pulse{display:none;}
  .nav-toggle{width:34px;height:34px;}
}
@media (max-width:620px){
  .services-grid,.ai-grid{grid-template-columns:1fr;}
  .service-card,.ai-card{border-right:none!important;}
  .stat-grid{grid-template-columns:1fr 1fr;}
  .cta-banner{flex-direction:column;text-align:center;}
  .form-row{flex-direction:column;}
  .footer-links{grid-template-columns:1fr;}
  .footer-top{flex-direction:column;text-align:center;}
}

/* ===================== About / Services page (light hero header) ===================== */
body.page-about .site-header,body.page-services .site-header{background:rgba(255,255,255,.9);backdrop-filter:blur(14px);box-shadow:0 4px 24px rgba(10,15,36,.06);}
body.page-about .site-header .nav-link,body.page-services .site-header .nav-link{color:var(--navy-800);}
body.page-about .site-header .nav-link:hover,body.page-about .site-header .nav-link.active,
body.page-services .site-header .nav-link:hover,body.page-services .site-header .nav-link.active{color:var(--blue-600);}
body.page-about .site-header .nav-toggle span,body.page-services .site-header .nav-toggle span{background:var(--navy-900);}
body.page-about .site-header .nav-item .nav-caret,body.page-services .site-header .nav-item .nav-caret{color:var(--gray-400);}
body.page-about .site-header .nav-item:hover .nav-caret,body.page-services .site-header .nav-item:hover .nav-caret,
body.page-about .site-header .nav-item.is-open .nav-caret,body.page-services .site-header .nav-item.is-open .nav-caret{color:var(--blue-600);}
body.page-about .site-header .nav-item.is-open > .nav-link,body.page-services .site-header .nav-item.is-open > .nav-link{color:var(--blue-600);}

.accent-em{font-family:Georgia,'Times New Roman',serif;font-style:italic;font-weight:500;color:var(--blue-600);}

.about-hero{padding:calc(var(--header-h) + 46px) 0 30px;background:#fff;overflow-x:hidden;}
.about-hero-card{padding:80px 40px;text-align:center;}
.about-hero-card h1{
  font-size:clamp(2rem,4.2vw,3.1rem);line-height:1.22;color:var(--navy-900);
  max-width:820px;margin:0 auto 26px;position:relative;z-index:1;
}
.about-hero-card .lead{
  position:relative;z-index:1;max-width:640px;margin:0 auto 14px;color:var(--gray-600);font-size:1.05rem;
}
.about-hero-card .lead:first-of-type{color:var(--navy-800);font-weight:500;}

.who-copy .btn{margin-top:8px;}

.drives-section{background:var(--navy-950);padding:110px 0;position:relative;overflow:hidden;}
.section-head.on-dark h2{color:#fff;}
.section-head.on-dark p{color:#a6afd0;}
.drives-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:24px;max-width:1040px;margin:0 auto;}
.drives-col{display:flex;flex-direction:column;gap:24px;}
.drives-card{border-radius:var(--radius-md);padding:34px 32px;}
.drives-card.card-vision{background:#e8effd;}
.drives-card.card-mission{background:#e3f8fb;}
.drives-card.card-values{background:#fff;}
.drives-icon{
  display:flex;width:40px;height:40px;border-radius:50%;align-items:center;justify-content:center;
  background:#fff;border:1px solid var(--gray-200);color:var(--navy-900);margin-bottom:16px;box-shadow:var(--shadow-sm);
}
.drives-icon svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2.2;}
.drives-card h3{color:var(--navy-900);font-size:1.15rem;margin-bottom:10px;}
.drives-card p{color:var(--gray-600);margin:0;font-size:.95rem;}
.card-values p{margin-bottom:22px;}
.values-wrap{display:flex;flex-wrap:wrap;gap:10px;}
.value-pill{
  display:inline-flex;align-items:center;gap:8px;padding:10px 16px;border-radius:999px;
  background:var(--bg-alt);border:1px solid var(--gray-200);
  color:var(--navy-800);font-size:.85rem;font-weight:600;transition:background .2s ease,border-color .2s ease;
}
.value-pill:hover{background:rgba(42,75,222,.06);border-color:rgba(42,75,222,.25);}
.value-pill svg{width:14px;height:14px;stroke:var(--blue-600);stroke-width:2;fill:none;flex:none;}

.why-section{padding:110px 0;background:var(--bg-alt);}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.why-card{
  border-radius:var(--radius-md);padding:34px 30px;border:1px solid rgba(10,20,50,.06);
  transition:transform .3s ease,box-shadow .3s ease;
}
.why-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);}
.why-card.card-clarity{background:#e4edff;}
.why-card.card-scale{background:#dff6f7;}
.why-card.card-performance{background:#dde6ff;}
.why-card.card-users{background:#eceef6;}
.why-icon{
  display:inline-flex;width:46px;height:46px;border-radius:12px;align-items:center;justify-content:center;
  background:#fff;border:1px solid rgba(10,20,50,.08);color:var(--navy-900);margin-bottom:18px;
  box-shadow:var(--shadow-sm);
}
.why-icon svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.7;}
.why-card h3{font-size:1.1rem;margin-bottom:8px;color:var(--navy-900);}
.why-card p{font-size:.92rem;margin:0;color:var(--gray-700);}

.founder-section{padding:110px 0;background:#fff;}
.founder-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:64px;align-items:start;}
.founder-photo-wrap{position:relative;}
.founder-accent{
  position:absolute;inset:-14px;border:2px solid var(--blue-500);
  border-radius:32px;z-index:0;
}
.founder-photo{
  position:relative;z-index:1;display:block;width:100%;aspect-ratio:3/4;object-fit:cover;
  object-position:50% 22%;border-radius:28px;box-shadow:var(--shadow-lg);
}
.founder-info{position:relative;padding-bottom:64px;}
.founder-eyebrow{color:var(--blue-600);font-weight:700;font-size:.82rem;letter-spacing:.08em;text-transform:uppercase;margin-bottom:10px;}
.founder-name{font-size:clamp(1.7rem,3vw,2.15rem);margin-bottom:6px;}
.founder-role{color:var(--gray-600);font-size:1rem;margin-bottom:16px;}
.iit-badge{
  display:inline-flex;align-items:center;gap:6px;padding:7px 15px;border-radius:999px;
  background:rgba(42,75,222,.08);border:1px solid rgba(42,75,222,.2);color:var(--blue-600);
  font-size:.78rem;font-weight:700;margin-bottom:22px;white-space:nowrap;
}
.iit-badge svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:1.8;flex:none;}
.founder-tagline{
  font-family:Georgia,'Times New Roman',serif;font-style:italic;color:var(--navy-800);
  font-size:1.05rem;margin-bottom:22px;
}
.founder-bio p{color:var(--gray-600);margin-bottom:16px;line-height:1.75;}
.founder-closing{
  border-left:3px solid var(--blue-500);padding-left:18px;margin:26px 0 0;
  color:var(--navy-900);font-weight:600;font-size:1.02rem;
}
.founder-social{position:absolute;right:0;bottom:0;}
.linkedin-btn{
  position:relative;display:flex;align-items:center;justify-content:center;
  width:46px;height:46px;border-radius:12px;background:var(--navy-900);color:#fff;
  box-shadow:var(--shadow-sm);transition:transform .22s cubic-bezier(.4,0,.2,1),box-shadow .22s ease,background .22s ease;
}
.linkedin-btn:hover{transform:translateY(-3px);background:var(--blue-600);box-shadow:0 10px 24px rgba(42,75,222,.35);}
.linkedin-btn svg{width:20px;height:20px;}
.linkedin-btn::after{
  content:attr(data-tooltip);position:absolute;bottom:calc(100% + 10px);right:0;
  background:var(--navy-950);color:#fff;font-size:.74rem;font-weight:600;white-space:nowrap;
  padding:6px 11px;border-radius:6px;opacity:0;pointer-events:none;transform:translateY(4px);
  transition:opacity .2s ease,transform .2s ease;
}
.linkedin-btn:hover::after{opacity:1;transform:translateY(0);}

@media (max-width:1024px){
  .drives-grid,.why-grid{grid-template-columns:1fr;}
  .founder-grid{grid-template-columns:1fr;gap:40px;}
  .founder-photo-wrap{max-width:360px;margin:0 auto;}
}
@media (max-width:760px){
  .about-hero-card{padding:56px 24px;}
  .founder-info{padding-bottom:0;}
  .founder-social{position:static;display:flex;justify-content:flex-end;margin-top:28px;}
  .values-wrap{justify-content:flex-start;}
}

/* ===================== Services page ===================== */
.svc-hero{padding:calc(var(--header-h) + 46px) 0 30px;background:#fff;overflow-x:hidden;}
.svc-hero-card{padding:76px 40px 64px;text-align:center;}
.svc-hero-card h1{
  font-size:clamp(2rem,4.2vw,3rem);line-height:1.22;color:var(--navy-900);
  max-width:820px;margin:0 auto 20px;position:relative;z-index:1;
}
.svc-hero-card .lead{
  position:relative;z-index:1;max-width:640px;margin:0 auto;color:var(--gray-600);font-size:1.05rem;
}
.svc-breadcrumb{
  position:relative;z-index:1;display:flex;align-items:center;justify-content:center;gap:8px;
  margin-bottom:18px;font-size:.85rem;font-weight:600;color:var(--gray-400);
}
.svc-breadcrumb a{color:var(--blue-600);}
.svc-breadcrumb a:hover{text-decoration:underline;}
.svc-breadcrumb.left{justify-content:flex-start;margin-bottom:14px;}

/* ===================== UI/UX animated showcase hero ===================== */
.uiux-showcase-hero{
  position:relative;isolation:isolate;overflow:hidden;padding:calc(var(--header-h) + 54px) 0 58px;
  background:
    radial-gradient(circle at 8% 20%,rgba(42,75,222,.08),transparent 27%),
    radial-gradient(circle at 88% 16%,rgba(124,92,255,.12),transparent 30%),
    linear-gradient(145deg,#fff 0%,#f7f9ff 62%,#f2f6ff 100%);
}
.uiux-showcase-hero::before{
  content:"";position:absolute;z-index:-3;inset:0;pointer-events:none;opacity:.42;
  background-image:linear-gradient(rgba(42,75,222,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(42,75,222,.045) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(90deg,rgba(0,0,0,.72),transparent 78%);
  -webkit-mask-image:linear-gradient(90deg,rgba(0,0,0,.72),transparent 78%);
}
.uiux-hero-orb{position:absolute;z-index:-2;border-radius:50%;pointer-events:none;}
.uiux-hero-orb-one{right:4%;top:85px;width:360px;height:360px;background:linear-gradient(145deg,rgba(59,110,240,.09),rgba(122,89,247,.04));}
.uiux-hero-orb-two{left:-170px;bottom:-230px;width:460px;height:460px;border:1px solid rgba(48,112,230,.1);box-shadow:0 0 0 34px rgba(48,112,230,.035),0 0 0 70px rgba(48,112,230,.025);}
.uiux-showcase-shell{position:relative;z-index:1;max-width:1400px;}
.uiux-showcase-layout{display:grid;grid-template-columns:minmax(0,.93fr) minmax(500px,1.07fr);align-items:center;gap:58px;}
.uiux-showcase-copy{max-width:650px;text-align:left;}
.uiux-showcase-kicker{
  display:inline-flex;align-items:center;gap:9px;min-height:38px;margin-bottom:28px;padding:8px 16px;
  border:1px solid rgba(36,101,232,.13);border-radius:99px;background:rgba(232,239,255,.82);color:#175fd6;
  font:700 .68rem/1 'Sora',sans-serif;letter-spacing:.045em;
}
.uiux-showcase-kicker svg{width:16px;height:16px;fill:#2a69e8;}
.uiux-showcase-copy h1{
  max-width:650px;margin:0 0 25px;color:var(--navy-950);
  font-size:clamp(2.7rem,4.25vw,4.25rem);line-height:1.08;letter-spacing:-.052em;text-wrap:balance;
}
.uiux-showcase-copy h1 em{
  font-family:inherit;font-style:normal;font-weight:inherit;
  background:linear-gradient(100deg,#1769ed 2%,var(--violet-500) 58%,var(--pink-500));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.uiux-showcase-copy > p{max-width:595px;margin:0;color:#536680;font-size:1rem;line-height:1.8;}
.uiux-showcase-actions{display:flex;align-items:center;flex-wrap:wrap;gap:26px;margin-top:30px;}
.uiux-showcase-primary{
  min-width:238px;justify-content:center;color:#fff;border:0;border-radius:11px;
  background:linear-gradient(115deg,#173eb7,#176bec 68%,#65b9f2);box-shadow:0 15px 30px rgba(26,87,217,.24);
}
.uiux-showcase-primary:hover{color:#fff;transform:translateY(-2px);box-shadow:0 19px 38px rgba(26,87,217,.31);}
.uiux-showcase-benefits{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0;margin-top:50px;padding:16px 0;
  border-top:1px solid rgba(36,71,140,.1);border-bottom:1px solid rgba(36,71,140,.1);
}
.uiux-showcase-benefits article{display:grid;grid-template-columns:43px minmax(0,1fr);align-items:start;gap:10px;padding:0 14px;border-right:1px solid rgba(36,71,140,.1);}
.uiux-showcase-benefits article:first-child{padding-left:0;}.uiux-showcase-benefits article:last-child{padding-right:0;border-right:0;}
.uiux-showcase-benefits article>span{display:grid;place-items:center;width:43px;height:43px;border-radius:13px;background:#edf3ff;color:#1663df;}
.uiux-showcase-benefits svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.uiux-showcase-benefits strong,.uiux-showcase-benefits small{display:block;}.uiux-showcase-benefits strong{margin:2px 0 5px;color:var(--navy-900);font-family:'Sora',sans-serif;font-size:.69rem;line-height:1.35;}.uiux-showcase-benefits small{color:#65758c;font-size:.6rem;line-height:1.55;}
.uiux-slideshow-wrap{position:relative;min-width:0;padding:18px 6px 32px;}
.uiux-slideshow-glow{position:absolute;z-index:-1;inset:4% 2% 0;border-radius:50%;filter:blur(50px);background:linear-gradient(125deg,rgba(29,97,227,.24),rgba(126,90,247,.15),rgba(59,194,230,.13));}
.uiux-slideshow-window{
  position:relative;overflow:hidden;padding:0 12px 12px;border:1px solid rgba(45,98,206,.13);border-radius:25px;
  background:rgba(255,255,255,.88);box-shadow:0 32px 75px rgba(25,55,125,.17),0 8px 24px rgba(18,35,78,.08);backdrop-filter:blur(15px);
}
.uiux-browser-bar{display:flex;align-items:center;gap:7px;height:37px;padding:0 5px;}
.uiux-browser-bar i{display:block;width:8px;height:8px;border-radius:50%;background:#ccd4e2;}.uiux-browser-bar i:nth-child(2){background:#d8ddea;}.uiux-browser-bar i:nth-child(3){background:#e1e5ee;}
.uiux-slideshow-stage{position:relative;overflow:hidden;width:100%;aspect-ratio:3/2;border-radius:16px;background:#eef3fc;}
.uiux-showcase-slide{
  position:absolute;inset:0;display:block;width:100%;height:100%;object-fit:cover;opacity:0;transform:scale(1.025);
  transition:opacity .7s ease,transform 1.8s ease;pointer-events:none;
}
.uiux-showcase-slide.is-active{z-index:1;opacity:1;transform:scale(1);}
.uiux-slideshow-progress{position:absolute;z-index:3;right:28px;bottom:24px;display:flex;align-items:center;gap:5px;padding:6px 8px;border-radius:99px;background:rgba(8,21,56,.56);backdrop-filter:blur(8px);}
.uiux-slideshow-progress span{display:block;width:6px;height:6px;border-radius:99px;background:rgba(255,255,255,.5);transition:width .3s ease,background .3s ease;}.uiux-slideshow-progress span.is-active{width:22px;background:#fff;}
.uiux-showcase-product-strip{
  display:grid;grid-template-columns:1.35fr repeat(4,1fr);align-items:center;gap:20px;margin-top:48px;padding:24px 30px;
  border:1px solid rgba(40,80,160,.09);border-radius:18px;background:rgba(255,255,255,.82);box-shadow:0 18px 48px rgba(35,64,125,.08);backdrop-filter:blur(12px);
}
.uiux-showcase-product-strip strong{color:var(--navy-900);font:700 .68rem/1.5 'Sora',sans-serif;}.uiux-showcase-product-strip span{color:#7585a1;font:600 .8rem/1.4 'Sora',sans-serif;text-align:center;}

@media (max-width:1120px){
  .uiux-showcase-layout{grid-template-columns:1fr;gap:34px;}.uiux-showcase-copy{max-width:850px;margin:0 auto;text-align:center;}.uiux-showcase-copy h1,.uiux-showcase-copy>p{max-width:820px;margin-left:auto;margin-right:auto;}.uiux-showcase-actions{justify-content:center;}.uiux-showcase-benefits{max-width:760px;margin-left:auto;margin-right:auto;}.uiux-slideshow-wrap{width:min(850px,100%);margin:0 auto;}.uiux-showcase-product-strip{margin-top:25px;}
}
@media (max-width:760px){
  .uiux-showcase-hero{padding:calc(var(--header-h) + 30px) 0 48px;}.uiux-showcase-shell{width:100%;max-width:100%;padding-left:18px;padding-right:18px;}.uiux-showcase-layout{gap:28px;}.uiux-showcase-kicker{margin-bottom:20px;padding:8px 12px;font-size:.57rem;}.uiux-showcase-copy h1{margin-bottom:19px;font-size:clamp(2rem,9.7vw,2.65rem);line-height:1.12;letter-spacing:-.038em;}.uiux-showcase-copy>p{font-size:.88rem;line-height:1.7;}.uiux-showcase-actions{flex-direction:column;gap:10px;margin-top:24px;}.uiux-showcase-primary{width:100%;min-width:0;}.uiux-showcase-benefits{grid-template-columns:1fr;margin-top:34px;padding:0;border:1px solid rgba(36,71,140,.1);border-radius:16px;background:rgba(255,255,255,.66);}.uiux-showcase-benefits article,.uiux-showcase-benefits article:first-child,.uiux-showcase-benefits article:last-child{padding:14px 16px;border-right:0;border-bottom:1px solid rgba(36,71,140,.1);text-align:left;}.uiux-showcase-benefits article:last-child{border-bottom:0;}.uiux-showcase-benefits strong{font-size:.72rem;}.uiux-showcase-benefits small{font-size:.63rem;}.uiux-slideshow-wrap{padding:7px 0 18px;}.uiux-slideshow-window{padding:0 6px 6px;border-radius:17px;}.uiux-browser-bar{height:28px;}.uiux-slideshow-stage{border-radius:12px;}.uiux-slideshow-progress{right:15px;bottom:14px;}.uiux-showcase-product-strip{grid-template-columns:1fr 1fr;gap:13px;margin-top:18px;padding:19px 16px;}.uiux-showcase-product-strip strong{grid-column:1/-1;margin-bottom:3px;}.uiux-showcase-product-strip span{padding:10px 6px;border-radius:10px;background:#f5f7fc;font-size:.64rem;}
}
@media (prefers-reduced-motion:reduce){.uiux-showcase-slide{transition:none;}}

/* ===================== UI/UX sticky challenge stack ===================== */
.uiux-challenges{
  --uiux-card-top:calc(var(--header-h) + 58px);
  position:relative;padding:104px 0 96px;background:#f3f5fa;
}
.uiux-challenges .container{max-width:1120px;}
.uiux-challenges-head{max-width:790px;margin:0 0 58px;}
.uiux-challenges-head .tag{margin-bottom:18px;}
.uiux-challenges-head h2{
  max-width:720px;margin:0 0 16px;color:var(--navy-950);
  font-size:clamp(2rem,3.35vw,2.75rem);line-height:1.2;letter-spacing:-.028em;
}
.uiux-challenges-head p{max-width:740px;margin:0;color:var(--gray-600);font-size:1rem;line-height:1.75;}
.uiux-challenge-table-head{
  position:sticky;z-index:30;top:calc(var(--header-h) + 8px);
  display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:40px;
  margin:0 0 4px;padding:14px 28px 12px;border-radius:14px 14px 0 0;
  color:var(--navy-700);font-size:.78rem;font-weight:700;
  background:rgba(243,245,250,.9);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  transition:opacity .24s ease,transform .3s cubic-bezier(.4,0,.2,1);
}
.uiux-challenges.is-final-stage .uiux-challenge-table-head{opacity:0;transform:translateY(-34px);pointer-events:none;}
.uiux-challenge-stack{position:relative;padding-bottom:0;}
.uiux-challenge-card{
  position:sticky;z-index:1;top:calc(var(--uiux-card-top) + var(--stack-offset));
  display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:40px;align-items:center;
  min-height:158px;margin:0 0 28px;padding:30px 28px;border:1px solid rgba(28,44,96,.09);border-radius:18px;
  background:#fff;box-shadow:0 12px 28px rgba(28,44,96,.08);transform:rotate(var(--card-angle));transform-origin:50% 12%;
  transition:box-shadow .28s ease,border-color .28s ease;
}
.uiux-challenge-card:nth-child(even){background:#e9ecf5;}
.uiux-challenge-card:last-child{margin-bottom:0;}
.uiux-challenge-card:hover{border-color:rgba(42,75,222,.2);box-shadow:0 20px 44px rgba(28,44,96,.14);}
.uiux-challenge-card h3{max-width:350px;margin:0;color:var(--navy-950);font-size:1.15rem;line-height:1.45;}
.uiux-challenge-card p{margin:0;color:var(--gray-600);font-size:.92rem;line-height:1.67;}
.uiux-challenge-label{display:none;color:var(--blue-600);font-size:.69rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase;}

@media (max-width:760px){
  .uiux-challenges{--uiux-card-top:calc(var(--header-h) + 18px);padding:72px 0 76px;}
  .uiux-challenges-head{margin-bottom:42px;}
  .uiux-challenges-head h2{font-size:clamp(1.85rem,8.5vw,2.35rem);}
  .uiux-challenges-head p{font-size:.95rem;line-height:1.7;}
  .uiux-challenge-table-head{display:none;}
  .uiux-challenge-stack{padding-bottom:0;}
  .uiux-challenge-card{
    top:var(--uiux-card-top);grid-template-columns:1fr;gap:18px;min-height:250px;margin-bottom:22px;padding:25px 22px;
    border-radius:16px;transform:none;
  }
  .uiux-challenge-problem{padding-bottom:17px;border-bottom:1px solid rgba(28,44,96,.1);}
  .uiux-challenge-label{display:block;margin-bottom:8px;}
  .uiux-challenge-card h3{max-width:none;font-size:1.05rem;line-height:1.4;}
  .uiux-challenge-card p{font-size:.88rem;line-height:1.62;}
}

/* ===================== UI/UX design stages and tools ===================== */
.uiux-stages-tools{padding:102px 0 110px;background:#fff;}
.uiux-stages-tools .container{max-width:1240px;}
.uiux-stages-head{max-width:900px;margin:0 auto 50px;text-align:center;}
.uiux-stages-head .tag{margin-bottom:18px;}
.uiux-stages-head h2{margin:0 0 16px;color:var(--navy-950);font-size:clamp(2rem,3.4vw,2.8rem);line-height:1.18;letter-spacing:-.03em;}
.uiux-stages-head p{max-width:820px;margin:0 auto;color:var(--gray-600);font-size:1rem;line-height:1.75;}
.uiux-stage-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:start;}
.uiux-stage-item{overflow:hidden;border:1px solid rgba(227,231,242,.8);border-radius:15px;background:#f5f6fa;box-shadow:0 8px 24px rgba(10,15,36,.035);}
.uiux-stage-item .faq-q{min-height:92px;padding:24px 26px;font-size:1rem;}
.uiux-stage-item .faq-q-left{display:flex;align-items:center;gap:14px;}
.uiux-stage-item .faq-a p{padding:0 26px 24px 64px;color:var(--gray-600);font-size:.9rem;line-height:1.68;}
.uiux-stage-item.is-open{border-color:rgba(42,75,222,.18);background:#fff;box-shadow:0 14px 34px rgba(42,75,222,.07);}
.uiux-stage-item.is-open .faq-a{max-height:250px;}
.uiux-tools-head{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,.9fr);gap:76px;align-items:end;margin:96px 0 42px;}
.uiux-tools-head .tag{margin-bottom:17px;}
.uiux-tools-head h2{max-width:610px;margin:0;color:var(--navy-950);font-size:clamp(2rem,3.1vw,2.65rem);line-height:1.2;letter-spacing:-.03em;}
.uiux-tools-head > p{max-width:590px;margin:0 0 3px;padding:2px 0 2px 26px;border-left:2px solid rgba(42,75,222,.24);color:var(--gray-600);font-size:.98rem;line-height:1.74;}
.uiux-tool-list{border-top:1px solid var(--gray-200);}
.uiux-tool-row{display:grid;grid-template-columns:42px minmax(210px,300px) 1fr;gap:20px;align-items:center;min-height:92px;padding:18px 10px;border-bottom:1px solid var(--gray-200);}
.uiux-tool-arrow{display:grid;width:34px;height:34px;place-items:center;border:1.5px solid var(--gray-200);border-radius:50%;background:#f7f8fb;}
.uiux-tool-arrow svg{width:15px;height:15px;fill:none;stroke:var(--navy-900);stroke-width:2.2;}
.uiux-tool-row h3{margin:0;color:var(--navy-950);font-size:1rem;line-height:1.4;}
.uiux-tool-pills{display:flex;flex-wrap:wrap;gap:9px;}
.uiux-tool-pills .tech-pill{padding:6px 12px;border-color:rgba(28,44,96,.55);font-size:.78rem;font-weight:500;}

@media (max-width:900px){
  .uiux-tools-head{grid-template-columns:1fr;gap:24px;align-items:start;}
  .uiux-tools-head > p{max-width:780px;}
  .uiux-tool-row{grid-template-columns:42px minmax(180px,230px) 1fr;}
}
@media (max-width:700px){
  .uiux-stages-tools{padding:72px 0 78px;}
  .uiux-stages-head{margin-bottom:36px;text-align:left;}
  .uiux-stages-head h2{font-size:clamp(1.85rem,8.5vw,2.35rem);}
  .uiux-stage-grid{grid-template-columns:1fr;gap:13px;}
  .uiux-stage-item .faq-q{min-height:78px;padding:19px 18px;font-size:.91rem;}
  .uiux-stage-item .faq-a p{padding:0 18px 21px 52px;font-size:.86rem;}
  .uiux-tools-head{margin:70px 0 30px;}
  .uiux-tools-head h2{font-size:clamp(1.85rem,8.5vw,2.35rem);}
  .uiux-tools-head > p{padding-left:18px;font-size:.92rem;}
  .uiux-tool-row{grid-template-columns:38px 1fr;gap:12px;min-height:0;padding:22px 4px;}
  .uiux-tool-row h3{font-size:.94rem;}
  .uiux-tool-pills{grid-column:1 / -1;padding-left:50px;gap:7px;}
  .uiux-tool-pills .tech-pill{padding:6px 10px;font-size:.73rem;}
}

/* UI/UX page extensions reuse the Web Development component system. */
.uiux-design-stages .web-business-impact-head .tag{margin-bottom:18px;}
.uiux-design-stages .web-impact-grid{max-width:1120px;}
.uiux-tech-stack{background:#fff;}
.uiux-industries .swe-industries-head h2{max-width:980px;}
.uiux-industries .swe-industry-card{min-height:430px;}
.uiux-design-process{background:#fff;}
section.uiux-why{background:#f2f4f9;}
.uiux-why .web-excellence-head{max-width:920px;}
.web-excellence-grid.uiux-why-grid{grid-template-columns:repeat(4,minmax(0,1fr));}
.uiux-why-grid .web-excellence-card,
.uiux-why-grid .web-excellence-card:nth-child(3n),
.uiux-why-grid .web-excellence-card:nth-child(n+4){
  min-height:310px;border-right:1px solid var(--gray-200);border-bottom:1px solid var(--gray-200);
}
.uiux-why-grid .web-excellence-card:nth-child(4n){border-right:0;}
.uiux-why-grid .web-excellence-card:nth-child(n+5){border-bottom:0;}
.uiux-why-cta{
  isolation:isolate;overflow:hidden;display:flex;flex-direction:column;justify-content:center;
  background:linear-gradient(135deg,#2e13dc 0%,#27106d 58%,#130b48 100%);color:#fff;
}
.uiux-why-grid .uiux-why-cta:hover{background:linear-gradient(135deg,#3418e8 0%,#35107b 58%,#170c52 100%);}
.uiux-why-grid .uiux-why-cta::before{display:none;}
.uiux-why-grid .uiux-why-cta h3{color:#fff;font-size:1.35rem;}
.uiux-why-grid .uiux-why-cta p{color:rgba(255,255,255,.78);}
.uiux-why-cta .btn{align-self:flex-start;margin-top:22px;}
.uiux-why-orb{
  position:absolute;z-index:-1;width:230px;height:230px;right:-85px;top:-105px;border-radius:50%;
  background:linear-gradient(145deg,var(--pink-500),var(--violet-500));opacity:.78;
}

@media (max-width:1050px){
  .web-excellence-grid.uiux-why-grid{grid-template-columns:1fr 1fr;}
  .uiux-why-grid .web-excellence-card,
  .uiux-why-grid .web-excellence-card:nth-child(3n),
  .uiux-why-grid .web-excellence-card:nth-child(4n),
  .uiux-why-grid .web-excellence-card:nth-child(n+5){border-right:0;border-bottom:1px solid var(--gray-200);}
  .uiux-why-grid .web-excellence-card:nth-child(odd){border-right:1px solid var(--gray-200);}
  .uiux-why-grid .web-excellence-card:nth-child(n+7){border-bottom:0;}
}
@media (max-width:760px){
  .uiux-industries .swe-industry-card{min-height:420px;}
  .web-excellence-grid.uiux-why-grid{grid-template-columns:1fr;}
  .uiux-why-grid .web-excellence-card,
  .uiux-why-grid .web-excellence-card:nth-child(3n),
  .uiux-why-grid .web-excellence-card:nth-child(4n),
  .uiux-why-grid .web-excellence-card:nth-child(n+5),
  .uiux-why-grid .web-excellence-card:nth-child(odd),
  .uiux-why-grid .web-excellence-card:nth-child(n+7){min-height:0;border-right:0;border-bottom:1px solid var(--gray-200);}
  .uiux-why-grid .web-excellence-card:last-child{border-bottom:0;}
  .uiux-why-cta .btn{width:100%;justify-content:center;}
}

.svc-section{padding:90px 0;background:#fff;}
.svc-section.alt{background:var(--bg-alt);}
.svc-tag{margin-bottom:16px;}
.svc-section .section-head{margin-bottom:44px;text-align:left;max-width:720px;margin-left:0;margin-right:0;}
.svc-section .section-head p{font-size:1.02rem;}

.svc-caps{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.cap-card{
  background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius-md);padding:26px 22px;
  transition:transform .3s ease,box-shadow .3s ease;
}
.svc-section.alt .cap-card{background:#fff;}
.cap-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
.cap-icon{
  display:flex;width:40px;height:40px;border-radius:10px;align-items:center;justify-content:center;
  background:var(--bg-alt);color:var(--blue-600);margin-bottom:16px;box-shadow:var(--shadow-sm);
}
.svc-section.alt .cap-icon{background:#fff;}
.cap-icon svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2.2;}
.cap-card h4{font-size:.98rem;margin:0;color:var(--navy-900);}

.svc-overview-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.svc-overview-card{
  display:block;background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius-md);padding:30px 26px;
  transition:transform .3s ease,box-shadow .3s ease;
}
.svc-overview-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md);}
.svc-overview-card h3{font-size:1.1rem;margin-bottom:8px;color:var(--navy-900);}
.svc-overview-card p{font-size:.92rem;margin:0 0 18px;color:var(--gray-600);}
.svc-overview-link{display:inline-flex;align-items:center;gap:6px;font-size:.88rem;font-weight:700;color:var(--blue-600);}
.svc-overview-card:hover .svc-overview-link .icon{transform:translate(3px,-1px);}
.svc-overview-link .icon{width:16px;height:16px;transition:transform .25s ease;}

@media (max-width:1024px){
  .svc-caps{grid-template-columns:1fr 1fr;}
  .svc-overview-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:760px){
  .svc-hero-card{padding:56px 22px 48px;}
  .svc-caps{grid-template-columns:1fr;}
  .svc-overview-grid{grid-template-columns:1fr;}
  .svc-section{padding:70px 0;}
}

/* ===================== Data Engineering hero ===================== */
.de-hero{position:relative;padding:calc(var(--header-h) + 40px) 0 60px;background:#fff;overflow:hidden;}
.de-hero .container{position:relative;z-index:1;max-width:1320px;}
.de-hero-grid{display:grid;grid-template-columns:1fr 1.05fr;gap:48px;align-items:center;}

.de-hero-copy h1{
  font-size:clamp(2rem,3.6vw,2.85rem);line-height:1.2;letter-spacing:-.01em;color:var(--navy-900);margin:0 0 18px;
}
.de-hero-highlight{
  background:linear-gradient(135deg,var(--blue-600),var(--violet-500) 55%,var(--pink-500) 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.de-hero-copy .lead{max-width:560px;margin:0 0 30px;color:var(--gray-600);font-size:1.02rem;line-height:1.65;}

.de-hero-features{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:32px;}
.de-hero-feature{display:flex;align-items:flex-start;gap:10px;}
.de-hero-feature-icon{
  flex:none;width:34px;height:34px;border-radius:9px;display:flex;align-items:center;justify-content:center;
  background:var(--bg-alt);color:var(--blue-600);
}
.de-hero-feature-icon svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round;}
.de-hero-feature-text h4{font-size:.84rem;font-weight:700;color:var(--navy-900);margin:0 0 3px;line-height:1.25;}
.de-hero-feature-text p{font-size:.76rem;color:var(--gray-600);margin:0;line-height:1.4;}

.de-hero-cta{display:flex;flex-wrap:wrap;gap:14px;}
.btn-de{
  background:linear-gradient(135deg,var(--blue-600),var(--violet-500) 55%,var(--pink-500) 100%);
  color:#fff;box-shadow:0 10px 24px rgba(124,92,255,.3);
}
.btn-de:hover{transform:translateY(-2px);box-shadow:0 16px 32px rgba(124,92,255,.38);}
.btn-outline-brand{background:#fff;border:1.5px solid rgba(42,75,222,.25);color:var(--navy-900);}
.btn-outline-brand:hover{border-color:rgba(42,75,222,.5);background:rgba(42,75,222,.05);transform:translateY(-2px);}

.de-hero-visual{position:relative;display:flex;align-items:center;justify-content:center;}
.de-hero-visual-glow{
  position:absolute;width:78%;height:78%;border-radius:50%;
  background:radial-gradient(circle,rgba(124,92,255,.18),rgba(42,75,222,.1) 55%,transparent 75%);
  filter:blur(50px);pointer-events:none;
}
.de-hero-visual img{position:relative;width:100%;max-width:600px;height:auto;display:block;margin:0 auto;}

.de-hero-benefits{
  position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,1fr);
  margin-top:54px;background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);
}
.de-hero-benefit{display:flex;align-items:center;gap:14px;padding:22px 26px;border-right:1px solid var(--gray-200);}
.de-hero-benefit:last-child{border-right:none;}
.de-hero-benefit-icon{
  flex:none;width:38px;height:38px;border-radius:10px;display:flex;align-items:center;justify-content:center;
  background:var(--bg-alt);color:var(--blue-600);
}
.de-hero-benefit-icon svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round;}
.de-hero-benefit h5{font-size:.9rem;font-weight:700;color:var(--navy-900);margin:0 0 2px;}
.de-hero-benefit p{font-size:.78rem;color:var(--gray-600);margin:0;}

@media (max-width:1024px){
  .de-hero-grid{grid-template-columns:1fr;gap:36px;}
  .de-hero-copy .lead{max-width:none;}
  .de-hero-benefits{grid-template-columns:1fr 1fr;}
  .de-hero-benefit:nth-child(2){border-right:none;}
}
@media (max-width:760px){
  .de-hero{padding:calc(var(--header-h) + 24px) 0 40px;}
  .de-hero-features{grid-template-columns:1fr 1fr;}
  .de-hero-cta{flex-direction:column;}
  .de-hero-cta .btn{width:100%;justify-content:center;}
  .de-hero-benefits{grid-template-columns:1fr;margin-top:36px;}
  .de-hero-benefit{border-right:none;border-bottom:1px solid var(--gray-200);}
  .de-hero-benefit:last-child{border-bottom:none;}
}

/* ===================== Data Engineering services grid ===================== */
.de-svc{position:relative;padding:90px 0 100px;background:var(--bg-alt);}
.de-svc .container{max-width:1280px;}

.de-svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:stretch;}
.de-svc-card{
  display:flex;flex-direction:column;background:#fff;border:1px solid var(--gray-200);border-radius:18px;
  padding:28px 26px;box-shadow:var(--shadow-sm);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.de-svc-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:rgba(42,75,222,.24);}
.de-svc-icon{
  display:flex;flex:none;width:46px;height:46px;border-radius:12px;align-items:center;justify-content:center;
  background:var(--bg-alt);margin-bottom:16px;transition:background .25s ease,box-shadow .25s ease;
}
.de-svc-icon svg{width:22px;height:22px;fill:none;stroke:url(#deSvcIconGrad);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;}
.de-svc-card:hover .de-svc-icon{background:rgba(42,75,222,.09);box-shadow:0 4px 14px rgba(42,75,222,.14);}
.de-svc-card h4{font-size:1.03rem;line-height:1.3;margin:0 0 8px;color:var(--navy-900);}
.de-svc-card p{font-size:.86rem;line-height:1.55;margin:0 0 16px;color:var(--gray-600);}
.de-svc-list{display:flex;flex-direction:column;list-style:none;margin:auto 0 0;padding:14px 0 0;border-top:1px solid var(--gray-100);}
.de-svc-list li{display:flex;align-items:flex-start;gap:10px;padding:4px 0;font-size:.81rem;line-height:1.4;color:var(--gray-700);}
.de-svc-check{
  flex:none;display:flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:50%;
  background:rgba(42,75,222,.08);margin-top:2px;
}
.de-svc-check svg{width:9px;height:9px;fill:none;stroke:var(--blue-600);stroke-width:3;stroke-linecap:round;stroke-linejoin:round;}

.de-cta-banner{
  position:relative;overflow:hidden;margin-top:52px;border-radius:calc(var(--radius-lg) + 6px);
  background:linear-gradient(120deg,var(--navy-950) 0%,var(--navy-800) 45%,var(--violet-500) 135%);
  padding:56px 52px;display:grid;grid-template-columns:1.3fr .7fr;gap:32px;align-items:center;
}
.de-cta-banner-blob{position:absolute;border-radius:50%;filter:blur(55px);pointer-events:none;}
.de-cta-banner-blob.b1{width:300px;height:300px;top:-120px;left:-40px;background:radial-gradient(circle,rgba(124,92,255,.65),transparent 70%);}
.de-cta-banner-blob.b2{width:360px;height:360px;bottom:-160px;right:-50px;background:radial-gradient(circle,rgba(239,77,138,.6),transparent 70%);}
.de-cta-banner-copy{position:relative;z-index:1;}
.de-cta-banner-copy h3{color:#fff;font-size:clamp(1.5rem,2.8vw,2.1rem);line-height:1.25;margin:0 0 12px;}
.de-cta-banner-copy p{color:rgba(255,255,255,.72);font-size:1rem;line-height:1.6;margin:0;max-width:480px;}
.de-cta-banner-action{position:relative;z-index:1;display:flex;justify-content:flex-end;}
.de-cta-banner .btn-lg{padding:18px 34px;font-size:1.02rem;white-space:nowrap;}

.de-extend{position:relative;padding:80px 0 90px;background:var(--bg-alt);}
.de-extend .container{max-width:1280px;}
.de-extend-grid{display:grid;grid-template-columns:1fr 1fr;gap:26px;align-items:stretch;}
.de-extend-card{
  display:flex;align-items:flex-start;gap:18px;
  padding:32px 30px;background:#fff;border:1px solid var(--gray-200);border-radius:22px;
  box-shadow:var(--shadow-sm);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.de-extend-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:rgba(42,75,222,.24);}
.de-extend-icon{
  flex:none;width:52px;height:52px;border-radius:14px;display:flex;align-items:center;justify-content:center;
  background:rgba(124,92,255,.08);
}
.de-extend-icon svg{width:24px;height:24px;fill:none;stroke:url(#deExtendIconGrad);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;}
.de-extend-text h4{font-size:1.08rem;line-height:1.3;margin:0 0 8px;color:var(--navy-900);}
.de-extend-text p{font-size:.9rem;line-height:1.6;margin:0;color:var(--gray-600);}

@media (max-width:1024px){
  .de-svc-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:760px){
  .de-svc{padding:70px 0 80px;}
  .de-svc-grid{grid-template-columns:1fr;}
  .de-svc-card{padding:24px 20px;}
  .de-cta-banner{grid-template-columns:1fr;text-align:center;padding:44px 26px;margin-top:36px;}
  .de-cta-banner-copy p{margin:0 auto;}
  .de-cta-banner-action{justify-content:center;}
  .de-extend{padding:60px 0 70px;}
  .de-extend-grid{grid-template-columns:1fr;gap:18px;}
  .de-extend-card{padding:24px 20px;gap:14px;}
  .de-extend-icon{width:44px;height:44px;border-radius:12px;}
  .de-extend-icon svg{width:20px;height:20px;}
}

/* ===================== AI Development service page ===================== */
.ai-hero{padding:calc(var(--header-h) + 20px) 0 20px;overflow-x:hidden;}
.ai-hero .container{max-width:1340px;}
.ai-hero-grid{display:grid;grid-template-columns:.92fr 1.08fr;gap:32px;align-items:center;}
.ai-hero-copy h1{font-size:clamp(1.9rem,3vw,2.7rem);line-height:1.16;color:var(--navy-900);margin:0 0 20px;white-space:nowrap;}
.accent-blue{color:var(--blue-600);}
.ai-hero-copy .lead{max-width:520px;margin:0 0 22px;color:var(--gray-600);font-size:1rem;}
.ai-hero-features{display:flex;flex-wrap:nowrap;align-items:center;gap:18px;margin-top:24px;}
.ai-hero-feature{display:flex;flex:1 1 0;min-width:0;flex-direction:column;align-items:center;justify-content:flex-start;gap:10px;text-align:center;}
.ai-hero-feature-icon{
  flex:none;width:44px;height:44px;border-radius:12px;background:rgba(42,75,222,.08);
  display:flex;align-items:center;justify-content:center;color:var(--blue-600);
}
.ai-hero-feature-icon svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.ai-hero-feature-text{font-size:16px;line-height:24px;font-weight:600;color:var(--navy-900);}
.ai-hero-feature-divider{flex:none;align-self:center;width:1px;height:44px;background:var(--gray-200);}
.ai-hero-visual{position:relative;}
.ai-hero-visual img{display:block;width:128%;max-width:860px;height:auto;}

.ai-intro{padding:14px 0 56px;background:#fff;overflow-x:hidden;}
.ai-intro .container{max-width:1340px;}
.ai-intro-panel{position:relative;border-radius:calc(var(--radius-lg) + 6px);overflow:hidden;min-height:440px;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-md);}
.ai-intro-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transform:scale(1.45);transform-origin:center;z-index:0;}
.ai-intro-content{position:relative;z-index:1;max-width:720px;margin:0 auto;padding:64px 32px;text-align:center;}
.ai-intro-content h2{font-size:clamp(1.8rem,3.2vw,2.5rem);line-height:1.24;color:var(--navy-900);margin:0 0 18px;}
.ai-intro-content .lead{max-width:640px;margin:0 auto;color:var(--gray-600);font-size:1.02rem;}

@media (max-width:1220px){
  .ai-hero-copy h1{white-space:normal;}
}
@media (max-width:1024px){
  .ai-hero-grid{grid-template-columns:1fr;gap:40px;}
  .ai-hero-copy .lead{max-width:none;}
  .ai-hero-copy h1{white-space:normal;font-size:clamp(2rem,4.4vw,2.8rem);}
  .ai-hero-visual img{width:100%;max-width:560px;margin:0 auto;}
  .ai-intro-panel{min-height:auto;}
  .ai-intro-bg{transform:scale(1.2);}
  .ai-intro-content{padding:72px 28px;}
}
@media (max-width:760px){
  .ai-hero{padding-bottom:32px;}
  .ai-hero-features{flex-wrap:wrap;row-gap:20px;column-gap:16px;}
  .ai-hero-feature{flex:0 1 calc(50% - 8px);}
  .ai-hero-feature-divider{display:none;}
  .ai-hero-feature-icon{width:38px;height:38px;border-radius:10px;}
  .ai-hero-feature-icon svg{width:17px;height:17px;}
  .ai-hero-feature-text{font-size:14px;line-height:20px;}
  .ai-intro{padding:8px 0 60px;}
  .ai-intro-bg{transform:scale(1.05);}
  .ai-intro-panel{border-radius:22px;}
  .ai-intro-content{padding:52px 20px;}
}

/* ===================== ML Development service page ===================== */
.ml-process{padding:70px 0 90px;background:#fff;}
.ml-process-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:56px;}
.ml-process-copy{position:relative;}
.ml-process-sticky{position:sticky;top:104px;display:flex;flex-direction:column;gap:40px;}

.ml-process-main h2{font-size:clamp(1.7rem,2.7vw,2.35rem);line-height:1.25;letter-spacing:-.01em;margin:0 0 16px;color:var(--navy-900);}
.ml-process-highlight{
  background:linear-gradient(135deg,var(--blue-600),var(--violet-500));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.ml-process-main p{font-size:1rem;line-height:1.7;color:var(--gray-600);margin:0 0 26px;max-width:420px;}
.btn-ml{background:linear-gradient(135deg,var(--blue-600),var(--violet-500));color:#fff;box-shadow:0 10px 24px rgba(124,92,255,.3);}
.btn-ml:hover{transform:translateY(-2px);box-shadow:0 16px 32px rgba(124,92,255,.38);}
.ml-process-main .btn svg{width:18px;height:18px;flex:none;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}

.ml-process-ensure{
  background:#fff;border:1px solid rgba(42,75,222,.16);border-radius:var(--radius-lg);
  padding:28px 26px;box-shadow:var(--shadow-sm);
}
.ensure-heading{font-family:'Sora',sans-serif;font-weight:700;font-size:.92rem;color:var(--navy-900);margin:0 0 4px;}
.ml-process-list{display:flex;flex-direction:column;list-style:none;margin:0;padding:0;}
.ml-process-list li{
  display:flex;align-items:flex-start;gap:14px;padding:13px 0;
  border-bottom:1px solid var(--gray-100);font-size:.92rem;line-height:1.5;color:var(--navy-800);
}
.ml-process-list li:last-child{border-bottom:none;padding-bottom:0;}
.ml-process-check{
  display:flex;flex:none;align-items:center;justify-content:center;width:26px;height:26px;border-radius:50%;
  background:rgba(42,75,222,.08);border:1.5px solid rgba(42,75,222,.35);margin-top:1px;
}
.ml-process-check svg{width:13px;height:13px;fill:none;stroke:var(--blue-600);stroke-width:3;stroke-linecap:round;stroke-linejoin:round;}

.ml-process-timeline{display:flex;flex-direction:column;}
.ml-process-step{position:relative;padding-bottom:30px;}
.ml-process-step:last-child{padding-bottom:0;}
.ml-process-step::before{
  content:"";position:absolute;left:29px;top:76px;bottom:-30px;width:2px;background:var(--gray-200);
}
.ml-process-step:last-child::before{display:none;}
.ml-process-num{
  position:absolute;left:0;top:18px;width:60px;height:60px;border-radius:50%;z-index:2;
  background:#fff;border:2px solid rgba(42,75,222,.22);color:var(--navy-900);
  display:flex;flex-direction:column;align-items:center;justify-content:center;line-height:1.15;
  font-family:'Sora',sans-serif;font-weight:800;font-size:1.05rem;box-shadow:var(--shadow-sm);
}
.ml-process-num em{font-style:normal;font-weight:700;font-size:.52rem;letter-spacing:.06em;text-transform:uppercase;color:var(--blue-600);}
.ml-process-card{
  margin-left:32px;display:flex;align-items:flex-start;justify-content:space-between;gap:20px;
  background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius-md);
  padding:26px 28px;box-shadow:var(--shadow-sm);transition:border-color .3s ease,box-shadow .3s ease;
}
.ml-process-card:hover{box-shadow:var(--shadow-md);border-color:rgba(42,75,222,.24);}
.ml-process-card-body{min-width:0;}
.ml-process-card-body h4{font-size:1.08rem;margin:0 0 10px;color:var(--navy-900);}
.ml-process-card-body p{font-size:.92rem;line-height:1.7;margin:0;color:var(--gray-600);}
.ml-process-icon{
  flex:none;display:flex;align-items:center;justify-content:center;width:42px;height:42px;
  border-radius:12px;background:var(--bg-alt);border:1px solid var(--gray-200);
}
.ml-process-icon svg{width:20px;height:20px;fill:none;stroke:url(#mlProcessIconGrad);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;}

@media (max-width:1024px){
  .ml-process-grid{display:flex;flex-direction:column;gap:36px;}
  .ml-process-copy,.ml-process-sticky{display:contents;}
  .ml-process-main{order:1;}
  .ml-process-ensure{order:2;margin-top:4px;}
  .ml-process-timeline{order:3;}
}
@media (max-width:760px){
  .ml-process{padding:0 0 60px;}
  .ml-process-main p{max-width:none;}
  .ml-process-card{gap:14px;padding:22px 18px;margin-left:26px;}
  .ml-process-icon{width:36px;height:36px;border-radius:10px;}
  .ml-process-icon svg{width:17px;height:17px;}
  .ml-process-num{width:50px;height:50px;font-size:.92rem;}
  .ml-process-step::before{left:24px;}
}

.ml-readiness{padding:80px 0 90px;background:var(--bg-alt);}
.ml-readiness-grid{
  position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:28px;
  max-width:1180px;margin:0 auto;align-items:stretch;
}
.ml-readiness-col{display:flex;}
.ml-readiness-card{
  flex:1 1 auto;display:flex;flex-direction:column;background:#fff;border:1px solid var(--gray-200);
  border-radius:calc(var(--radius-lg) - 2px);padding:38px 36px;box-shadow:var(--shadow-sm);
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.ml-readiness-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
.ml-readiness-card.is-positive:hover{border-color:rgba(34,197,94,.35);}
.ml-readiness-card.is-caution:hover{border-color:rgba(255,145,66,.4);}

.ml-readiness-head{display:flex;align-items:center;gap:16px;margin-bottom:16px;}
.ml-readiness-icon{
  flex:none;display:flex;align-items:center;justify-content:center;width:52px;height:52px;border-radius:14px;
}
.ml-readiness-icon svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.ml-readiness-card.is-positive .ml-readiness-icon{background:rgba(34,197,94,.12);color:var(--green-500);}
.ml-readiness-card.is-caution .ml-readiness-icon{background:rgba(255,145,66,.15);color:var(--warm-1);}
.ml-readiness-head h3{font-size:1.22rem;line-height:1.32;color:var(--navy-900);margin:0;}

.ml-readiness-underline{display:block;width:44px;height:3px;border-radius:2px;margin:0 0 26px;}
.ml-readiness-card.is-positive .ml-readiness-underline{background:var(--green-500);}
.ml-readiness-card.is-caution .ml-readiness-underline{background:var(--warm-1);}

.ml-readiness-list{display:flex;flex-direction:column;list-style:none;margin:0;padding:0;}
.ml-readiness-list li{
  display:flex;align-items:flex-start;gap:14px;padding:15px 0;
  border-bottom:1px solid var(--gray-100);font-size:.95rem;line-height:1.6;color:var(--gray-700);
  opacity:0;transform:translateY(10px);transition:opacity .4s ease,transform .4s ease;
}
.ml-readiness-list li:last-child{border-bottom:none;padding-bottom:0;}
.ml-readiness-col.in-view .ml-readiness-list li:nth-child(1){transition-delay:.05s;}
.ml-readiness-col.in-view .ml-readiness-list li:nth-child(2){transition-delay:.1s;}
.ml-readiness-col.in-view .ml-readiness-list li:nth-child(3){transition-delay:.15s;}
.ml-readiness-col.in-view .ml-readiness-list li:nth-child(4){transition-delay:.2s;}
.ml-readiness-col.in-view .ml-readiness-list li:nth-child(5){transition-delay:.25s;}
.ml-readiness-col.in-view .ml-readiness-list li{opacity:1;transform:translateY(0);}
.ml-readiness-check{
  flex:none;display:flex;align-items:center;justify-content:center;width:24px;height:24px;
  border-radius:50%;margin-top:1px;
}
.ml-readiness-check svg{width:12px;height:12px;fill:none;stroke:currentColor;stroke-width:2.6;stroke-linecap:round;stroke-linejoin:round;}
.ml-readiness-card.is-positive .ml-readiness-check{border:1.5px solid rgba(34,197,94,.4);color:var(--green-500);}
.ml-readiness-card.is-caution .ml-readiness-check{border:1.5px solid rgba(255,145,66,.45);color:var(--warm-1);}

.ml-readiness-col-delay{transition-delay:.12s;}

@media (max-width:1024px){
  .ml-readiness{padding:64px 0 76px;}
  .ml-readiness-card{padding:32px 26px;}
}
@media (max-width:760px){
  .ml-readiness-grid{grid-template-columns:1fr;gap:22px;}
  .ml-readiness-col-delay{transition-delay:0s;}
  .ml-readiness-card{padding:28px 22px;}
  .ml-readiness-head h3{font-size:1.12rem;}
}

.ml-services{position:relative;overflow:hidden;padding:70px 0 100px;background:#fff;}
.ml-services-glow{position:absolute;border-radius:50%;filter:blur(90px);pointer-events:none;opacity:.55;}
.ml-services-glow.g1{width:440px;height:440px;top:-180px;left:-140px;background:radial-gradient(circle,rgba(42,75,222,.16),transparent 70%);}
.ml-services-glow.g2{width:440px;height:440px;bottom:-180px;right:-140px;background:radial-gradient(circle,rgba(124,92,255,.14),transparent 70%);}

.ml-svc-head{position:relative;z-index:1;max-width:740px;margin:0 auto 52px;text-align:center;}
.ml-svc-head h2{font-size:clamp(2rem,3.6vw,2.85rem);line-height:1.2;color:var(--navy-900);margin:18px 0 18px;letter-spacing:-.01em;}
.ml-svc-head .lead{max-width:620px;margin:0 auto;color:var(--gray-600);font-size:1.03rem;}

.ml-svc-grid{position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:stretch;}
.ml-svc-card{
  position:relative;background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius-md);
  padding:34px 30px;box-shadow:var(--shadow-sm);
  transition:transform .3s cubic-bezier(.4,0,.2,1),box-shadow .3s ease,border-color .3s ease;
}
.ml-svc-card::before{
  content:'';position:absolute;inset:0;border-radius:inherit;padding:1.5px;
  background:linear-gradient(135deg,var(--blue-500),var(--violet-500));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;
  opacity:0;transition:opacity .3s ease;pointer-events:none;
}
.ml-svc-card:hover{transform:translateY(-4px);box-shadow:0 22px 42px rgba(42,75,222,.14);border-color:transparent;}
.ml-svc-card:hover::before{opacity:1;}
.ml-svc-icon{
  display:flex;width:48px;height:48px;border-radius:13px;align-items:center;justify-content:center;
  background:var(--bg-alt);color:var(--blue-600);margin-bottom:20px;transition:background .3s ease,color .3s ease;
}
.ml-svc-card:hover .ml-svc-icon{background:rgba(42,75,222,.1);color:var(--blue-500);}
.ml-svc-icon svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.ml-svc-cat{display:block;font-size:.72rem;font-weight:700;letter-spacing:.06em;color:var(--blue-600);margin-bottom:10px;}
.ml-svc-card h4{font-size:1.1rem;line-height:1.32;color:var(--navy-900);margin:0 0 12px;}
.ml-svc-card p{font-size:.9rem;line-height:1.68;color:var(--gray-600);margin:0;}

.ml-svc-cta{
  background:linear-gradient(135deg,var(--blue-600) 0%,var(--violet-500) 55%,var(--pink-500) 115%);
  border:none;color:#fff;display:flex;flex-direction:column;justify-content:center;overflow:hidden;
}
.ml-svc-cta::before{display:none;}
.ml-svc-cta:hover{transform:translateY(-4px);box-shadow:0 26px 50px rgba(124,92,255,.35);}
.ml-svc-cta-dots{
  position:absolute;inset:0;opacity:.5;pointer-events:none;
  background-image:radial-gradient(rgba(255,255,255,.55) 1.3px,transparent 1.3px);
  background-size:20px 20px;
  mask-image:radial-gradient(circle at 78% 18%,rgba(0,0,0,.9),transparent 60%);
  -webkit-mask-image:radial-gradient(circle at 78% 18%,rgba(0,0,0,.9),transparent 60%);
}
.ml-svc-cta-icon{
  position:relative;z-index:1;width:48px;height:48px;border-radius:13px;background:rgba(255,255,255,.16);
  display:flex;align-items:center;justify-content:center;margin-bottom:20px;
}
.ml-svc-cta-icon svg{width:22px;height:22px;fill:none;stroke:#fff;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.ml-svc-cta h4{position:relative;z-index:1;font-size:1.32rem;line-height:1.3;color:#fff;margin:0 0 12px;}
.ml-svc-cta p{position:relative;z-index:1;font-size:.92rem;line-height:1.6;color:rgba(255,255,255,.85);margin:0 0 26px;}
.ml-svc-cta .btn{position:relative;z-index:1;align-self:flex-start;}

@media (max-width:1024px){
  .ml-svc-grid{grid-template-columns:1fr 1fr;}
  .ml-svc-cta{grid-column:1/-1;}
}
@media (max-width:640px){
  .ml-services{padding:50px 0 70px;}
  .ml-svc-head{margin-bottom:36px;}
  .ml-svc-grid{grid-template-columns:1fr;gap:18px;}
  .ml-svc-cta{grid-column:auto;}
  .ml-svc-card{padding:28px 24px;}
}

/* Mobile platform services reuse the ML service-card system */
.mobile-platform-services{padding-top:92px;}
.mobile-platform-card{display:flex;flex-direction:column;}
.mobile-platform-card h3{font-size:1.1rem;line-height:1.32;color:var(--navy-900);margin:0 0 12px;}
.mobile-platform-card > p{margin-bottom:20px;}
.mobile-platform-points{display:grid;gap:10px;margin-top:auto;padding-top:2px;}
.mobile-platform-points li{position:relative;padding-left:24px;color:var(--gray-600);font-size:.84rem;line-height:1.5;}
.mobile-platform-points li::before{
  content:'✓';position:absolute;left:0;top:.05em;width:16px;height:16px;border:1px solid rgba(42,75,222,.34);
  border-radius:50%;display:grid;place-items:center;color:var(--blue-600);font-size:.62rem;font-weight:800;line-height:1;
}
.mobile-platform-cta{
  position:relative;isolation:isolate;overflow:hidden;margin-top:52px;padding:44px 48px;border-radius:20px;
  display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:38px;
  background:linear-gradient(112deg,#2814d4 0%,#221186 57%,#451069 100%);
  box-shadow:0 22px 48px rgba(43,22,160,.2);
}
.mobile-platform-cta > div,.mobile-platform-cta > a{position:relative;z-index:2;}
.mobile-platform-cta h3{max-width:680px;margin:0 0 10px;color:#fff;font-size:clamp(1.45rem,2.3vw,2rem);line-height:1.25;}
.mobile-platform-cta p{max-width:680px;margin:0;color:rgba(255,255,255,.76);font-size:.95rem;}
.mobile-platform-cta-orb{position:absolute;z-index:1;border-radius:50%;pointer-events:none;background:linear-gradient(135deg,#ff9142,#ef146f 50%,#7926ff);}
.mobile-platform-cta-orb.orb-one{width:270px;height:170px;top:-125px;left:54%;}
.mobile-platform-cta-orb.orb-two{width:260px;height:210px;right:-100px;bottom:-145px;}
.mobile-platform-cta-btn{min-width:280px;justify-content:center;border:0;color:#fff;background:linear-gradient(100deg,#ff9a3d,#f20a74);box-shadow:0 14px 30px rgba(239,20,112,.28);}
.mobile-platform-cta-btn:hover{color:#fff;transform:translateY(-2px);box-shadow:0 18px 36px rgba(239,20,112,.36);}

@media (max-width:860px){
  .mobile-platform-cta{grid-template-columns:1fr;padding:38px 34px;gap:26px;}
  .mobile-platform-cta-btn{justify-self:start;}
}
@media (max-width:640px){
  .mobile-platform-services{padding-top:58px;}
  .mobile-platform-cta{margin-top:34px;padding:32px 24px;border-radius:17px;}
  .mobile-platform-cta-btn{width:100%;min-width:0;}
}

/* End-to-end mobile app development services carousel */
.mobile-e2e-services{position:relative;overflow:hidden;padding:88px 0 76px;background:var(--bg-alt);}
.mobile-e2e-head{max-width:880px;margin:0 auto 44px;text-align:center;}
.mobile-e2e-head h2{margin:18px 0 16px;font-size:clamp(2rem,3.5vw,2.8rem);line-height:1.18;color:var(--navy-900);letter-spacing:-.025em;}
.mobile-e2e-head p{max-width:780px;margin:0 auto;color:var(--gray-600);font-size:1rem;line-height:1.72;}
.mobile-e2e-track-wrap{position:relative;overflow:hidden;padding:4px 0 8px;}
.mobile-e2e-track{
  display:flex;gap:16px;overflow-x:auto;padding:4px 18px 24px;scroll-padding-inline:18px;
  scroll-snap-type:x mandatory;scrollbar-width:none;
}
.mobile-e2e-track::-webkit-scrollbar{display:none;}
.mobile-e2e-card{
  position:relative;flex:0 0 300px;min-height:248px;padding:28px 26px 26px;overflow:hidden;
  scroll-snap-align:start;background:#fff;border:1px solid rgba(227,231,242,.82);border-radius:16px;
  box-shadow:0 8px 24px rgba(10,15,36,.045);transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.mobile-e2e-card::before{content:'';position:absolute;left:0;right:0;top:0;height:3px;opacity:0;background:linear-gradient(90deg,var(--blue-500),var(--violet-500),var(--pink-500));transition:opacity .3s ease;}
.mobile-e2e-card:hover{transform:translateY(-4px);border-color:rgba(42,75,222,.2);box-shadow:0 18px 38px rgba(42,75,222,.1);}
.mobile-e2e-card:hover::before{opacity:1;}
.mobile-e2e-number{display:inline-flex;margin-bottom:18px;color:var(--blue-600);font-family:'Sora',sans-serif;font-size:.74rem;font-weight:800;letter-spacing:.08em;}
.mobile-e2e-card h3{margin:0 0 12px;color:var(--navy-900);font-size:1.08rem;line-height:1.38;}
.mobile-e2e-card p{margin:0;color:var(--gray-600);font-size:.86rem;line-height:1.68;}
.mobile-e2e-controls{display:flex;justify-content:center;margin-top:8px;}
.mobile-e2e-controls .arrow-btn{background:#fff;}
.mobile-e2e-controls .arrow-btn:hover,.mobile-e2e-controls .arrow-btn.is-active{background:var(--navy-900);color:#fff;border-color:var(--navy-900);}

@media (max-width:640px){
  .mobile-e2e-services{padding:58px 0 52px;}
  .mobile-e2e-head{margin-bottom:32px;}
  .mobile-e2e-head h2{font-size:clamp(1.8rem,8vw,2.25rem);}
  .mobile-e2e-head p{font-size:.94rem;}
  .mobile-e2e-track{padding-left:20px;padding-right:20px;scroll-padding-inline:20px;}
  .mobile-e2e-card{flex-basis:86vw;min-height:230px;padding:25px 22px 23px;}
}

/* Mobile application business value and AI capabilities */
.mobile-value-ai{position:relative;padding:92px 0 100px;background:#fff;overflow:hidden;}
.mobile-value-head,.mobile-ai-head{max-width:900px;margin:0 auto;text-align:center;}
.mobile-value-head h2,.mobile-ai-head h2{margin:18px 0 16px;font-size:clamp(2rem,3.5vw,2.8rem);line-height:1.2;color:var(--navy-900);letter-spacing:-.025em;}
.mobile-value-head p,.mobile-ai-head p{max-width:790px;margin:0 auto;color:var(--gray-600);font-size:1rem;line-height:1.72;}
.mobile-value-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:42px auto 94px;max-width:1080px;}
.mobile-value-item{background:var(--bg-alt);border:1px solid transparent;border-radius:15px;overflow:hidden;transition:border-color .25s ease,box-shadow .25s ease,background .25s ease;}
.mobile-value-item[open]{background:#fff;border-color:var(--gray-200);box-shadow:0 14px 34px rgba(10,15,36,.07);}
.mobile-value-item summary{display:flex;align-items:center;gap:14px;padding:20px 22px;color:var(--navy-900);font-family:'Sora',sans-serif;font-size:.94rem;font-weight:700;line-height:1.4;cursor:pointer;list-style:none;}
.mobile-value-item summary::-webkit-details-marker{display:none;}
.mobile-value-item summary > span:nth-child(2){flex:1;}
.mobile-value-check{flex:none;width:22px;height:22px;border:1.5px solid var(--navy-800);border-radius:50%;display:grid;place-items:center;}
.mobile-value-check svg{width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}
.mobile-value-chevron{flex:none;width:17px;height:17px;fill:none;stroke:var(--gray-600);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:transform .25s ease,color .25s ease;}
.mobile-value-item[open] .mobile-value-chevron{transform:rotate(180deg);color:var(--blue-600);}
.mobile-value-item > p{margin:0;padding:0 22px 22px 58px;color:var(--gray-600);font-size:.9rem;line-height:1.7;}
.mobile-ai-head h2 span{background:linear-gradient(135deg,var(--blue-600),var(--violet-500),var(--pink-500));-webkit-background-clip:text;background-clip:text;color:transparent;}
.mobile-ai-grid{display:grid;grid-template-columns:repeat(3,1fr);margin-top:46px;border-top:1px solid var(--gray-200);border-left:1px solid var(--gray-200);}
.mobile-ai-card{position:relative;min-height:245px;padding:34px 32px;border-right:1px solid var(--gray-200);border-bottom:1px solid var(--gray-200);background:#fff;transition:background .25s ease,transform .25s ease,box-shadow .25s ease;}
.mobile-ai-card:not(.mobile-ai-card-cta):hover{z-index:1;transform:translateY(-3px);background:var(--bg-alt);box-shadow:0 16px 34px rgba(10,15,36,.07);}
.mobile-ai-number{display:block;margin-bottom:18px;color:var(--blue-600);font-size:.72rem;font-weight:800;letter-spacing:.08em;}
.mobile-ai-card h3{margin:0 0 12px;color:var(--navy-900);font-size:1.12rem;line-height:1.4;}
.mobile-ai-card p{margin:0;color:var(--gray-600);font-size:.88rem;line-height:1.68;}
.mobile-ai-card-cta{isolation:isolate;overflow:hidden;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;background:linear-gradient(135deg,#2714d7 0%,#36109a 55%,#11135d 100%);}
.mobile-ai-card-cta h3,.mobile-ai-card-cta p,.mobile-ai-card-cta a{position:relative;z-index:2;}
.mobile-ai-card-cta h3{color:#fff;font-size:1.28rem;}
.mobile-ai-card-cta p{color:rgba(255,255,255,.78);margin-bottom:24px;}
.mobile-ai-cta-orb{position:absolute;z-index:1;width:210px;height:170px;right:-70px;top:-85px;border-radius:50%;background:linear-gradient(135deg,#ff9142,#ef146f,#8d24ff);}
.mobile-ai-cta-btn{padding:12px 20px;color:#fff;background:linear-gradient(100deg,#ff9a3d,#f20a74);box-shadow:0 12px 26px rgba(239,20,112,.25);}
.mobile-ai-cta-btn:hover{color:#fff;transform:translateY(-2px);}

@media (max-width:900px){
  .mobile-ai-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:720px){
  .mobile-value-ai{padding:62px 0 70px;}
  .mobile-value-grid{grid-template-columns:1fr;margin:34px auto 68px;}
  .mobile-value-head h2,.mobile-ai-head h2{font-size:clamp(1.8rem,8vw,2.25rem);}
  .mobile-value-head p,.mobile-ai-head p{font-size:.94rem;}
  .mobile-ai-grid{grid-template-columns:1fr;margin-top:34px;}
  .mobile-ai-card{min-height:0;padding:28px 24px;}
  .mobile-value-item summary{padding:18px 17px;font-size:.89rem;}
  .mobile-value-item > p{padding:0 17px 19px 53px;}
}

/* Modern mobile app feature grid */
.mobile-trend-features{position:relative;padding:92px 0 100px;background:linear-gradient(180deg,#f1f3fa 0%,#eceff7 100%);}
.mobile-trend-head{max-width:900px;margin:0 auto 44px;text-align:center;}
.mobile-trend-head h2{margin:18px 0 16px;color:var(--navy-900);font-size:clamp(2rem,3.5vw,2.8rem);line-height:1.2;letter-spacing:-.025em;}
.mobile-trend-head p{max-width:800px;margin:0 auto;color:var(--gray-600);font-size:1rem;line-height:1.72;}
.mobile-trend-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.mobile-trend-item{
  min-height:92px;padding:22px 20px;display:flex;align-items:center;gap:13px;background:#fff;border:1px solid rgba(227,231,242,.75);
  border-radius:12px;color:var(--navy-700);font-family:'Sora',sans-serif;font-size:.94rem;font-weight:500;line-height:1.45;
  box-shadow:0 7px 20px rgba(10,15,36,.035);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.mobile-trend-item:hover{transform:translateY(-3px);border-color:rgba(42,75,222,.2);box-shadow:0 14px 30px rgba(42,75,222,.08);}
.mobile-trend-check{flex:none;width:18px;height:18px;border:1px solid rgba(28,44,96,.72);border-radius:50%;display:grid;place-items:center;color:var(--navy-700);font-size:.62rem;font-weight:800;line-height:1;}

@media (max-width:960px){
  .mobile-trend-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:600px){
  .mobile-trend-features{padding:62px 0 70px;}
  .mobile-trend-head{margin-bottom:32px;}
  .mobile-trend-head h2{font-size:clamp(1.8rem,8vw,2.25rem);}
  .mobile-trend-head p{font-size:.94rem;}
  .mobile-trend-grid{grid-template-columns:1fr;gap:12px;}
  .mobile-trend-item{min-height:78px;padding:18px 17px;font-size:.9rem;}
}

/* Mobile app technology stack introduction */
.mobile-tech-stack .section-head.split{
  max-width:none;margin:0 0 52px;display:grid;grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);
  align-items:end;gap:72px;text-align:left;
}
.mobile-tech-heading{min-width:0;}
.mobile-tech-stack .mobile-tech-heading h2{
  margin:0;font-size:clamp(2.35rem,3.5vw,3.2rem);line-height:1.12;letter-spacing:-.035em;
}
.mobile-tech-heading h2 > span{display:block;}
.mobile-tech-heading-accent{
  background:linear-gradient(120deg,var(--blue-600),var(--violet-500));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.mobile-tech-stack .section-head.split .mobile-tech-intro{
  max-width:none;margin:0 0 4px;padding:2px 0 2px 28px;border-left:2px solid rgba(42,75,222,.26);
  color:var(--gray-600);font-size:1rem;line-height:1.75;
}
.web-tech-stack .section-head.split{
  grid-template-columns:minmax(0,1.3fr) minmax(0,.7fr);gap:48px;
}
.web-tech-stack .mobile-tech-heading h2{
  font-size:clamp(2.15rem,3vw,2.55rem);
}

@media (min-width:1001px){
  .web-tech-stack .mobile-tech-heading h2 > span{white-space:nowrap;}
}

@media (max-width:1000px){
  .mobile-tech-stack .section-head.split{grid-template-columns:1fr;align-items:start;gap:26px;}
  .mobile-tech-stack .section-head.split .mobile-tech-intro{max-width:820px;}
}
@media (max-width:600px){
  .mobile-tech-stack .section-head.split{margin-bottom:36px;gap:22px;}
  .mobile-tech-stack .mobile-tech-heading h2{font-size:clamp(1.85rem,9vw,2.35rem);}
  .mobile-tech-stack .section-head.split .mobile-tech-intro{padding-left:18px;font-size:.94rem;line-height:1.7;}
}

.ml-benefits{position:relative;overflow:hidden;padding:80px 0 90px;background:linear-gradient(180deg,#fbfcff,#f5f7fd);}
.ml-benefits-glow{position:absolute;border-radius:50%;filter:blur(100px);pointer-events:none;opacity:.5;}
.ml-benefits-glow.g1{width:460px;height:460px;top:-200px;right:-160px;background:radial-gradient(circle,rgba(42,75,222,.14),transparent 70%);}
.ml-benefits-glow.g2{width:420px;height:420px;bottom:-180px;left:-160px;background:radial-gradient(circle,rgba(124,92,255,.13),transparent 70%);}
.ml-benefits-dots{
  position:absolute;inset:0;pointer-events:none;opacity:.5;
  background-image:radial-gradient(rgba(42,75,222,.28) 1.3px,transparent 1.3px);
  background-size:26px 26px;
  mask-image:radial-gradient(ellipse 70% 60% at 50% 40%,transparent 55%,rgba(0,0,0,.6) 100%);
  -webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 40%,transparent 55%,rgba(0,0,0,.6) 100%);
}

.tag.ml-badge{display:inline-flex;align-items:center;gap:7px;}
.ml-badge svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}

.ml-benefits-highlight{
  background:linear-gradient(135deg,var(--blue-600),var(--violet-500));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}

.ml-benefits-grid{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;align-items:start;gap:22px;max-width:1000px;margin:0 auto;}
.ml-benefit-card{
  position:relative;background:#fff;border:1px solid var(--gray-200);border-radius:22px;
  padding:28px 26px;box-shadow:var(--shadow-sm);
  transition:transform .3s cubic-bezier(.4,0,.2,1),box-shadow .3s ease,border-color .3s ease;
}
.ml-benefit-card::before{
  content:'';position:absolute;inset:0;border-radius:inherit;padding:1.5px;
  background:linear-gradient(135deg,var(--blue-500),var(--violet-500));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;
  opacity:0;transition:opacity .3s ease;pointer-events:none;
}
.ml-benefit-card:hover{transform:translateY(-3px);box-shadow:0 20px 40px rgba(42,75,222,.12);border-color:transparent;}
.ml-benefit-card:hover::before{opacity:1;}
.ml-benefit-top{position:relative;z-index:1;display:flex;align-items:center;gap:18px;width:100%;padding:0;text-align:left;font:inherit;}
.ml-benefit-icon{
  flex:none;width:76px;height:76px;border-radius:20px;
  background:linear-gradient(135deg,rgba(42,75,222,.08),rgba(124,92,255,.08));
  border:1px solid rgba(124,92,255,.22);
  display:flex;align-items:center;justify-content:center;color:var(--blue-600);
  box-shadow:0 0 0 6px rgba(124,92,255,.05);
  transition:box-shadow .3s ease,color .3s ease;
}
.ml-benefit-card:hover .ml-benefit-icon{box-shadow:0 0 0 8px rgba(124,92,255,.09);color:var(--blue-500);}
.ml-benefit-icon svg{width:32px;height:32px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;}
.ml-benefit-headline{flex:1;min-width:0;}
.ml-benefit-headline h4{font-size:1.2rem;line-height:1.32;color:var(--navy-900);margin:0;}
.ml-benefit-toggle{
  flex:none;width:36px;height:36px;border-radius:50%;background:#fff;border:1px solid var(--gray-200);
  display:flex;align-items:center;justify-content:center;color:var(--gray-600);box-shadow:var(--shadow-sm);
  cursor:pointer;transition:transform .3s ease,color .3s ease;
}
.ml-benefit-card.is-open .ml-benefit-toggle{transform:rotate(180deg);color:var(--blue-600);}
.ml-benefit-toggle svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.ml-benefit-body{position:relative;z-index:1;max-height:0;overflow:hidden;opacity:0;transition:max-height .35s cubic-bezier(.4,0,.2,1),opacity .3s ease,margin-top .35s ease;}
.ml-benefit-card.is-open .ml-benefit-body{max-height:220px;opacity:1;margin-top:16px;}
.ml-benefit-body p{font-size:.95rem;line-height:1.7;color:var(--gray-600);margin:0;padding-left:94px;}

@media (max-width:1024px){
  .ml-benefits-grid{max-width:none;}
  .ml-benefit-icon{width:64px;height:64px;border-radius:17px;}
  .ml-benefit-icon svg{width:27px;height:27px;}
  .ml-benefit-body p{padding-left:82px;}
}
@media (max-width:760px){
  .ml-benefits{padding:56px 0 64px;}
  .ml-benefits-grid{grid-template-columns:1fr;gap:16px;}
  .ml-benefit-card{padding:22px 20px;}
  .ml-benefit-top{gap:14px;}
  .ml-benefit-icon{width:54px;height:54px;border-radius:15px;}
  .ml-benefit-icon svg{width:23px;height:23px;}
  .ml-benefit-headline h4{font-size:1.05rem;}
  .ml-benefit-body p{padding-left:0;margin-top:2px;font-size:.9rem;}
  .ml-benefit-body{max-height:260px;}
}

.ml-industries{position:relative;overflow:hidden;padding:80px 0 70px;background:#fff;}
.ml-industries .container{max-width:1340px;}
.ml-industries-glow{position:absolute;border-radius:50%;filter:blur(100px);pointer-events:none;opacity:.5;}
.ml-industries-glow.g1{width:420px;height:420px;top:-160px;left:-140px;background:radial-gradient(circle,rgba(124,92,255,.13),transparent 70%);}
.ml-industries-glow.g2{width:420px;height:420px;bottom:-200px;right:-140px;background:radial-gradient(circle,rgba(42,75,222,.13),transparent 70%);}
.ml-industries-dots{
  position:absolute;inset:0;pointer-events:none;opacity:.5;z-index:0;
  background-image:radial-gradient(rgba(124,92,255,.28) 1.3px,transparent 1.3px);
  background-size:26px 26px;
  mask-image:radial-gradient(ellipse 65% 55% at 50% 20%,transparent 55%,rgba(0,0,0,.6) 100%);
  -webkit-mask-image:radial-gradient(ellipse 65% 55% at 50% 20%,transparent 55%,rgba(0,0,0,.6) 100%);
}
.ml-industries .section-head.split{position:relative;z-index:1;}
.ml-industries .industry-track-wrap{position:relative;z-index:1;}
.ml-industries .arrow-btn{background:#fff;border-color:var(--gray-200);color:var(--navy-800);}
.ml-industries .arrow-btn:hover{border-color:rgba(42,75,222,.4);color:var(--blue-600);background:#fff;}
.ml-industries .arrow-btn.is-active,
.ml-industries .arrow-btn.is-active:hover{
  background:linear-gradient(135deg,var(--blue-600),var(--violet-500));border-color:transparent;color:#fff;
}
.ml-industries .industry-track{scroll-snap-type:none;}

.ml-ind-card{
  background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius-md);
  padding:26px 24px 0;box-shadow:var(--shadow-sm);overflow:hidden;position:relative;
  display:flex;flex-direction:column;
  transition:transform .3s cubic-bezier(.4,0,.2,1),box-shadow .3s ease,border-color .3s ease;
}
.industry-track .ml-ind-card{flex:0 0 232px;}
.ml-ind-card::before{
  content:'';position:absolute;inset:0;border-radius:inherit;padding:1.5px;
  background:linear-gradient(135deg,var(--blue-500),var(--violet-500));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;
  opacity:0;transition:opacity .3s ease;pointer-events:none;z-index:2;
}
.ml-ind-card:hover{transform:translateY(-4px);box-shadow:0 20px 40px rgba(42,75,222,.14);border-color:transparent;}
.ml-ind-card:hover::before{opacity:1;}
.ml-ind-icon{
  flex:none;display:flex;width:46px;height:46px;border-radius:12px;align-items:center;justify-content:center;
  background:var(--bg-alt);margin-bottom:16px;transition:background .3s ease;
}
.ml-ind-card:hover .ml-ind-icon{background:rgba(124,92,255,.12);}
.ml-ind-icon svg{width:22px;height:22px;fill:none;stroke:url(#mlIndIconGrad);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;}
.ml-ind-card h4{font-size:1.05rem;margin:0 0 8px;color:var(--navy-900);}
.ml-ind-card p{
  flex:1 1 auto;font-size:.86rem;line-height:1.6;margin:0;color:var(--gray-600);
}
.ml-ind-media{
  flex:none;height:150px;margin:16px -24px 0;background-size:cover;background-position:center;
  position:relative;overflow:hidden;transition:transform .4s ease;
}
.ml-ind-card:hover .ml-ind-media{transform:scale(1.02);}

@media (max-width:1024px){
  .industry-track .ml-ind-card{flex:0 0 260px;}
}
@media (max-width:640px){
  .ml-industries{padding:56px 0 50px;}
  .industry-track .ml-ind-card{flex:0 0 84vw;}
  .ml-ind-media{height:170px;}
}

.ai-svc-intro{
  position:relative;overflow:hidden;padding:90px 0;color:#fff;
  background:radial-gradient(120% 120% at 15% 0%,var(--navy-800) 0%,var(--navy-900) 45%,var(--navy-950) 100%);
}
.ai-svc-intro .section-head{margin-bottom:0;}
.ai-svc-intro .section-head h2{color:#fff;}
.ai-svc-intro .section-head h2 em{font-style:normal;color:var(--cyan-400);}
.ai-svc-intro .section-head p{color:#b9c2de;margin-bottom:28px;}
.ai-svc-intro-grid{
  position:absolute;inset:0;opacity:.15;pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.5) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.5) 1px,transparent 1px);
  background-size:46px 46px;
  mask-image:radial-gradient(circle at 50% 30%,rgba(0,0,0,.9),transparent 65%);
}
.ai-svc-intro-glow{position:absolute;border-radius:50%;filter:blur(80px);pointer-events:none;}
.ai-svc-intro-glow.g1{width:440px;height:440px;background:var(--blue-500);opacity:.5;top:-180px;right:-120px;animation:floatSlow 12s ease-in-out infinite;}
.ai-svc-intro-glow.g2{width:380px;height:380px;background:var(--cyan-400);opacity:.28;bottom:-160px;left:-120px;animation:floatSlow 14s ease-in-out infinite reverse;}

.ai-svc-panel{
  position:relative;margin-top:44px;background:#fff;border-radius:calc(var(--radius-lg) + 6px);
  box-shadow:var(--shadow-lg);padding:40px;
}
.ai-svc-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:18px;
  background:var(--navy-950);border-radius:var(--radius-md);padding:18px;
}
.ai-svc-card{
  position:relative;background:#fff;border-radius:14px;padding:28px 26px;box-shadow:var(--shadow-sm);
  transition:transform .3s ease,box-shadow .3s ease;
}
.ai-svc-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
.ai-svc-card h4{font-size:1.05rem;margin-bottom:10px;color:var(--navy-900);}
.ai-svc-card p{font-size:.9rem;line-height:1.7;margin:0;color:var(--gray-600);}

.ai-cap-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.ai-cap-card{
  background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius-md);padding:34px 30px;
  box-shadow:var(--shadow-sm);transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.ai-cap-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:rgba(42,75,222,.28);}
.ai-cap-icon{display:inline-flex;margin-bottom:18px;}
.ai-cap-icon svg{width:30px;height:30px;fill:none;stroke:url(#aiCapIconGrad);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.ai-cap-card h4{font-size:1.08rem;margin:0 0 10px;color:var(--navy-900);}
.ai-cap-card p{font-size:.9rem;line-height:1.7;margin:0;color:var(--gray-600);}

.model-band{background:none;padding:0;}
.model-band .section-head{margin:0 auto 48px;text-align:center;}
.model-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.model-card{
  background:var(--bg-alt);border:1px solid var(--gray-200);border-radius:var(--radius-md);padding:26px 24px;
  box-shadow:var(--shadow-sm);transition:transform .3s ease,box-shadow .3s ease;
}
.model-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
.model-check{display:inline-flex;margin-bottom:14px;}
.model-check svg{width:22px;height:22px;color:var(--blue-600);flex:none;fill:none;stroke:currentColor;stroke-width:2;}
.model-card h4{font-size:1.02rem;margin:0 0 8px;color:var(--navy-900);}
.model-card p{font-size:.88rem;line-height:1.65;margin:0;color:var(--gray-600);}

.industry-track .industry-ai-card{flex:0 0 296px;scroll-snap-align:start;display:flex;flex-direction:column;}
.industry-ai-card{
  background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius-md);padding:30px 26px 28px;
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.industry-ai-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-sm);border-color:rgba(42,75,222,.3);}
.industry-ai-icon{
  display:inline-flex;width:46px;height:46px;border-radius:13px;align-items:center;justify-content:center;
  background:rgba(42,75,222,.08);color:var(--blue-600);margin-bottom:18px;
}
.industry-ai-icon svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.8;}
.industry-ai-card h4{font-size:1.05rem;margin:0 0 10px;color:var(--navy-900);}
.industry-ai-card p{font-size:.86rem;line-height:1.65;margin:0 0 20px;color:var(--gray-600);}
.industry-ai-list{display:flex;flex-direction:column;gap:11px;margin-top:auto;padding-top:18px;border-top:1px solid var(--gray-200);}
.industry-ai-list li{display:flex;align-items:flex-start;gap:8px;font-size:.82rem;line-height:1.4;color:var(--gray-700);list-style:none;}
.industry-ai-list svg{width:14px;height:14px;color:var(--blue-600);flex:none;margin-top:2px;fill:none;stroke:currentColor;stroke-width:2.6;}

.process-intro-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:56px;}
.process-intro-copy{position:relative;}
.process-intro-sticky{position:sticky;top:104px;display:flex;flex-direction:column;gap:48px;}
.process-intro-main .btn{margin-top:8px;}
.ensure-heading{font-family:'Sora',sans-serif;font-weight:700;font-size:.92rem;color:var(--navy-900);margin:0 0 14px;}
.ai-timeline-card a{color:var(--blue-600);font-weight:600;text-decoration:none;border-bottom:1px solid rgba(42,75,222,.3);}
.ai-timeline-card a:hover{border-color:var(--blue-600);}

.ai-timeline{display:flex;flex-direction:column;}
.ai-timeline-step{position:relative;padding-bottom:32px;}
.ai-timeline-step:last-child{padding-bottom:0;}
.ai-timeline-step::before{
  content:"";position:absolute;left:31px;top:78px;bottom:-32px;width:2px;background:var(--gray-200);
  transition:background .3s ease;
}
.ai-timeline-step:last-child::before{display:none;}
.ai-timeline-num{
  position:absolute;left:0;top:20px;width:64px;height:64px;border-radius:50%;z-index:2;
  background:#fff;border:2px solid var(--gray-200);color:var(--navy-900);
  display:flex;flex-direction:column;align-items:center;justify-content:center;line-height:1.15;
  font-family:'Sora',sans-serif;font-weight:800;font-size:1.15rem;
  box-shadow:var(--shadow-sm);transition:background .35s ease,border-color .35s ease,color .35s ease,box-shadow .35s ease;
}
.ai-timeline-num em{font-family:inherit;font-style:normal;font-weight:700;font-size:.56rem;letter-spacing:.06em;text-transform:uppercase;color:var(--blue-600);transition:color .35s ease;}
.ai-timeline-card{
  margin-left:34px;background:var(--bg-alt);border:1px solid var(--gray-200);border-radius:var(--radius-md);
  padding:28px 30px 26px;transition:border-color .35s ease,box-shadow .35s ease;
}
.ai-timeline-card h4{font-size:1.12rem;margin-bottom:10px;color:var(--navy-900);}
.ai-timeline-card p{font-size:.92rem;line-height:1.7;margin:0;color:var(--gray-600);}
.mobile-app-process .process-intro-main .tag{margin-bottom:18px;}
.mobile-app-process .process-intro-main h2{font-size:clamp(2rem,3.35vw,2.7rem);line-height:1.2;letter-spacing:-.025em;}
.mobile-app-process .ai-timeline-card h3{font-size:1.12rem;line-height:1.35;margin:0 0 10px;color:var(--navy-900);}
.mobile-app-process .ai-timeline-card .mobile-process-output{margin-top:15px;padding-top:14px;border-top:1px solid var(--gray-200);font-size:.84rem;line-height:1.62;}
.mobile-app-process .mobile-process-output strong{color:var(--navy-800);font-weight:700;}

.ai-timeline-step.is-active .ai-timeline-num{
  background:var(--grad-brand);border-color:transparent;color:#fff;box-shadow:0 8px 20px rgba(42,75,222,.32);
}
.ai-timeline-step.is-active .ai-timeline-num em{color:rgba(255,255,255,.85);}
.ai-timeline-step.is-active .ai-timeline-card{border-color:rgba(42,75,222,.3);box-shadow:var(--shadow-sm);}
.ai-timeline-step.is-active::before{background:var(--blue-600);}

.trust-section-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:56px;}
.trust-copy{position:relative;}
.trust-sticky{position:sticky;top:104px;}
.trust-sticky .btn{margin-top:8px;}

.faq-q-left{display:flex;align-items:center;gap:16px;min-width:0;}
.trust-check-circle{
  display:flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;flex:none;
  background:#fff;border:1.5px solid var(--gray-200);
}
.trust-check-circle svg{width:15px;height:15px;stroke:var(--navy-900);stroke-width:2.6;fill:none;}
#trustList .faq-item.is-open .faq-a,#mlTrustList .faq-item.is-open .faq-a,#deTrustList .faq-item.is-open .faq-a,#webTrustList .faq-item.is-open .faq-a{max-height:420px;}

.trust-highlights{display:grid;grid-template-columns:1fr 1fr;gap:22px 18px;margin-top:36px;padding-top:28px;border-top:1px solid var(--gray-200);}
.trust-highlight{display:flex;align-items:flex-start;gap:12px;}
.trust-highlight-icon{
  flex:none;width:38px;height:38px;border-radius:10px;display:flex;align-items:center;justify-content:center;
  background:var(--bg-alt);color:var(--blue-600);
}
.trust-highlight-icon svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.trust-highlight-text h5{font-size:.88rem;font-weight:700;color:var(--navy-900);margin:0 0 4px;line-height:1.3;}
.trust-highlight-text p{font-size:.78rem;color:var(--gray-600);margin:0;line-height:1.45;}

.other-svc{
  position:relative;overflow:hidden;border-radius:var(--radius-lg);
  background:linear-gradient(120deg,var(--navy-950),var(--navy-800) 60%,var(--blue-600) 140%);
  padding:48px;display:grid;grid-template-columns:.9fr 1.1fr;gap:40px;align-items:center;color:#fff;
}
.other-svc-copy h3{color:#fff;font-size:1.5rem;margin-bottom:10px;}
.other-svc-copy p{color:#c3cbea;margin-bottom:22px;}
.other-svc-links{display:grid;grid-template-columns:1fr 1fr;gap:0 24px;}
.other-svc-links a{
  display:flex;align-items:center;justify-content:space-between;gap:8px;padding:13px 4px;
  border-bottom:1px solid rgba(255,255,255,.1);color:#fff;font-weight:600;font-size:.94rem;transition:.2s;
}
.other-svc-links a:hover{color:var(--cyan-400);padding-left:6px;}
.other-svc-links a svg{width:16px;height:16px;flex:none;fill:none;stroke:currentColor;stroke-width:2;}

@media (max-width:1024px){
  .ai-svc-grid{grid-template-columns:1fr;}
  .ai-cap-grid{grid-template-columns:1fr 1fr;}
  .model-grid{grid-template-columns:1fr 1fr;}
  .trust-section-grid{grid-template-columns:1fr;gap:36px;}
  .trust-sticky{position:static;}
  .other-svc{grid-template-columns:1fr;padding:36px 28px;}
  .industry-track .industry-ai-card{flex-basis:300px;}

  .process-intro-grid{display:flex;flex-direction:column;gap:40px;}
  .process-intro-copy,.process-intro-sticky{display:contents;}
  .process-intro-main{order:1;}
  .ai-timeline{order:2;}
  .process-intro-ensure{order:3;margin-top:8px;}
}
@media (max-width:760px){
  .ai-cap-grid{grid-template-columns:1fr;}
  .model-grid{grid-template-columns:1fr;}
  .other-svc-links{grid-template-columns:1fr;}
  .model-card{padding:22px 20px;}
  .ai-svc-panel{padding:16px;border-radius:var(--radius-md);}
  .ai-svc-grid{padding:12px;gap:12px;}
  .industry-track .industry-ai-card{flex-basis:84vw;}
  .ai-svc-card{padding:22px 20px;}
  .trust-highlights{grid-template-columns:1fr;gap:18px;margin-top:28px;padding-top:22px;}
}

/* ===================== Software Engineering hero ===================== */
.swe-hero{position:relative;padding:calc(var(--header-h) + 40px) 0 60px;background:#fff;overflow:hidden;}
.swe-hero .container{position:relative;z-index:1;max-width:1320px;}
.swe-hero-glow{position:absolute;border-radius:50%;filter:blur(80px);pointer-events:none;z-index:0;}
.swe-hero-glow.g1{width:460px;height:460px;background:rgba(42,75,222,.16);top:-140px;right:60px;animation:floatSlow 13s ease-in-out infinite;}
.swe-hero-glow.g2{width:380px;height:380px;background:rgba(124,92,255,.14);bottom:-100px;right:-80px;animation:floatSlow 15s ease-in-out infinite reverse;}
.swe-hero .hero-grid{opacity:.5;background-image:linear-gradient(rgba(10,20,50,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(10,20,50,.05) 1px,transparent 1px);}

.swe-hero-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:40px;align-items:center;}

.swe-hero-copy h1{font-size:clamp(2rem,3.4vw,2.75rem);line-height:1.18;letter-spacing:-.01em;color:var(--navy-900);margin:0 0 18px;}
.swe-hero-highlight{
  background:linear-gradient(135deg,var(--blue-600),var(--violet-500));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.swe-hero-copy .lead{max-width:520px;margin:0 0 30px;color:var(--gray-600);font-size:1.02rem;line-height:1.65;}
.swe-hero-cta{display:flex;flex-wrap:wrap;gap:14px;}

.swe-hero-visual{position:relative;}
.swe-hero-visual img{display:block;width:100%;height:auto;object-fit:contain;}

.swe-features-strip{
  position:relative;z-index:1;display:grid;grid-template-columns:repeat(5,1fr);
  margin-top:54px;background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);
}
.swe-feature{padding:26px 22px;border-right:1px solid var(--gray-200);}
.swe-feature:last-child{border-right:none;}
.swe-feature-icon{
  width:38px;height:38px;border-radius:10px;display:flex;align-items:center;justify-content:center;
  background:var(--bg-alt);color:var(--blue-600);margin-bottom:14px;
}
.swe-feature-icon svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.swe-feature h4{font-size:.86rem;font-weight:700;letter-spacing:.01em;color:var(--navy-900);margin:0 0 8px;}
.swe-feature p{font-size:.8rem;color:var(--gray-600);line-height:1.55;margin:0;}

@media (max-width:1024px){
  .swe-hero-grid{grid-template-columns:1fr;gap:36px;}
  .swe-hero-copy .lead{max-width:none;}
  .swe-hero-visual{max-width:560px;margin:0 auto;}
  .swe-features-strip{grid-template-columns:repeat(2,1fr);}
  .swe-feature{border-right:none;border-bottom:1px solid var(--gray-200);}
  .swe-feature:nth-child(odd){border-right:1px solid var(--gray-200);}
  .swe-feature:last-child{border-right:none;border-bottom:none;}
}
@media (max-width:760px){
  .swe-hero{padding:calc(var(--header-h) + 24px) 0 40px;}
  .swe-hero-visual{max-width:100%;}
  .swe-hero-cta{flex-direction:column;}
  .swe-hero-cta .btn{width:100%;justify-content:center;}
  .swe-features-strip{grid-template-columns:1fr;margin-top:36px;}
  .swe-feature{border-right:none!important;border-bottom:1px solid var(--gray-200);}
  .swe-feature:last-child{border-bottom:none;}
}

/* ===================== Software Engineering services intro ===================== */
.swe-services-intro{position:relative;overflow:hidden;padding:82px 0 90px;background:#fff;}
.swe-services-intro .container{position:relative;z-index:1;}
.swe-services-intro .ml-svc-head{margin-bottom:52px;}
.swe-services-intro .ml-svc-head h2{margin-top:0;}
.swe-services-intro .cta-banner{margin-top:42px;}
.swe-services-intro-glow{position:absolute;border-radius:50%;filter:blur(100px);pointer-events:none;opacity:.48;}
.swe-services-intro-glow.g1{width:420px;height:420px;top:-210px;left:-150px;background:radial-gradient(circle,rgba(42,75,222,.16),transparent 70%);}
.swe-services-intro-glow.g2{width:380px;height:380px;bottom:-200px;right:-130px;background:radial-gradient(circle,rgba(124,92,255,.13),transparent 70%);}

@media (max-width:640px){
  .swe-services-intro{padding:58px 0 64px;}
  .swe-services-intro .ml-svc-head{margin-bottom:36px;}
  .swe-services-intro .cta-banner{margin-top:34px;padding:32px 22px;}
  .swe-services-intro .cta-banner .btn{width:100%;justify-content:center;white-space:normal;}
}

/* ===================== Software Engineering solutions ===================== */
.swe-solutions{
  position:relative;overflow:hidden;padding:96px 0 110px;
  background:linear-gradient(180deg,#f8faff 0%,#fff 35%,#fff 100%);
}
.swe-solutions::before{
  content:'';position:absolute;inset:0;pointer-events:none;opacity:.42;
  background-image:radial-gradient(rgba(42,75,222,.18) 1px,transparent 1px);
  background-size:30px 30px;
  mask-image:linear-gradient(90deg,rgba(0,0,0,.65),transparent 42%);
  -webkit-mask-image:linear-gradient(90deg,rgba(0,0,0,.65),transparent 42%);
}
.swe-solutions-glow{position:absolute;border-radius:50%;filter:blur(100px);pointer-events:none;opacity:.5;}
.swe-solutions-glow.g1{width:460px;height:460px;top:-200px;left:-160px;background:radial-gradient(circle,rgba(42,75,222,.18),transparent 70%);}
.swe-solutions-glow.g2{width:420px;height:420px;bottom:-190px;right:-150px;background:radial-gradient(circle,rgba(124,92,255,.14),transparent 70%);}
.swe-solutions .container{position:relative;z-index:1;max-width:1240px;}
.swe-solutions-layout{display:grid;grid-template-columns:minmax(300px,.52fr) minmax(0,1fr);gap:58px;align-items:start;}

.swe-solutions-visual-wrap{align-self:stretch;padding-top:194px;}
.swe-system-visual{
  position:sticky;top:104px;height:660px;overflow:hidden;border-radius:var(--radius-lg);
  background:linear-gradient(155deg,var(--navy-800) 0%,var(--navy-950) 74%);
  border:1px solid rgba(112,146,255,.24);box-shadow:0 28px 64px rgba(10,15,36,.22);
  isolation:isolate;
}
.swe-system-visual::after{
  content:'';position:absolute;inset:0;border-radius:inherit;pointer-events:none;z-index:8;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),inset 0 0 70px rgba(42,75,222,.08);
}
.swe-system-glow{
  position:absolute;z-index:-1;width:300px;height:300px;left:50%;top:42%;transform:translate(-50%,-50%);
  border-radius:50%;background:radial-gradient(circle,rgba(59,99,240,.38),rgba(124,92,255,.16) 45%,transparent 72%);
  filter:blur(24px);animation:sweSystemGlow 8s ease-in-out infinite alternate;
}
.swe-system-grid{
  position:absolute;z-index:-1;inset:54px 0 0;opacity:.22;
  background-image:linear-gradient(rgba(112,146,255,.25) 1px,transparent 1px),linear-gradient(90deg,rgba(112,146,255,.25) 1px,transparent 1px);
  background-size:32px 32px;
  mask-image:linear-gradient(to bottom,transparent,rgba(0,0,0,.9) 14%,rgba(0,0,0,.9) 82%,transparent);
  -webkit-mask-image:linear-gradient(to bottom,transparent,rgba(0,0,0,.9) 14%,rgba(0,0,0,.9) 82%,transparent);
}
.swe-system-toolbar{
  position:relative;z-index:5;height:54px;padding:0 15px;display:flex;align-items:center;gap:12px;
  border-bottom:1px solid rgba(255,255,255,.1);background:rgba(5,8,20,.48);backdrop-filter:blur(8px);
}
.swe-window-dots{display:flex;gap:5px;flex:none;}
.swe-window-dots i{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.25);}
.swe-window-dots i:nth-child(2){background:rgba(79,214,224,.55);}
.swe-system-title{flex:1;min-width:0;color:#aeb9da;font-family:'Sora',sans-serif;font-size:.57rem;font-weight:600;letter-spacing:.08em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.swe-system-status{display:flex;align-items:center;gap:5px;color:#bde9db;font-size:.53rem;font-weight:700;letter-spacing:.08em;}
.swe-system-status i{width:6px;height:6px;border-radius:50%;background:#35d08c;box-shadow:0 0 0 4px rgba(53,208,140,.1);animation:pulseDot 2.2s infinite;}

.swe-system-links{position:absolute;z-index:0;inset:0;width:100%;height:100%;overflow:visible;pointer-events:none;}
.swe-system-links path{fill:none;stroke:url(#sweLinkGradient);stroke-width:1.25;stroke-linecap:round;stroke-dasharray:4 8;opacity:.62;animation:sweSignalFlow 8s linear infinite;}
.swe-system-links path:nth-of-type(even){animation-direction:reverse;animation-duration:10s;}
.swe-system-links circle{fill:var(--cyan-400);filter:drop-shadow(0 0 7px rgba(79,214,224,.9));}

.swe-system-node{
  position:absolute;z-index:2;width:124px;min-height:64px;padding:11px 10px;display:flex;align-items:center;gap:9px;
  border:1px solid rgba(112,146,255,.23);border-radius:13px;background:rgba(17,27,64,.82);
  box-shadow:0 12px 28px rgba(0,0,0,.2);backdrop-filter:blur(10px);
  transition:transform .3s cubic-bezier(.22,1,.36,1),border-color .3s ease,background .3s ease,box-shadow .3s ease;
}
.swe-system-node:hover{transform:translateY(-3px);border-color:rgba(79,214,224,.5);background:rgba(28,44,96,.92);box-shadow:0 16px 32px rgba(0,0,0,.28);}
.swe-system-node-icon{
  flex:none;width:30px;height:30px;border-radius:8px;display:flex;align-items:center;justify-content:center;
  color:var(--cyan-400);background:linear-gradient(135deg,rgba(79,214,224,.14),rgba(124,92,255,.18));
}
.swe-system-node-icon svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;transition:transform .3s ease;}
.swe-system-node:hover .swe-system-node-icon svg{transform:translateY(-2px);}
.swe-system-node strong,.swe-system-node small{display:block;white-space:nowrap;}
.swe-system-node strong{margin-bottom:3px;color:#f4f6ff;font-family:'Sora',sans-serif;font-size:.66rem;line-height:1.15;}
.swe-system-node small{color:#8f9abd;font-size:.52rem;line-height:1.2;}
.swe-node-web{top:98px;left:16px;}
.swe-node-mobile{top:118px;right:16px;}
.swe-node-api{top:205px;left:12px;}
.swe-node-cloud{top:225px;right:12px;}
.swe-node-data{bottom:90px;left:16px;}
.swe-node-quality{bottom:74px;right:16px;}

.swe-core-module{
  position:absolute;z-index:3;left:50%;top:310px;transform:translateX(-50%);width:178px;padding:20px 18px 17px;text-align:center;
  border:1px solid rgba(79,214,224,.38);border-radius:18px;background:linear-gradient(150deg,rgba(42,75,222,.94),rgba(67,50,159,.96));
  box-shadow:0 18px 46px rgba(42,75,222,.38),inset 0 1px 0 rgba(255,255,255,.16);
  animation:sweCorePulse 6s ease-in-out infinite alternate;
}
.swe-core-icon{
  width:42px;height:42px;margin:0 auto 10px;border-radius:12px;display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);color:var(--cyan-400);
  font-family:'Sora',sans-serif;font-size:.9rem;font-weight:700;
}
.swe-core-module strong{display:block;color:#fff;font-family:'Sora',sans-serif;font-size:.82rem;margin-bottom:5px;}
.swe-core-module small{display:block;color:#cbd4ff;font-size:.49rem;font-weight:700;letter-spacing:.11em;}
.swe-code-lines{display:flex;flex-direction:column;gap:5px;margin-top:13px;align-items:center;}
.swe-code-lines i{display:block;height:2px;border-radius:2px;background:rgba(255,255,255,.28);}
.swe-code-lines i:nth-child(1){width:78%;}
.swe-code-lines i:nth-child(2){width:58%;background:rgba(79,214,224,.6);}
.swe-code-lines i:nth-child(3){width:68%;}

.swe-system-footer{
  position:absolute;z-index:4;left:50%;bottom:17px;transform:translateX(-50%);display:flex;align-items:center;gap:14px;
  padding:8px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.1);background:rgba(5,8,20,.56);backdrop-filter:blur(8px);
}
.swe-system-footer span{display:flex;align-items:center;gap:5px;color:#9ea9ca;font-size:.48rem;font-weight:600;white-space:nowrap;}
.swe-system-footer i{width:4px;height:4px;border-radius:50%;background:var(--cyan-400);box-shadow:0 0 5px rgba(79,214,224,.8);}

.swe-solutions-content{min-width:0;}
.swe-solutions-head{margin-bottom:28px;}
.swe-solutions-head h2{max-width:700px;margin:0 0 18px;font-size:clamp(2rem,3.3vw,2.75rem);line-height:1.18;letter-spacing:-.02em;color:var(--navy-900);}
.swe-solutions-head h2 span{
  background:linear-gradient(135deg,var(--blue-600),var(--violet-500));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.swe-solutions-head p{max-width:670px;margin:0;color:var(--gray-600);font-size:1.01rem;line-height:1.72;}

.swe-services-accordion{border-top:1px solid var(--gray-200);}
.swe-service-item{position:relative;border-bottom:1px solid var(--gray-200);transition:background .28s ease,border-color .28s ease;}
.swe-service-item::before{content:'';position:absolute;left:0;top:12px;bottom:12px;width:3px;border-radius:3px;background:var(--blue-600);transform:scaleY(0);transition:transform .28s ease;}
.swe-service-item.is-open{background:linear-gradient(90deg,rgba(42,75,222,.06),rgba(124,92,255,.025) 58%,transparent);border-bottom-color:rgba(42,75,222,.2);}
.swe-service-item.is-open::before{transform:scaleY(1);}
.swe-service-head{
  width:100%;min-height:72px;padding:15px 10px 15px 12px;display:grid;grid-template-columns:40px 28px minmax(0,1fr) 34px;
  align-items:center;gap:12px;text-align:left;border-radius:12px;
}
.swe-service-head:focus-visible{outline:3px solid rgba(42,75,222,.28);outline-offset:2px;}
.swe-service-icon{
  width:38px;height:38px;border-radius:10px;display:flex;align-items:center;justify-content:center;
  color:var(--blue-600);background:var(--bg-alt);border:1px solid rgba(42,75,222,.08);
  transition:transform .28s ease,color .28s ease,background .28s ease,box-shadow .28s ease;
}
.swe-service-icon svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.swe-service-head:hover .swe-service-icon{transform:translateY(-2px);color:var(--violet-500);background:#fff;box-shadow:var(--shadow-sm);}
.swe-service-item.is-open .swe-service-icon{color:#fff;background:var(--grad-brand);border-color:transparent;box-shadow:0 8px 18px rgba(42,75,222,.22);}
.swe-service-number{font-family:'Sora',sans-serif;font-size:.66rem;font-weight:700;letter-spacing:.08em;color:var(--gray-400);transition:color .28s ease;}
.swe-service-item.is-open .swe-service-number{color:var(--blue-600);}
.swe-service-title{min-width:0;color:var(--navy-900);font-family:'Sora',sans-serif;font-size:1rem;font-weight:600;line-height:1.35;transition:color .28s ease;}
.swe-service-head:hover .swe-service-title,.swe-service-item.is-open .swe-service-title{color:var(--blue-600);}
.swe-service-chevron{
  width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:var(--gray-600);border:1px solid transparent;transition:transform .32s ease,color .28s ease,background .28s ease,border-color .28s ease;
}
.swe-service-chevron svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.swe-service-head:hover .swe-service-chevron{background:#fff;border-color:var(--gray-200);}
.swe-service-item.is-open .swe-service-chevron{transform:rotate(180deg);color:var(--blue-600);background:#fff;border-color:rgba(42,75,222,.16);}
.swe-service-panel{max-height:0;overflow:hidden;opacity:0;transition:max-height .36s cubic-bezier(.4,0,.2,1),opacity .28s ease;}
.swe-service-item.is-open .swe-service-panel{max-height:180px;opacity:1;}
.swe-service-panel p{margin:0;padding:0 54px 22px 92px;color:var(--gray-600);font-size:.91rem;line-height:1.68;}

.swe-solutions-cta-wrap{margin-top:70px;}
.swe-solutions-cta{
  position:relative;isolation:isolate;overflow:hidden;min-height:226px;padding:48px 50px;border-radius:var(--radius-lg);
  display:grid;grid-template-columns:minmax(0,1.35fr) auto;align-items:center;gap:42px;
  color:#fff;background:linear-gradient(120deg,var(--navy-900) 0%,#2420a8 48%,#50158b 100%);
  border:1px solid rgba(255,255,255,.12);box-shadow:0 26px 58px rgba(30,32,125,.24);
}
.swe-solutions-cta-grid{
  position:absolute;z-index:-2;inset:0;opacity:.16;pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px);
  background-size:36px 36px;
  mask-image:linear-gradient(90deg,transparent,rgba(0,0,0,.8) 50%,transparent);
  -webkit-mask-image:linear-gradient(90deg,transparent,rgba(0,0,0,.8) 50%,transparent);
}
.swe-solutions-cta-orb{position:absolute;z-index:-1;border-radius:50%;pointer-events:none;filter:saturate(1.12);}
.swe-solutions-cta-orb.orb-top{
  width:340px;height:220px;top:-174px;left:55%;
  background:linear-gradient(135deg,var(--warm-1),var(--pink-500) 52%,var(--violet-500));
  box-shadow:0 0 70px rgba(239,77,138,.26);transform:rotate(-4deg);
}
.swe-solutions-cta-orb.orb-bottom{
  width:360px;height:260px;right:-74px;bottom:-196px;
  background:linear-gradient(145deg,var(--pink-500),var(--violet-500) 58%,var(--blue-500));
  box-shadow:0 0 76px rgba(124,92,255,.34);transform:rotate(8deg);
}
.swe-solutions-cta-copy{position:relative;z-index:1;max-width:680px;}
.swe-solutions-cta-copy h3{margin:0 0 12px;color:#fff;font-size:clamp(1.4rem,2.4vw,1.85rem);line-height:1.25;}
.swe-solutions-cta-copy p{margin:0;color:rgba(232,236,255,.78);font-size:.97rem;line-height:1.7;}
.swe-solutions-cta-action{position:relative;z-index:1;display:flex;justify-content:flex-end;}
.swe-solutions-cta-btn{min-width:270px;justify-content:center;padding:15px 28px;box-shadow:0 12px 30px rgba(239,77,138,.34);}
.swe-solutions-cta-btn:hover{box-shadow:0 18px 38px rgba(239,77,138,.45);}

@keyframes sweSignalFlow{to{stroke-dashoffset:-96;}}
@keyframes sweSystemGlow{from{transform:translate(-53%,-48%) scale(.92);opacity:.75;}to{transform:translate(-47%,-54%) scale(1.08);opacity:1;}}
@keyframes sweCorePulse{from{box-shadow:0 18px 42px rgba(42,75,222,.31),inset 0 1px 0 rgba(255,255,255,.16);}to{box-shadow:0 22px 52px rgba(124,92,255,.45),inset 0 1px 0 rgba(255,255,255,.2);}}

@media (max-width:1024px){
  .swe-solutions-layout{grid-template-columns:minmax(280px,.5fr) minmax(0,1fr);gap:38px;}
  .swe-solutions-visual-wrap{padding-top:208px;}
  .swe-system-node{width:116px;padding-left:8px;padding-right:8px;}
  .swe-system-node-icon{width:27px;height:27px;}
  .swe-core-module{width:164px;}
}
@media (max-width:900px){
  .swe-solutions{padding:76px 0 90px;}
  .swe-solutions::before{mask-image:linear-gradient(to bottom,rgba(0,0,0,.65),transparent 48%);-webkit-mask-image:linear-gradient(to bottom,rgba(0,0,0,.65),transparent 48%);}
  .swe-solutions-layout{grid-template-columns:1fr;gap:44px;}
  .swe-solutions-visual-wrap{padding-top:0;}
  .swe-system-visual{position:relative;top:auto;height:520px;max-width:560px;margin:0 auto;}
  .swe-system-node{width:132px;}
  .swe-node-web{top:82px;left:24px;}
  .swe-node-mobile{top:98px;right:24px;}
  .swe-node-api{top:170px;left:18px;}
  .swe-node-cloud{top:186px;right:18px;}
  .swe-node-data{bottom:76px;left:24px;}
  .swe-node-quality{bottom:62px;right:24px;}
  .swe-core-module{top:236px;width:180px;padding-top:16px;padding-bottom:14px;}
  .swe-core-icon{width:36px;height:36px;margin-bottom:8px;}
  .swe-code-lines{margin-top:10px;}
  .swe-system-footer{bottom:12px;}
  .swe-solutions-cta{grid-template-columns:1fr;gap:26px;padding:44px 38px;}
  .swe-solutions-cta-action{justify-content:flex-start;}
}
@media (max-width:640px){
  .swe-solutions{padding:58px 0 72px;}
  .swe-solutions-layout{gap:36px;}
  .swe-system-visual{height:454px;border-radius:20px;}
  .swe-system-toolbar{height:48px;padding:0 12px;}
  .swe-system-title{font-size:.51rem;}
  .swe-system-status{font-size:.48rem;}
  .swe-system-node{width:112px;min-height:56px;padding:8px 7px;gap:7px;border-radius:11px;}
  .swe-system-node-icon{width:26px;height:26px;border-radius:7px;}
  .swe-system-node strong{font-size:.59rem;}
  .swe-system-node small{font-size:.46rem;}
  .swe-node-web{top:72px;left:10px;}
  .swe-node-mobile{top:84px;right:10px;}
  .swe-node-api{top:146px;left:7px;}
  .swe-node-cloud{top:158px;right:7px;}
  .swe-node-data{bottom:66px;left:10px;}
  .swe-node-quality{bottom:54px;right:10px;}
  .swe-core-module{top:204px;width:158px;padding:13px 14px 12px;border-radius:15px;}
  .swe-core-icon{width:32px;height:32px;border-radius:9px;margin-bottom:7px;font-size:.76rem;}
  .swe-core-module strong{font-size:.74rem;}
  .swe-core-module small{font-size:.44rem;}
  .swe-code-lines{gap:4px;margin-top:8px;}
  .swe-system-footer{gap:9px;padding:7px 9px;}
  .swe-system-footer span{font-size:.43rem;}
  .swe-solutions-head{margin-bottom:22px;}
  .swe-solutions-head h2{font-size:clamp(1.75rem,8.2vw,2.2rem);}
  .swe-solutions-head p{font-size:.95rem;}
  .swe-service-head{min-height:70px;padding:13px 5px 13px 8px;grid-template-columns:38px 24px minmax(0,1fr) 30px;gap:8px;}
  .swe-service-icon{width:36px;height:36px;}
  .swe-service-number{font-size:.6rem;}
  .swe-service-title{font-size:.9rem;}
  .swe-service-chevron{width:29px;height:29px;}
  .swe-service-panel p{padding:0 34px 20px 78px;font-size:.86rem;line-height:1.62;}
  .swe-solutions-cta-wrap{margin-top:46px;}
  .swe-solutions-cta{min-height:0;padding:38px 24px;text-align:center;border-radius:20px;gap:24px;}
  .swe-solutions-cta-copy h3{font-size:1.35rem;}
  .swe-solutions-cta-copy p{font-size:.9rem;}
  .swe-solutions-cta-action{justify-content:center;}
  .swe-solutions-cta-btn{width:100%;min-width:0;white-space:normal;}
  .swe-solutions-cta-orb.orb-top{left:38%;}
  .swe-solutions-cta-orb.orb-bottom{right:-150px;}
}
@media (max-width:380px){
  .swe-system-node{width:104px;}
  .swe-system-node-icon{width:24px;height:24px;}
  .swe-system-node strong{font-size:.55rem;}
  .swe-core-module{width:146px;}
  .swe-service-panel p{padding-left:8px;padding-right:8px;}
}

/* ===================== Software Engineering business impact ===================== */
.swe-impact{position:relative;overflow:hidden;padding:96px 0 104px;background:var(--bg-alt);}
.swe-impact .container{position:relative;z-index:1;max-width:1180px;}
.swe-impact-glow{position:absolute;border-radius:50%;filter:blur(105px);pointer-events:none;opacity:.45;}
.swe-impact-glow.g1{width:420px;height:420px;top:-220px;right:-120px;background:radial-gradient(circle,rgba(42,75,222,.15),transparent 70%);}
.swe-impact-glow.g2{width:380px;height:380px;bottom:-220px;left:-140px;background:radial-gradient(circle,rgba(124,92,255,.12),transparent 70%);}
.swe-impact-head{max-width:850px;margin:0 auto 48px;text-align:center;}
.swe-impact-head h2{max-width:800px;margin:0 auto 18px;font-size:clamp(2rem,3.4vw,2.7rem);line-height:1.2;color:var(--navy-900);letter-spacing:-.02em;}
.swe-impact-head h2 span{
  background:linear-gradient(135deg,var(--blue-600),var(--violet-500));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.swe-impact-head p{max-width:790px;margin:0 auto;color:var(--gray-600);font-size:1rem;line-height:1.72;}
.swe-impact-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px 26px;}
.swe-impact-card{
  position:relative;overflow:hidden;min-height:220px;padding:28px 30px;border-radius:var(--radius-md);
  background:#fff;border:1px solid var(--gray-200);box-shadow:var(--shadow-sm);
  transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s ease,border-color .3s ease;
}
.swe-impact-card::before{
  content:'';position:absolute;left:0;top:0;width:100%;height:3px;opacity:0;
  background:linear-gradient(90deg,var(--blue-600),var(--violet-500),var(--cyan-400));transition:opacity .3s ease;
}
.swe-impact-card:hover{transform:translateY(-4px);border-color:rgba(42,75,222,.22);box-shadow:0 20px 42px rgba(10,15,36,.1);}
.swe-impact-card:hover::before{opacity:1;}
.swe-impact-card-top{display:flex;align-items:center;justify-content:flex-end;margin-bottom:10px;}
.swe-impact-number{font-family:'Sora',sans-serif;font-size:.7rem;font-weight:700;letter-spacing:.1em;color:var(--gray-400);}
.swe-impact-card h3{margin:0 0 12px;color:var(--navy-900);font-size:1.12rem;line-height:1.35;}
.swe-impact-card p{margin:0;color:var(--gray-600);font-size:.9rem;line-height:1.68;}

@media (max-width:760px){
  .swe-impact{padding:64px 0 72px;}
  .swe-impact-head{margin-bottom:34px;}
  .swe-impact-head h2{font-size:clamp(1.75rem,8vw,2.2rem);}
  .swe-impact-head p{font-size:.94rem;}
  .swe-impact-grid{grid-template-columns:1fr;gap:18px;}
  .swe-impact-card{min-height:0;padding:26px 22px 24px;}
  .swe-impact-card-top{margin-bottom:8px;}
}

/* ===================== Software Engineering industries ===================== */
.swe-industries{position:relative;overflow:hidden;padding:96px 0 86px;background:#fff;}
.swe-industries .container{position:relative;z-index:1;max-width:1180px;}
.swe-industries-glow{position:absolute;border-radius:50%;filter:blur(110px);pointer-events:none;opacity:.42;}
.swe-industries-glow.g1{width:420px;height:420px;top:-220px;left:-150px;background:radial-gradient(circle,rgba(42,75,222,.13),transparent 70%);}
.swe-industries-glow.g2{width:400px;height:400px;bottom:-230px;right:-140px;background:radial-gradient(circle,rgba(239,77,138,.1),transparent 70%);}
.swe-industries-head{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;gap:48px;margin-bottom:42px;}
.swe-industries-head h2{max-width:720px;margin:0 0 16px;font-size:clamp(2rem,3.4vw,2.65rem);line-height:1.2;color:var(--navy-900);letter-spacing:-.02em;}
.swe-industries-head h2 span{
  background:linear-gradient(135deg,var(--blue-600),var(--violet-500));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.mobile-industry-services .swe-industries-head h2{max-width:980px;}
.mobile-industry-services .swe-industries-head h2 .mobile-industry-title-primary{
  white-space:nowrap;background:none;-webkit-background-clip:border-box;background-clip:border-box;color:var(--navy-900);
}
.web-industry-services .swe-industries-head h2{max-width:1040px;}
.web-industry-services .swe-industries-head h2 .web-industry-title-primary{
  white-space:nowrap;background:none;-webkit-background-clip:border-box;background-clip:border-box;color:var(--navy-900);
}
.swe-industries-head p{max-width:760px;margin:0;color:var(--gray-600);font-size:1rem;line-height:1.7;}
.swe-industries .arrow-btn{background:#fff;border-color:var(--gray-200);color:var(--navy-800);}
.swe-industries .arrow-btn:hover{background:rgba(42,75,222,.05);border-color:rgba(42,75,222,.3);color:var(--blue-600);}
.swe-industries .arrow-btn.is-active,.swe-industries .arrow-btn.is-active:hover{background:var(--grad-brand);border-color:transparent;color:#fff;}
.swe-industry-track-wrap{position:relative;z-index:1;overflow:hidden;padding:6px 0 10px;}
.swe-industry-track{
  gap:0;padding:4px max(24px,calc((100vw - 1180px)/2 + 24px)) 22px;
  scroll-padding-inline:max(24px,calc((100vw - 1180px)/2 + 24px));scroll-snap-type:x mandatory;
}
.swe-industry-card{
  position:relative;flex:0 0 330px;min-height:454px;padding:30px 28px 28px;display:flex;flex-direction:column;
  scroll-snap-align:start;background:rgba(255,255,255,.96);border-left:1px solid var(--gray-200);
  transition:background .3s ease,box-shadow .3s ease,transform .3s cubic-bezier(.22,1,.36,1);
}
.swe-industry-card:last-child{border-right:1px solid var(--gray-200);}
.swe-industry-card::before{
  content:'';position:absolute;left:0;right:0;top:0;height:3px;opacity:0;
  background:linear-gradient(90deg,var(--pink-500),var(--violet-500),var(--blue-500));transition:opacity .3s ease;
}
.swe-industry-card:hover{z-index:1;transform:translateY(-3px);background:linear-gradient(180deg,#fff,var(--bg-alt));box-shadow:0 18px 38px rgba(10,15,36,.08);}
.swe-industry-card:hover::before{opacity:1;}
.swe-industry-icon{display:flex;width:38px;height:38px;align-items:center;justify-content:flex-start;color:var(--pink-500);margin-bottom:18px;transition:color .3s ease,transform .3s ease;}
.swe-industry-icon svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.swe-industry-card:hover .swe-industry-icon{color:var(--violet-500);transform:translateY(-2px);}
.swe-industry-card h3{margin:0 0 10px;color:var(--navy-900);font-size:1.08rem;line-height:1.35;}
.swe-industry-card p{margin:0 0 22px;color:var(--gray-600);font-size:.84rem;line-height:1.62;}
.swe-industry-list{display:flex;flex-direction:column;gap:10px;margin-top:auto;padding-top:18px;border-top:1px solid var(--gray-200);}
.swe-industry-list li{position:relative;padding-left:21px;color:var(--gray-700);font-size:.8rem;line-height:1.42;}
.swe-industry-list li::before{
  content:'\2713';position:absolute;left:0;top:1px;width:13px;height:13px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;border:1px solid rgba(42,75,222,.26);color:var(--blue-600);
  font-size:.55rem;font-weight:800;line-height:1;
}

@media (max-width:760px){
  .swe-industries{padding:64px 0 58px;}
  .swe-industries-head{grid-template-columns:1fr;gap:24px;margin-bottom:30px;}
  .swe-industries-head h2{font-size:clamp(1.75rem,8vw,2.2rem);}
  .swe-industries-head p{font-size:.94rem;}
  .swe-industries-head .carousel-arrows{justify-content:flex-end;}
  .swe-industry-track{padding-left:24px;padding-right:24px;scroll-padding-inline:24px;}
  .swe-industry-card{flex-basis:86vw;min-height:430px;padding:26px 22px 24px;}
  .mobile-industry-services .swe-industries-head h2 .mobile-industry-title-primary{white-space:normal;}
  .web-industry-services .swe-industries-head h2 .web-industry-title-primary{white-space:normal;}
}

/* ===================== Software Engineering by business stage ===================== */
.swe-business-stage{position:relative;overflow:hidden;padding:96px 0 104px;background:var(--bg-alt);}
.swe-business-stage .container{position:relative;z-index:1;max-width:1180px;}
.swe-business-stage-glow{position:absolute;border-radius:50%;filter:blur(105px);pointer-events:none;opacity:.42;}
.swe-business-stage-glow.g1{width:420px;height:420px;top:-220px;right:-150px;background:radial-gradient(circle,rgba(42,75,222,.14),transparent 70%);}
.swe-business-stage-glow.g2{width:380px;height:380px;bottom:-220px;left:-130px;background:radial-gradient(circle,rgba(124,92,255,.11),transparent 70%);}
.swe-business-stage-head{max-width:900px;margin:0 auto 48px;text-align:center;}
.swe-business-stage-head h2{max-width:840px;margin:0 auto 18px;font-size:clamp(2rem,3.5vw,2.75rem);line-height:1.2;color:var(--navy-900);letter-spacing:-.02em;}
.swe-business-stage-head h2 span{
  background:linear-gradient(135deg,var(--blue-600),var(--violet-500));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.swe-business-stage-head p{max-width:850px;margin:0 auto;color:var(--gray-600);font-size:1rem;line-height:1.72;}
.swe-business-stage-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;align-items:stretch;}
.swe-business-stage-card{
  position:relative;overflow:hidden;min-height:500px;padding:32px 30px 30px;display:flex;flex-direction:column;
  background:#fff;border:1px solid var(--gray-200);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);
  transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s ease,border-color .3s ease;
}
.swe-business-stage-card::before{
  content:'';position:absolute;left:0;right:0;top:0;height:3px;opacity:0;
  background:linear-gradient(90deg,var(--blue-600),var(--violet-500),var(--cyan-400));transition:opacity .3s ease;
}
.swe-business-stage-card:hover{transform:translateY(-4px);border-color:rgba(42,75,222,.22);box-shadow:0 22px 46px rgba(10,15,36,.1);}
.swe-business-stage-card:hover::before{opacity:1;}
.swe-business-stage-number{align-self:flex-end;margin-bottom:12px;font-family:'Sora',sans-serif;font-size:.7rem;font-weight:700;letter-spacing:.1em;color:var(--gray-400);}
.swe-business-stage-card h3{margin:0 0 13px;color:var(--navy-900);font-size:1.14rem;line-height:1.35;}
.swe-business-stage-card p{margin:0 0 24px;color:var(--gray-600);font-size:.9rem;line-height:1.68;}
.swe-business-stage-list{display:flex;flex-direction:column;gap:12px;margin-top:auto;padding-top:21px;border-top:1px solid var(--gray-200);}
.swe-business-stage-list li{position:relative;padding-left:23px;color:var(--gray-700);font-size:.86rem;line-height:1.48;}
.swe-business-stage-list li::before{
  content:'\2713';position:absolute;left:0;top:2px;width:14px;height:14px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;border:1px solid rgba(42,75,222,.3);color:var(--blue-600);
  font-size:.58rem;font-weight:800;line-height:1;
}

@media (max-width:900px){
  .swe-business-stage-grid{grid-template-columns:1fr;max-width:720px;margin:0 auto;}
  .swe-business-stage-card{min-height:0;}
}
@media (max-width:640px){
  .swe-business-stage{padding:64px 0 72px;}
  .swe-business-stage-head{margin-bottom:34px;}
  .swe-business-stage-head h2{font-size:clamp(1.75rem,8vw,2.2rem);}
  .swe-business-stage-head p{font-size:.94rem;}
  .swe-business-stage-grid{gap:18px;}
  .swe-business-stage-card{padding:27px 22px 25px;}
  .swe-business-stage-number{margin-bottom:8px;}
}

/* ===================== Web Development hero ===================== */
.web-hero{
  position:relative;overflow:hidden;padding:calc(var(--header-h) + 60px) 0 54px;
  background:linear-gradient(135deg,#fff 0%,#f8fbff 52%,#edf5ff 100%);
}
.web-hero::after{
  content:'';position:absolute;z-index:0;left:-8%;right:-8%;bottom:-52%;height:62%;border-radius:50% 50% 0 0;
  background:rgba(214,230,255,.42);border-top:1px solid rgba(42,75,222,.08);pointer-events:none;
}
.web-hero-grid{
  position:absolute;z-index:0;inset:var(--header-h) 0 0;pointer-events:none;opacity:.5;
  background-image:linear-gradient(rgba(42,75,222,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(42,75,222,.04) 1px,transparent 1px);
  background-size:64px 64px;mask-image:radial-gradient(ellipse 54% 62% at 78% 40%,#000,transparent 82%);
  -webkit-mask-image:radial-gradient(ellipse 54% 62% at 78% 40%,#000,transparent 82%);
}
.web-hero-glow{position:absolute;z-index:0;border-radius:50%;filter:blur(95px);pointer-events:none;}
.web-hero-glow.glow-left{width:420px;height:420px;left:-240px;top:110px;background:rgba(42,75,222,.1);}
.web-hero-glow.glow-right{width:620px;height:620px;right:-180px;top:40px;background:rgba(73,146,255,.2);}
.web-hero-inner{position:relative;z-index:1;}
.web-hero-layout{display:grid;grid-template-columns:minmax(0,1.03fr) minmax(0,.97fr);gap:24px;align-items:center;min-height:560px;}
.web-hero-copy{position:relative;z-index:2;max-width:640px;padding:10px 0 0;}
.web-hero-badge{
  display:inline-flex;align-items:center;gap:10px;margin-bottom:28px;padding:9px 16px;border-radius:999px;
  color:var(--navy-800);background:rgba(255,255,255,.82);border:1px solid rgba(42,75,222,.15);
  box-shadow:0 8px 24px rgba(42,75,222,.1);font-family:'Sora',sans-serif;font-size:.72rem;font-weight:700;letter-spacing:.02em;text-transform:uppercase;
}
.web-hero-badge > span{width:7px;height:7px;border-radius:50%;background:var(--blue-500);box-shadow:0 0 0 5px rgba(42,75,222,.08);}
.web-hero-copy h1{margin:0;font-size:clamp(2.55rem,3.6vw,3.25rem);line-height:1.08;letter-spacing:-.045em;color:var(--navy-900);}
.web-hero-copy h1 > span{display:block;}
.web-hero-title-accent{
  background:linear-gradient(110deg,#0873e8,var(--blue-600));-webkit-background-clip:text;background-clip:text;color:transparent;
}
.web-hero-rule{display:block;width:58px;height:3px;margin:27px 0 26px;border-radius:3px;background:linear-gradient(90deg,#0873e8,var(--blue-500));}
.web-hero-copy p{max-width:620px;margin:0;color:var(--navy-700);font-size:1rem;line-height:1.8;}
.web-hero-actions{display:flex;align-items:center;gap:18px;margin-top:30px;}
.web-hero-primary{min-width:228px;justify-content:center;color:#fff;background:linear-gradient(110deg,#0873e8,var(--blue-600));box-shadow:0 14px 30px rgba(42,75,222,.22);}
.web-hero-primary:hover{transform:translateY(-2px);box-shadow:0 18px 38px rgba(42,75,222,.3);}
.web-hero-visual{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;min-width:0;}
.web-hero-visual img{position:relative;z-index:2;width:118%;max-width:none;margin-right:-13%;filter:drop-shadow(0 24px 34px rgba(18,63,144,.16));}
.web-hero-orbit{position:absolute;z-index:1;border:1px solid rgba(42,75,222,.16);border-radius:50%;pointer-events:none;}
.web-hero-orbit.orbit-one{width:112%;aspect-ratio:1;}
.web-hero-orbit.orbit-two{width:88%;aspect-ratio:1;border-style:dashed;}
.web-hero-benefits{
  position:relative;z-index:2;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:0;margin-top:28px;
  padding:18px 0 0;border-top:1px solid rgba(42,75,222,.09);
}
.web-hero-benefit{display:grid;grid-template-columns:54px minmax(0,1fr);align-items:center;gap:14px;min-height:72px;padding:0 22px;border-right:1px solid rgba(28,44,96,.12);}
.web-hero-benefit:first-child{padding-left:0;}
.web-hero-benefit:last-child{padding-right:0;border-right:0;}
.web-benefit-icon{display:grid;place-items:center;width:52px;height:52px;border-radius:12px;color:#0873e8;background:rgba(255,255,255,.9);border:1px solid rgba(42,75,222,.11);box-shadow:0 9px 22px rgba(42,75,222,.1);}
.web-benefit-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.web-hero-benefit strong,.web-hero-benefit small{display:block;}
.web-hero-benefit strong{margin-bottom:6px;color:var(--navy-900);font-family:'Sora',sans-serif;font-size:.84rem;line-height:1.3;}
.web-hero-benefit small{color:var(--gray-600);font-size:.72rem;line-height:1.55;}

@media (min-width:901px){
  .web-hero-copy h1 > span{white-space:nowrap;}
}

@media (max-width:1080px){
  .web-hero-layout{grid-template-columns:1fr .85fr;gap:14px;}
  .web-hero-copy h1{font-size:clamp(2.45rem,4vw,3rem);}
  .web-hero-benefit{grid-template-columns:46px minmax(0,1fr);padding:0 14px;gap:10px;}
  .web-benefit-icon{width:44px;height:44px;}
  .web-benefit-icon svg{width:23px;height:23px;}
}
@media (max-width:900px){
  .web-hero{padding-top:calc(var(--header-h) + 46px);}
  .web-hero-layout{grid-template-columns:1fr;gap:20px;text-align:center;}
  .web-hero-copy{max-width:760px;margin:0 auto;}
  .web-hero-copy h1{font-size:clamp(2.7rem,8vw,4rem);}
  .web-hero-rule{margin-left:auto;margin-right:auto;}
  .web-hero-copy p{margin-left:auto;margin-right:auto;}
  .web-hero-actions{justify-content:center;}
  .web-hero-visual{max-width:680px;margin:0 auto;}
  .web-hero-visual img{width:105%;margin-right:0;}
  .web-hero-benefits{grid-template-columns:1fr 1fr;gap:20px 0;margin-top:8px;}
  .web-hero-benefit:nth-child(2){border-right:0;}
}
@media (max-width:600px){
  .web-hero{padding:calc(var(--header-h) + 34px) 0 46px;}
  .web-hero-badge{margin-bottom:22px;padding:8px 13px;font-size:.63rem;}
  .web-hero-copy h1{font-size:clamp(2.2rem,11vw,3rem);line-height:1.1;}
  .web-hero-copy p{font-size:.94rem;line-height:1.7;}
  .web-hero-actions{flex-direction:column;gap:12px;}
  .web-hero-actions .btn{width:100%;min-width:0;}
  .web-hero-visual{margin-top:12px;}
  .web-hero-visual img{width:122%;max-width:620px;}
  .web-hero-benefits{grid-template-columns:1fr;gap:0;padding-top:10px;}
  .web-hero-benefit,.web-hero-benefit:first-child,.web-hero-benefit:last-child{padding:16px 0;border-right:0;border-bottom:1px solid rgba(28,44,96,.1);}
  .web-hero-benefit:last-child{border-bottom:0;}
  .web-hero-benefit strong{font-size:.9rem;}
  .web-hero-benefit small{font-size:.78rem;}
}

/* ===================== Web Development expertise ===================== */
.web-excellence{padding:96px 0 100px;background:#fff;}
.web-excellence-head{max-width:900px;margin:0 auto 52px;text-align:center;}
.web-excellence-head h2{margin:0 0 16px;font-size:clamp(2rem,3.4vw,2.7rem);line-height:1.2;letter-spacing:-.025em;color:var(--navy-900);}
.web-excellence-head p{max-width:850px;margin:0 auto 12px;color:var(--gray-600);font-size:1rem;line-height:1.72;}
.web-excellence-head p:last-child{margin-bottom:0;}
.web-excellence-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));}
.web-excellence-card{position:relative;min-height:230px;padding:38px 36px 34px;border-right:1px solid var(--gray-200);border-bottom:1px solid var(--gray-200);}
.web-excellence-card:nth-child(3n){border-right:0;}
.web-excellence-card:nth-child(n+4){border-bottom:0;}
.web-excellence-card::before{
  content:'';position:absolute;inset:0;z-index:0;padding:2px;pointer-events:none;opacity:0;
  background:linear-gradient(125deg,var(--blue-600),#852cff 48%,var(--pink-500));
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;transition:opacity .28s ease;
}
.web-excellence-card h3,.web-excellence-card p{position:relative;z-index:1;}
.web-excellence-card h3{margin:0 0 13px;color:var(--navy-900);font-size:1.15rem;line-height:1.4;transition:color .25s ease;}
.web-excellence-card p{margin:0;color:var(--gray-600);font-size:.9rem;line-height:1.7;}
.web-excellence-card{transition:background .25s ease,transform .25s ease,box-shadow .28s ease;}
.web-excellence-card:hover{z-index:2;background:#f7f8fd;transform:translateY(-3px);box-shadow:0 18px 40px rgba(42,75,222,.1);}
.web-excellence-card:hover::before{opacity:1;}
.web-excellence-card:hover h3{
  background:linear-gradient(110deg,var(--blue-600),#8b2cff 52%,var(--pink-500));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.web-excellence-cta{margin-top:64px;}

/* SaaS services reuse the web-excellence grid and interaction system. */
.saas-services{padding-top:104px;}
.saas-services .web-excellence-head{max-width:980px;}
.saas-services .web-excellence-head h2{max-width:900px;margin-left:auto;margin-right:auto;}
.saas-services .web-excellence-head p{max-width:900px;}
.saas-services-grid .web-excellence-card:nth-child(n+4){border-bottom:1px solid var(--gray-200);}
.saas-services-grid .web-excellence-card:nth-child(n+7){border-bottom:0;}
.saas-service-cta-card{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:21px;text-align:center;overflow:hidden;
  background:linear-gradient(135deg,#2b12d6 0%,#171064 66%,#0d0d46 100%);
}
.saas-service-cta-card::before{display:none;}
.saas-service-cta-card::after{
  content:"";position:absolute;width:270px;height:150px;right:-65px;top:-82px;border-radius:50%;
  background:linear-gradient(145deg,#852cff,var(--pink-500));opacity:.9;
}
.saas-service-cta-card h3{max-width:300px;margin:0;color:#fff;font-size:1.3rem;line-height:1.48;}
.saas-service-cta-card .btn{position:relative;z-index:1;justify-content:center;min-width:235px;padding:13px 20px;font-size:.82rem;}
.saas-service-cta-card:hover{background:linear-gradient(135deg,#3216e3 0%,#171064 66%,#0d0d46 100%);}
.saas-service-cta-card:hover h3{background:none;-webkit-background-clip:border-box;background-clip:border-box;color:#fff;}

@media (max-width:900px){
  .web-excellence-grid{grid-template-columns:1fr 1fr;}
  .web-excellence-card,.web-excellence-card:nth-child(3n),.web-excellence-card:nth-child(n+4){border-right:0;border-bottom:0;}
  .web-excellence-card:nth-child(odd){border-right:1px solid var(--gray-200);}
  .web-excellence-card:nth-child(-n+4){border-bottom:1px solid var(--gray-200);}
  .saas-services-grid .web-excellence-card,
  .saas-services-grid .web-excellence-card:nth-child(3n),
  .saas-services-grid .web-excellence-card:nth-child(n+4){border-bottom:1px solid var(--gray-200);}
  .saas-services-grid .web-excellence-card:last-child{border-bottom:0;}
}
@media (max-width:600px){
  .web-excellence{padding:64px 0 72px;}
  .web-excellence-head{margin-bottom:34px;}
  .web-excellence-head h2{font-size:clamp(1.8rem,8vw,2.25rem);}
  .web-excellence-head p{font-size:.94rem;}
  .web-excellence-grid{grid-template-columns:1fr;}
  .web-excellence-card,.web-excellence-card:nth-child(3n),.web-excellence-card:nth-child(n+4),.web-excellence-card:nth-child(odd),.web-excellence-card:nth-child(-n+4){
    min-height:0;padding:27px 12px;border-right:0;border-bottom:1px solid var(--gray-200);
  }
  .web-excellence-card:last-child{border-bottom:0;}
  .web-excellence-cta{margin-top:42px;}
  .saas-services{padding-top:70px;}
  .saas-service-cta-card{min-height:270px!important;padding:38px 22px!important;}
  .saas-service-cta-card h3{font-size:1.2rem;}
  .saas-service-cta-card .btn{width:100%;min-width:0;}
}

/* ===================== Emerging web technologies ===================== */
.web-emerging-tech{padding:96px 0 104px;background:var(--bg-alt);}
.web-emerging-head{max-width:900px;margin:0 auto 48px;text-align:center;}
.web-emerging-head h2{max-width:820px;margin:0 auto 16px;font-size:clamp(2rem,3.4vw,2.7rem);line-height:1.2;letter-spacing:-.025em;color:var(--navy-900);}
.web-emerging-head p{max-width:830px;margin:0 auto;color:var(--gray-600);font-size:1rem;line-height:1.72;}
.web-emerging-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px 28px;}
.web-emerging-card{
  min-height:220px;padding:32px 34px;border-radius:18px;background:#fff;border:1px solid var(--gray-200);
  box-shadow:0 8px 24px rgba(10,15,36,.025);transition:background .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.web-emerging-card:hover{background:#e8ebf4;border-color:#e8ebf4;box-shadow:none;}
.web-emerging-card h3{margin:0 0 12px;color:var(--navy-900);font-size:1.18rem;line-height:1.35;}
.web-emerging-card p{margin:0;color:var(--gray-600);font-size:.92rem;line-height:1.72;}
.web-emerging-card a{color:inherit;text-decoration:none;font-weight:500;transition:color .2s ease;}
.web-emerging-card a:hover{color:var(--blue-600);}

@media (max-width:760px){
  .web-emerging-tech{padding:64px 0 72px;}
  .web-emerging-head{margin-bottom:34px;}
  .web-emerging-head h2{font-size:clamp(1.8rem,8vw,2.25rem);}
  .web-emerging-head p{font-size:.94rem;}
  .web-emerging-grid{grid-template-columns:1fr;gap:17px;}
  .web-emerging-card{min-height:0;padding:27px 23px;}
}

/* ===================== Web solution types ===================== */
.web-solution-types{padding:96px 0 104px;background:#f2f4f9;}
.web-solution-types-head{max-width:900px;margin:0 auto 48px;text-align:center;}
.web-solution-types-head h2{margin:0 0 16px;font-size:clamp(2rem,3.4vw,2.7rem);line-height:1.2;letter-spacing:-.025em;color:var(--navy-900);}
.web-solution-types-head p{max-width:850px;margin:0 auto;color:var(--gray-600);font-size:1rem;line-height:1.72;}
.web-solution-types-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px 30px;}
.web-solution-type-card{
  min-height:180px;padding:29px 31px;border-radius:17px;background:#fff;border:1px solid var(--gray-200);
  box-shadow:0 7px 20px rgba(10,15,36,.025);transition:background .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.web-solution-type-card:hover{background:#e8ebf4;border-color:#e8ebf4;box-shadow:none;}
.web-solution-type-card h3{margin:0 0 11px;color:var(--navy-900);font-size:1.12rem;line-height:1.4;}
.web-solution-type-card p{margin:0;color:var(--gray-600);font-size:.89rem;line-height:1.7;}
.web-solution-type-card a{color:inherit;text-decoration:none;font-weight:500;transition:color .2s ease;}
.web-solution-type-card a:hover{color:var(--blue-600);}

/* ===================== Web development business impact ===================== */
.web-business-impact{padding:92px 0 104px;background:#fff;}
.web-business-impact-head{max-width:880px;margin:0 auto 42px;text-align:center;}
.web-business-impact-head h2{max-width:820px;margin:0 auto 16px;font-size:clamp(2rem,3.4vw,2.65rem);line-height:1.2;letter-spacing:-.025em;color:var(--navy-900);}
.web-business-impact-head p{max-width:820px;margin:0 auto;color:var(--gray-600);font-size:1rem;line-height:1.72;}
.web-impact-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;max-width:1060px;margin:0 auto;}
.web-impact-item{background:var(--bg-alt);border:1px solid transparent;border-radius:15px;overflow:hidden;transition:border-color .25s ease,box-shadow .25s ease,background .25s ease;}
.web-impact-item[open]{background:#fff;border-color:var(--gray-200);box-shadow:0 14px 34px rgba(10,15,36,.07);}
.web-impact-item summary{display:flex;align-items:center;gap:14px;padding:20px 22px;color:var(--navy-900);font-family:'Sora',sans-serif;font-size:.92rem;font-weight:700;line-height:1.4;cursor:pointer;list-style:none;}
.web-impact-item summary::-webkit-details-marker{display:none;}
.web-impact-item summary > span:nth-child(2){flex:1;}
.web-impact-check{flex:none;width:22px;height:22px;border:1.5px solid var(--navy-800);border-radius:50%;display:grid;place-items:center;}
.web-impact-check svg{width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}
.web-impact-chevron{flex:none;width:17px;height:17px;fill:none;stroke:var(--gray-600);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:transform .25s ease,color .25s ease;}
.web-impact-item[open] .web-impact-chevron{transform:rotate(180deg);color:var(--blue-600);}
.web-impact-item > p{margin:0;padding:0 22px 22px 58px;color:var(--gray-600);font-size:.89rem;line-height:1.7;}

@media (max-width:760px){
  .web-solution-types,.web-business-impact{padding:64px 0 72px;}
  .web-solution-types-head,.web-business-impact-head{margin-bottom:34px;}
  .web-solution-types-head h2,.web-business-impact-head h2{font-size:clamp(1.8rem,8vw,2.25rem);}
  .web-solution-types-head p,.web-business-impact-head p{font-size:.94rem;}
  .web-solution-types-grid,.web-impact-grid{grid-template-columns:1fr;gap:16px;}
  .web-solution-type-card{min-height:0;padding:27px 23px;}
  .web-impact-item summary{padding:18px 17px;font-size:.88rem;}
  .web-impact-item > p{padding:0 17px 19px 53px;}
}

/* ===================== Web technology stack combinations ===================== */
.web-stack-combinations{padding:96px 0 88px;background:var(--bg-alt);overflow:hidden;}
.web-stack-head{max-width:1100px;margin:0 auto 44px;text-align:center;}
.web-stack-head h2{max-width:1100px;margin:0 auto 16px;font-size:clamp(2rem,3.4vw,2.7rem);line-height:1.2;letter-spacing:-.025em;color:var(--navy-900);}
.web-stack-head h2 > span{display:block;white-space:nowrap;}
.web-stack-head p{max-width:850px;margin:0 auto;color:var(--gray-600);font-size:1rem;line-height:1.72;}
.web-stack-track-wrap{overflow:hidden;padding:4px 0 8px;}
.web-stack-track{gap:18px;padding:4px max(24px,calc((100vw - 1180px)/2 + 24px)) 22px;scroll-padding-inline:max(24px,calc((100vw - 1180px)/2 + 24px));}
.web-stack-card{
  position:relative;flex:0 0 330px;min-height:285px;padding:30px 27px 28px;scroll-snap-align:start;
  background:#fff;border:1px solid var(--gray-200);border-radius:17px;box-shadow:0 8px 22px rgba(10,15,36,.025);
  transition:background .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.web-stack-card:hover{background:#e8ebf4;border-color:#e8ebf4;box-shadow:none;}
.web-stack-number{display:block;margin-bottom:16px;color:var(--blue-600);font-family:'Sora',sans-serif;font-size:.7rem;font-weight:800;letter-spacing:.1em;}
.web-stack-card h3{margin:0 0 8px;color:var(--navy-900);font-size:1.15rem;line-height:1.35;}
.web-stack-tools{display:block;min-height:42px;margin-bottom:13px;color:var(--navy-700);font-family:'Sora',sans-serif;font-size:.78rem;font-weight:600;line-height:1.45;}
.web-stack-card p{margin:0;color:var(--gray-600);font-size:.86rem;line-height:1.68;}
.web-stack-footer{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-top:8px;}
.web-stack-cta{color:#fff;background:linear-gradient(105deg,var(--pink-500),#ef145f);box-shadow:0 12px 28px rgba(239,77,138,.25);}
.web-stack-cta:hover{transform:translateY(-2px);box-shadow:0 17px 34px rgba(239,77,138,.34);}
.web-stack-footer .arrow-btn{background:#fff;color:var(--navy-800);border-color:rgba(10,15,36,.22);}
.web-stack-footer .arrow-btn:hover,
.web-stack-footer .arrow-btn.is-active{background:var(--navy-900);color:#fff;border-color:var(--navy-900);}
.web-stack-footer .arrow-btn svg{stroke:currentColor;}

@media (max-width:760px){
  .web-stack-combinations{padding:64px 0 66px;}
  .web-stack-head{margin-bottom:32px;}
  .web-stack-head h2{font-size:clamp(1.8rem,8vw,2.25rem);}
  .web-stack-head h2 > span{white-space:normal;}
  .web-stack-head p{font-size:.94rem;}
  .web-stack-track{padding-left:24px;padding-right:24px;scroll-padding-inline:24px;}
  .web-stack-card{flex-basis:84vw;min-height:0;padding:27px 23px;}
  .web-stack-footer{align-items:stretch;flex-direction:column;margin-top:10px;}
  .web-stack-cta{width:100%;justify-content:center;}
  .web-stack-footer .carousel-arrows{justify-content:flex-end;}
}

/* ===================== SaaS development hero ===================== */
.saas-hero{
  position:relative;overflow:hidden;padding:calc(var(--header-h) + 42px) 0 40px;
  background:linear-gradient(132deg,#fff 0%,#f8fbff 44%,#eaf3ff 100%);
}
.saas-hero::after{
  content:"";position:absolute;left:-8%;right:-8%;bottom:-235px;height:365px;border-radius:50%;
  border:1px solid rgba(42,75,222,.08);background:rgba(255,255,255,.34);pointer-events:none;
}
.saas-hero-grid{
  position:absolute;inset:0;opacity:.28;pointer-events:none;
  background-image:linear-gradient(rgba(42,75,222,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(42,75,222,.045) 1px,transparent 1px);
  background-size:68px 68px;mask-image:linear-gradient(90deg,transparent 3%,#000 48%,#000 100%);
}
.saas-hero-glow{position:absolute;z-index:0;border-radius:50%;filter:blur(95px);pointer-events:none;}
.saas-hero-glow.glow-left{width:430px;height:430px;left:-260px;top:70px;background:rgba(42,75,222,.1);}
.saas-hero-glow.glow-right{width:670px;height:670px;right:-160px;top:0;background:rgba(55,144,255,.2);}
.saas-hero .container{max-width:1380px;}
.saas-hero-inner{position:relative;z-index:1;}
.saas-hero-layout{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:8px;align-items:center;min-height:575px;}
.saas-hero-copy{position:relative;z-index:2;max-width:590px;padding:4px 0 0;}
.saas-hero-badge{
  display:inline-flex;align-items:center;gap:9px;margin-bottom:27px;padding:9px 15px;border:1px solid rgba(42,75,222,.18);
  border-radius:999px;background:rgba(255,255,255,.75);box-shadow:0 7px 20px rgba(42,75,222,.08);backdrop-filter:blur(8px);
  color:#075ad8;font-family:'Sora',sans-serif;font-size:.68rem;font-weight:700;letter-spacing:.015em;text-transform:uppercase;
}
.saas-hero-badge svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linejoin:round;}
.saas-hero-copy h1{margin:0;color:var(--navy-900);font-size:clamp(3rem,4.25vw,4rem);line-height:1.06;letter-spacing:-.052em;}
.saas-hero-copy h1 > span{display:block;white-space:nowrap;}
.saas-hero-copy h1 strong{font-weight:inherit;color:#0969e8;}
.saas-hero-rule{display:block;width:58px;height:3px;margin:25px 0 24px;border-radius:4px;background:linear-gradient(90deg,#0873e8,var(--blue-500));}
.saas-hero-copy p{max-width:570px;margin:0;color:var(--navy-700);font-size:1rem;line-height:1.78;}
.saas-hero-actions{display:flex;align-items:center;gap:15px;margin-top:29px;}
.saas-hero-primary{min-width:230px;justify-content:center;color:#fff;border-radius:9px;background:linear-gradient(110deg,#0873e8,#0759df);box-shadow:0 14px 30px rgba(18,96,221,.24);}
.saas-hero-primary:hover{transform:translateY(-2px);box-shadow:0 18px 38px rgba(18,96,221,.32);}
.saas-hero-secondary{min-width:190px;justify-content:center;padding:13px 22px;border:1.5px solid #0969e8;border-radius:9px;background:rgba(255,255,255,.7);color:#0759c9;box-shadow:0 8px 22px rgba(42,75,222,.06);}
.saas-hero-secondary:hover{transform:translateY(-2px);background:#fff;box-shadow:0 13px 28px rgba(42,75,222,.12);}
.saas-play{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.8;}
.saas-play path{fill:currentColor;stroke:none;}
.saas-hero-visual{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;min-width:0;}
.saas-hero-visual img{
  position:relative;z-index:1;width:121%;max-width:none;margin-right:-17%;border-radius:32px;
  mix-blend-mode:multiply;filter:drop-shadow(0 25px 34px rgba(15,72,162,.15));
  -webkit-mask-image:radial-gradient(ellipse 92% 92% at 50% 50%,#000 72%,transparent 100%);
  mask-image:radial-gradient(ellipse 92% 92% at 50% 50%,#000 72%,transparent 100%);
}
.saas-hero-features{
  position:relative;z-index:2;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));margin-top:4px;padding:21px 17px;
  border:1px solid rgba(42,75,222,.13);border-radius:20px;background:rgba(255,255,255,.72);box-shadow:0 18px 45px rgba(36,80,170,.08);backdrop-filter:blur(14px);
}
.saas-hero-feature{display:grid;grid-template-columns:48px minmax(0,1fr);align-items:start;gap:12px;min-width:0;padding:0 17px;border-right:1px solid rgba(28,44,96,.13);}
.saas-hero-feature:last-child{border-right:0;}
.saas-feature-icon{display:grid;place-items:center;width:48px;height:48px;border:1px solid rgba(42,75,222,.13);border-radius:12px;background:linear-gradient(145deg,#fff,#edf4ff);color:#0869e8;box-shadow:0 7px 18px rgba(42,75,222,.08);}
.saas-feature-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.saas-hero-feature strong,.saas-hero-feature small{display:block;}
.saas-hero-feature strong{margin:2px 0 6px;color:var(--navy-900);font-family:'Sora',sans-serif;font-size:.77rem;line-height:1.35;}
.saas-hero-feature small{color:var(--gray-600);font-size:.67rem;line-height:1.55;}
.page-saas .contact{position:relative;}

@media (max-width:1120px){
  .saas-hero-layout{grid-template-columns:minmax(0,.94fr) minmax(0,1.06fr);}
  .saas-hero-copy h1{font-size:clamp(2.7rem,4.8vw,3.55rem);}
  .saas-hero-feature{grid-template-columns:42px minmax(0,1fr);gap:9px;padding:0 11px;}
  .saas-feature-icon{width:42px;height:42px;}
  .saas-feature-icon svg{width:23px;height:23px;}
}
@media (max-width:920px){
  .saas-hero{padding-top:calc(var(--header-h) + 42px);}
  .saas-hero-layout{grid-template-columns:1fr;gap:14px;text-align:center;}
  .saas-hero-copy{max-width:760px;margin:0 auto;}
  .saas-hero-copy h1{font-size:clamp(2.8rem,8vw,4.15rem);}
  .saas-hero-rule{margin-left:auto;margin-right:auto;}
  .saas-hero-copy p{margin-left:auto;margin-right:auto;}
  .saas-hero-actions{justify-content:center;}
  .saas-hero-visual{max-width:790px;margin:0 auto;}
  .saas-hero-visual img{width:106%;margin-right:0;}
  .saas-hero-features{grid-template-columns:repeat(2,minmax(0,1fr));gap:0;padding:10px 20px;}
  .saas-hero-feature{padding:18px;border-right:0;border-bottom:1px solid rgba(28,44,96,.11);}
  .saas-hero-feature:nth-child(odd){border-right:1px solid rgba(28,44,96,.11);}
  .saas-hero-feature:last-child{grid-column:1/-1;border-right:0;border-bottom:0;max-width:50%;width:100%;margin:0 auto;}
}
@media (max-width:640px){
  .saas-hero{padding:calc(var(--header-h) + 32px) 0 42px;}
  .saas-hero-badge{margin-bottom:21px;padding:8px 12px;font-size:.61rem;}
  .saas-hero-copy h1{font-size:clamp(2.25rem,11.6vw,3.1rem);line-height:1.08;}
  .saas-hero-copy h1 > span{white-space:normal;}
  .saas-hero-copy p{font-size:.94rem;line-height:1.7;}
  .saas-hero-actions{flex-direction:column;gap:11px;}
  .saas-hero-actions .btn{width:100%;min-width:0;}
  .saas-hero-visual{margin-top:11px;}
  .saas-hero-visual img{width:125%;max-width:650px;}
  .saas-hero-features{grid-template-columns:1fr;padding:7px 18px;}
  .saas-hero-feature,.saas-hero-feature:nth-child(odd),.saas-hero-feature:last-child{grid-column:auto;max-width:none;padding:17px 0;border-right:0;border-bottom:1px solid rgba(28,44,96,.11);}
  .saas-hero-feature:last-child{border-bottom:0;}
  .saas-hero-feature strong{font-size:.84rem;}
  .saas-hero-feature small{font-size:.73rem;}
}

/* ===================== Home hero / moving product showcase ===================== */
.home-hero{
  isolation:isolate;min-height:min(1000px,100svh);padding:calc(var(--header-h) + 54px) 0 44px;
  background:
    radial-gradient(circle at 76% 44%,rgba(17,85,255,.28),transparent 24%),
    radial-gradient(circle at 92% 76%,rgba(169,23,255,.27),transparent 28%),
    radial-gradient(circle at 20% 104%,rgba(0,135,255,.18),transparent 40%),
    linear-gradient(118deg,#020611 0%,#03081a 48%,#050622 72%,#10072f 100%);
}
.home-hero::after{
  content:"";position:absolute;z-index:-1;inset:auto -10% -34% 18%;height:62%;pointer-events:none;opacity:.5;
  background:repeating-radial-gradient(ellipse at 60% 0,transparent 0 20px,rgba(39,133,255,.2) 21px 22px,transparent 23px 35px);
  transform:rotate(-6deg);filter:blur(.2px);mask-image:linear-gradient(to bottom,transparent,#000 22%,transparent 82%);
}
.home-hero-shell{position:relative;z-index:2;max-width:1460px;}
.home-hero-layout{display:grid;grid-template-columns:minmax(0,.88fr) minmax(580px,1.12fr);align-items:center;gap:18px;}
.home-hero-copy{position:relative;z-index:5;padding-top:12px;}
.home-hero-kicker{
  display:inline-flex;align-items:center;gap:12px;margin-bottom:24px;padding:10px 18px;border:1px solid rgba(111,54,255,.72);
  border-radius:999px;background:rgba(17,12,53,.48);box-shadow:inset 0 0 18px rgba(90,42,255,.08);color:#f4f5ff;
  font-size:.84rem;line-height:1;white-space:nowrap;backdrop-filter:blur(10px);
}
.home-hero-kicker i{width:4px;height:4px;border-radius:50%;background:#7983ae;}
.home-kicker-star{color:#9c77ff;font-size:1rem;text-shadow:0 0 16px rgba(142,83,255,.9);}
.home-hero-title{
  max-width:690px;margin:0;color:#fff;font-size:clamp(3rem,4.25vw,4.25rem);font-weight:700;letter-spacing:-.045em;line-height:1.15;
  text-wrap:balance;text-shadow:0 3px 22px rgba(0,0,0,.3);
}
.home-hero-title span{
  display:inline-block;color:transparent;background:linear-gradient(90deg,#15d8ed 0%,#169cf7 32%,#3154f5 67%,#a84cff 100%);
  -webkit-background-clip:text;background-clip:text;text-shadow:none;
}
.home-hero-text{max-width:590px;margin:26px 0 0;color:#c5ccdc;font-size:1.03rem;line-height:1.72;}
.home-hero-actions{display:flex;align-items:center;gap:18px;margin-top:30px;}
.home-hero-primary,.home-hero-secondary{
  display:inline-flex;align-items:center;justify-content:center;gap:15px;min-height:58px;border-radius:999px;color:#fff;
  font-family:'Sora',sans-serif;font-size:.94rem;font-weight:600;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.home-hero-primary{padding:6px 8px 6px 26px;background:linear-gradient(100deg,#2438f2 0%,#148bea 55%,#20d4ec 100%);box-shadow:0 16px 38px rgba(8,117,238,.31);}
.home-hero-primary:hover{transform:translateY(-3px);box-shadow:0 20px 46px rgba(8,145,245,.42);}
.home-button-icon{display:grid;place-items:center;width:44px;height:44px;border-radius:50%;background:#fff;color:#1482dc;}
.home-button-icon svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.home-hero-secondary{padding:0 26px;border:1px solid rgba(37,143,255,.72);background:rgba(5,11,30,.42);backdrop-filter:blur(10px);}
.home-hero-secondary:hover{transform:translateY(-3px);border-color:#54dff2;box-shadow:0 16px 38px rgba(0,96,224,.22);}
.home-hero-secondary svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}

.home-hero-aurora{position:absolute;z-index:-2;border-radius:50%;filter:blur(85px);pointer-events:none;}
.home-hero-aurora-one{width:370px;height:370px;right:4%;top:17%;background:rgba(0,95,255,.22);animation:homeAurora 9s ease-in-out infinite;}
.home-hero-aurora-two{width:460px;height:360px;right:-8%;bottom:-15%;background:rgba(136,21,255,.3);animation:homeAurora 12s ease-in-out infinite reverse;}
.home-hero-grid{position:absolute;z-index:-3;inset:0;opacity:.12;background-image:linear-gradient(rgba(65,114,224,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(65,114,224,.14) 1px,transparent 1px);background-size:72px 72px;mask-image:radial-gradient(circle at 78% 44%,#000,transparent 50%);}
.home-hero-wave{position:absolute;z-index:-1;right:-5%;bottom:0;width:68%;height:34%;opacity:.6;background:radial-gradient(ellipse at 74% 86%,rgba(151,20,255,.38),transparent 45%);filter:blur(10px);pointer-events:none;}
@keyframes homeAurora{0%,100%{transform:translate3d(0,0,0) scale(1)}50%{transform:translate3d(-24px,18px,0) scale(1.12)}}

.home-hero-visual{position:relative;z-index:2;height:600px;min-width:0;}
.home-orbit-scene{position:absolute;left:50%;top:50%;width:700px;height:590px;transform:translate(-49%,-50%);}
.home-orbit-halo,.home-orbit-ring,.home-orbit-dot,.home-orbit-core,.home-orbit-card{position:absolute;}
.home-orbit-halo{left:50%;top:50%;border-radius:50%;transform:translate(-50%,-50%);}
.halo-one{width:390px;height:390px;background:radial-gradient(circle,rgba(15,98,255,.34),rgba(14,43,146,.13) 45%,transparent 70%);box-shadow:0 0 80px rgba(10,96,255,.23);}
.halo-two{width:292px;height:292px;border:22px solid rgba(20,66,192,.14);box-shadow:0 0 0 24px rgba(13,68,181,.08),0 0 70px rgba(0,139,255,.22);}
.home-orbit-ring{left:50%;top:50%;border-radius:50%;transform:translate(-50%,-50%);border:1px solid rgba(44,129,255,.62);}
.home-orbit-ring::after{content:"";position:absolute;width:7px;height:7px;border-radius:50%;background:#13c9ff;box-shadow:0 0 14px #13c9ff;}
.ring-one{width:430px;height:430px;animation:homeOrbitSpin 18s linear infinite;}
.ring-one::after{left:12%;top:12%;}
.ring-two{width:520px;height:520px;border-color:rgba(65,57,243,.48);animation:homeOrbitSpin 25s linear infinite reverse;}
.ring-two::after{right:8%;bottom:25%;background:#8760ff;box-shadow:0 0 14px #8760ff;}
.ring-three{width:610px;height:390px;border-color:rgba(10,173,255,.5);animation:homeOrbitSpinWide 22s linear infinite;}
.ring-three::after{left:4%;top:45%;}
.ring-four{width:670px;height:485px;border-style:dashed;border-color:rgba(42,95,255,.34);animation:homeOrbitSpinWide 34s linear infinite reverse;}
.ring-four::after{right:5%;top:35%;background:#8c54ff;box-shadow:0 0 18px #8c54ff;}
@keyframes homeOrbitSpin{from{transform:translate(-50%,-50%) rotate(0)}to{transform:translate(-50%,-50%) rotate(360deg)}}
@keyframes homeOrbitSpinWide{from{transform:translate(-50%,-50%) rotate(0)}to{transform:translate(-50%,-50%) rotate(-360deg)}}
.home-orbit-core{left:50%;top:50%;width:284px;height:284px;border-radius:50%;transform:translate(-50%,-50%);display:grid;place-items:center;background:linear-gradient(140deg,#203ee7,#254bff 48%,#0cc7ef);box-shadow:0 0 0 18px rgba(32,78,216,.14),0 0 0 36px rgba(16,72,189,.08),0 0 76px rgba(20,126,255,.5);animation:homeCorePulse 4s ease-in-out infinite;}
.home-orbit-disc{display:grid;place-items:center;width:58%;height:58%;border-radius:50%;background:#fff;box-shadow:0 10px 38px rgba(0,17,74,.28);}
.home-orbit-disc img{width:54%;height:auto;}
@keyframes homeCorePulse{0%,100%{filter:saturate(1);transform:translate(-50%,-50%) scale(1)}50%{filter:saturate(1.16);transform:translate(-50%,-50%) scale(1.025)}}
.home-orbit-dot{z-index:3;width:10px;height:10px;border-radius:50%;background:#12c9ff;box-shadow:0 0 15px #12c9ff;animation:homeDotPulse 2.4s ease-in-out infinite;}
.dot-one{left:11%;top:27%;}.dot-two{right:4%;top:28%;animation-delay:.6s}.dot-three{left:20%;bottom:15%;animation-delay:1.2s}.dot-four{right:15%;bottom:8%;background:#a952ff;box-shadow:0 0 17px #a952ff;animation-delay:1.8s}
@keyframes homeDotPulse{0%,100%{opacity:.45;transform:scale(.8)}50%{opacity:1;transform:scale(1.3)}}
.home-orbit-card{
  z-index:8;display:grid;grid-template-columns:50px minmax(0,1fr);align-items:center;gap:12px;min-width:220px;padding:12px 16px;
  border:1px solid rgba(84,85,201,.42);border-radius:17px;background:linear-gradient(120deg,rgba(7,14,44,.91),rgba(20,12,69,.84));
  box-shadow:0 16px 38px rgba(0,3,23,.4),inset 0 1px 0 rgba(255,255,255,.05);backdrop-filter:blur(15px);animation:homeCardFloat 5.2s ease-in-out infinite;
}
.home-orbit-card strong,.home-orbit-card small{display:block;white-space:nowrap;}
.home-orbit-card strong{color:#fff;font-family:'Sora',sans-serif;font-size:.82rem;font-weight:600;line-height:1.35;}
.home-orbit-card small{margin-top:5px;color:#aeb8d7;font-size:.72rem;}
.home-orbit-icon{display:grid;place-items:center;width:44px;height:44px;border-radius:12px;background:rgba(34,62,174,.3);color:#23c8ff;box-shadow:inset 0 0 16px rgba(24,117,255,.18);}
.home-orbit-icon svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.icon-twin,.icon-saas{color:#876cff}.icon-enterprise{color:#25bde9}.icon-cloud{color:#4b8cff}.icon-ai{color:#08c5ff}
.orbit-ai{left:32%;top:4%;animation-delay:-.7s}.orbit-cloud{right:-4%;top:34%;animation-delay:-1.6s}.orbit-twin{left:-2%;top:48%;animation-delay:-2.4s}.orbit-enterprise{right:-2%;bottom:13%;animation-delay:-3.2s}.orbit-saas{left:34%;bottom:1%;animation-delay:-4s}
@keyframes homeCardFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

.home-proof-row{
  position:relative;z-index:8;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));margin-top:8px;padding:22px 12px;border:1px solid rgba(57,80,169,.36);
  border-radius:26px;background:linear-gradient(100deg,rgba(4,20,52,.76),rgba(15,8,58,.72));box-shadow:0 22px 54px rgba(0,2,21,.24),inset 0 1px 0 rgba(255,255,255,.035);backdrop-filter:blur(17px);
}
.home-proof-item{display:grid;grid-template-columns:54px minmax(0,1fr);align-items:center;gap:14px;padding:0 24px;border-right:1px solid rgba(122,139,207,.18);}
.home-proof-item:last-child{border-right:0;}
.home-proof-icon{display:grid;place-items:center;width:54px;height:54px;border-radius:50%;background:linear-gradient(145deg,#124391,#2a27c9 72%,#5a20d5);color:#fff;box-shadow:inset 0 0 18px rgba(47,198,255,.16);}
.home-proof-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;}
.home-proof-item strong,.home-proof-item small{display:block;}
.home-proof-item strong{color:#f7f8ff;font-family:'Sora',sans-serif;font-size:.8rem;font-weight:600;line-height:1.35;}
.home-proof-item small{margin-top:6px;color:#aeb7d3;font-size:.68rem;line-height:1.4;}

.home-showcase{overflow:hidden;padding:34px 0 44px;background:linear-gradient(180deg,#edf2ff 0%,#f7f8ff 100%);border-top:1px solid rgba(67,87,168,.12);}
.home-showcase-track{display:flex;width:max-content;will-change:transform;animation:homeShowcaseMarquee 50s linear infinite;}
.home-showcase-group{display:flex;gap:24px;padding-right:24px;}
.home-showcase-card{width:clamp(300px,31vw,500px);aspect-ratio:512/341;overflow:hidden;border:1px solid rgba(37,65,146,.12);border-radius:24px;background:#fff;box-shadow:0 18px 40px rgba(41,64,126,.13);}
.home-showcase-card img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease;}
.home-showcase-card:hover img{transform:scale(1.025);}
.home-showcase:hover .home-showcase-track{animation-play-state:paused;}
@keyframes homeShowcaseMarquee{to{transform:translateX(-50%)}}

@media (max-width:1220px){
  .home-hero{min-height:auto;}
  .home-hero-shell{max-width:1200px;}
  .home-hero-layout{grid-template-columns:minmax(0,.9fr) minmax(530px,1.1fr);}
  .home-hero-title{font-size:clamp(2.8rem,4.4vw,3.6rem);}
  .home-orbit-scene{transform:translate(-50%,-50%) scale(.88);}
  .home-proof-item{grid-template-columns:47px minmax(0,1fr);gap:11px;padding:0 15px;}
  .home-proof-icon{width:47px;height:47px;}
}
@media (max-width:980px){
  .home-hero{padding:calc(var(--header-h) + 45px) 0 40px;}
  .home-hero-layout{grid-template-columns:1fr;gap:14px;text-align:center;}
  .home-hero-copy{max-width:760px;margin:0 auto;}
  .home-hero-title{max-width:760px;font-size:clamp(3.2rem,7vw,4.15rem);}
  .home-hero-text{margin-left:auto;margin-right:auto;}
  .home-hero-actions{justify-content:center;}
  .home-hero-visual{height:590px;}
  .home-orbit-scene{transform:translate(-50%,-50%) scale(.91);}
  .home-proof-row{grid-template-columns:repeat(2,minmax(0,1fr));padding:12px 20px;}
  .home-proof-item{padding:16px 20px;border-right:0;border-bottom:1px solid rgba(122,139,207,.15);}
  .home-proof-item:nth-child(odd){border-right:1px solid rgba(122,139,207,.15);}
  .home-proof-item:nth-child(n+3){border-bottom:0;}
}
@media (max-width:760px){
  .home-hero{padding:calc(var(--header-h) + 35px) 0 28px;}
  .home-hero-shell{width:100%;padding-left:18px;padding-right:18px;}
  .home-hero-layout,.home-hero-copy,.home-hero-visual{width:100%;min-width:0;max-width:100%;}
  .home-hero-kicker{justify-content:center;gap:6px;max-width:100%;margin-bottom:20px;padding:8px 10px;font-size:.61rem;white-space:normal;}
  .home-hero-title{width:100%;max-width:100%;font-size:clamp(1.78rem,8.2vw,2.25rem);line-height:1.16;letter-spacing:-.025em;overflow-wrap:break-word;}
  .home-hero-text{margin-top:21px;font-size:.92rem;line-height:1.7;}
  .home-hero-actions{flex-direction:column;gap:12px;margin-top:24px;}
  .home-hero-primary,.home-hero-secondary{width:100%;max-width:330px;min-height:54px;font-size:.86rem;}
  .home-hero-visual{height:auto;margin:36px 0 14px;overflow:visible;}
  .home-orbit-scene{position:relative;left:auto;top:auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px;width:100%;max-width:100%;height:auto;transform:none;}
  .home-orbit-halo,.home-orbit-ring,.home-orbit-dot{display:none;}
  .home-orbit-core{position:relative;grid-column:1/-1;left:auto;top:auto;width:172px;height:172px;margin:0 auto 13px;transform:none;animation:none;}
  .home-orbit-card,.orbit-ai,.orbit-cloud,.orbit-twin,.orbit-enterprise,.orbit-saas{position:relative;left:auto;right:auto;top:auto;bottom:auto;width:100%;max-width:100%;min-width:0;padding:10px;grid-template-columns:38px minmax(0,1fr);gap:8px;overflow:hidden;animation:none;}
  .home-orbit-card strong,.home-orbit-card small{white-space:normal;}
  .home-orbit-card strong{font-size:.7rem;}.home-orbit-card small{font-size:.62rem;}
  .home-orbit-icon{width:38px;height:38px;border-radius:10px;}.home-orbit-icon svg{width:21px;height:21px;}
  .orbit-saas{grid-column:1/-1;width:min(100%,240px);justify-self:center;}
  .home-proof-row{grid-template-columns:1fr;padding:8px 20px;border-radius:20px;}
  .home-proof-item{min-width:0;}
  .home-proof-item,.home-proof-item:nth-child(odd),.home-proof-item:nth-child(n+3){padding:15px 8px;border-right:0;border-bottom:1px solid rgba(122,139,207,.15);}
  .home-proof-item:last-child{border-bottom:0;}
  .home-showcase{padding:24px 0 30px;}
  .home-showcase-group{gap:14px;padding-right:14px;}
  .home-showcase-card{width:82vw;border-radius:18px;}
  .home-showcase-track{animation-duration:38s;}
}

/* Light engineering section below the Home showcase */
.home-capabilities{
  position:relative;overflow:hidden;padding:74px 0 40px;background:
    radial-gradient(circle at 73% 46%,rgba(44,124,255,.15),transparent 31%),
    radial-gradient(circle at 14% 14%,rgba(90,170,255,.07),transparent 26%),
    linear-gradient(180deg,#fff 0%,#fafdff 64%,#f3f8ff 100%);
}
.home-capabilities::before{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(110deg,rgba(255,255,255,.93) 0%,rgba(255,255,255,.75) 34%,transparent 68%);}
.home-capabilities-grid{position:absolute;right:0;top:0;width:310px;height:230px;opacity:.36;background-image:radial-gradient(#64a5ff 1.7px,transparent 1.7px);background-size:22px 22px;mask-image:linear-gradient(135deg,transparent,#000 38%,transparent 90%);}
.home-capabilities-wave{position:absolute;left:-5%;right:-8%;bottom:-40px;height:280px;opacity:.55;background:repeating-radial-gradient(ellipse at 69% 5%,transparent 0 16px,rgba(58,131,244,.19) 17px 19px,transparent 20px 31px);transform:rotate(-3deg);mask-image:linear-gradient(to bottom,transparent,#000 36%,transparent 96%);}
.home-capabilities-shell{position:relative;z-index:2;max-width:1460px;}
.home-capabilities-layout{display:grid;grid-template-columns:minmax(0,.84fr) minmax(650px,1.16fr);align-items:center;gap:8px;}
.home-capabilities-copy{position:relative;z-index:5;padding:12px 0 54px;}
.home-capabilities-kicker{display:inline-flex;align-items:center;gap:11px;margin-bottom:28px;padding:11px 18px;border:1px solid rgba(46,108,214,.13);border-radius:999px;background:rgba(255,255,255,.85);box-shadow:0 8px 22px rgba(35,89,168,.12);color:#31496f;font-family:'Sora',sans-serif;font-size:.78rem;font-weight:600;white-space:nowrap;}
.home-capabilities-kicker > span{color:#087cf4;font-size:1rem;}.home-capabilities-kicker i{width:4px;height:4px;border-radius:50%;background:#2b64bc;}
.home-capabilities-copy h2{max-width:680px;margin:0;color:#071536;font-size:clamp(2.35rem,3.25vw,3.3rem);line-height:1.13;letter-spacing:-.035em;}
.home-capabilities-copy h2 span{color:transparent;background:linear-gradient(90deg,#174be4,#2386f1 48%,#10c0e8);-webkit-background-clip:text;background-clip:text;}
.home-capabilities-rule{display:block;width:430px;max-width:78%;height:4px;margin:19px 0 24px;border-radius:99px;background:linear-gradient(90deg,rgba(39,113,234,.14),#1874ec 64%,transparent);transform:rotate(-1deg);}
.home-capabilities-copy p{max-width:650px;margin:0;color:#536781;font-size:1.03rem;line-height:1.7;}
.home-capabilities-actions{display:flex;align-items:center;gap:22px;margin-top:31px;}
.home-capabilities-primary,.home-capabilities-secondary{display:inline-flex;align-items:center;justify-content:center;gap:14px;min-height:58px;border-radius:999px;font-family:'Sora',sans-serif;font-size:.92rem;font-weight:600;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;}
.home-capabilities-primary{min-width:295px;padding:0 28px;color:#fff;background:linear-gradient(100deg,#1545df,#1f74f1 56%,#14d9e9);box-shadow:0 13px 32px rgba(25,99,232,.28);}
.home-capabilities-primary:hover{transform:translateY(-3px);box-shadow:0 18px 40px rgba(25,99,232,.36);}.home-capabilities-primary svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.home-capabilities-secondary{min-width:250px;padding:0 10px 0 25px;border:1px solid rgba(46,105,214,.24);background:rgba(255,255,255,.74);color:#263b60;box-shadow:0 8px 22px rgba(35,89,168,.06);}
.home-capabilities-secondary:hover{transform:translateY(-3px);border-color:rgba(31,111,234,.5);box-shadow:0 14px 30px rgba(35,89,168,.14);}.home-capabilities-secondary > span{display:grid;place-items:center;width:42px;height:42px;border-radius:50%;background:#e9f1ff;color:#2677ed;}.home-capabilities-secondary svg{width:17px;height:17px;fill:currentColor;stroke:none;}

.home-capabilities-visual{position:relative;height:690px;min-width:0;}
.home-capability-orbit{position:absolute;left:50%;top:50%;width:770px;height:680px;transform:translate(-48%,-50%);}
.home-capability-ring,.home-capability-node,.home-capability-core,.home-capability-card{position:absolute;}
.home-capability-ring{left:54%;top:50%;border:1px solid rgba(67,133,235,.25);border-radius:50%;transform:translate(-50%,-50%);}
.capability-ring-one{width:330px;height:330px;border-width:22px;border-color:rgba(69,139,244,.09);box-shadow:0 0 0 25px rgba(75,148,255,.055),0 0 66px rgba(55,130,255,.19);}
.capability-ring-two{width:420px;height:420px;border-color:rgba(50,125,238,.34);animation:homeCapabilitySpin 28s linear infinite;}
.capability-ring-three{width:550px;height:550px;border-color:rgba(88,151,243,.25);animation:homeCapabilitySpin 36s linear infinite reverse;}
.capability-ring-four{width:700px;height:610px;border-color:rgba(91,151,239,.18);animation:homeCapabilitySpin 48s linear infinite;}
.home-capability-ring::after{content:"";position:absolute;width:6px;height:6px;border-radius:50%;background:#1dbeed;box-shadow:0 0 12px #1dbeed;left:15%;top:14%;}.capability-ring-three::after{left:auto;right:8%;top:34%;}.capability-ring-four::after{left:auto;right:12%;top:auto;bottom:14%;}
@keyframes homeCapabilitySpin{from{transform:translate(-50%,-50%) rotate(0)}to{transform:translate(-50%,-50%) rotate(360deg)}}
.home-capability-core{z-index:4;left:54%;top:50%;display:grid;place-items:center;width:240px;height:240px;border-radius:50%;transform:translate(-50%,-50%);background:linear-gradient(140deg,#1839d7,#2459ee 52%,#13d8e7);box-shadow:0 0 0 20px rgba(40,116,235,.08),0 0 0 42px rgba(62,137,249,.05),0 26px 58px rgba(31,101,220,.24);animation:homeCapabilityPulse 4s ease-in-out infinite;}
.home-capability-core > div{display:grid;place-items:center;width:62%;height:62%;border-radius:50%;background:#fff;box-shadow:0 10px 30px rgba(21,69,147,.2);}.home-capability-core img{width:53%;}
@keyframes homeCapabilityPulse{0%,100%{transform:translate(-50%,-50%) scale(1)}50%{transform:translate(-50%,-50%) scale(1.025)}}
.home-capability-node{z-index:3;width:9px;height:9px;border-radius:50%;background:#11c4ef;box-shadow:0 0 14px #11c4ef;animation:homeDotPulse 2.5s ease-in-out infinite;}.capability-node-one{left:18%;top:30%}.capability-node-two{right:10%;top:35%;animation-delay:.6s}.capability-node-three{left:28%;bottom:12%;animation-delay:1.2s}.capability-node-four{right:24%;bottom:5%;animation-delay:1.8s}
.home-capability-card{z-index:7;border:1px solid rgba(56,111,197,.11);border-radius:25px;background:rgba(255,255,255,.88);box-shadow:0 18px 45px rgba(30,84,166,.15),inset 0 1px 0 #fff;backdrop-filter:blur(12px);}
.home-capability-card:not(.home-capability-wide){width:200px;min-height:210px;padding:25px 23px;}
.home-capability-card:not(.home-capability-wide)::before{content:"";position:absolute;left:0;top:29px;width:3px;height:135px;border-radius:0 5px 5px 0;background:linear-gradient(#18c5f1,#195af1);}
.home-capability-card-icon{display:grid;place-items:center;width:46px;height:46px;margin-bottom:10px;border-radius:13px;background:linear-gradient(145deg,#eaf2ff,#f9fcff);color:#1269ef;box-shadow:0 6px 16px rgba(47,112,212,.1);}.home-capability-card-icon svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.home-capability-card .home-metric-number{display:block;margin:0 0 6px;color:#07132e;font-family:'Sora',sans-serif;font-size:2.7rem;font-weight:700;line-height:1;}.home-capability-card small{display:block;color:#4b5d78;font-size:.81rem;font-weight:500;line-height:1.42;}.home-capability-card strong:not(.home-metric-number){display:block;color:#0b1834;font-family:'Sora',sans-serif;font-size:.84rem;line-height:1.35;}
.home-capability-wide{display:grid;grid-template-columns:48px minmax(0,1fr);align-items:center;gap:13px;min-width:255px;padding:15px 18px;border-radius:20px;}.home-capability-wide .home-capability-card-icon{margin:0;}.home-capability-wide small{margin-top:4px;font-size:.7rem;}
.capability-services{left:10%;top:0}.capability-tech{right:0;top:0}.capability-support{left:17%;bottom:0}.capability-industries{right:2%;bottom:-1%}.capability-end-to-end{left:-2%;top:45%}.capability-enterprise{right:-5%;top:45%}

@media (max-width:1220px){
  .home-capabilities-shell{max-width:1200px}.home-capabilities-layout{grid-template-columns:minmax(0,.86fr) minmax(570px,1.14fr)}.home-capabilities-copy h2{font-size:clamp(2.2rem,3.6vw,3rem)}.home-capability-orbit{transform:translate(-49%,-50%) scale(.88)}
}
@media (max-width:1080px){
  .home-capabilities{padding-top:68px}.home-capabilities-layout{grid-template-columns:1fr;text-align:center}.home-capabilities-copy{max-width:760px;margin:0 auto;padding-bottom:20px}.home-capabilities-copy h2{max-width:760px;font-size:clamp(2.25rem,5.2vw,3.2rem)}.home-capabilities-copy p{margin-left:auto;margin-right:auto}.home-capabilities-rule{margin-left:auto;margin-right:auto}.home-capabilities-actions{justify-content:center}.home-capabilities-visual{height:690px}.home-capability-orbit{transform:translate(-50%,-50%) scale(.94)}
}
@media (max-width:760px){
  .home-capabilities{padding:48px 0 28px}.home-capabilities-shell{width:100%;padding-left:18px;padding-right:18px;overflow:hidden}.home-capabilities-layout,.home-capabilities-copy,.home-capabilities-visual{width:100%;min-width:0;max-width:100%}.home-capabilities-kicker{justify-content:center;gap:6px;max-width:100%;margin-bottom:20px;padding:8px 10px;font-size:.58rem;white-space:normal}.home-capabilities-copy h2{width:100%;max-width:100%;font-size:clamp(1.75rem,7.4vw,2.15rem);line-height:1.17;letter-spacing:-.018em;overflow-wrap:break-word}.home-capabilities-rule{width:72%;margin-top:16px;margin-bottom:20px}.home-capabilities-copy p{width:100%;max-width:100%;font-size:.86rem;line-height:1.65;overflow-wrap:break-word}.home-capabilities-actions{flex-direction:column;gap:11px;margin-top:25px}.home-capabilities-primary,.home-capabilities-secondary{width:100%;min-width:0;max-width:330px;min-height:54px;font-size:.86rem}
  .home-capabilities-visual{height:auto;margin:30px 0 20px;overflow:visible}.home-capability-orbit{position:relative;left:auto;top:auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;width:100%;max-width:100%;height:auto;transform:none}.home-capability-ring,.home-capability-node{display:none}.home-capability-core{position:relative;grid-column:1/-1;left:auto;top:auto;width:164px;height:164px;margin:0 auto 10px;transform:none;animation:none}.home-capability-card,.capability-services,.capability-tech,.capability-support,.capability-industries,.capability-end-to-end,.capability-enterprise{position:relative;left:auto;right:auto;top:auto;bottom:auto;width:100%;max-width:100%;min-width:0;overflow:hidden}.home-capability-card:not(.home-capability-wide){width:100%;min-height:160px;padding:16px 12px}.home-capability-card:not(.home-capability-wide)::before{top:20px;height:102px}.home-capability-card-icon{width:40px;height:40px}.home-capability-card-icon svg{width:22px;height:22px}.home-capability-card .home-metric-number{font-size:1.95rem}.home-capability-card small{font-size:.72rem;overflow-wrap:break-word}.home-capability-wide{grid-column:1/-1;width:100%;padding:14px 15px}.home-capability-wide strong{overflow-wrap:break-word}
}
@media (max-width:390px){
  .home-hero-shell,.home-capabilities-shell{padding-left:14px;padding-right:14px;}
  .home-hero-kicker,.home-capabilities-kicker{font-size:.54rem;gap:5px;}
  .home-hero-title{font-size:clamp(1.72rem,8vw,1.95rem);}
  .home-capabilities-copy h2{font-size:clamp(1.68rem,7.2vw,1.9rem);}
  .home-orbit-card{grid-template-columns:34px minmax(0,1fr);padding:9px 7px;gap:6px;}
  .home-orbit-icon{width:34px;height:34px;}.home-orbit-card strong{font-size:.65rem;}.home-orbit-card small{font-size:.57rem;}
  .home-capability-card:not(.home-capability-wide){min-height:154px;padding:15px 10px;}
  .home-capability-card .home-metric-number{font-size:1.78rem;}.home-capability-card small{font-size:.67rem;}
  .home-capability-wide{grid-template-columns:40px minmax(0,1fr);gap:9px;padding:13px 11px;}.home-capability-wide strong{font-size:.73rem!important;}.home-capability-wide small{font-size:.62rem;}
}

@keyframes homeMobileCorePulse{
  0%,100%{transform:scale(1);filter:saturate(1)}
  50%{transform:scale(1.045);filter:saturate(1.16)}
}
@keyframes homeMobileHaloPulse{
  0%,100%{transform:translate(-50%,-50%) scale(1);opacity:.72}
  50%{transform:translate(-50%,-50%) scale(1.08);opacity:1}
}

/* Compact, phone-first versions of the two Home logo compositions. */
@media (max-width:760px){
  .home-hero-visual{margin:29px 0 8px;}
  .home-orbit-scene{--mobile-orbit-y:73px;isolation:isolate;align-items:stretch;gap:9px 10px;}
  .home-orbit-halo,.home-orbit-ring,.home-orbit-dot{display:block;}
  .home-orbit-halo,.home-orbit-ring{left:50%;top:var(--mobile-orbit-y);}
  .home-orbit-halo{z-index:-1;}
  .home-orbit-halo.halo-one{width:min(225px,68vw);height:min(225px,68vw);animation:homeMobileHaloPulse 4.2s ease-in-out infinite;}
  .home-orbit-halo.halo-two{width:min(166px,50vw);height:min(166px,50vw);border-width:12px;box-shadow:0 0 0 13px rgba(13,68,181,.07),0 0 40px rgba(0,139,255,.2);animation:homeMobileHaloPulse 4.2s ease-in-out -2.1s infinite;}
  .home-orbit-ring.ring-one{width:min(204px,62vw);height:min(204px,62vw);}
  .home-orbit-ring.ring-two{width:min(246px,74vw);height:min(246px,74vw);}
  .home-orbit-ring.ring-three{width:min(282px,84vw);height:min(190px,57vw);}
  .home-orbit-ring.ring-four{width:min(320px,92vw);height:min(232px,68vw);}
  .home-orbit-ring::after{width:6px;height:6px;}
  .home-orbit-dot.dot-one{left:8%;top:30px;}.home-orbit-dot.dot-two{right:7%;top:53px;}.home-orbit-dot.dot-three{left:16%;bottom:auto;top:142px;}.home-orbit-dot.dot-four{right:14%;bottom:auto;top:164px;}
  .home-orbit-core{
    width:146px;height:146px;margin:0 auto 18px;
    box-shadow:0 0 0 12px rgba(29,92,227,.12),0 0 0 25px rgba(30,104,225,.055),0 18px 42px rgba(0,73,219,.24);
    animation:homeMobileCorePulse 3.8s ease-in-out infinite;
  }
  .home-orbit-core > div{width:58%;height:58%;}
  .home-orbit-card,.orbit-ai,.orbit-cloud,.orbit-twin,.orbit-enterprise,.orbit-saas{
    min-height:70px;padding:9px 10px;grid-template-columns:36px minmax(0,1fr);gap:8px;border-radius:15px;
  }
  .home-orbit-card > span:last-child{min-width:0;}
  .home-orbit-card strong{font-size:.67rem;line-height:1.28;}
  .home-orbit-card small{margin-top:3px;font-size:.56rem;line-height:1.35;}
  .home-orbit-icon{width:36px;height:36px;border-radius:9px;}
  .home-orbit-icon svg{width:20px;height:20px;}
  .orbit-saas{grid-column:1/-1;width:min(100%,245px);justify-self:center;}

  .home-capabilities{padding-bottom:54px;}
  .home-capabilities-visual{margin:25px 0 0;}
  .home-capability-orbit{--mobile-capability-y:71px;isolation:isolate;gap:10px;align-items:stretch;}
  .home-capability-ring,.home-capability-node{display:block;}
  .home-capability-ring{left:50%;top:var(--mobile-capability-y);}
  .home-capability-ring.capability-ring-one{width:min(196px,60vw);height:min(196px,60vw);border-width:12px;box-shadow:0 0 0 14px rgba(75,148,255,.05),0 0 44px rgba(55,130,255,.16);animation:homeMobileHaloPulse 4.4s ease-in-out infinite;}
  .home-capability-ring.capability-ring-two{width:min(226px,69vw);height:min(226px,69vw);}
  .home-capability-ring.capability-ring-three{width:min(270px,82vw);height:min(270px,82vw);}
  .home-capability-ring.capability-ring-four{width:min(318px,92vw);height:min(230px,67vw);}
  .home-capability-ring::after{width:6px;height:6px;}
  .home-capability-node.capability-node-one{left:9%;top:31px;}.home-capability-node.capability-node-two{right:8%;top:55px;}.home-capability-node.capability-node-three{left:17%;bottom:auto;top:137px;}.home-capability-node.capability-node-four{right:15%;bottom:auto;top:157px;}
  .home-capability-core{
    width:142px;height:142px;margin:0 auto 16px;
    box-shadow:0 0 0 13px rgba(40,116,235,.08),0 0 0 27px rgba(62,137,249,.045),0 18px 42px rgba(31,101,220,.2);
    animation:homeMobileCorePulse 4s ease-in-out infinite;
  }
  .home-capability-card{border-radius:18px;}
  .home-capability-card:not(.home-capability-wide){
    display:grid;grid-template-columns:36px minmax(0,1fr);grid-template-rows:auto auto;align-content:center;column-gap:9px;
    min-height:112px;padding:13px 10px 13px 13px;
  }
  .home-capability-card:not(.home-capability-wide)::before{top:17px;height:78px;}
  .home-capability-card:not(.home-capability-wide) .home-capability-card-icon{
    grid-column:1;grid-row:1/-1;align-self:center;width:36px;height:36px;margin:0;border-radius:10px;
  }
  .home-capability-card:not(.home-capability-wide) .home-metric-number{
    grid-column:2;grid-row:1;margin:0 0 4px;text-align:left;font-size:1.66rem;
  }
  .home-capability-card:not(.home-capability-wide) small{
    grid-column:2;grid-row:2;text-align:left;font-size:.62rem;line-height:1.35;
  }
  .home-capability-card-icon svg{width:20px;height:20px;}
  .home-capability-wide{min-height:74px;padding:12px 13px;grid-template-columns:38px minmax(0,1fr);gap:10px;border-radius:16px;}
  .home-capability-wide .home-capability-card-icon{width:38px;height:38px;border-radius:10px;}
  .home-capability-wide strong{font-size:.72rem!important;line-height:1.3;}
  .home-capability-wide small{margin-top:3px;font-size:.61rem;line-height:1.35;}
  .home-capabilities-wave{opacity:.32;}

  /* A fixed control obscures the compact cards on phones. */
  .page-home .back-top{display:none;}
}

@media (max-width:390px){
  .home-orbit-scene{--mobile-orbit-y:68px;}
  .home-orbit-core{width:136px;height:136px;margin-bottom:16px;}
  .home-orbit-card,.orbit-ai,.orbit-cloud,.orbit-twin,.orbit-enterprise,.orbit-saas{
    min-height:66px;padding:8px 7px;grid-template-columns:32px minmax(0,1fr);gap:6px;
  }
  .home-orbit-icon{width:32px;height:32px;}
  .home-orbit-card strong{font-size:.62rem;}
  .home-orbit-card small{font-size:.52rem;}
  .orbit-saas{width:min(100%,225px);}

  .home-capability-orbit{--mobile-capability-y:66px;}
  .home-capability-core{width:132px;height:132px;margin-bottom:14px;}
  .home-capability-card:not(.home-capability-wide){
    grid-template-columns:32px minmax(0,1fr);column-gap:7px;min-height:105px;padding:11px 8px 11px 11px;
  }
  .home-capability-card:not(.home-capability-wide)::before{top:16px;height:72px;}
  .home-capability-card:not(.home-capability-wide) .home-capability-card-icon{width:32px;height:32px;}
  .home-capability-card:not(.home-capability-wide) .home-metric-number{font-size:1.5rem;}
  .home-capability-card:not(.home-capability-wide) small{font-size:.57rem;}
  .home-capability-wide{min-height:70px;grid-template-columns:34px minmax(0,1fr);gap:8px;padding:11px 10px;}
  .home-capability-wide .home-capability-card-icon{width:34px;height:34px;}
  .home-capability-wide strong{font-size:.68rem!important;}
  .home-capability-wide small{font-size:.57rem;}
}

/* Home industries reuse the Machine Learning industries interaction system. */
.home-ml-industries .section-head.split{max-width:1180px;margin-left:auto;margin-right:auto;}
.home-ml-industries .section-head.split > div:first-child{max-width:780px;}
.home-ml-industries .industry-track{align-items:stretch;}
.home-ml-industries .industry-track .ml-ind-card{flex-basis:290px;min-height:455px;}
.home-ml-industries .ml-ind-icon{color:var(--pink-500);background:rgba(239,77,138,.09);}
.home-ml-industries .ml-ind-icon svg{stroke:currentColor;}
.home-ml-industries .ml-ind-card:hover .ml-ind-icon{color:#a63cff;background:rgba(124,92,255,.11);}
.home-ml-industries .ml-ind-card p{display:block;overflow:visible;-webkit-line-clamp:unset;-webkit-box-orient:initial;}
.home-ml-industries .ml-ind-media{height:160px;}
@media (max-width:1024px){
  .home-ml-industries .industry-track .ml-ind-card{flex-basis:300px;}
}
@media (max-width:640px){
  .home-ml-industries .section-head.split{margin-bottom:34px;}
  .home-ml-industries .section-head.split > div:first-child{max-width:none;}
  .home-ml-industries .industry-track .ml-ind-card{flex-basis:86vw;min-height:430px;}
  .home-ml-industries .ml-ind-media{height:170px;}
}

/* Home product delivery process */
.home-process{position:relative;overflow:hidden;padding:90px 0 72px;background:linear-gradient(180deg,#fbfdff 0%,#f4f8ff 54%,#fbfdff 100%);isolation:isolate;}
.home-process::before{content:"";position:absolute;inset:0;z-index:-3;background:radial-gradient(circle at 50% 47%,rgba(47,124,244,.12),transparent 24%),radial-gradient(circle at 87% 7%,rgba(102,93,245,.08),transparent 18%);}
.home-process-wave{position:absolute;z-index:-2;left:-120px;top:-130px;width:430px;height:430px;border-radius:48%;border:1px solid rgba(38,117,235,.18);box-shadow:0 0 0 12px rgba(38,117,235,.025),0 0 0 24px rgba(38,117,235,.025),0 0 0 36px rgba(38,117,235,.025),0 0 0 48px rgba(38,117,235,.025),0 0 0 60px rgba(38,117,235,.025),0 0 0 72px rgba(38,117,235,.025);transform:rotate(22deg);}
.home-process-orb{position:absolute;z-index:-2;border-radius:50%;background:linear-gradient(145deg,rgba(64,132,241,.13),rgba(255,255,255,.15));filter:blur(.2px);}.home-process-orb-one{width:170px;height:170px;right:5%;top:-55px}.home-process-orb-two{width:18px;height:18px;right:15%;top:150px;background:linear-gradient(145deg,#52b8f4,#4b7af0);box-shadow:0 9px 20px rgba(56,111,223,.25)}
.home-process-shell{position:relative;}
.home-process-head{max-width:940px;margin:0 auto 20px;text-align:center;}
.home-process-kicker{display:inline-flex;align-items:center;gap:8px;margin-bottom:12px;padding:8px 18px;border:1px solid rgba(44,108,224,.15);border-radius:99px;background:rgba(255,255,255,.82);box-shadow:0 7px 20px rgba(41,94,181,.08);color:#2456e7;font:600 .78rem/1 'Sora',sans-serif;}.home-process-kicker svg{width:17px;height:17px;fill:none;stroke:#2386f1;stroke-width:1.8;stroke-linejoin:round;}
.home-process-head h2{margin:0;color:#071536;font-size:clamp(2.4rem,4vw,4.15rem);line-height:1.1;letter-spacing:-.052em;}.home-process-head h2 span{color:transparent;background:linear-gradient(90deg,#1689f3,#4d58f5 52%,#7648f4);-webkit-background-clip:text;background-clip:text;}.home-process-head p{max-width:760px;margin:15px auto 0;color:#5a6d88;font-size:1.02rem;line-height:1.65;}
.home-process-map{position:relative;height:690px;max-width:1220px;margin:0 auto;}
.home-process-connectors{position:absolute;z-index:1;inset:0;width:100%;height:100%;overflow:visible;}.home-process-connectors path{fill:none;stroke:url(#processPathGradient);stroke-width:1.1;stroke-dasharray:4 5;opacity:.58;}.home-process-connectors .home-process-flow{stroke-width:1.25;stroke-dasharray:5 6;opacity:.75;}
.home-process-core{position:absolute;z-index:2;left:50%;top:43%;width:300px;height:300px;transform:translate(-50%,-50%);}
.home-process-ring{position:absolute;left:50%;top:50%;border:1px solid rgba(43,121,239,.36);border-radius:50%;transform:translate(-50%,-50%);}.home-process-ring::after{content:"";position:absolute;width:7px;height:7px;border-radius:50%;background:#178ef1;box-shadow:0 0 12px #178ef1;}
.home-process-ring.ring-one{width:150px;height:150px;border-width:12px;border-color:rgba(43,105,233,.09);box-shadow:0 0 0 13px rgba(38,117,235,.045);}.home-process-ring.ring-one::after{right:-6px;top:50%;}
.home-process-ring.ring-two{width:220px;height:220px;animation:homeProcessSpin 26s linear infinite;}.home-process-ring.ring-two::after{left:15px;top:27px;}
.home-process-ring.ring-three{width:300px;height:300px;border-color:rgba(43,121,239,.2);animation:homeProcessSpin 38s linear infinite reverse;}.home-process-ring.ring-three::after{right:32px;bottom:26px;}
@keyframes homeProcessSpin{to{transform:translate(-50%,-50%) rotate(360deg)}}
.home-process-logo{position:absolute;z-index:4;left:50%;top:50%;display:grid;place-items:center;width:118px;height:118px;border-radius:50%;transform:translate(-50%,-50%);background:linear-gradient(145deg,#1b44d7,#2378f0 60%,#1cd1e8);box-shadow:0 0 0 14px rgba(35,105,235,.09),0 18px 38px rgba(31,92,205,.23);}.home-process-logo::before{content:"";position:absolute;inset:18px;border-radius:50%;background:#fff;}.home-process-logo img{position:relative;z-index:1;width:48%;}
.home-process-ring-dot{position:absolute;z-index:3;width:8px;height:8px;border-radius:50%;background:#2b8df3;box-shadow:0 0 12px rgba(43,141,243,.7);}.home-process-ring-dot.dot-one{left:-2px;top:145px}.home-process-ring-dot.dot-two{right:19px;top:79px}.home-process-ring-dot.dot-three{left:145px;bottom:-3px;background:#6b4df5}
.home-process-card{position:absolute;z-index:5;display:grid;grid-template-columns:58px minmax(0,1fr) 40px;gap:15px;width:350px;min-height:168px;padding:21px 21px 18px;border:1px solid rgba(53,110,199,.1);border-radius:22px;background:rgba(255,255,255,.91);box-shadow:0 16px 38px rgba(36,86,164,.11),inset 0 1px 0 #fff;backdrop-filter:blur(12px);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;}.home-process-card:hover{transform:translateY(-5px);border-color:rgba(38,117,235,.25);box-shadow:0 24px 46px rgba(32,89,180,.16),0 0 28px rgba(53,153,245,.08);}
.home-process-number{grid-column:1;grid-row:1;display:grid;place-items:center;width:58px;height:58px;border:9px solid #e9f1ff;border-radius:50%;background:#fff;color:#0c2455;font:700 .92rem/1 'Sora',sans-serif;box-shadow:0 4px 15px rgba(37,103,207,.16),inset 0 0 0 2px #9bc8ff;}.home-process-card>div{grid-column:2;grid-row:1}.home-process-card-icon{grid-column:3;grid-row:1;display:grid;place-items:center;width:40px;height:40px;border-radius:12px;background:linear-gradient(145deg,#eaf3ff,#fff);color:#176ced;box-shadow:0 5px 15px rgba(42,106,209,.1);}.home-process-card-icon svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.home-process-card h3{margin:2px 0 8px;color:#0a1837;font-size:1rem;line-height:1.3;letter-spacing:-.02em;}.home-process-card p{margin:0;color:#50637f;font-size:.76rem;line-height:1.55;}.home-process-progress{display:block;width:82px;height:4px;margin-top:13px;border-radius:99px;background:linear-gradient(90deg,#176df1 42%,#dae6fb 42%);}
.home-process-stage-one{left:0;top:78px}.home-process-stage-two{right:0;top:78px}.home-process-stage-three{left:0;top:320px}.home-process-stage-four{right:0;top:320px}.home-process-stage-five{left:50%;bottom:0;width:380px;transform:translateX(-50%)}.home-process-stage-five:hover{transform:translateX(-50%) translateY(-5px)}
.home-process-speed{position:absolute;z-index:5;left:0;bottom:17px;display:flex;align-items:center;gap:11px;padding:12px 17px;border:1px solid rgba(51,113,211,.1);border-radius:15px;background:rgba(255,255,255,.88);box-shadow:0 12px 28px rgba(33,86,168,.1);transform:rotate(-5deg);}.home-process-speed span{display:grid;place-items:center;width:38px;height:38px;border-radius:50%;background:linear-gradient(145deg,#0f8cf3,#3153ef);color:#fff;}.home-process-speed svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linejoin:round;}.home-process-speed strong{color:#10213e;font-size:.7rem;line-height:1.4;}
.home-process-principles{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));max-width:1180px;margin:23px auto 0;padding:28px 16px 24px;border:1px solid rgba(41,106,209,.1);border-bottom:3px solid transparent;border-radius:22px;background:linear-gradient(#fff,#fff) padding-box,linear-gradient(90deg,#19bced,#7148f7) border-box;box-shadow:0 15px 38px rgba(31,81,163,.11);}.home-process-principle{position:relative;min-width:0;padding:0 17px;text-align:center;}.home-process-principle+.home-process-principle{border-left:1px solid #e2e9f5;}.home-process-principle svg{width:31px;height:31px;margin-bottom:10px;fill:none;stroke:#2867ef;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;}.home-process-principle h3{margin:0;color:#0c1935;font-size:.76rem;line-height:1.35;}.home-process-principle p{margin:6px 0 0;color:#586b86;font-size:.65rem;line-height:1.45;}

/* Home latest insights */
.home-insights{padding:100px 0 105px;background:#f4f7fc;}
.home-insights-head{max-width:920px;margin:0 auto 60px;text-align:center;}.home-insights-head h2{margin:0;color:#071536;font-size:clamp(2.35rem,3.8vw,3.65rem);line-height:1.1;letter-spacing:-.045em;}.home-insights-head p{max-width:820px;margin:19px auto 0;color:#5d6e87;font-size:1.02rem;line-height:1.65;}
.home-insights-grid{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(0,.92fr);align-items:stretch;gap:50px;max-width:1240px;margin:0 auto;}
.home-insight-feature{overflow:hidden;border:1px solid rgba(53,99,170,.08);border-radius:22px;background:#fff;box-shadow:0 18px 42px rgba(38,76,139,.08);transition:transform .3s ease,box-shadow .3s ease;}.home-insight-feature:hover{transform:translateY(-5px);box-shadow:0 26px 52px rgba(38,76,139,.13);}
.home-insight-media{display:block;height:300px;overflow:hidden;background:#deebf9;}.home-insight-media img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease;}.home-insight-feature:hover .home-insight-media img{transform:scale(1.035);}.home-insight-feature-copy{padding:28px 31px 32px;}.home-insight-tag{display:inline-flex;align-items:center;min-height:31px;padding:5px 17px;border:1px solid #d9e2f1;border-radius:99px;background:#fbfcff;color:#52647f;font-size:.75rem;font-weight:600;line-height:1;}.home-insight-feature h3{margin:17px 0 14px;font-size:1.42rem;line-height:1.34;letter-spacing:-.025em;}.home-insight-feature h3 a,.home-insight-row h3 a{color:#0a1733;transition:color .22s ease;}.home-insight-feature h3 a:hover,.home-insight-row h3 a:hover{color:#196cec;}.home-insight-feature p,.home-insight-row p{margin:0;color:#5c6e88;line-height:1.68;}.home-insight-feature p{font-size:.92rem;}
.home-insight-list{display:flex;flex-direction:column;height:100%;}.home-insight-row{display:flex;flex:1;flex-direction:column;align-items:flex-start;justify-content:center;padding:23px 0 32px;}.home-insight-row+.home-insight-row{border-top:1px solid #dce4f0;padding-top:37px;}.home-insight-row h3{max-width:580px;margin:17px 0 13px;font-size:1.28rem;line-height:1.35;letter-spacing:-.022em;}.home-insight-row p{font-size:.88rem;}.home-insight-link{display:inline-flex;align-items:center;gap:8px;margin-top:20px;color:#1d63df;font-size:.77rem;font-weight:600;}.home-insight-link svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;transition:transform .2s ease;}.home-insight-link:hover svg{transform:translateX(4px);}

@media (max-width:1100px){
  .home-process{padding-top:76px}.home-process-map{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;height:auto;margin-top:42px}.home-process-connectors{display:none}.home-process-core{position:relative;grid-column:1/-1;left:auto;top:auto;width:250px;height:250px;margin:0 auto 14px;transform:none}.home-process-ring.ring-three{width:250px;height:250px}.home-process-ring.ring-two{width:190px;height:190px}.home-process-ring.ring-one{width:130px;height:130px}.home-process-logo{width:104px;height:104px}.home-process-card,.home-process-stage-one,.home-process-stage-two,.home-process-stage-three,.home-process-stage-four,.home-process-stage-five{position:relative;left:auto;right:auto;top:auto;bottom:auto;width:100%;min-height:176px;transform:none}.home-process-stage-five{grid-column:1/-1;max-width:590px;justify-self:center}.home-process-stage-five:hover{transform:translateY(-5px)}.home-process-speed{display:none}.home-process-principles{grid-template-columns:repeat(3,minmax(0,1fr));row-gap:25px}.home-process-principle:nth-child(4){border-left:0}.home-process-principle:nth-child(n+4){padding-top:22px;border-top:1px solid #e2e9f5}
  .home-insights-grid{gap:34px}.home-insight-media{height:270px}.home-insight-feature-copy{padding:25px}.home-insight-feature h3{font-size:1.25rem}.home-insight-row h3{font-size:1.16rem}
}
@media (max-width:760px){
  .home-process{padding:60px 0 52px}.home-process-wave{width:250px;height:250px;left:-145px;top:-110px}.home-process-orb-one{width:100px;height:100px}.home-process-orb-two{display:none}.home-process-head{margin-bottom:0}.home-process-kicker{font-size:.7rem}.home-process-head h2{font-size:clamp(2rem,9vw,2.75rem);line-height:1.13;letter-spacing:-.035em}.home-process-head h2 br{display:none}.home-process-head p{font-size:.88rem;line-height:1.65}.home-process-map{grid-template-columns:1fr;gap:13px;margin-top:30px}.home-process-core{grid-column:auto;width:190px;height:190px;margin-bottom:6px}.home-process-ring.ring-three{width:190px;height:190px}.home-process-ring.ring-two{width:148px;height:148px}.home-process-ring.ring-one{width:104px;height:104px}.home-process-logo{width:84px;height:84px}.home-process-card,.home-process-stage-five{grid-column:auto;grid-template-columns:50px minmax(0,1fr) 38px;gap:12px;max-width:none;min-height:0;padding:18px 16px;border-radius:18px}.home-process-number{width:50px;height:50px;border-width:7px}.home-process-card h3{font-size:.94rem}.home-process-card p{font-size:.73rem}.home-process-card-icon{width:38px;height:38px}.home-process-progress{margin-top:11px}.home-process-principles{grid-template-columns:repeat(2,minmax(0,1fr));gap:0;margin-top:18px;padding:16px 9px}.home-process-principle{min-height:145px;padding:18px 12px;border-top:1px solid #e2e9f5}.home-process-principle+.home-process-principle{border-left:0}.home-process-principle:nth-child(even){border-left:1px solid #e2e9f5}.home-process-principle:nth-child(-n+2){border-top:0}.home-process-principle h3{font-size:.72rem}.home-process-principle p{font-size:.62rem}
  .home-insights{padding:70px 0 75px}.home-insights-head{margin-bottom:36px}.home-insights-head h2{font-size:clamp(2rem,9vw,2.65rem)}.home-insights-head p{font-size:.87rem;line-height:1.65}.home-insights-grid{grid-template-columns:1fr;gap:34px}.home-insight-media{height:230px}.home-insight-feature-copy{padding:23px 20px 25px}.home-insight-feature h3{font-size:1.14rem}.home-insight-feature p,.home-insight-row p{font-size:.82rem;line-height:1.65}.home-insight-row{padding:0 0 29px}.home-insight-row+.home-insight-row{padding-top:29px}.home-insight-row h3{font-size:1.08rem}.home-insight-tag{min-height:29px;padding:5px 14px;font-size:.68rem}
}
@media (max-width:430px){
  .home-process-card{grid-template-columns:44px minmax(0,1fr);padding:16px 14px}.home-process-number{width:44px;height:44px;font-size:.78rem}.home-process-card-icon{position:absolute;right:14px;top:15px;width:34px;height:34px}.home-process-card>div{grid-column:2}.home-process-card h3{padding-right:38px}.home-process-principles{grid-template-columns:1fr}.home-process-principle{min-height:0;padding:20px 10px;border-top:1px solid #e2e9f5!important;border-left:0!important}.home-process-principle:first-child{border-top:0!important}.home-insight-media{height:190px}
}

/* About page orbital hero */
.about-orbit-hero{position:relative;overflow:hidden;padding:calc(var(--header-h) + 42px) 0 56px;background:linear-gradient(145deg,#fff 0%,#f8fbff 54%,#f3f8ff 100%);isolation:isolate;}
.about-orbit-hero::before{content:"";position:absolute;z-index:-3;inset:0;background-image:radial-gradient(circle,rgba(48,123,239,.22) 1.2px,transparent 1.2px);background-size:28px 28px;opacity:.16;mask-image:linear-gradient(105deg,transparent 0%,transparent 64%,#000 92%);}
.about-orbit-glow{position:absolute;z-index:-2;border-radius:50%;filter:blur(80px);pointer-events:none;}.about-orbit-glow-one{width:540px;height:540px;right:4%;top:35px;background:rgba(64,146,255,.17)}.about-orbit-glow-two{width:360px;height:360px;left:-190px;bottom:-110px;background:rgba(82,109,244,.08)}
.about-orbit-shell{position:relative;max-width:1320px;}
.about-orbit-layout{display:grid;grid-template-columns:minmax(0,.9fr) minmax(520px,1.1fr);align-items:center;gap:35px;min-width:0;min-height:500px;}
.about-orbit-copy{position:relative;z-index:5;width:100%;max-width:650px;min-width:0;}
.about-orbit-kicker{display:inline-flex;align-items:center;gap:8px;margin-bottom:22px;padding:8px 15px;border:1px solid rgba(40,106,218,.13);border-radius:99px;background:rgba(255,255,255,.84);box-shadow:0 6px 18px rgba(41,92,179,.07);color:#1c67e8;font:700 .68rem/1 'Sora',sans-serif;letter-spacing:.035em;text-transform:uppercase;}.about-orbit-kicker svg{width:15px;height:15px;fill:none;stroke:#1989ee;stroke-width:1.8;stroke-linejoin:round;}
.about-orbit-copy h1{max-width:100%;margin:0;color:#071536;font-size:clamp(2.45rem,3.65vw,3.35rem);line-height:1.12;letter-spacing:-.045em;overflow-wrap:break-word;}.about-title-line{display:block}.about-orbit-copy h1 .about-title-accent{color:transparent;background:linear-gradient(90deg,#126bed,#3780f2 54%,#7948f4);-webkit-background-clip:text;background-clip:text;}.about-orbit-copy p{width:100%;max-width:590px;margin:24px 0 0;color:#536781;font-size:.98rem;line-height:1.75;overflow-wrap:break-word;}
.about-orbit-actions{display:flex;align-items:center;gap:16px;margin-top:30px;}.about-orbit-actions .btn{display:inline-flex;align-items:center;justify-content:center;gap:18px;min-height:52px;border-radius:10px;font-size:.82rem;font-weight:600;}.about-orbit-actions svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}.about-orbit-primary{min-width:174px;color:#fff;background:linear-gradient(105deg,#1749e4,#1489ef);box-shadow:0 13px 28px rgba(28,100,225,.25);}.about-orbit-primary:hover{transform:translateY(-3px);box-shadow:0 18px 36px rgba(28,100,225,.34)}.about-orbit-secondary{min-width:155px;border:1px solid rgba(43,103,209,.17);background:rgba(255,255,255,.82);color:#183461;box-shadow:0 9px 22px rgba(41,91,172,.08);}.about-orbit-secondary:hover{transform:translateY(-3px);border-color:rgba(36,105,226,.4);box-shadow:0 14px 28px rgba(41,91,172,.14)}
.about-orbit-visual{position:relative;width:100%;height:500px;min-width:0;}
.about-orbit-line{position:absolute;left:50%;top:50%;border:1px solid rgba(42,113,234,.28);border-radius:50%;transform:translate(-50%,-50%);}.about-orbit-line::after{content:"";position:absolute;width:6px;height:6px;border-radius:50%;background:#1bc1ed;box-shadow:0 0 12px #1bc1ed;}.about-orbit-line-one{width:250px;height:250px;border-width:14px;border-color:rgba(51,126,243,.075);box-shadow:0 0 0 17px rgba(51,126,243,.035)}.about-orbit-line-one::after{right:-9px;top:47%}.about-orbit-line-two{width:355px;height:355px;animation:aboutOrbitSpin 28s linear infinite}.about-orbit-line-two::after{left:41px;top:44px}.about-orbit-line-three{width:465px;height:465px;border-color:rgba(93,102,238,.25);animation:aboutOrbitSpin 42s linear infinite reverse}.about-orbit-line-three::after{right:53px;bottom:42px;background:#7652f5;box-shadow:0 0 12px #7652f5}@keyframes aboutOrbitSpin{to{transform:translate(-50%,-50%) rotate(360deg)}}
.about-orbit-core{position:absolute;z-index:3;left:50%;top:50%;display:grid;place-items:center;width:190px;height:190px;border-radius:50%;transform:translate(-50%,-50%);background:linear-gradient(145deg,#e6f2ff,#fff);box-shadow:0 0 0 15px rgba(49,123,239,.055),0 24px 48px rgba(30,83,170,.16);}.about-orbit-core>span{display:grid;place-items:center;width:76%;height:76%;border-radius:50%;background:#fff;box-shadow:0 10px 28px rgba(24,73,151,.14);}.about-orbit-core img{width:53%;height:auto;}
.about-orbit-dot{position:absolute;z-index:2;width:8px;height:8px;border-radius:50%;background:#16c8ed;box-shadow:0 0 14px #16c8ed}.about-orbit-dot.dot-one{left:10%;top:13%}.about-orbit-dot.dot-two{right:4%;top:29%;background:#4a68f0}.about-orbit-dot.dot-three{left:17%;bottom:16%;width:6px;height:6px}
.about-orbit-label{position:absolute;z-index:5;display:flex;flex-direction:column;align-items:center;justify-content:center;width:96px;height:96px;border:1px solid rgba(49,105,198,.1);border-radius:30px;background:rgba(255,255,255,.9);box-shadow:0 16px 34px rgba(35,84,163,.12);backdrop-filter:blur(10px);}.about-orbit-label span{display:grid;place-items:center;width:38px;height:38px;margin-bottom:7px;border-radius:12px;background:#eef5ff;color:#1268ec;}.about-orbit-label svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round;}.about-orbit-label strong{color:#163159;font-size:.64rem;line-height:1;}.orbit-technology{left:50%;top:0;transform:translateX(-50%)}.orbit-consulting{left:3%;top:50%;transform:translateY(-50%)}.orbit-transformation{right:1%;top:50%;transform:translateY(-50%)}.orbit-growth{left:50%;bottom:0;transform:translateX(-50%)}
.about-orbit-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));margin-top:12px;padding:24px 28px;border:1px solid rgba(45,101,194,.09);border-radius:22px;background:rgba(255,255,255,.9);box-shadow:0 18px 42px rgba(33,80,157,.1);backdrop-filter:blur(12px);}.about-orbit-metric{display:grid;grid-template-columns:48px minmax(0,1fr);align-items:center;gap:14px;min-width:0;padding:0 26px;border-right:1px solid #e0e7f2;}.about-orbit-metric:first-child{padding-left:0}.about-orbit-metric:last-child{padding-right:0;border-right:0}.about-orbit-metric-icon{display:grid;place-items:center;width:48px;height:48px;border-radius:14px;background:#edf3ff;color:#1d63ec;}.about-orbit-metric-icon.metric-cyan{background:#e8fbfc;color:#10aebe}.about-orbit-metric-icon.metric-violet{background:#f0eaff;color:#7543ec}.about-orbit-metric-icon.metric-sky{background:#ebf4ff;color:#2486ed}.about-orbit-metric-icon svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}.about-orbit-metric strong,.about-orbit-metric small{display:block}.about-orbit-metric strong{margin-bottom:4px;color:#071536;font-family:'Sora',sans-serif;font-size:1.55rem;line-height:1}.about-orbit-metric small{color:#415778;font-size:.69rem;font-weight:500;line-height:1.45;}
.about-story-only{grid-template-columns:1fr;max-width:900px;text-align:center}.about-story-only .who-copy p{max-width:790px;margin-left:auto;margin-right:auto}.about-story-only .who-copy .btn{margin-top:16px}

@media (max-width:1050px){
  .about-orbit-layout{grid-template-columns:minmax(0,.94fr) minmax(440px,1.06fr);gap:12px}.about-orbit-copy h1{font-size:clamp(2.4rem,4.5vw,3.25rem)}.about-orbit-visual{height:460px;transform:scale(.9)}.about-orbit-metric{padding:0 17px}
}
@media (max-width:850px){
  .about-orbit-layout{grid-template-columns:minmax(0,1fr);gap:26px;width:100%;max-width:100%}.about-orbit-copy{width:100%;max-width:760px;min-width:0;margin:0 auto;text-align:center}.about-orbit-copy p{margin-left:auto;margin-right:auto}.about-orbit-actions{justify-content:center}.about-orbit-visual{width:100%;max-width:620px;min-width:0;height:470px;margin:0 auto;transform:none}.about-orbit-metrics{margin-top:0}.about-orbit-metric{grid-template-columns:42px minmax(0,1fr);gap:10px;padding:0 12px}.about-orbit-metric-icon{width:42px;height:42px}.about-orbit-metric strong{font-size:1.3rem}.about-orbit-metric small{font-size:.61rem}
}
@media (max-width:620px){
  .about-orbit-hero{padding:calc(var(--header-h) + 28px) 0 42px}.about-orbit-shell{width:100%;max-width:100%;padding-left:18px;padding-right:18px}.about-orbit-layout,.about-orbit-copy,.about-orbit-metrics{width:100%;max-width:100%;min-width:0}.about-orbit-layout{gap:20px}.about-orbit-copy{text-align:left}.about-orbit-kicker{margin-bottom:18px;padding:7px 11px;font-size:.58rem}.about-orbit-copy h1{width:100%;max-width:100%;font-size:clamp(1.78rem,8vw,2.08rem);line-height:1.16;letter-spacing:-.025em}.about-title-line{white-space:normal}.about-orbit-copy p{width:100%;max-width:100%;margin-top:19px;font-size:.82rem;line-height:1.7}.about-orbit-actions{align-items:flex-start;justify-content:flex-start;flex-direction:column;gap:10px;margin-top:23px}.about-orbit-actions .btn{min-height:46px;font-size:.75rem}.about-orbit-primary{min-width:155px}.about-orbit-secondary{min-width:142px}.about-orbit-visual{width:100%;max-width:100%;min-width:0;height:300px;margin-top:10px}.about-orbit-line-one{width:135px;height:135px;border-width:9px}.about-orbit-line-two{width:198px;height:198px}.about-orbit-line-three{width:min(270px,76vw);height:min(270px,76vw)}.about-orbit-core{width:105px;height:105px}.about-orbit-label{width:67px;height:67px;border-radius:21px}.about-orbit-label span{width:28px;height:28px;margin-bottom:5px;border-radius:9px}.about-orbit-label svg{width:16px;height:16px}.about-orbit-label strong{font-size:.49rem}.orbit-consulting{left:0}.orbit-transformation{right:0}.about-orbit-dot.dot-one{left:8%}.about-orbit-dot.dot-two{right:6%}.about-orbit-metrics{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;padding:0;border:0;background:transparent;box-shadow:none;backdrop-filter:none}.about-orbit-metric,.about-orbit-metric:first-child,.about-orbit-metric:last-child{grid-template-columns:38px minmax(0,1fr);gap:9px;min-width:0;min-height:112px;padding:14px 11px;border:1px solid rgba(45,101,194,.08);border-radius:15px;background:#fff;box-shadow:0 10px 28px rgba(33,80,157,.09)}.about-orbit-metric>div{min-width:0}.about-orbit-metric-icon{width:38px;height:38px;border-radius:11px}.about-orbit-metric-icon svg{width:19px;height:19px}.about-orbit-metric strong{font-size:1.25rem}.about-orbit-metric small{font-size:.58rem;overflow-wrap:break-word}.about{padding-top:72px}.about-story-only{text-align:left}
}
@media (max-width:380px){
  .about-orbit-shell{padding-left:14px;padding-right:14px}.about-orbit-copy h1{font-size:clamp(1.68rem,7.7vw,1.88rem)}.about-orbit-visual{height:278px}.about-orbit-line-three{width:min(246px,74vw);height:min(246px,74vw)}.about-orbit-line-two{width:182px;height:182px}.about-orbit-label{width:62px;height:62px}.about-orbit-metric,.about-orbit-metric:first-child,.about-orbit-metric:last-child{grid-template-columns:34px minmax(0,1fr);padding:12px 9px}.about-orbit-metric-icon{width:34px;height:34px}.about-orbit-metric strong{font-size:1.12rem}.about-orbit-metric small{font-size:.54rem}
}

/* About page purpose, vision and values */
.about-principles{position:relative;overflow:hidden;padding:105px 0 110px;background:linear-gradient(145deg,#fff 0%,#fbfcff 48%,#f5f9ff 100%);isolation:isolate;}
.about-principles::before{content:"";position:absolute;z-index:-3;inset:0;background:radial-gradient(circle at 18% 22%,rgba(249,102,177,.07),transparent 22%),radial-gradient(circle at 77% 65%,rgba(35,191,130,.06),transparent 26%),radial-gradient(circle at 45% 85%,rgba(49,114,241,.06),transparent 24%);}
.about-principles-wave{position:absolute;z-index:-2;right:-90px;bottom:-210px;width:620px;height:420px;border:1px solid rgba(50,119,237,.15);border-radius:48%;box-shadow:0 0 0 13px rgba(50,119,237,.025),0 0 0 26px rgba(50,119,237,.025),0 0 0 39px rgba(50,119,237,.025),0 0 0 52px rgba(50,119,237,.025),0 0 0 65px rgba(50,119,237,.025);transform:rotate(-12deg);}.about-principles-dots{position:absolute;z-index:-1;left:5%;bottom:45px;width:92px;height:58px;background-image:radial-gradient(circle,#9cc7ff 2px,transparent 2px);background-size:14px 14px;opacity:.6;}
.about-principles-shell{position:relative;max-width:1280px;}
.about-principles-head{display:grid;grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);align-items:center;gap:64px;margin-bottom:54px;}
.about-principles-head>div{min-width:0}.about-principles-head h2{max-width:560px;margin:0;color:#071536;font-size:clamp(2.4rem,4vw,3.75rem);line-height:1.08;letter-spacing:-.05em;}.about-principles-head h2 span{display:block;color:transparent;background:linear-gradient(90deg,#196bf0,#5b57f1 52%,#7d48ee);-webkit-background-clip:text;background-clip:text;}.about-principles-rule{display:block;width:74px;height:3px;margin-top:24px;border-radius:4px;background:linear-gradient(90deg,#176df0,#764cf2)}.about-principles-head>p{max-width:660px;margin:0;padding-left:40px;border-left:1px solid #d7dfec;color:#405676;font-size:1.03rem;line-height:1.75;}
.about-principles-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.04fr);align-items:stretch;gap:22px;}.about-principles-stack{display:grid;grid-template-rows:repeat(2,minmax(0,1fr));gap:22px;min-width:0;}
.about-principle-card{position:relative;display:grid;grid-template-columns:104px minmax(0,1fr) 46px;align-items:start;gap:24px;min-width:0;padding:32px 30px;border:1px solid;border-radius:22px;background:rgba(255,255,255,.8);box-shadow:0 16px 38px rgba(38,77,139,.06);transition:transform .3s ease,box-shadow .3s ease;}.about-principle-card:hover,.about-values-card:hover{transform:translateY(-5px);box-shadow:0 24px 48px rgba(38,77,139,.11)}.about-vision-card{border-color:rgba(229,89,169,.2);background:linear-gradient(135deg,rgba(255,247,252,.96),rgba(255,255,255,.82))}.about-mission-card{border-color:rgba(55,124,235,.19);background:linear-gradient(135deg,rgba(247,251,255,.97),rgba(255,255,255,.82))}
.about-principle-icon{display:grid;place-items:center;width:88px;height:88px;border-radius:20px;}.about-principle-icon svg{width:49px;height:49px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;}.about-vision-card .about-principle-icon{color:#ce2585;background:linear-gradient(145deg,#ffe9f6,#fceff8)}.about-mission-card .about-principle-icon{color:#1767eb;background:linear-gradient(145deg,#e8f3ff,#edf4ff)}
.about-principle-copy{min-width:0}.about-principle-label,.about-values-label{display:inline-flex;margin-bottom:9px;padding:5px 11px;border-radius:99px;font:700 .67rem/1 'Sora',sans-serif;letter-spacing:.035em;text-transform:uppercase;}.about-vision-card .about-principle-label{color:#c91d78;background:#ffe8f4}.about-mission-card .about-principle-label{color:#1763dd;background:#e8f1ff}.about-principle-copy h3{margin:0 0 12px;color:#071536;font-size:1.28rem;line-height:1.3;letter-spacing:-.025em;}.about-principle-copy p{margin:0;color:#3f5474;font-size:.88rem;line-height:1.7;}.about-principle-arrow{display:grid;place-items:center;width:44px;height:44px;border-radius:50%;}.about-principle-arrow svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}.about-vision-card .about-principle-arrow{color:#a31978;background:#fde8f4}.about-mission-card .about-principle-arrow{color:#1768e9;background:#e9f3ff}
.about-values-card{min-width:0;padding:32px 30px;border:1px solid rgba(37,176,103,.17);border-radius:22px;background:linear-gradient(145deg,rgba(248,255,251,.96),rgba(255,255,255,.9));box-shadow:0 16px 38px rgba(38,77,139,.06);transition:transform .3s ease,box-shadow .3s ease;}.about-values-head{display:flex;align-items:center;gap:22px;margin-bottom:18px}.about-values-icon{display:grid;place-items:center;flex:none;width:88px;height:88px;border-radius:20px;background:linear-gradient(145deg,#e7faee,#f3fff7);color:#23a950}.about-values-icon svg{width:49px;height:49px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;}.about-values-label{color:#159a43;background:#e7f9ed}.about-values-head h3{margin:0;color:#071536;font-size:1.45rem;line-height:1.25;letter-spacing:-.025em;}.about-values-card>p{margin:0 0 25px;color:#3f5474;font-size:.91rem;line-height:1.7}.about-values-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px;}.about-values-list span{display:flex;align-items:center;gap:12px;min-width:0;min-height:72px;padding:14px 17px;border:1px solid rgba(47,143,89,.13);border-radius:18px;background:rgba(255,255,255,.88);box-shadow:0 8px 20px rgba(32,94,60,.045);color:#18325e;font-size:.81rem;font-weight:600;line-height:1.45;}.about-values-list svg{flex:none;width:24px;height:24px;fill:none;stroke:#16b742;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}

@media (max-width:1024px){
  .about-principles-head{grid-template-columns:1fr;gap:24px}.about-principles-head h2{max-width:700px}.about-principles-head>p{max-width:780px;padding:0;border-left:0}.about-principles-grid{grid-template-columns:1fr}.about-principles-stack{grid-template-columns:repeat(2,minmax(0,1fr));grid-template-rows:auto}.about-principle-card{grid-template-columns:78px minmax(0,1fr);padding:27px 24px}.about-principle-icon{width:70px;height:70px}.about-principle-icon svg{width:39px;height:39px}.about-principle-arrow{position:absolute;right:22px;top:25px}.about-principle-copy h3{padding-right:40px}
}
@media (max-width:760px){
  .about-principles{padding:72px 0 78px}.about-principles-shell{width:100%;max-width:100%;padding-left:18px;padding-right:18px}.about-principles-head{gap:20px;margin-bottom:35px}.about-principles-head h2{font-size:clamp(2rem,9vw,2.7rem);line-height:1.12;letter-spacing:-.035em}.about-principles-rule{margin-top:18px}.about-principles-head>p{font-size:.87rem;line-height:1.68}.about-principles-grid,.about-principles-stack{grid-template-columns:1fr;gap:14px;width:100%;min-width:0}.about-principle-card{grid-template-columns:58px minmax(0,1fr);gap:15px;width:100%;padding:21px 17px;border-radius:18px}.about-principle-icon{width:54px;height:54px;border-radius:15px}.about-principle-icon svg{width:30px;height:30px}.about-principle-label,.about-values-label{font-size:.58rem}.about-principle-copy h3{margin-bottom:9px;padding-right:34px;font-size:1rem}.about-principle-copy p{font-size:.76rem;line-height:1.65}.about-principle-arrow{right:15px;top:18px;width:36px;height:36px}.about-principle-arrow svg{width:18px;height:18px}.about-values-card{width:100%;min-width:0;padding:22px 17px;border-radius:18px}.about-values-head{gap:15px;margin-bottom:15px}.about-values-icon{width:58px;height:58px;border-radius:16px}.about-values-icon svg{width:32px;height:32px}.about-values-head h3{font-size:1.08rem}.about-values-card>p{font-size:.77rem;line-height:1.65}.about-values-list{gap:10px}.about-values-list span{min-height:66px;padding:12px;font-size:.7rem}.about-values-list svg{width:20px;height:20px}.about-principles-wave{right:-260px;bottom:-210px}.about-principles-dots{left:3%;bottom:22px}
}
@media (max-width:480px){
  .about-principles-shell{padding-left:14px;padding-right:14px}.about-principles-head h2{font-size:clamp(1.85rem,8.6vw,2.28rem)}.about-principle-card{grid-template-columns:48px minmax(0,1fr);gap:12px;padding:18px 14px}.about-principle-icon{width:46px;height:46px}.about-principle-icon svg{width:26px;height:26px}.about-principle-copy h3{padding-right:30px;font-size:.92rem}.about-principle-copy p{font-size:.72rem}.about-principle-arrow{right:12px;top:15px;width:31px;height:31px}.about-values-list{grid-template-columns:1fr}.about-values-list span{min-height:58px}.about-values-card{padding:19px 14px}
}

/* About page reasons to choose Trinex — Web Development interaction style */
.about-why{position:relative;overflow:hidden;padding:104px 0 110px;background:#f4f7fc;}
.about-why::before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 8% 18%,rgba(45,106,238,.08),transparent 24%),radial-gradient(circle at 91% 82%,rgba(121,69,239,.07),transparent 24%);}
.about-why-shell{position:relative;z-index:1;max-width:1240px;}
.about-why-head{max-width:890px;margin:0 auto 58px;text-align:center;}.about-why-kicker{display:inline-flex;margin-bottom:15px;padding:7px 15px;border:1px solid rgba(41,105,225,.15);border-radius:99px;background:rgba(255,255,255,.8);color:#1b67e9;font:700 .68rem/1 'Sora',sans-serif;letter-spacing:.06em;text-transform:uppercase;box-shadow:0 7px 18px rgba(40,91,175,.06)}.about-why-head h2{margin:0;color:#071536;font-size:clamp(2.35rem,3.9vw,3.5rem);line-height:1.1;letter-spacing:-.047em}.about-why-head h2 span{color:transparent;background:linear-gradient(100deg,#176cec,#5c55f0 55%,#8c3dea);-webkit-background-clip:text;background-clip:text}.about-why-head p{max-width:790px;margin:19px auto 0;color:#5b6d87;font-size:1rem;line-height:1.7}
.about-why-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;}
.about-why-card{position:relative;isolation:isolate;overflow:hidden;min-width:0;min-height:310px;padding:42px 39px 36px;border:1px solid rgba(38,93,184,.09);border-radius:23px;box-shadow:0 14px 34px rgba(35,75,139,.07);transition:transform .28s ease,box-shadow .3s ease,background .28s ease;}.about-why-card::before{content:"";position:absolute;inset:0;z-index:0;padding:2px;border-radius:inherit;pointer-events:none;opacity:0;background:linear-gradient(125deg,var(--blue-600),#852cff 48%,var(--pink-500));-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;transition:opacity .28s ease}.about-why-card::after{content:"";position:absolute;z-index:-1;width:220px;height:220px;right:-110px;bottom:-130px;border-radius:50%;background:radial-gradient(circle,rgba(87,79,238,.2),rgba(87,79,238,0) 70%);opacity:0;transform:scale(.7);transition:opacity .35s ease,transform .45s ease}.about-why-card:hover{z-index:2;transform:translateY(-7px);box-shadow:0 25px 52px rgba(37,82,162,.15)}.about-why-card:hover::before,.about-why-card:hover::after{opacity:1}.about-why-card:hover::after{transform:scale(1)}.about-why-card.why-strategy{background:linear-gradient(145deg,#e6edff,#edf3ff)}.about-why-card.why-scale{background:linear-gradient(145deg,#e2faf9,#e9f8fb)}.about-why-card.why-quality{background:linear-gradient(145deg,#e3ebff,#edf1ff)}.about-why-card.why-partnership{background:linear-gradient(145deg,#f0f1f8,#f7f7fb)}
.about-why-index{position:absolute;z-index:1;right:30px;top:25px;color:rgba(18,43,91,.24);font:700 .74rem/1 'Sora',sans-serif;letter-spacing:.09em}.about-why-icon{position:relative;z-index:1;display:grid;place-items:center;width:58px;height:58px;margin-bottom:26px;border:1px solid rgba(22,63,132,.07);border-radius:16px;background:rgba(255,255,255,.9);color:#0d1a39;box-shadow:0 9px 22px rgba(31,72,140,.08);transition:color .25s ease,background .25s ease,transform .3s ease,box-shadow .3s ease}.about-why-icon svg{width:28px;height:28px;fill:none;stroke:currentColor;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}.about-why-card:hover .about-why-icon{color:#fff;background:linear-gradient(135deg,#176dea,#654eea);transform:translateY(-3px) rotate(-3deg);box-shadow:0 13px 28px rgba(56,80,222,.25)}.about-why-card h3,.about-why-card p,.about-why-line{position:relative;z-index:1}.about-why-card h3{margin:0 0 13px;color:#091633;font-size:1.3rem;line-height:1.35;letter-spacing:-.025em;transition:color .25s ease}.about-why-card:hover h3{color:transparent;background:linear-gradient(110deg,var(--blue-600),#8b2cff 52%,var(--pink-500));-webkit-background-clip:text;background-clip:text}.about-why-card p{max-width:660px;margin:0;color:#485d7a;font-size:.91rem;line-height:1.72}.about-why-line{display:block;width:54px;height:3px;margin-top:24px;border-radius:99px;background:linear-gradient(90deg,#176cea,#6d4cf0);transition:width .35s ease}.about-why-card:hover .about-why-line{width:112px}

@media (max-width:850px){
  .about-why{padding:84px 0 90px}.about-why-grid{gap:16px}.about-why-card{min-height:300px;padding:34px 28px 30px}.about-why-head{margin-bottom:45px}.about-why-card h3{font-size:1.16rem}.about-why-card p{font-size:.84rem}
}
@media (max-width:680px){
  .about-why{padding:70px 0 74px}.about-why-shell{width:100%;max-width:100%;padding-left:18px;padding-right:18px}.about-why-head{margin-bottom:34px}.about-why-kicker{font-size:.59rem}.about-why-head h2{font-size:clamp(2rem,9vw,2.65rem);line-height:1.13;letter-spacing:-.035em}.about-why-head p{font-size:.86rem;line-height:1.65}.about-why-grid{grid-template-columns:1fr;gap:13px;width:100%;min-width:0}.about-why-card{width:100%;min-width:0;min-height:0;padding:27px 22px 25px;border-radius:18px}.about-why-index{right:20px;top:20px}.about-why-icon{width:50px;height:50px;margin-bottom:21px;border-radius:14px}.about-why-icon svg{width:24px;height:24px}.about-why-card h3{font-size:1.06rem}.about-why-card p{font-size:.79rem;line-height:1.66}.about-why-line{margin-top:19px}
}
@media (max-width:390px){
  .about-why-shell{padding-left:14px;padding-right:14px}.about-why-head h2{font-size:clamp(1.82rem,8.6vw,2.15rem)}.about-why-card{padding:24px 18px 22px}.about-why-card h3{padding-right:25px;font-size:1rem}.about-why-card p{font-size:.75rem}
}

/* About page leadership carousel */
.team-section{position:relative;overflow:hidden;padding:104px 0 110px;background:linear-gradient(180deg,#fff 0%,#f6f8fc 100%);}
.team-section::before{content:"";position:absolute;right:-130px;top:-180px;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(47,126,244,.13),rgba(47,126,244,0) 68%);pointer-events:none}.team-shell{max-width:1320px}.team-head{max-width:900px;margin:0 auto 56px;text-align:center}.team-head h2{margin:0;color:#071536;font-size:clamp(2.4rem,4vw,3.65rem);line-height:1.1;letter-spacing:-.05em}.team-head h2 span{position:relative;color:#1769ed}.team-head h2 span::after{content:"";position:absolute;left:2%;right:-3%;bottom:-8px;height:4px;border-radius:99px;background:linear-gradient(90deg,#1769ed,#6749f1);transform:rotate(-3deg)}.team-head p{max-width:760px;margin:20px auto 0;color:#586b85;font-size:1rem;line-height:1.68}
.team-carousel{position:relative}.team-carousel-viewport{width:100%;overflow:hidden;outline:none;touch-action:pan-y}.team-carousel-viewport:focus-visible{border-radius:26px;box-shadow:0 0 0 3px rgba(34,104,230,.22)}.team-carousel-track{display:flex;align-items:stretch;gap:24px;will-change:transform;transition:transform .7s cubic-bezier(.22,1,.36,1)}
.team-slide{position:relative;display:grid;grid-template-columns:minmax(320px,.4fr) minmax(0,.6fr);flex:0 0 calc(100% - 185px);min-width:0;min-height:570px;padding:34px;border:1px solid rgba(43,93,177,.08);border-radius:27px;background:#fff;box-shadow:0 20px 48px rgba(29,68,132,.09);transition:opacity .35s ease,transform .4s ease}.team-slide:not(.is-active){opacity:.72}.team-slide.is-active{opacity:1}.team-slide-clone{grid-template-columns:1fr;padding:34px;pointer-events:none}.team-slide-clone .team-photo-panel{height:100%}
.team-photo-panel{position:relative;overflow:hidden;min-width:0;height:100%;min-height:500px;border-radius:22px;background:linear-gradient(145deg,#eef3fb,#e5eaf3);isolation:isolate}.team-photo-panel::before{content:"";position:absolute;z-index:-1;left:50%;bottom:4%;width:80%;aspect-ratio:1;border:1px solid rgba(43,110,225,.16);border-radius:50%;transform:translateX(-50%);box-shadow:0 0 0 19px rgba(43,110,225,.035),0 0 0 38px rgba(43,110,225,.025)}.team-photo-glow{position:absolute;z-index:-1;left:50%;bottom:-22%;width:115%;height:85%;border-radius:50%;transform:translateX(-50%);filter:blur(30px);opacity:.5}.team-photo-joy .team-photo-glow{background:rgba(250,145,187,.4)}.team-photo-hardik .team-photo-glow{background:rgba(237,69,105,.22)}.team-photo-siddharth .team-photo-glow{background:rgba(77,143,244,.25)}.team-photo-panel img{position:absolute;z-index:1;left:50%;bottom:0;width:100%;height:96%;max-width:none;object-fit:contain;object-position:center bottom;transform:translateX(-50%);filter:drop-shadow(0 14px 18px rgba(24,44,84,.13))}
.team-member-copy{display:flex;flex-direction:column;min-width:0;padding:22px 26px 14px 42px}.team-member-topline{display:flex;align-items:flex-start;justify-content:space-between;gap:24px}.team-member-eyebrow{display:block;margin-bottom:8px;color:#1768e9;font:700 .72rem/1.2 'Sora',sans-serif;letter-spacing:.06em;text-transform:uppercase}.team-member-topline h3{margin:0;color:#071536;font-size:clamp(2rem,3vw,2.8rem);line-height:1.08;letter-spacing:-.04em}.team-member-role{margin:8px 0 0;color:#526681;font-size:.95rem}.team-linkedin{display:grid;place-items:center;flex:none;width:46px;height:46px;border-radius:12px;background:#0a66c2;color:#fff;box-shadow:0 11px 25px rgba(10,102,194,.24);transition:transform .25s ease,box-shadow .25s ease,background .25s ease}.team-linkedin:hover{transform:translateY(-4px) scale(1.04);background:#084f99;box-shadow:0 16px 30px rgba(10,102,194,.32)}.team-linkedin:focus-visible{outline:3px solid rgba(10,102,194,.25);outline-offset:3px}.team-linkedin svg{width:24px;height:24px;fill:currentColor}
.team-badge{display:inline-flex;align-items:center;align-self:flex-start;gap:7px;margin:17px 0 19px;padding:7px 13px;border:1px solid rgba(41,103,225,.18);border-radius:99px;background:#f2f6ff;color:#1f5dd3;font-size:.72rem;font-weight:700}.team-badge svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.team-member-bio p{margin:0 0 14px;color:#405573;font-size:.87rem;line-height:1.68}.team-member-copy blockquote{margin:auto 0 0;padding:13px 0 13px 18px;border-left:3px solid #1769ed;color:#10203e;font-family:'Sora',sans-serif;font-size:.82rem;font-weight:600;line-height:1.55}
.team-carousel-controls{display:flex;align-items:center;justify-content:center;gap:16px;margin-top:31px}.team-arrow{display:grid;place-items:center;width:50px;height:50px;border:1px solid rgba(20,42,85,.15);border-radius:50%;background:#fff;color:#0a1732;box-shadow:0 8px 20px rgba(33,69,130,.08);transition:transform .22s ease,background .22s ease,color .22s ease,box-shadow .22s ease}.team-arrow:hover{transform:translateY(-3px);background:#0b1733;color:#fff;box-shadow:0 13px 26px rgba(18,44,94,.2)}.team-arrow:focus-visible{outline:3px solid rgba(37,105,226,.24);outline-offset:3px}.team-arrow svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.team-carousel-count{display:flex;align-items:baseline;gap:4px;min-width:62px;justify-content:center;color:#8290a6;font-size:.72rem}.team-carousel-count strong{color:#1767e8;font-family:'Sora',sans-serif;font-size:1rem}
.team-arrow:disabled{opacity:.34;filter:blur(.35px);cursor:default;pointer-events:none;background:#f7f8fb;color:#65738a;box-shadow:0 4px 12px rgba(33,69,130,.05);transform:none}
.team-photo-panel img{height:100%;object-fit:cover}

@media (max-width:1050px){
  .team-carousel-track{gap:20px}.team-slide{grid-template-columns:minmax(270px,.42fr) minmax(0,.58fr);flex-basis:100%;width:100%;min-height:555px;padding:26px;gap:12px}.team-photo-panel{min-height:503px}.team-member-copy{padding:17px 10px 10px 22px}.team-member-topline h3{font-size:clamp(1.8rem,3.4vw,2.35rem)}.team-member-bio p{font-size:.82rem}.team-member-copy blockquote{font-size:.77rem}
}
@media (max-width:720px){
  .team-section{padding:82px 0 88px}.team-head{margin-bottom:42px}.team-slide{grid-template-columns:1fr;flex-basis:100%;width:100%;min-height:0;padding:22px;gap:0}.team-photo-panel{height:430px;min-height:0}.team-photo-panel img{object-fit:contain;object-position:center bottom}.team-member-copy{padding:28px 12px 8px}.team-member-bio{display:block}.team-member-bio p{margin-bottom:14px}.team-member-copy blockquote{margin-top:20px}.team-slide-clone{display:block}.team-slide-clone .team-photo-panel{height:100%}
}
@media (max-width:620px){
  .team-section{padding:70px 0 74px}.team-shell{width:100%;max-width:100%;padding-left:18px;padding-right:18px}.team-head{margin-bottom:34px}.team-head h2{font-size:clamp(2rem,9vw,2.65rem);line-height:1.13;letter-spacing:-.035em}.team-head p{font-size:.86rem;line-height:1.65}.team-carousel-viewport{width:100%;max-width:100%}.team-carousel-track{gap:14px}.team-slide{flex-basis:100%;width:100%;max-width:100%;padding:15px;border-radius:20px}.team-slide-clone{display:none}.team-photo-panel{height:345px;border-radius:16px}.team-member-copy{padding:24px 3px 5px}.team-member-topline{gap:13px}.team-member-eyebrow{font-size:.62rem}.team-member-topline h3{font-size:1.85rem}.team-member-role{font-size:.79rem}.team-linkedin{width:42px;height:42px;border-radius:11px}.team-linkedin svg{width:22px;height:22px}.team-badge{margin:14px 0 17px;font-size:.64rem}.team-member-bio{display:block}.team-member-bio p{margin-bottom:14px;font-size:.76rem;line-height:1.65}.team-member-copy blockquote{font-size:.72rem}.team-carousel-controls{margin-top:24px}.team-arrow{width:46px;height:46px}
}
@media (max-width:390px){
  .team-shell{padding-left:14px;padding-right:14px}.team-head h2{font-size:clamp(1.84rem,8.7vw,2.18rem)}.team-photo-panel{height:310px}.team-slide{padding:12px}.team-member-copy{padding-top:21px}.team-member-topline h3{font-size:1.65rem}.team-member-bio p{font-size:.73rem}
}

/* Tablet/iPad leadership layout: full image first, then one clean content column. */
@media (min-width:621px) and (max-width:1180px),
       (min-width:1181px) and (max-width:1366px) and (any-pointer:coarse){
  .team-section{padding:86px 0 92px}
  .team-shell{width:100%;max-width:100%;padding-left:clamp(20px,3.2vw,38px);padding-right:clamp(20px,3.2vw,38px)}
  .team-head{max-width:850px;margin-bottom:44px;padding:0 12px}
  .team-head h2{font-size:clamp(2.25rem,5.1vw,3.25rem)}
  .team-head p{max-width:760px;font-size:clamp(.88rem,1.6vw,.98rem);line-height:1.68}
  .team-carousel-track{gap:20px}
  .team-slide{
    display:grid;grid-template-columns:minmax(0,1fr);grid-template-rows:auto auto;
    align-items:start;gap:0;
    flex:0 0 100%;width:100%;max-width:100%;min-height:0;
    padding:clamp(20px,3vw,30px);border-radius:25px;
  }
  .team-slide-clone{display:none}
  .team-photo-panel{
    grid-column:1;grid-row:1;
    width:100%;height:clamp(360px,52vw,520px);min-height:0;border-radius:20px;
  }
  .team-photo-panel img{
    width:100%;height:100%;object-fit:contain;object-position:center bottom;
  }
  .team-member-copy{
    grid-column:1;grid-row:2;display:flex;flex-direction:column;
    width:100%;min-width:0;padding:clamp(26px,3.6vw,36px) clamp(10px,2vw,18px) 8px;
  }
  .team-member-topline{width:100%;align-items:flex-start;justify-content:space-between;gap:24px;padding:0}
  .team-member-eyebrow{margin-bottom:7px;font-size:.68rem}
  .team-member-topline h3{font-size:clamp(2rem,4vw,2.55rem)}
  .team-member-role{max-width:none;font-size:.9rem;line-height:1.55}
  .team-linkedin{width:46px;height:46px}
  .team-badge{align-self:flex-start;margin:18px 0 20px;max-width:100%;white-space:normal;line-height:1.35}
  .team-member-bio{display:block;width:100%;max-width:none;margin:0;padding:0}
  .team-member-bio p{width:100%;margin:0 0 16px;color:#405573;font-size:.84rem;line-height:1.72}
  .team-member-copy blockquote{width:100%;margin:14px 0 0;padding:14px 18px;font-size:.78rem;line-height:1.58}
  .team-carousel-controls{margin-top:30px}
}

@media (min-width:621px) and (max-width:760px){
  .team-shell{padding-left:20px;padding-right:20px}
  .team-slide{padding:20px}
  .team-photo-panel{height:clamp(350px,58vw,430px)}
  .team-member-copy{padding:27px 10px 7px}
  .team-member-topline{gap:16px}
  .team-member-topline h3{font-size:1.95rem}
  .team-member-role{font-size:.84rem}
  .team-badge{margin:16px 0 19px;font-size:.67rem}
  .team-member-bio p{font-size:.8rem;line-height:1.7}
}

/* About page company FAQs — built on the Web Development FAQ system. */
.about-company-faq{position:relative;overflow:hidden;padding:104px 0 96px;background:#fff;}
.about-company-faq::before{content:"";position:absolute;left:-170px;top:70px;width:420px;height:420px;border-radius:50%;background:radial-gradient(circle,rgba(38,116,241,.065),rgba(38,116,241,0) 69%);pointer-events:none;}
.about-company-faq .container{position:relative;z-index:1;max-width:1260px;}
.about-company-faq .section-head{max-width:850px;margin-bottom:48px;}
.about-faq-kicker{display:inline-flex;margin-bottom:16px;padding:7px 15px;border:1px solid rgba(37,103,224,.15);border-radius:99px;background:#f3f7ff;color:#1767e8;font:700 .66rem/1 'Sora',sans-serif;letter-spacing:.06em;text-transform:uppercase;}
.about-company-faq .section-head h2{color:#071536;font-size:clamp(2.35rem,4vw,3.45rem);line-height:1.12;letter-spacing:-.045em;}
.about-company-faq .section-head p{max-width:770px;margin:18px auto 0;color:#566b87;font-size:1rem;line-height:1.7;}
.about-company-faq .faq-list{max-width:1100px;}
.about-company-faq .faq-item{border-color:#dfe6f1;}
.about-company-faq .faq-q{min-height:88px;padding:26px 10px;color:#09142d;font-size:1rem;line-height:1.45;transition:color .25s ease,padding-left .25s ease;}
.about-company-faq .faq-q:hover{padding-left:16px;color:#1767e8;}
.about-company-faq .faq-item.is-open .faq-q{color:#1767e8;}
.about-company-faq .faq-a p{max-width:980px;padding:0 10px 26px;color:#536781;font-size:.9rem;line-height:1.75;}
.about-company-faq .faq-more-wrap{margin-top:42px;}
.about-company-faq .btn-outline-dark{min-width:205px;border-color:#28456f;background:#fff;color:#263f63;}
.about-company-faq .btn-outline-dark:hover{background:#0a1733;color:#fff;border-color:#0a1733;}
#aboutFaqMoreBtn.is-open{display:none;}

/* About page careers invitation. */
.about-careers{padding:28px 0 104px;background:linear-gradient(180deg,#fff 0%,#f6f8fc 100%);}
.about-careers-shell{max-width:1380px;}
.about-careers-card{position:relative;isolation:isolate;overflow:hidden;display:grid;place-items:center;min-height:350px;padding:54px;border:1px solid rgba(255,255,255,.2);border-radius:28px;background:linear-gradient(118deg,#164af0 0%,#0a74f7 48%,#1763ee 100%);box-shadow:0 28px 65px rgba(23,91,222,.24);}
.about-careers-card::before{content:"";position:absolute;z-index:-1;inset:0;background:radial-gradient(circle at 50% 118%,rgba(37,224,243,.25),transparent 36%),linear-gradient(120deg,rgba(255,255,255,.08),transparent 30% 70%,rgba(255,255,255,.07));pointer-events:none;}
.about-careers-rings{position:absolute;z-index:-1;width:470px;height:470px;border:1px solid rgba(255,255,255,.24);border-radius:50%;box-shadow:0 0 0 52px rgba(255,255,255,.08),0 0 0 104px rgba(255,255,255,.055),0 0 0 156px rgba(255,255,255,.035);pointer-events:none;}
.about-careers-rings.rings-left{left:-340px;top:-58px;}
.about-careers-rings.rings-right{right:-340px;top:-58px;}
.about-careers-copy{max-width:780px;text-align:center;color:#fff;}
.about-careers-kicker{display:inline-flex;margin-bottom:17px;padding:8px 15px;border:1px solid rgba(255,255,255,.22);border-radius:99px;background:rgba(255,255,255,.11);font:700 .63rem/1 'Sora',sans-serif;letter-spacing:.065em;text-transform:uppercase;backdrop-filter:blur(8px);}
.about-careers-copy h2{margin:0;color:#fff;font-size:clamp(2.25rem,4vw,3.55rem);line-height:1.12;letter-spacing:-.045em;}
.about-careers-copy p{max-width:670px;margin:18px auto 27px;color:rgba(255,255,255,.82);font-size:.94rem;line-height:1.7;}
.about-careers-button{display:inline-flex;align-items:center;justify-content:center;gap:12px;min-width:222px;min-height:57px;padding:0 25px;border-radius:999px;background:linear-gradient(100deg,#ff4f91,#ef1760);color:#fff;font-family:'Sora',sans-serif;font-size:.85rem;font-weight:700;box-shadow:0 14px 32px rgba(115,7,55,.28);transition:transform .25s ease,box-shadow .25s ease;}
.about-careers-button:hover{transform:translateY(-4px);box-shadow:0 19px 38px rgba(115,7,55,.36);}
.about-careers-button:focus-visible{outline:3px solid rgba(255,255,255,.5);outline-offset:4px;}
.about-careers-button svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round;transition:transform .25s ease;}
.about-careers-button:hover svg{transform:translateX(4px);}

@media (max-width:760px){
  .about-company-faq{padding:72px 0 68px;}
  .about-company-faq .container,.about-careers-shell{width:100%;max-width:100%;padding-left:18px;padding-right:18px;}
  .about-company-faq .section-head{margin-bottom:31px;}
  .about-faq-kicker{margin-bottom:13px;font-size:.58rem;}
  .about-company-faq .section-head h2{font-size:clamp(2rem,9vw,2.65rem);line-height:1.13;letter-spacing:-.035em;}
  .about-company-faq .section-head p{font-size:.84rem;line-height:1.65;}
  .about-company-faq .faq-q{min-height:76px;padding:21px 3px;gap:13px;font-size:.82rem;line-height:1.5;}
  .about-company-faq .faq-q:hover{padding-left:3px;}
  .about-company-faq .faq-item .chev{width:18px;height:18px;}
  .about-company-faq .faq-a p{padding:0 3px 22px;font-size:.76rem;line-height:1.7;}
  .about-company-faq .faq-more-wrap{margin-top:32px;}
  .about-company-faq .btn-outline-dark{min-width:185px;}

  .about-careers{padding:20px 0 72px;}
  .about-careers-card{min-height:380px;padding:44px 22px;border-radius:22px;}
  .about-careers-rings{width:310px;height:310px;box-shadow:0 0 0 37px rgba(255,255,255,.07),0 0 0 74px rgba(255,255,255,.045),0 0 0 111px rgba(255,255,255,.028);}
  .about-careers-rings.rings-left{left:-270px;top:35px;}
  .about-careers-rings.rings-right{right:-270px;top:35px;}
  .about-careers-kicker{font-size:.57rem;}
  .about-careers-copy h2{font-size:clamp(2rem,9vw,2.65rem);line-height:1.14;letter-spacing:-.035em;}
  .about-careers-copy p{font-size:.8rem;line-height:1.65;}
  .about-careers-button{width:100%;max-width:260px;min-height:54px;font-size:.78rem;}
}

@media (max-width:390px){
  .about-company-faq .container,.about-careers-shell{padding-left:14px;padding-right:14px;}
  .about-company-faq .section-head h2{font-size:clamp(1.84rem,8.7vw,2.2rem);}
  .about-company-faq .faq-q{font-size:.77rem;}
  .about-careers-card{min-height:360px;padding:38px 17px;}
  .about-careers-copy h2{font-size:clamp(1.84rem,8.8vw,2.2rem);}
}

/* Dedicated Insights page */
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important;}
body.page-insights .site-header{background:rgba(255,255,255,.92);backdrop-filter:blur(14px);box-shadow:0 4px 24px rgba(10,15,36,.07);}
body.page-insights .site-header .nav-link{color:var(--navy-800);}
body.page-insights .site-header .nav-link:hover,body.page-insights .site-header .nav-link.active{color:var(--blue-600);}
body.page-insights .site-header .nav-toggle span{background:var(--navy-900);}
body.page-insights .site-header .nav-item .nav-caret{color:var(--gray-400);}
body.page-insights .site-header .nav-item:hover .nav-caret,body.page-insights .site-header .nav-item.is-open .nav-caret{color:var(--blue-600);}
body.page-insights .site-header .nav-item.is-open > .nav-link{color:var(--blue-600);}
.insights-page-hero{position:relative;overflow:hidden;min-height:100vh;padding:calc(var(--header-h) + 72px) 0 105px;background:linear-gradient(180deg,#fbfdff 0%,#f5f8fd 100%);}
.insights-page-hero::before{content:"";position:absolute;inset:0;pointer-events:none;background-image:radial-gradient(rgba(65,121,221,.14) 1px,transparent 1px);background-size:25px 25px;opacity:.16;mask-image:linear-gradient(to bottom,#000,transparent 42%);}
.insights-page-glow{position:absolute;border-radius:50%;filter:blur(4px);pointer-events:none;}.insights-page-glow.glow-one{left:-170px;top:80px;width:470px;height:470px;background:radial-gradient(circle,rgba(66,141,246,.12),transparent 69%)}.insights-page-glow.glow-two{right:-130px;top:250px;width:430px;height:430px;background:radial-gradient(circle,rgba(110,78,240,.09),transparent 70%)}
.insights-page-shell{position:relative;z-index:1;max-width:1390px;}
.insights-page-head{max-width:870px;margin:0 auto 55px;text-align:center;}
.insights-page-kicker{display:inline-flex;margin-bottom:20px;padding:8px 18px;border:1px solid rgba(31,103,228,.32);border-radius:99px;background:rgba(255,255,255,.78);color:#1766e8;font:700 .67rem/1 'Sora',sans-serif;letter-spacing:.13em;text-transform:uppercase;box-shadow:0 7px 20px rgba(35,89,168,.06);}
.insights-page-head h1{margin:0;color:#071536;font-size:clamp(2.7rem,4.55vw,4.25rem);line-height:1.08;letter-spacing:-.055em;}.insights-page-head h1 span{color:transparent;background:linear-gradient(105deg,#1b5def,#4575ff 50%,#6549ee);-webkit-background-clip:text;background-clip:text;}
.insights-page-head p{max-width:770px;margin:21px auto 0;color:#60728d;font-size:1.02rem;line-height:1.7;}
.insights-toolbar{display:flex;align-items:center;justify-content:space-between;gap:32px;margin-bottom:28px;}
.insights-search{display:flex;align-items:center;gap:13px;width:min(430px,100%);height:54px;padding:0 17px;border:1px solid rgba(43,105,215,.19);border-radius:14px;background:rgba(255,255,255,.82);box-shadow:0 8px 22px rgba(39,78,144,.045);transition:border-color .2s ease,box-shadow .2s ease;}.insights-search:focus-within{border-color:#3d79ed;box-shadow:0 0 0 4px rgba(49,112,232,.1)}.insights-search svg{flex:none;width:20px;height:20px;fill:none;stroke:#0d1c38;stroke-width:1.8;stroke-linecap:round}.insights-search input{width:100%;min-width:0;border:0;outline:0;background:transparent;color:#101d38;font:500 .83rem/1.2 'Inter',sans-serif;}.insights-search input::placeholder{color:#7c8da7;}
.insights-filters{display:flex;align-items:center;justify-content:flex-end;gap:10px;}.insights-filter{min-height:40px;padding:0 20px;border:1px solid #d6dfed;border-radius:99px;background:rgba(255,255,255,.72);color:#233654;font-size:.73rem;font-weight:500;transition:color .2s ease,border-color .2s ease,background .2s ease,box-shadow .2s ease,transform .2s ease;}.insights-filter:hover{transform:translateY(-2px);border-color:#7da6ef;color:#1a61da}.insights-filter.is-active{border-color:#1c66ef;background:#fff;color:#175ee0;font-weight:700;box-shadow:0 7px 18px rgba(35,96,216,.1)}
.insights-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;align-items:stretch;}
.insights-page-card{display:flex;overflow:hidden;flex-direction:column;min-width:0;border:1px solid rgba(52,96,170,.1);border-radius:19px;background:#fff;box-shadow:0 16px 38px rgba(34,72,135,.075);transition:transform .3s ease,box-shadow .3s ease,opacity .25s ease;}.insights-page-card:hover{transform:translateY(-7px);box-shadow:0 25px 52px rgba(34,72,135,.14)}.insights-page-card.is-hidden{display:none;}
.insights-page-media{display:block;overflow:hidden;height:228px;margin:10px 10px 0;border-radius:13px;background:#dfe9f8;}.insights-page-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}.insights-page-media img.insights-poster-contain{padding:7px;object-fit:contain;background:linear-gradient(145deg,#f4f8ff,#eaf2ff)}.insights-page-card:hover .insights-page-media img{transform:scale(1.035)}
.insights-page-card-body{display:flex;flex:1;flex-direction:column;padding:19px 21px 24px;}.insights-card-meta{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:15px;}.insights-card-meta span{display:inline-flex;align-items:center;min-height:28px;padding:5px 12px;border-radius:99px;background:#edf3ff;color:#1763e8;font-size:.67rem;font-weight:700;line-height:1.1;}.insights-card-meta time{flex:none;color:#596b85;font-size:.68rem;}.insights-page-card h2{margin:0;color:#091631;font-size:1.1rem;line-height:1.38;letter-spacing:-.025em;}.insights-page-card p{margin:12px 0 22px;color:#526681;font-size:.79rem;line-height:1.68;}.insights-read-link{display:inline-flex;align-items:center;gap:10px;margin-top:auto;color:#1764e8;font-size:.73rem;font-weight:700;}.insights-read-link svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;transition:transform .2s ease}.insights-read-link:hover svg{transform:translateX(5px)}
.insights-empty{margin:42px auto 0;padding:24px;border:1px dashed #becce1;border-radius:16px;background:#fff;color:#5b6e89;text-align:center;}
.insights-newsletter{display:grid;grid-template-columns:70px minmax(280px,.85fr) minmax(380px,1.15fr);align-items:center;gap:26px;margin-top:42px;padding:30px 34px;border:1px solid rgba(41,104,222,.22);border-radius:18px;background:linear-gradient(105deg,rgba(241,247,255,.97),rgba(250,252,255,.92));box-shadow:0 16px 38px rgba(36,78,151,.055);}.insights-newsletter-icon{display:grid;place-items:center;width:64px;height:64px;border-radius:15px;background:linear-gradient(145deg,#e2ebff,#edf3ff);color:#1767eb}.insights-newsletter-icon svg{width:32px;height:32px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.insights-newsletter-copy h2{margin:0;color:#0a1732;font-size:1.15rem;line-height:1.35;letter-spacing:-.025em}.insights-newsletter-copy p{max-width:430px;margin:8px 0 0;color:#5a6d88;font-size:.78rem;line-height:1.55}.insights-newsletter-fields{display:grid;grid-template-columns:minmax(0,1fr) 130px;gap:12px}.insights-newsletter-fields input{width:100%;min-width:0;height:50px;padding:0 16px;border:1px solid #d5deec;border-radius:10px;background:#fff;color:#0a1732;font:500 .8rem/1 'Inter',sans-serif;outline:0}.insights-newsletter-fields input:focus{border-color:#3a7beb;box-shadow:0 0 0 4px rgba(49,112,232,.09)}.insights-newsletter-fields button{height:50px;border-radius:10px;background:linear-gradient(110deg,#1858e9,#2e70f4);color:#fff;font-size:.78rem;font-weight:700;box-shadow:0 10px 22px rgba(31,95,226,.2);transition:transform .2s ease,box-shadow .2s ease}.insights-newsletter-fields button:hover{transform:translateY(-2px);box-shadow:0 14px 27px rgba(31,95,226,.27)}.insights-newsletter-form small{display:block;margin-top:8px;color:#61738e;font-size:.66rem}.insights-newsletter-form.is-success .insights-newsletter-fields{display:none}.insights-newsletter-form.is-success small{margin:0;padding:14px 16px;border-radius:10px;background:#eaf8ef;color:#18743a;font-size:.77rem;font-weight:600}

@media (max-width:1080px){
  .insights-toolbar{align-items:flex-start;flex-direction:column;gap:18px}.insights-search{width:100%}.insights-filters{width:100%;justify-content:flex-start}.insights-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.insights-newsletter{grid-template-columns:64px minmax(0,1fr)}.insights-newsletter-form{grid-column:1/-1}.insights-newsletter-fields{grid-template-columns:minmax(0,1fr) 150px}
}
@media (max-width:700px){
  .insights-page-hero{padding:calc(var(--header-h) + 43px) 0 72px}.insights-page-shell{width:100%;max-width:100%;padding-left:18px;padding-right:18px}.insights-page-head{margin-bottom:38px}.insights-page-kicker{margin-bottom:16px;padding:7px 14px;font-size:.58rem}.insights-page-head h1{font-size:clamp(2.05rem,10vw,2.8rem);line-height:1.13;letter-spacing:-.04em}.insights-page-head p{font-size:.84rem;line-height:1.65}.insights-toolbar{margin-bottom:23px}.insights-search{height:51px}.insights-filters{overflow-x:auto;padding:1px 1px 8px;scrollbar-width:none}.insights-filters::-webkit-scrollbar{display:none}.insights-filter{flex:none;min-height:38px;padding:0 17px;font-size:.68rem}.insights-card-grid{grid-template-columns:1fr;gap:15px}.insights-page-media{height:auto;aspect-ratio:16/9}.insights-page-card-body{padding:18px 18px 22px}.insights-page-card h2{font-size:1.04rem}.insights-page-card p{font-size:.77rem}.insights-newsletter{grid-template-columns:52px minmax(0,1fr);gap:16px;margin-top:30px;padding:23px 18px}.insights-newsletter-icon{width:52px;height:52px}.insights-newsletter-icon svg{width:27px;height:27px}.insights-newsletter-copy h2{font-size:.98rem}.insights-newsletter-copy p{font-size:.72rem}.insights-newsletter-form{grid-column:1/-1}.insights-newsletter-fields{grid-template-columns:1fr}.insights-newsletter-fields button{width:100%}.page-insights .back-top{display:none}
}
@media (max-width:390px){
  .insights-page-shell{padding-left:14px;padding-right:14px}.insights-page-head h1{font-size:clamp(1.9rem,9.5vw,2.25rem)}.insights-card-meta{align-items:flex-start;flex-direction:column;gap:8px}.insights-newsletter{grid-template-columns:1fr;text-align:center}.insights-newsletter-icon{margin:0 auto}.insights-newsletter-copy p{margin-left:auto;margin-right:auto}
}

/* Property Technology article */
.blog-article{background:#fff;color:#172641;}
.blog-hero{position:relative;overflow:hidden;padding:calc(var(--header-h) + 55px) 0 74px;background:linear-gradient(180deg,#f7faff 0%,#fff 100%);}
.blog-hero::before{content:"";position:absolute;inset:0;pointer-events:none;background-image:radial-gradient(rgba(60,118,225,.13) 1px,transparent 1px);background-size:25px 25px;opacity:.21;mask-image:linear-gradient(to bottom,#000,transparent 70%);}
.blog-hero-glow{position:absolute;border-radius:50%;pointer-events:none;}.blog-hero-glow.glow-one{left:-190px;top:40px;width:520px;height:520px;background:radial-gradient(circle,rgba(45,132,244,.13),transparent 68%)}.blog-hero-glow.glow-two{right:-180px;top:150px;width:500px;height:500px;background:radial-gradient(circle,rgba(108,72,239,.1),transparent 70%)}
.blog-hero-shell{position:relative;z-index:1;max-width:1320px;}
.blog-breadcrumbs{display:flex;align-items:center;justify-content:center;gap:9px;margin-bottom:34px;color:#71819a;font-size:.7rem;}.blog-breadcrumbs a{color:#516681;transition:color .2s ease}.blog-breadcrumbs a:hover{color:#1767e9}
.blog-title-wrap{max-width:1120px;margin:0 auto;text-align:center;}.blog-category{display:inline-flex;align-items:center;min-height:31px;margin-bottom:19px;padding:6px 15px;border:1px solid rgba(39,105,226,.18);border-radius:99px;background:#edf4ff;color:#1763e8;font:700 .65rem/1 'Sora',sans-serif;letter-spacing:.055em;text-transform:uppercase}.blog-title-wrap h1{max-width:1120px;margin:0 auto;color:#071536;font-size:clamp(2.35rem,3.65vw,3.3rem);line-height:1.13;letter-spacing:-.048em;text-wrap:balance}.blog-deck{max-width:820px;margin:24px auto 0;color:#566b87;font-size:1.03rem;line-height:1.72}.blog-meta{display:flex;align-items:center;justify-content:center;gap:10px;margin-top:22px;color:#6e7f97;font-size:.72rem}.blog-meta strong{color:#263b5c}
.blog-poster{overflow:hidden;max-width:1120px;margin:51px auto 0;border:1px solid rgba(43,93,177,.1);border-radius:25px;background:#eaf1fb;box-shadow:0 28px 65px rgba(34,75,145,.16)}.blog-poster img{display:block;width:100%;aspect-ratio:16/8.7;object-fit:cover;object-position:center top}.blog-poster img.blog-poster-contain{padding:12px;object-fit:contain;background:linear-gradient(135deg,#edf4ff,#f9fbff)}.blog-poster figcaption{padding:12px 20px;background:#fff;color:#657792;font-size:.68rem;line-height:1.5;text-align:center}
.blog-layout{display:grid;grid-template-columns:220px minmax(0,820px);justify-content:center;align-items:start;gap:65px;max-width:1240px;padding-top:82px;padding-bottom:105px}.blog-toc{position:relative}.blog-toc-card{position:sticky;top:94px;display:flex;flex-direction:column;gap:11px;padding:23px 20px;border:1px solid #dfe7f3;border-radius:17px;background:#f8faff;box-shadow:0 12px 28px rgba(34,72,135,.055)}.blog-toc-card strong{margin-bottom:5px;color:#091631;font-family:'Sora',sans-serif;font-size:.8rem}.blog-toc-card a{color:#61738d;font-size:.7rem;line-height:1.45;transition:color .2s ease,transform .2s ease}.blog-toc-card a:hover{color:#1767e9;transform:translateX(3px)}
.blog-content{min-width:0;color:#425875;font-size:1rem;line-height:1.82}.blog-content>p,.blog-content section>p{margin:0 0 20px}.blog-content strong{color:#182d4c}.blog-lead{color:#2f4667;font-size:1.13rem;line-height:1.78}.blog-content section{scroll-margin-top:95px;margin-top:76px}.blog-section-label{display:inline-flex;margin-bottom:12px;color:#1767e9;font:700 .66rem/1 'Sora',sans-serif;letter-spacing:.075em;text-transform:uppercase}.blog-content h2{margin:0 0 21px;color:#071536;font-size:clamp(1.8rem,3vw,2.45rem);line-height:1.23;letter-spacing:-.04em}.blog-content h3{color:#0d1c39;letter-spacing:-.022em}.blog-content ul{padding-left:21px}.blog-content li+li{margin-top:9px}
.blog-summary{display:grid;grid-template-columns:54px minmax(0,1fr);gap:18px;margin-top:38px!important;padding:28px 29px;border:1px solid rgba(44,106,220,.17);border-radius:19px;background:linear-gradient(130deg,#eff5ff,#f8fbff);box-shadow:0 13px 30px rgba(34,72,135,.055)}.blog-summary-icon{display:grid;place-items:center;width:52px;height:52px;border-radius:14px;background:linear-gradient(135deg,#1766e8,#397ef1);color:#fff;box-shadow:0 10px 24px rgba(30,98,226,.22)}.blog-summary-icon svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.blog-summary h2{margin:2px 0 11px;font-size:1.2rem}.blog-summary ul{margin:0;padding-left:18px;font-size:.85rem;line-height:1.65}
.blog-problem-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px;margin:28px 0}.blog-problem-grid article{position:relative;padding:22px 20px;border:1px solid #e0e8f3;border-radius:16px;background:#fbfcff}.blog-problem-grid article>span{position:absolute;right:15px;top:14px;color:#a8b6ca;font:700 .65rem/1 'Sora',sans-serif}.blog-problem-grid h3{margin:0 0 7px;font-size:.94rem}.blog-problem-grid p{margin:0;font-size:.79rem;line-height:1.62}.blog-quote{margin:30px 0;padding:23px 25px;border-left:4px solid #1767e9;border-radius:0 15px 15px 0;background:#f4f8ff;color:#172c4e;font-family:'Sora',sans-serif;font-size:1rem;font-weight:600;line-height:1.62}
.blog-flow,.blog-decision-path{display:flex;align-items:center;justify-content:center;gap:8px;margin:29px 0;padding:18px 15px;border:1px solid #dfe7f3;border-radius:15px;background:#fafcff;flex-wrap:wrap}.blog-flow span,.blog-decision-path span{padding:8px 10px;border-radius:9px;background:#eaf2ff;color:#1c54b3;font-size:.69rem;font-weight:700}.blog-flow i,.blog-decision-path i{color:#3a72dc;font-style:normal;font-weight:700}
.blog-numbered-list{display:flex;flex-direction:column;gap:14px}.blog-numbered-list article{display:grid;grid-template-columns:52px minmax(0,1fr);gap:17px;padding:23px 24px;border:1px solid #e0e7f2;border-radius:17px;background:#fff;box-shadow:0 8px 22px rgba(35,73,137,.04)}.blog-numbered-list article>span{display:grid;place-items:center;width:50px;height:50px;border-radius:14px;background:#edf4ff;color:#1766e8;font:700 .75rem/1 'Sora',sans-serif}.blog-numbered-list h3{margin:1px 0 8px;font-size:1rem}.blog-numbered-list p{margin:0;font-size:.84rem;line-height:1.67}
.blog-decision-path{border-color:rgba(38,104,224,.17);background:linear-gradient(105deg,#f2f7ff,#fafcff)}.blog-decision-path span{background:#fff;box-shadow:0 5px 13px rgba(35,73,137,.06)}
.blog-check-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px;margin:25px 0!important;padding:0!important;list-style:none}.blog-check-list li{position:relative;margin:0!important;padding:14px 14px 14px 39px;border:1px solid #e2e9f3;border-radius:13px;background:#fbfcff;color:#2f4667;font-size:.78rem;line-height:1.5}.blog-check-list li::before{content:"✓";position:absolute;left:14px;top:14px;display:grid;place-items:center;width:18px;height:18px;border-radius:50%;background:#e7f8ed;color:#18a849;font-size:.65rem;font-weight:800}.blog-insight-callout{margin-top:28px;padding:23px 25px;border:1px solid rgba(33,111,227,.18);border-radius:16px;background:linear-gradient(130deg,#edf5ff,#f9fbff)}.blog-insight-callout strong{display:block;margin-bottom:6px;color:#115ecf;font-family:'Sora',sans-serif}.blog-insight-callout p{margin:0;font-size:.82rem;line-height:1.65}
.blog-roadmap{display:flex;flex-direction:column;margin:29px 0 0;padding:0;list-style:none;counter-reset:none}.blog-roadmap li{position:relative;display:grid;grid-template-columns:47px minmax(0,1fr);gap:18px;margin:0!important;padding:0 0 26px}.blog-roadmap li:not(:last-child)::before{content:"";position:absolute;left:23px;top:44px;bottom:0;width:1px;background:#cbd9ee}.blog-roadmap li>span{position:relative;z-index:1;display:grid;place-items:center;width:46px;height:46px;border-radius:50%;background:linear-gradient(135deg,#165fe5,#4a82f0);color:#fff;font:700 .75rem/1 'Sora',sans-serif;box-shadow:0 8px 19px rgba(26,94,222,.19)}.blog-roadmap h3{margin:2px 0 7px;font-size:.98rem}.blog-roadmap p{margin:0;font-size:.82rem;line-height:1.65}
.blog-metrics-table{overflow:hidden;margin-top:28px;border:1px solid #dfe7f2;border-radius:16px}.blog-metrics-table>div{display:grid;grid-template-columns:minmax(150px,.35fr) minmax(0,.65fr)}.blog-metrics-table>div+div{border-top:1px solid #e5ebf4}.blog-metrics-table strong,.blog-metrics-table span{padding:14px 16px}.blog-metrics-table>div:first-child{background:#0c1d3e;color:#fff}.blog-metrics-table>div:first-child strong{color:#fff;font-size:.75rem}.blog-metrics-table span{font-size:.77rem;line-height:1.5}.blog-metrics-table span:first-child{background:#f7f9fd;color:#1d3557;font-weight:700}
.blog-pitfall-list{margin:24px 0 0!important;padding:0!important;list-style:none}.blog-pitfall-list li{position:relative;margin:0!important;padding:16px 18px 16px 46px;border-bottom:1px solid #e2e8f1;font-size:.84rem;line-height:1.65}.blog-pitfall-list li::before{content:"!";position:absolute;left:12px;top:17px;display:grid;place-items:center;width:22px;height:22px;border-radius:50%;background:#fff0f3;color:#d12c51;font:800 .7rem/1 'Sora',sans-serif}
.blog-shift-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:28px 0}.blog-shift-grid span{display:flex;align-items:center;justify-content:space-between;gap:15px;padding:16px;border:1px solid #e0e7f2;border-radius:13px;background:#fafcff;font-size:.73rem}.blog-shift-grid s{color:#8a98aa}.blog-shift-grid strong{color:#1765e6}
.blog-cta{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:32px;padding:37px!important;border-radius:23px;background:linear-gradient(115deg,#08162f,#173b87 65%,#4054c9);color:#fff;box-shadow:0 22px 48px rgba(18,48,105,.2)}.blog-cta span{display:block;margin-bottom:10px;color:#7fdcf1;font:700 .62rem/1 'Sora',sans-serif;letter-spacing:.08em;text-transform:uppercase}.blog-cta h2{margin-bottom:10px;color:#fff;font-size:1.55rem}.blog-cta p{max-width:560px;margin:0!important;color:#becae2;font-size:.82rem;line-height:1.65}.blog-cta>a{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-width:190px;min-height:52px;padding:0 19px;border-radius:99px;background:linear-gradient(105deg,#1767e9,#19cce1);color:#fff;font-size:.76rem;font-weight:700;box-shadow:0 12px 27px rgba(17,112,224,.3)}.blog-cta>a svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.blog-faqs{margin-top:80px!important}.blog-faq-item{border-bottom:1px solid #dfe6f0}.blog-faq-item:first-of-type{border-top:1px solid #dfe6f0}.blog-faq-item summary{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:22px 2px;color:#0b1834;font-family:'Sora',sans-serif;font-size:.9rem;font-weight:700;cursor:pointer;list-style:none}.blog-faq-item summary::-webkit-details-marker{display:none}.blog-faq-item summary svg{flex:none;width:19px;height:19px;fill:none;stroke:#536984;stroke-width:1.9;transition:transform .25s ease}.blog-faq-item[open] summary{color:#1766e8}.blog-faq-item[open] summary svg{transform:rotate(180deg)}.blog-faq-item>p{max-width:740px;margin:0;padding:0 2px 22px;color:#536984;font-size:.82rem;line-height:1.7}.blog-back-link{margin-top:52px}.blog-back-link a{display:inline-flex;align-items:center;gap:9px;color:#1764e6;font-size:.75rem;font-weight:700}.blog-back-link svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}

@media (max-width:1000px){
  .blog-layout{grid-template-columns:1fr;gap:34px;max-width:900px}.blog-toc-card{position:relative;top:auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px 20px}.blog-toc-card strong{grid-column:1/-1}.blog-poster{max-width:900px}
}
@media (max-width:700px){
  .blog-hero{padding:calc(var(--header-h) + 35px) 0 48px}.blog-hero-shell,.blog-layout{width:100%;max-width:100%;padding-left:18px;padding-right:18px}.blog-breadcrumbs{justify-content:flex-start;overflow:hidden;margin-bottom:25px;white-space:nowrap}.blog-breadcrumbs span:last-child{overflow:hidden;text-overflow:ellipsis}.blog-title-wrap{text-align:left}.blog-category{margin-bottom:15px;font-size:.57rem}.blog-title-wrap h1{font-size:clamp(1.85rem,8.5vw,2.35rem);line-height:1.16;letter-spacing:-.04em}.blog-deck{margin-top:18px;font-size:.85rem;line-height:1.65}.blog-meta{justify-content:flex-start;flex-wrap:wrap;margin-top:18px;font-size:.65rem}.blog-poster{margin-top:34px;border-radius:17px}.blog-poster img{aspect-ratio:16/10}.blog-poster figcaption{padding:10px 13px;font-size:.6rem}.blog-layout{gap:28px;padding-top:51px;padding-bottom:75px}.blog-toc-card{grid-template-columns:1fr;padding:19px 17px}.blog-content{font-size:.87rem;line-height:1.75}.blog-lead{font-size:1rem;line-height:1.72}.blog-content section{margin-top:58px}.blog-content h2{font-size:clamp(1.55rem,7vw,2rem);line-height:1.27}.blog-summary{grid-template-columns:43px minmax(0,1fr);gap:13px;padding:21px 17px}.blog-summary-icon{width:42px;height:42px}.blog-summary h2{font-size:1.05rem}.blog-summary ul{font-size:.76rem}.blog-problem-grid,.blog-check-list,.blog-shift-grid{grid-template-columns:1fr}.blog-problem-grid article{padding:19px 17px}.blog-quote{padding:19px 18px;font-size:.87rem}.blog-flow,.blog-decision-path{justify-content:flex-start}.blog-numbered-list article{grid-template-columns:42px minmax(0,1fr);gap:13px;padding:19px 16px}.blog-numbered-list article>span{width:42px;height:42px}.blog-numbered-list h3{font-size:.89rem}.blog-numbered-list p,.blog-roadmap p{font-size:.76rem}.blog-roadmap li{grid-template-columns:40px minmax(0,1fr);gap:13px}.blog-roadmap li>span{width:40px;height:40px}.blog-roadmap li:not(:last-child)::before{left:20px;top:38px}.blog-metrics-table{overflow-x:auto}.blog-metrics-table>div{min-width:570px}.blog-cta{grid-template-columns:1fr;gap:23px;padding:27px 20px!important}.blog-cta h2{font-size:1.28rem}.blog-cta>a{width:100%;max-width:260px}.blog-faq-item summary{font-size:.8rem;line-height:1.45}.blog-faq-item>p{font-size:.75rem}.page-blog .back-top{display:none}
}
@media (max-width:390px){
  .blog-hero-shell,.blog-layout{padding-left:14px;padding-right:14px}.blog-title-wrap h1{font-size:clamp(1.84rem,9.5vw,2.2rem)}.blog-meta span[aria-hidden="true"]{display:none}.blog-meta{align-items:flex-start;flex-direction:column;gap:5px}.blog-summary{grid-template-columns:1fr}.blog-summary-icon{margin-bottom:2px}.blog-numbered-list article{grid-template-columns:1fr}.blog-roadmap h3{font-size:.88rem}
}

/* Keep the long article title compact and balanced across tablet/phone widths. */
@media (max-width:900px){
  .blog-breadcrumbs{justify-content:center;}
  .blog-title-wrap{max-width:760px;text-align:center;}
  .blog-title-wrap h1{max-width:760px;font-size:clamp(2rem,5.2vw,2.45rem);line-height:1.16;letter-spacing:-.038em;text-wrap:balance;}
  .blog-deck{max-width:680px;margin-left:auto;margin-right:auto;}
  .blog-meta{justify-content:center;}
}
@media (max-width:700px){
  .blog-breadcrumbs{justify-content:center;}
  .blog-title-wrap{text-align:center;}
  .blog-title-wrap h1{font-size:clamp(1.72rem,6.8vw,2.08rem);line-height:1.18;letter-spacing:-.032em;}
  .blog-meta{justify-content:center;}
}
@media (max-width:390px){
  .blog-title-wrap h1{font-size:clamp(1.52rem,6.7vw,1.72rem);line-height:1.2;}
  .blog-meta{align-items:center;text-align:center;}
}

/* Privacy policy */
.page-privacy{background:#fff;color:#213654;}
.privacy-hero{position:relative;overflow:hidden;padding:calc(var(--header-h) + 68px) 0 80px;background:linear-gradient(145deg,#f4f7fd 0%,#eef3fc 55%,#f7f9fd 100%);text-align:center;}
.privacy-hero::before{content:"";position:absolute;inset:0;pointer-events:none;background-image:radial-gradient(rgba(39,103,224,.14) 1px,transparent 1px);background-size:27px 27px;opacity:.16;mask-image:linear-gradient(to bottom,#000,transparent 82%);}
.privacy-orb{position:absolute;border-radius:50%;pointer-events:none;filter:blur(2px);}.privacy-orb-one{left:-170px;top:20px;width:430px;height:430px;background:radial-gradient(circle,rgba(38,132,241,.15),transparent 70%)}.privacy-orb-two{right:-130px;bottom:-180px;width:420px;height:420px;background:radial-gradient(circle,rgba(100,74,239,.12),transparent 70%)}
.privacy-hero-inner{position:relative;z-index:1;max-width:950px;}.privacy-eyebrow{display:inline-flex;align-items:center;min-height:34px;margin-bottom:22px;padding:7px 16px;border:1px solid rgba(35,102,225,.18);border-radius:99px;background:rgba(255,255,255,.72);color:#1763e8;font:700 .67rem/1 'Sora',sans-serif;letter-spacing:.075em;text-transform:uppercase;box-shadow:0 9px 24px rgba(36,80,152,.06)}
.privacy-hero h1{margin:0;color:#071536;font-size:clamp(3rem,5.4vw,5rem);line-height:1.06;letter-spacing:-.058em;text-wrap:balance}.privacy-hero p{max-width:760px;margin:23px auto 0;color:#536985;font-size:1.08rem;line-height:1.7}.privacy-updated{display:inline-flex;align-items:center;gap:8px;margin-top:25px;padding:9px 13px;border-radius:99px;background:rgba(255,255,255,.76);color:#637590;font-size:.68rem;font-weight:600}.privacy-updated svg{width:16px;height:16px;fill:none;stroke:#1766e8;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.privacy-layout{display:grid;grid-template-columns:230px minmax(0,830px);justify-content:center;align-items:start;gap:70px;max-width:1240px;padding-top:82px;padding-bottom:115px}.privacy-toc{position:relative}.privacy-toc-card{position:sticky;top:94px;display:flex;flex-direction:column;gap:11px;padding:24px 21px;border:1px solid #dfe7f2;border-radius:18px;background:#f8faff;box-shadow:0 14px 32px rgba(34,72,135,.06)}.privacy-toc-card strong{margin-bottom:6px;color:#091631;font-family:'Sora',sans-serif;font-size:.82rem}.privacy-toc-card a{color:#61738d;font-size:.71rem;line-height:1.45;transition:color .2s ease,transform .2s ease}.privacy-toc-card a:hover{color:#1767e9;transform:translateX(3px)}
.privacy-content{min-width:0;color:#465c78;font-size:.98rem;line-height:1.84}.privacy-content>p{margin:0 0 21px}.privacy-content section{scroll-margin-top:100px;margin-top:74px}.privacy-content h2{margin:0 0 20px;color:#071536;font-size:clamp(1.8rem,3vw,2.45rem);line-height:1.24;letter-spacing:-.04em}.privacy-content h3{margin:32px 0 11px;color:#11233f;font-size:1.04rem;line-height:1.4;letter-spacing:-.024em}.privacy-content section>p{margin:0 0 19px}.privacy-section-num{display:inline-flex;margin-bottom:10px;color:#1767e9;font:700 .67rem/1 'Sora',sans-serif;letter-spacing:.08em}.privacy-intro{display:grid;grid-template-columns:55px minmax(0,1fr);gap:18px;margin-bottom:32px;padding:28px 29px;border:1px solid rgba(42,105,220,.17);border-radius:19px;background:linear-gradient(130deg,#eef5ff,#fbfdff);box-shadow:0 13px 30px rgba(34,72,135,.055)}.privacy-intro>span{display:grid;place-items:center;width:52px;height:52px;border-radius:14px;background:linear-gradient(135deg,#1766e8,#2f7ff2);color:#fff;box-shadow:0 10px 24px rgba(30,98,226,.22)}.privacy-intro svg{width:28px;height:28px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.privacy-intro strong{display:block;margin:1px 0 6px;color:#10213f;font-family:'Sora',sans-serif;font-size:1.02rem}.privacy-intro p{margin:0;font-size:.84rem;line-height:1.68}
.privacy-check-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px;margin:24px 0 28px!important;padding:0!important;list-style:none}.privacy-check-list li{position:relative;margin:0!important;padding:14px 14px 14px 40px;border:1px solid #e1e8f2;border-radius:13px;background:#fbfcff;color:#344b69;font-size:.79rem;line-height:1.55}.privacy-check-list li::before{content:"✓";position:absolute;left:14px;top:15px;display:grid;place-items:center;width:18px;height:18px;border-radius:50%;background:#e7f8ed;color:#17a448;font-size:.65rem;font-weight:800}.privacy-note{margin:29px 0;padding:23px 25px;border:1px solid rgba(217,127,23,.2);border-radius:16px;background:linear-gradient(130deg,#fff8eb,#fffcf6)}.privacy-note strong{display:block;margin-bottom:6px;color:#8c5718;font-family:'Sora',sans-serif;font-size:.88rem}.privacy-note p{margin:0;color:#6f5a3f;font-size:.8rem;line-height:1.65}
.privacy-share-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:13px;margin:27px 0}.privacy-share-grid article{padding:21px 20px;border:1px solid #e0e7f2;border-radius:16px;background:#fbfcff}.privacy-share-grid h3{margin:0 0 8px;font-size:.92rem}.privacy-share-grid p{margin:0;font-size:.78rem;line-height:1.63}.privacy-contact{display:grid;grid-template-columns:minmax(0,1fr) 250px;align-items:center;gap:35px;padding:38px!important;border-radius:23px;background:linear-gradient(115deg,#08162f,#173b87 65%,#4054c9);color:#fff;box-shadow:0 22px 48px rgba(18,48,105,.2)}.privacy-contact>div:first-child>span{display:block;margin-bottom:10px;color:#7fdcf1;font:700 .62rem/1 'Sora',sans-serif;letter-spacing:.08em;text-transform:uppercase}.privacy-contact h2{margin-bottom:11px;color:#fff;font-size:1.55rem}.privacy-contact p{max-width:520px;margin:0!important;color:#c4d0e7;font-size:.82rem;line-height:1.65}.privacy-contact-details{display:flex;flex-direction:column;gap:7px;padding:19px;border:1px solid rgba(255,255,255,.15);border-radius:15px;background:rgba(255,255,255,.08)}.privacy-contact-details strong{color:#fff;font-family:'Sora',sans-serif}.privacy-contact-details span,.privacy-contact-details a{color:#d3def1;font-size:.75rem;line-height:1.45}.privacy-contact-details a{text-decoration:underline;text-underline-offset:3px}.privacy-contact-details small{margin-top:3px;color:#94a9cd;font-size:.62rem}.privacy-closing{margin:38px 0 0!important;padding:19px 21px;border-radius:14px;background:#f5f8fc;color:#677992;font-size:.74rem;line-height:1.65}
@media (max-width:1000px){
  .privacy-layout{grid-template-columns:1fr;gap:34px;max-width:900px}.privacy-toc-card{position:relative;top:auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px 20px}.privacy-toc-card strong{grid-column:1/-1}
}
@media (max-width:700px){
  .privacy-hero{padding:calc(var(--header-h) + 42px) 0 58px}.privacy-hero-inner,.privacy-layout{width:100%;max-width:100%;padding-left:18px;padding-right:18px}.privacy-eyebrow{margin-bottom:17px;font-size:.57rem}.privacy-hero h1{font-size:clamp(2.25rem,11vw,3rem);line-height:1.1}.privacy-hero p{margin-top:17px;font-size:.85rem;line-height:1.65}.privacy-updated{margin-top:19px;font-size:.62rem}.privacy-layout{gap:27px;padding-top:52px;padding-bottom:78px}.privacy-toc-card{grid-template-columns:1fr;padding:19px 17px}.privacy-content{font-size:.87rem;line-height:1.75}.privacy-content section{margin-top:57px}.privacy-content h2{font-size:clamp(1.55rem,7vw,2rem)}.privacy-content h3{margin-top:27px;font-size:.95rem}.privacy-intro{grid-template-columns:43px minmax(0,1fr);gap:13px;padding:21px 17px}.privacy-intro>span{width:42px;height:42px}.privacy-intro svg{width:23px;height:23px}.privacy-intro strong{font-size:.9rem}.privacy-intro p{font-size:.75rem}.privacy-check-list,.privacy-share-grid{grid-template-columns:1fr}.privacy-note{padding:19px 18px}.privacy-contact{grid-template-columns:1fr;gap:23px;padding:27px 20px!important}.privacy-contact h2{font-size:1.28rem}.privacy-contact-details{padding:17px}.page-privacy .back-top{display:none}
}
@media (max-width:390px){
  .privacy-hero-inner,.privacy-layout{padding-left:14px;padding-right:14px}.privacy-intro{grid-template-columns:1fr}.privacy-intro>span{margin-bottom:2px}.privacy-hero h1{font-size:clamp(2.05rem,10.5vw,2.5rem)}
}

/* Privacy policy: simple legal-document presentation */
.page-privacy .privacy-hero{padding:calc(var(--header-h) + 62px) 0 70px;background:#f1f5fd;}
.page-privacy .privacy-hero::before,.page-privacy .privacy-orb,.page-privacy .privacy-eyebrow{display:none;}
.page-privacy .privacy-hero h1{font-size:clamp(2.8rem,4.7vw,4.25rem);letter-spacing:-.05em;}
.page-privacy .privacy-updated{margin-top:24px;padding:0;background:transparent;color:#64758e;font-size:.75rem;font-weight:500;}
.page-privacy .privacy-layout{grid-template-columns:235px minmax(0,850px);gap:66px;padding-top:78px;}
.page-privacy .privacy-toc-card{padding:0;border:0;border-radius:0;background:transparent;box-shadow:none;gap:3px;}
.page-privacy .privacy-toc-card strong{margin:0 0 13px;padding:0 14px;font-size:.78rem;}
.page-privacy .privacy-toc-card a{padding:11px 14px;border-left:2px solid transparent;color:#6d7d93;font-size:.7rem;}
.page-privacy .privacy-toc-card a:first-of-type{border-left-color:#1767e9;background:rgba(23,103,233,.07);color:#1767e9;font-weight:700;}
.page-privacy .privacy-toc-card a:hover{border-left-color:#1767e9;background:rgba(23,103,233,.045);transform:none;}
.page-privacy .privacy-content{color:#536781;font-size:.94rem;line-height:1.82;}
.page-privacy .privacy-content section{margin-top:58px;}
.page-privacy .privacy-content h2{margin-bottom:18px;font-size:clamp(1.55rem,2.6vw,2rem);letter-spacing:-.035em;}
.page-privacy .privacy-content h3{margin:27px 0 9px;font-size:.98rem;}
.page-privacy .privacy-lead{margin-bottom:22px!important;color:#334b69;font-size:1.03rem;line-height:1.75;}
.page-privacy .privacy-check-list{display:block;margin:17px 0 25px!important;padding-left:22px!important;list-style:disc;}
.page-privacy .privacy-check-list li{margin:8px 0!important;padding:0;border:0;border-radius:0;background:transparent;color:#536781;font-size:.88rem;line-height:1.65;}
.page-privacy .privacy-check-list li::before{display:none;}
.page-privacy .privacy-check-list li::marker{color:#1767e9;}
.page-privacy .privacy-note{margin:24px 0;padding:0;border:0;border-radius:0;background:transparent;}
.page-privacy .privacy-note strong{color:#263d5d;font-size:.88rem;}
.page-privacy .privacy-note p{color:#536781;font-size:.88rem;}
.page-privacy .privacy-share-grid{display:block;margin:21px 0;}
.page-privacy .privacy-share-grid article{padding:0;border:0;border-radius:0;background:transparent;}
.page-privacy .privacy-share-grid article+article{margin-top:23px;}
.page-privacy .privacy-share-grid h3{margin:0 0 6px;font-size:.98rem;}
.page-privacy .privacy-share-grid p{font-size:.88rem;line-height:1.7;}
.page-privacy .privacy-contact{display:block;padding:40px 0 0!important;border-top:1px solid #dfe6f0;border-radius:0;background:transparent;color:#536781;box-shadow:none;}
.page-privacy .privacy-contact h2{margin-bottom:16px;color:#071536;font-size:clamp(1.55rem,2.6vw,2rem);}
.page-privacy .privacy-contact p{max-width:760px;color:#536781;font-size:.9rem;}
.page-privacy .privacy-contact-details{margin-top:22px;padding:0;border:0;border-radius:0;background:transparent;gap:6px;}
.page-privacy .privacy-contact-details strong{color:#10213f;}
.page-privacy .privacy-contact-details span,.page-privacy .privacy-contact-details a{color:#536781;font-size:.82rem;}
.page-privacy .privacy-contact-details a{color:#1767e9;}
.page-privacy .privacy-contact-details small{color:#71819a;}
.page-privacy .privacy-closing{margin-top:36px!important;padding:21px 0 0;border-top:1px solid #e1e7f0;border-radius:0;background:transparent;}
@media (max-width:1000px){
  .page-privacy .privacy-layout{grid-template-columns:1fr;gap:43px;}.page-privacy .privacy-toc-card{grid-template-columns:repeat(2,minmax(0,1fr));}.page-privacy .privacy-toc-card strong{padding-left:0;}
}
@media (max-width:700px){
  .page-privacy .privacy-hero{padding:calc(var(--header-h) + 38px) 0 50px;}.page-privacy .privacy-hero h1{font-size:clamp(2.15rem,10vw,2.8rem);}.page-privacy .privacy-updated{margin-top:17px;font-size:.66rem;}.page-privacy .privacy-layout{gap:34px;padding-top:48px;}.page-privacy .privacy-toc-card{grid-template-columns:1fr;}.page-privacy .privacy-content{font-size:.86rem;}.page-privacy .privacy-lead{font-size:.94rem;}.page-privacy .privacy-content section{margin-top:48px;}.page-privacy .privacy-content h2{font-size:1.45rem;}.page-privacy .privacy-check-list li,.page-privacy .privacy-note p,.page-privacy .privacy-share-grid p{font-size:.82rem;}.page-privacy .privacy-contact{padding-top:32px!important;}.page-privacy .privacy-contact-details{padding:0;}
}

/* ===================== Contact page ===================== */
body.page-contact .site-header{background:rgba(255,255,255,.94);backdrop-filter:blur(14px);box-shadow:0 4px 24px rgba(10,31,74,.08)}
body.page-contact .site-header .nav-link{color:var(--navy-800)}
body.page-contact .site-header .nav-link:hover,body.page-contact .site-header .nav-link.active{color:var(--blue-600)}
body.page-contact .site-header .nav-toggle span{background:var(--navy-900)}
body.page-contact .site-header .nav-item .nav-caret{color:var(--gray-400)}
body.page-contact .site-header .nav-item:hover .nav-caret,body.page-contact .site-header .nav-item.is-open .nav-caret{color:var(--blue-600)}
body.page-contact .site-header .nav-item.is-open>.nav-link{color:var(--blue-600)}
.contact-page-shell{position:relative;isolation:isolate;overflow:hidden;padding:calc(var(--header-h) + 44px) 0 76px;background:linear-gradient(135deg,#edf4ff 0%,#dce9ff 46%,#eef5ff 100%)}
.contact-page-shell::before{content:"";position:absolute;z-index:-1;inset:0;background:linear-gradient(112deg,rgba(255,255,255,.8),rgba(255,255,255,.1) 53%,rgba(17,69,179,.08));pointer-events:none}
.contact-page-orb{position:absolute;z-index:-1;border-radius:50%;pointer-events:none}
.contact-page-orb-one{top:-240px;right:-160px;width:570px;height:570px;background:linear-gradient(145deg,rgba(45,83,229,.72),rgba(46,177,241,.22));box-shadow:inset 0 0 90px rgba(255,255,255,.25)}
.contact-page-orb-two{left:-250px;bottom:-330px;width:610px;height:610px;border:1px solid rgba(42,75,222,.18);background:repeating-radial-gradient(circle,transparent 0 31px,rgba(42,75,222,.12) 32px 33px)}
.contact-page-dots{position:absolute;z-index:-1;width:120px;height:80px;opacity:.35;background-image:radial-gradient(#2a65e8 1.6px,transparent 1.6px);background-size:14px 14px}
.contact-page-dots-one{top:100px;left:37%}.contact-page-dots-two{right:12px;top:410px}
.contact-page-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr);gap:42px;align-items:start;max-width:1220px}
.contact-page-intro{padding-top:10px}
.contact-page-kicker{display:flex;align-items:center;gap:10px;margin-bottom:15px;color:#155fdc;font:700 .68rem/1 'Sora',sans-serif;letter-spacing:.08em;text-transform:uppercase}
.contact-page-kicker span{width:42px;height:2px;background:linear-gradient(90deg,#145ee4,#42c8e9);order:2}
.contact-page-intro h1{margin:0 0 17px;color:#071536;font-size:clamp(2.75rem,4.7vw,4.35rem);line-height:1;letter-spacing:-.065em}
.contact-page-intro h1 em{font-style:normal;color:#2368ee;background:linear-gradient(120deg,#184dd8,#219fec);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
.contact-page-lead{max-width:470px;margin:0 0 22px;color:#40597a;font-size:.88rem;line-height:1.62}
.contact-page-lead strong{color:#145fdc}
.contact-page-cards{display:grid;gap:10px}
.contact-page-card{display:flex;align-items:center;gap:14px;min-width:0;padding:13px 15px;border:1px solid rgba(30,82,181,.13);border-radius:13px;background:rgba(255,255,255,.88);box-shadow:0 10px 27px rgba(25,59,124,.08);transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease}
a.contact-page-card:hover{transform:translateY(-2px);border-color:rgba(35,101,226,.35);box-shadow:0 17px 36px rgba(25,59,124,.13)}
.contact-page-card-icon{display:grid;place-items:center;width:46px;height:46px;flex:0 0 46px;border-radius:12px;background:linear-gradient(145deg,#153eac,#236df1 62%,#1cc1e7);color:#fff;box-shadow:0 9px 19px rgba(36,98,226,.23)}
.contact-page-card-icon svg,.contact-page-career-icon svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.contact-page-card>span:nth-child(2),.contact-page-career>span:nth-child(2){display:flex;min-width:0;flex:1;flex-direction:column;gap:5px}
.contact-page-card strong,.contact-page-career strong,.contact-page-privacy strong{color:#0a1736;font-family:'Sora',sans-serif;font-size:.79rem}
.contact-page-card small,.contact-page-career small{overflow-wrap:anywhere;color:#526987;font-size:.7rem;line-height:1.42}
.contact-page-card small a{display:block;color:inherit}.contact-page-card small a:hover{color:#1766e8}
.contact-page-arrow{width:18px;height:18px;flex:none;fill:none;stroke:#1766e8;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:transform .22s ease}
a.contact-page-card:hover .contact-page-arrow,.contact-page-career:hover .contact-page-arrow{transform:translateX(4px)}
.contact-page-career{display:flex;align-items:center;gap:14px;margin-top:18px;padding:15px 16px;border-radius:15px;background:linear-gradient(125deg,#071d61,#1554e8 64%,#139ee9);box-shadow:0 14px 30px rgba(23,73,190,.24);transition:transform .22s ease,box-shadow .22s ease}
.contact-page-career:hover{transform:translateY(-2px);box-shadow:0 22px 43px rgba(23,73,190,.31)}
.contact-page-career-icon{display:grid;place-items:center;width:46px;height:46px;flex:0 0 46px;border:1px solid rgba(255,255,255,.25);border-radius:50%;background:rgba(255,255,255,.14);color:#fff}
.contact-page-career strong{color:#fff}.contact-page-career small{color:#d9e6ff}.contact-page-career .contact-page-arrow{stroke:#fff}
.contact-page-privacy{display:grid;grid-template-columns:38px minmax(0,1fr);gap:11px;margin-top:15px;padding:13px 15px;border:1px solid rgba(30,82,181,.12);border-radius:13px;background:rgba(255,255,255,.58)}
.contact-page-privacy>span{display:grid;place-items:center;width:37px;height:37px;border-radius:10px;background:#e5efff;color:#1766e8}
.contact-page-privacy svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.contact-page-privacy p{margin:2px 0;color:#5a6f8c;font-size:.66rem;line-height:1.45}.contact-page-privacy a{color:#1766e8;font-size:.66rem;text-decoration:underline;text-underline-offset:3px}
.contact-page-form-card{position:relative;overflow:hidden;padding:31px;border:1px solid rgba(255,255,255,.75);border-radius:23px;background:rgba(255,255,255,.91);box-shadow:0 24px 58px rgba(18,55,130,.17);backdrop-filter:blur(15px)}
.contact-page-form-card::before{content:"";position:absolute;top:0;left:0;right:0;height:5px;background:linear-gradient(90deg,#0d38b7,#236cf0 58%,#1bc6e2)}
.contact-page-form-head{display:grid;grid-template-columns:50px minmax(0,1fr);gap:15px;align-items:start;margin-bottom:22px}
.contact-page-form-head>span{display:grid;place-items:center;width:50px;height:50px;border-radius:50%;background:linear-gradient(145deg,#193eb6,#317ef7 58%,#25c5e5);color:#fff;box-shadow:0 11px 24px rgba(41,102,229,.28)}
.contact-page-form-head svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.contact-page-form-head h2{margin:2px 0 5px;color:#071536;font-size:clamp(1.15rem,1.8vw,1.45rem);letter-spacing:-.03em}
.contact-page-form-head p{max-width:500px;margin:0;color:#536985;font-size:.76rem;line-height:1.5}
.contact-page-form.contact-form{padding:0;border-radius:0;background:transparent}
.contact-page-form .field{margin-bottom:12px}
.contact-page-form .field input,.contact-page-form .field textarea,.contact-page-form .field select,.contact-page-form #country{min-height:48px;padding:12px 14px;border:1px solid #cbd8ed;border-radius:10px;background:#fafdff;color:#0b1938;font-size:.78rem}
.contact-page-form .field textarea{min-height:96px}
.contact-page-form .field input::placeholder,.contact-page-form .field textarea::placeholder{color:#7183a0;opacity:1}
.contact-page-form .code-select{width:86px;max-width:86px;min-height:48px;padding:12px 8px;border-color:#cbd8ed;border-radius:10px;background:#fafdff;color:#0b1938;font-size:.74rem;font-weight:600}
.contact-page-form .code-select::placeholder{color:#7183a0;opacity:1}
.contact-page-form .file-row{display:grid;grid-template-columns:auto minmax(0,1fr);gap:0;margin:0 0 14px;border:1.5px dashed #a9c2ed;border-radius:10px;background:#f6faff}
.contact-page-form .file-label{min-height:50px;padding:12px 16px;border:0;border-right:1px dashed #a9c2ed;border-radius:0;color:#154ec1;font-size:.78rem}
.contact-page-form .file-label:hover{background:#edf5ff}
.contact-page-form .hint{align-self:center;padding:11px 14px;color:#607391;font-size:.62rem;line-height:1.42}
.contact-page-form .btn-block{min-height:50px;border:0;border-radius:10px;font-size:.8rem}
.contact-page-form-note{display:flex;align-items:center;justify-content:center;gap:6px;margin:13px 0 0!important;color:#697b96!important;font-size:.63rem!important;line-height:1.42!important;text-align:center}
.contact-page-form-note svg{width:16px;height:16px;flex:none;fill:none;stroke:#315b9b;stroke-width:1.8}.contact-page-form-note a{color:#1766e8;text-decoration:underline;text-underline-offset:2px}
.contact-page-form .form-success{margin-top:14px!important;font-size:.78rem!important}
@media (max-width:1080px){
  .contact-page-grid{grid-template-columns:1fr;gap:38px;max-width:820px}.contact-page-intro{padding-top:0}.contact-page-lead{max-width:650px}.contact-page-cards{grid-template-columns:repeat(3,minmax(0,1fr))}.contact-page-card{align-items:flex-start;flex-direction:column}.contact-page-card .contact-page-arrow{display:none}.contact-page-career{max-width:none}
}
@media (max-width:760px){
  .contact-page-shell{padding:calc(var(--header-h) + 32px) 0 58px}.contact-page-grid{width:100%;padding-left:18px;padding-right:18px;gap:26px}.contact-page-orb-one{top:-170px;right:-245px;width:470px;height:470px}.contact-page-orb-two{display:none}.contact-page-dots-one{display:none}.contact-page-dots-two{right:-38px;top:350px}.contact-page-intro h1{font-size:clamp(2.55rem,12vw,3.25rem);line-height:1}.contact-page-lead{font-size:.84rem}.contact-page-cards{grid-template-columns:1fr}.contact-page-card{align-items:center;flex-direction:row;padding:12px 13px}.contact-page-card .contact-page-arrow{display:block}.contact-page-card-icon{width:44px;height:44px;flex-basis:44px}.contact-page-career{padding:14px 13px}.contact-page-career-icon{width:44px;height:44px;flex-basis:44px}.contact-page-form-card{padding:22px 17px;border-radius:19px}.contact-page-form-head{grid-template-columns:44px minmax(0,1fr);gap:12px;margin-bottom:19px}.contact-page-form-head>span{width:44px;height:44px}.contact-page-form-head h2{font-size:1.08rem}.contact-page-form-head p{font-size:.72rem}.contact-page-form .form-row{flex-direction:column;gap:0}.contact-page-form .phone-row{display:grid;grid-template-columns:78px minmax(0,1fr);gap:9px}.contact-page-form .code-select{width:78px;max-width:78px}.contact-page-form .file-row{grid-template-columns:1fr}.contact-page-form .file-label{min-height:48px;border-right:0;border-bottom:1px dashed #a9c2ed}.contact-page-form .hint{padding:10px 13px}.contact-page-form-note{align-items:flex-start}.page-contact .back-top{display:none}
}
@media (max-width:400px){
  .contact-page-grid{padding-left:14px;padding-right:14px}.contact-page-kicker{font-size:.62rem}.contact-page-intro h1{font-size:2.5rem}.contact-page-card{gap:11px}.contact-page-card strong,.contact-page-career strong{font-size:.75rem}.contact-page-card small,.contact-page-career small{font-size:.67rem}.contact-page-career{display:grid;grid-template-columns:42px minmax(0,1fr)}.contact-page-career .contact-page-arrow{display:none}.contact-page-privacy{padding:13px 12px}.contact-page-form-card{padding:20px 14px}.contact-page-form-head{grid-template-columns:1fr}.contact-page-form-head>span{width:42px;height:42px}.contact-page-form .field input,.contact-page-form .field textarea,.contact-page-form .field select,.contact-page-form #country{font-size:.76rem}
}

/* Contact-page composition embedded below the four Hire pages. */
.contact-page-shell.hire-page-contact{padding:88px 0 82px;border-top:1px solid rgba(34,82,175,.08)}.hire-page-contact-title{margin:0 0 17px;color:#071536;font-size:clamp(2.75rem,4.7vw,4.35rem);line-height:1;letter-spacing:-.065em}.hire-page-contact-title em{font-style:normal;color:#2368ee;background:linear-gradient(120deg,#184dd8,#219fec);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent}
@media (max-width:760px){.contact-page-shell.hire-page-contact{padding:64px 0 58px}.hire-page-contact-title{font-size:clamp(2.55rem,12vw,3.25rem)}}
@media (max-width:400px){.hire-page-contact-title{font-size:2.5rem}}

/* Embedded contact sections: match the dedicated Contact page */
.contact{position:relative;isolation:isolate;overflow:hidden;padding:76px 0;background:linear-gradient(135deg,#edf4ff 0%,#dce9ff 46%,#eef5ff 100%)}
.contact::before{content:"";position:absolute;z-index:-1;top:-210px;right:-150px;width:470px;height:470px;border-radius:50%;background:linear-gradient(145deg,rgba(45,83,229,.55),rgba(46,177,241,.16));pointer-events:none}
.contact::after{content:"";position:absolute;z-index:-1;left:-235px;bottom:-330px;width:560px;height:560px;border-radius:50%;background:repeating-radial-gradient(circle,transparent 0 31px,rgba(42,75,222,.1) 32px 33px);pointer-events:none}
.contact .contact-grid{grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr);gap:42px;align-items:start;max-width:1220px}
.contact .contact-info{padding-top:8px}
.contact .contact-info h2{margin:0 0 22px;color:#071536;font-size:clamp(2.65rem,4.5vw,4.15rem);line-height:1;letter-spacing:-.065em}
.contact .contact-info h2::before{content:"LET’S CONNECT";display:block;margin-bottom:14px;color:#155fdc;font:700 .68rem/1 'Sora',sans-serif;letter-spacing:.08em}
.contact .info-item{display:flex;align-items:center;gap:14px;margin:0 0 10px;padding:13px 15px;border:1px solid rgba(30,82,181,.13);border-radius:13px;background:rgba(255,255,255,.88);box-shadow:0 10px 27px rgba(25,59,124,.08)}
.contact .info-icon{display:grid;place-items:center;width:46px;height:46px;flex:0 0 46px;border-radius:12px;background:linear-gradient(145deg,#153eac,#236df1 62%,#1cc1e7);color:#fff;box-shadow:0 9px 19px rgba(36,98,226,.23)}
.contact .info-icon svg{width:22px;height:22px;stroke:currentColor}
.contact .info-item h5{margin:0 0 4px;color:#0a1736;font-size:.79rem}
.contact .info-item a,.contact .info-item span{overflow-wrap:anywhere;color:#526987;font-size:.7rem;line-height:1.42}
.contact .info-item div a{display:block}
.contact .career-card{gap:14px;margin-top:18px;padding:15px 16px;border-radius:15px;background:linear-gradient(125deg,#071d61,#1554e8 64%,#139ee9);color:#fff;box-shadow:0 14px 30px rgba(23,73,190,.24)}
.contact .career-card:hover{background:linear-gradient(125deg,#071d61,#1554e8 64%,#139ee9);transform:translateY(-2px);box-shadow:0 20px 38px rgba(23,73,190,.3)}
.contact .career-card .info-icon{border:1px solid rgba(255,255,255,.25);border-radius:50%;background:rgba(255,255,255,.14);box-shadow:none}
.contact .career-card h5{margin:0 0 4px;color:#fff;font-size:.79rem}.contact .career-card p{margin:0;color:#d9e6ff;font-size:.7rem;line-height:1.45}.contact .career-card>.icon{width:18px;height:18px;color:#fff}
.contact .contact-form{position:relative;overflow:hidden;padding:31px;border:1px solid rgba(255,255,255,.75);border-radius:23px;background:rgba(255,255,255,.91);box-shadow:0 24px 58px rgba(18,55,130,.17);backdrop-filter:blur(15px)}
.contact .contact-form::before{content:"";position:absolute;top:0;left:0;right:0;height:5px;background:linear-gradient(90deg,#0d38b7,#236cf0 58%,#1bc6e2)}
.contact .contact-form h3{margin:2px 0 5px;color:#071536;font-size:clamp(1.15rem,1.8vw,1.45rem);letter-spacing:-.03em}.contact .contact-form>p{max-width:500px;margin:0 0 22px;color:#536985;font-size:.76rem;line-height:1.5}
.contact .field{margin-bottom:12px}.contact .form-row{gap:12px}
.contact .field input,.contact .field textarea,.contact .field select,.contact #country{min-height:48px;padding:12px 14px;border:1px solid #cbd8ed;border-radius:10px;background:#fafdff;color:#0b1938;font-size:.78rem}
.contact .field textarea{min-height:96px}.contact .field input::placeholder,.contact .field textarea::placeholder{color:#7183a0}
.contact .field input:focus+label,.contact .field input:not(:placeholder-shown)+label,.contact .field textarea:focus+label,.contact .field textarea:not(:placeholder-shown)+label{background:#fff}
.contact .code-select{width:86px;max-width:86px;min-height:48px;padding:12px 8px;border-color:#cbd8ed;border-radius:10px;background:#fafdff;color:#0b1938;font-size:.74rem;font-weight:600}.contact .code-select::placeholder{color:#7183a0;opacity:1}
.contact .file-row{display:grid;grid-template-columns:auto minmax(0,1fr);gap:0;margin:0 0 14px;border:1.5px dashed #a9c2ed;border-radius:10px;background:#f6faff}
.contact .file-label{min-height:50px;padding:12px 16px;border:0;border-right:1px dashed #a9c2ed;border-radius:0;color:#154ec1;font-size:.78rem}.contact .file-label:hover{background:#edf5ff}
.contact .hint{align-self:center;padding:11px 14px;color:#607391;font-size:.62rem;line-height:1.42}
.contact .contact-form .btn-block{min-height:50px;border:0;border-radius:10px;font-size:.8rem}
.contact .form-success{margin:13px 0 0!important;color:#17814a!important;font-size:.7rem!important}
@media (max-width:1080px){
  .contact .contact-grid{grid-template-columns:1fr;gap:30px;max-width:820px}.contact .contact-info{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;padding-top:0}.contact .contact-info h2,.contact .career-card{grid-column:1/-1}.contact .info-item{align-items:flex-start;flex-direction:column;margin:0}.contact .career-card{display:flex;align-items:center;flex-direction:row;margin-top:8px}
}
@media (max-width:760px){
  .contact{padding:58px 0}.contact .contact-grid{width:100%;padding-left:18px;padding-right:18px;gap:26px}.contact .contact-info{grid-template-columns:1fr}.contact .contact-info h2,.contact .career-card{grid-column:auto}.contact .contact-info h2{font-size:clamp(2.4rem,12vw,3.2rem);margin-bottom:8px}.contact .info-item{align-items:center;flex-direction:row;padding:12px 13px}.contact .career-card{margin-top:6px;padding:14px 13px}.contact .contact-form{padding:22px 17px;border-radius:19px}.contact .contact-form h3{font-size:1.08rem}.contact .contact-form>p{font-size:.72rem;margin-bottom:19px}.contact .form-row{flex-direction:column;gap:0}.contact .phone-row{display:grid;grid-template-columns:78px minmax(0,1fr);gap:9px}.contact .code-select{width:78px;max-width:78px}.contact .file-row{grid-template-columns:1fr}.contact .file-label{min-height:48px;border-right:0;border-bottom:1px dashed #a9c2ed}.contact .hint{padding:10px 13px}
}
@media (max-width:400px){
  .contact .contact-grid{padding-left:14px;padding-right:14px}.contact .contact-info h2{font-size:2.5rem}.contact .contact-form{padding:20px 14px}.contact .field input,.contact .field textarea,.contact #country{font-size:.76rem}
}

/* ===================== Hire Mobile Developers page ===================== */
.hire-mobile-hero{position:relative;overflow:hidden;padding:calc(var(--header-h) + 64px) 0 88px;background:linear-gradient(135deg,#f7f9fe 0%,#f2f5fb 58%,#eef3ff 100%)}
.hire-mobile-glow{position:absolute;border-radius:50%;filter:blur(85px);pointer-events:none}.hire-mobile-glow.glow-one{width:480px;height:480px;right:-170px;top:-160px;background:rgba(91,77,255,.2)}.hire-mobile-glow.glow-two{width:360px;height:360px;right:28%;bottom:-250px;background:rgba(27,198,226,.18)}
.hire-mobile-grid-pattern{position:absolute;inset:0;opacity:.34;background-image:linear-gradient(rgba(76,105,176,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(76,105,176,.08) 1px,transparent 1px);background-size:58px 58px;mask-image:linear-gradient(90deg,transparent 0,#000 34%,#000 100%)}
.hire-mobile-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.02fr) minmax(430px,.82fr);align-items:center;gap:68px}
.hire-mobile-hero-copy{max-width:720px}.hire-mobile-hero-copy .web-hero-badge{margin-bottom:25px}.hire-mobile-hero-copy h1{max-width:700px;margin:0;color:var(--navy-900);font-size:clamp(2.65rem,4.2vw,4rem);line-height:1.08;letter-spacing:-.048em}.hire-mobile-hero-copy h1 em{font-style:normal;color:transparent;background:linear-gradient(100deg,#0873e8,var(--violet-500),var(--pink-500));background-clip:text;-webkit-background-clip:text}.hire-mobile-hero-copy>p{max-width:690px;margin:24px 0 0;color:var(--navy-700);font-size:1rem;line-height:1.78}
.hire-mobile-stats{display:grid;grid-template-columns:1fr 1fr;margin-top:34px;border:1px solid rgba(72,99,160,.14);border-radius:20px;overflow:hidden;background:rgba(255,255,255,.7);box-shadow:0 18px 44px rgba(29,62,129,.06);backdrop-filter:blur(9px)}.hire-mobile-stats>div{min-height:112px;padding:22px 25px;border-right:1px solid rgba(72,99,160,.12);border-bottom:1px solid rgba(72,99,160,.12)}.hire-mobile-stats>div:nth-child(2n){border-right:0}.hire-mobile-stats>div:nth-child(n+3){border-bottom:0}.hire-mobile-stats strong,.hire-mobile-stats span,.hire-mobile-stats small{display:block}.hire-mobile-stats strong{margin-bottom:4px;color:var(--navy-900);font-family:'Sora',sans-serif;font-size:1.8rem;line-height:1}.hire-mobile-stats span{color:var(--navy-800);font-size:.82rem;font-weight:700}.hire-mobile-stats small{margin-top:5px;color:var(--gray-600);font-size:.7rem;line-height:1.45}
.hire-mobile-form-card{position:relative;padding:1px;border-radius:25px;background:linear-gradient(145deg,rgba(255,255,255,.9),rgba(62,112,255,.18));box-shadow:0 28px 65px rgba(20,56,130,.14)}.hire-mobile-form.contact-form{position:relative;padding:34px;border-radius:24px;background:rgba(255,255,255,.96);overflow:hidden}.hire-mobile-form::before{content:"";position:absolute;left:0;right:0;top:0;height:5px;background:linear-gradient(90deg,#0873e8,var(--violet-500),#1bc6e2)}.hire-mobile-form-kicker{display:block;margin:2px 0 8px;color:var(--blue-600);font-family:'Sora',sans-serif;font-size:.72rem;font-weight:800;letter-spacing:.05em;text-transform:uppercase}.hire-mobile-form h2{margin:0 0 7px;color:var(--navy-900);font-size:1.45rem}.hire-mobile-form>p:not(.form-success){margin:0 0 23px;color:var(--gray-600);font-size:.78rem;line-height:1.55}.hire-mobile-form .field{margin-bottom:13px}.hire-mobile-form .field input,.hire-mobile-form .field textarea{min-height:50px;padding:13px 14px;border-color:#d2dbee;background:#fbfdff;font-size:.8rem}.hire-mobile-form .field textarea{min-height:108px}.hire-mobile-form .form-row{gap:12px}.hire-mobile-form .btn-block{min-height:52px;border-radius:12px;border:0;background:linear-gradient(105deg,#0873e8,var(--blue-600),#1bb8d8);box-shadow:0 13px 28px rgba(42,75,222,.2);font-size:.78rem}.hire-mobile-form .form-success{font-size:.68rem}

.hire-mobile-specialists{padding-top:96px}.hire-mobile-specialists .web-excellence-head{max-width:940px}.hire-specialist-layout{display:grid;grid-template-columns:minmax(0,.9fr) minmax(350px,1.18fr) minmax(0,.9fr);align-items:stretch;gap:22px}.hire-specialist-column{display:grid;gap:18px}.hire-specialist-card{position:relative;min-height:190px;padding:28px 25px;border:1px solid var(--gray-200);border-radius:16px;background:#fff;overflow:hidden;transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease}.hire-specialist-card::before{content:"";position:absolute;left:0;top:0;bottom:0;width:3px;opacity:0;background:linear-gradient(var(--blue-500),var(--violet-500));transition:opacity .25s}.hire-specialist-card:hover{transform:translateY(-3px);border-color:rgba(42,75,222,.22);box-shadow:0 17px 36px rgba(42,75,222,.09)}.hire-specialist-card:hover::before{opacity:1}.hire-specialist-card>span{display:block;margin-bottom:13px;color:var(--blue-600);font-family:'Sora',sans-serif;font-size:.68rem;font-weight:800;letter-spacing:.1em}.hire-specialist-card h3{margin:0 0 10px;color:var(--navy-900);font-size:1.08rem;line-height:1.35}.hire-specialist-card p{margin:0;color:var(--gray-600);font-size:.84rem;line-height:1.66}.hire-specialist-visual{position:relative;display:flex;align-items:center;justify-content:center;min-height:100%;margin:0;padding:18px;border-radius:20px;background:linear-gradient(145deg,#eaf1ff,#f7f9ff 52%,#eeeaff);overflow:hidden}.hire-specialist-visual::before{content:"";position:absolute;width:310px;height:310px;border-radius:50%;background:rgba(59,99,240,.13);filter:blur(30px)}.hire-specialist-visual img{position:relative;z-index:1;width:123%;max-width:none;filter:drop-shadow(0 22px 32px rgba(26,65,151,.18))}
.hire-mobile-cta{position:relative;display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:35px;margin-top:64px;padding:42px 45px;border-radius:21px;overflow:hidden;background:radial-gradient(circle at 82% -40%,rgba(97,74,255,.5),transparent 43%),linear-gradient(110deg,#081642,#163585 70%,#1458b9);color:#fff;box-shadow:0 24px 50px rgba(12,38,100,.18)}.hire-mobile-cta::after{content:"";position:absolute;right:-90px;bottom:-125px;width:240px;height:240px;border-radius:50%;border:1px solid rgba(255,255,255,.15);box-shadow:0 0 0 34px rgba(255,255,255,.025),0 0 0 68px rgba(255,255,255,.02)}.hire-mobile-cta>div,.hire-mobile-cta>a{position:relative;z-index:1}.hire-mobile-cta h3{max-width:720px;margin:0 0 9px;color:#fff;font-size:clamp(1.35rem,2.2vw,1.9rem);line-height:1.3}.hire-mobile-cta p{max-width:760px;margin:0;color:rgba(255,255,255,.75);font-size:.88rem;line-height:1.65}.hire-mobile-cta-btn{min-width:260px;justify-content:center;color:#fff;background:linear-gradient(100deg,#0873e8,#1bc6e2);box-shadow:0 13px 30px rgba(0,99,234,.3)}.hire-mobile-cta-btn:hover{color:#fff;transform:translateY(-2px);filter:brightness(1.08)}

.hire-mobile-process{padding:96px 0 104px;background:var(--bg-alt)}.hire-process-grid{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:70px;align-items:start}.hire-process-copy{position:sticky;top:112px}.hire-process-copy .tag{margin-bottom:18px}.hire-process-copy h2{margin:0 0 16px;color:var(--navy-900);font-size:clamp(2rem,3.35vw,2.75rem);line-height:1.2;letter-spacing:-.035em}.hire-process-copy>p{max-width:600px;margin:0 0 25px;color:var(--gray-600);font-size:.95rem;line-height:1.72}.hire-assurance{margin-top:48px;padding-top:31px;border-top:1px solid var(--gray-200)}.hire-assurance h3{margin:0 0 18px;color:var(--navy-900);font-size:1.15rem}.hire-assurance ul{display:grid;grid-template-columns:1fr 1fr;gap:13px 19px}.hire-assurance li{position:relative;padding-left:24px;color:var(--navy-700);font-size:.78rem;line-height:1.5}.hire-assurance li::before,.hire-skills-grid>div::before{content:"✓";position:absolute;left:0;top:.05em;display:grid;place-items:center;width:17px;height:17px;border:1px solid rgba(26,52,110,.42);border-radius:50%;color:var(--blue-600);font-size:.58rem;font-weight:900}
.hire-process-steps{position:relative;display:grid;gap:12px}.hire-process-steps::before{content:"";position:absolute;left:43px;top:54px;bottom:54px;width:1px;background:linear-gradient(var(--blue-500),rgba(42,75,222,.18))}.hire-process-steps article{position:relative;display:grid;grid-template-columns:88px minmax(0,1fr);align-items:center;min-height:144px;padding:22px 27px 22px 0;border:1px solid var(--gray-200);border-radius:18px;background:rgba(255,255,255,.74);transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease}.hire-process-steps article:hover{transform:translateX(4px);border-color:rgba(42,75,222,.24);box-shadow:0 15px 34px rgba(42,75,222,.08)}.hire-process-steps article>span{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;flex-direction:column;width:62px;height:62px;margin-left:12px;border:1px solid rgba(28,54,112,.38);border-radius:50%;background:#fff;color:var(--navy-800);font-family:'Sora',sans-serif;font-size:1.42rem;font-weight:800;line-height:1}.hire-process-steps article>span small{margin-bottom:3px;font-family:'Inter',sans-serif;font-size:.58rem;font-weight:600}.hire-process-steps h3{margin:0 0 8px;color:var(--navy-900);font-size:1.03rem}.hire-process-steps p{margin:0;color:var(--gray-600);font-size:.84rem;line-height:1.62}

.hire-mobile-skills{padding-top:92px;padding-bottom:96px}.hire-skills-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 64px}.hire-skills-grid>div{position:relative;min-height:84px;padding:24px 12px 22px 34px;border-bottom:1px solid var(--gray-200);color:var(--navy-700);font-size:.9rem;line-height:1.62}.hire-skills-grid>div::before{top:27px}.hire-mobile-tech{background:#fff}.hire-mobile-cta-section{padding:0 0 96px;background:#fff}.hire-mobile-cta-section .hire-mobile-cta{margin-top:0}.hire-mobile-trust{padding:96px 0 104px;background:var(--bg-alt)}.hire-mobile-trust .trust-sticky .tag{margin-bottom:18px}.hire-mobile-trust .trust-sticky h2{margin:0 0 16px;color:var(--navy-900);font-size:clamp(2rem,3.3vw,2.65rem);line-height:1.2;letter-spacing:-.035em}.hire-mobile-trust .trust-sticky p{margin:0 0 24px;color:var(--gray-600);font-size:.94rem;line-height:1.72}.hire-mobile-trust #webTrustList .faq-item.is-open .faq-a{max-height:380px}.hire-mobile-faq{background:#fff}.hire-other-talent{padding-top:20px;background:#fff}.hire-talent-panel{background:radial-gradient(circle at 90% 0,rgba(42,75,222,.35),transparent 32%),linear-gradient(120deg,#050c22,#101b3f 70%,#173b86)}.hire-talent-list{display:grid;grid-template-columns:1fr 1fr;gap:0 28px}.hire-talent-list span,.hire-talent-list a{position:relative;display:flex;align-items:center;justify-content:space-between;min-height:48px;padding:12px 24px 12px 4px;border-bottom:1px solid rgba(255,255,255,.11);color:#fff;font-size:.84rem;font-weight:600}.hire-talent-list a{transition:color .2s ease,padding-left .2s ease}.hire-talent-list a:hover{padding-left:9px;color:#8fc2ff}.hire-talent-list span::after,.hire-talent-list a::after{content:"↗";position:absolute;right:4px;color:#68a7ff;font-size:.94rem}

/* Hire Web Developers: reference-inspired specialist grid, built on the Web Development design system. */
.hire-web-specialists{padding:96px 0 104px;background:#fff}.hire-web-specialists .web-excellence-head{max-width:970px;margin-bottom:46px}.hire-web-specialist-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.96fr) minmax(0,1fr);align-items:stretch;gap:20px}.hire-web-specialist-column{display:grid;align-content:start;gap:18px}.hire-web-specialist-layout .hire-specialist-card{min-height:190px}.hire-web-specialist-visual{position:relative;min-height:100%;margin:0;border-radius:22px;overflow:hidden;background:radial-gradient(circle at 50% 22%,rgba(89,119,255,.38),transparent 38%),linear-gradient(160deg,#105ff2 0%,#0749d4 60%,#082e91 100%);box-shadow:0 24px 54px rgba(18,72,177,.18)}.hire-web-specialist-visual::before,.hire-web-specialist-visual::after{content:"";position:absolute;border-radius:50%;pointer-events:none}.hire-web-specialist-visual::before{width:290px;height:290px;right:-145px;top:24%;border:1px solid rgba(255,255,255,.18);box-shadow:0 0 0 34px rgba(255,255,255,.04),0 0 0 70px rgba(255,255,255,.025)}.hire-web-specialist-visual::after{width:230px;height:230px;left:-150px;bottom:14%;background:rgba(33,210,229,.2);filter:blur(22px)}.hire-web-specialist-visual>div{position:sticky;top:104px;z-index:1;display:flex;align-items:center;justify-content:center;min-height:680px;padding:28px 18px}.hire-web-specialist-visual img{display:block;width:132%;max-width:none;height:auto;filter:drop-shadow(0 25px 34px rgba(0,22,76,.3))}.hire-web-other-services{padding-top:22px}

/* Hire UI/UX Designers: mobile-hire components with a two-column design capability grid. */
.hire-uiux-services{padding:96px 0 104px;background:var(--bg-alt)}.hire-uiux-services .web-excellence-head{max-width:980px;margin-bottom:45px}.hire-uiux-services-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}.hire-uiux-service-card{min-height:265px;background:rgba(255,255,255,.88)}.hire-uiux-service-card .tech-pills{gap:8px;margin-top:16px;padding:0}.hire-uiux-service-card .tech-pill{padding:6px 11px;background:#fff;font-size:.72rem}.hire-uiux-service-card p{max-width:680px}.hire-uiux-services .hire-mobile-cta{margin-top:60px}

@media (max-width:1100px){
  .hire-mobile-hero-grid{grid-template-columns:1fr;gap:46px}.hire-mobile-hero-copy{max-width:820px;margin:0 auto;text-align:center}.hire-mobile-hero-copy h1,.hire-mobile-hero-copy>p{margin-left:auto;margin-right:auto}.hire-mobile-form-card{width:min(680px,100%);margin:0 auto}.hire-specialist-layout{grid-template-columns:1fr 1fr}.hire-specialist-visual{grid-column:1/-1;grid-row:1;min-height:430px}.hire-specialist-visual img{width:min(820px,105%)}.hire-web-specialist-layout{grid-template-columns:1fr 1fr}.hire-web-specialist-visual{grid-column:1/-1;grid-row:1;min-height:430px}.hire-web-specialist-visual>div{position:relative;top:auto;min-height:430px}.hire-web-specialist-visual img{width:min(820px,108%)}.hire-process-grid{grid-template-columns:1fr;gap:48px}.hire-process-copy{position:static}.hire-process-copy>p{max-width:780px}.hire-assurance ul{max-width:760px}.hire-mobile-cta{grid-template-columns:1fr}.hire-mobile-cta-btn{justify-self:start}.hire-mobile-trust .trust-section-grid{grid-template-columns:1fr}
}
@media (max-width:760px){
  .hire-mobile-hero{padding:calc(var(--header-h) + 38px) 0 64px}.hire-mobile-grid-pattern{background-size:40px 40px}.hire-mobile-hero-grid{gap:34px}.hire-mobile-hero-copy h1{font-size:clamp(2.25rem,11vw,3rem);line-height:1.1}.hire-mobile-hero-copy>p{font-size:.92rem;line-height:1.7}.hire-mobile-stats{margin-top:28px}.hire-mobile-stats>div{min-height:102px;padding:19px 15px}.hire-mobile-stats strong{font-size:1.55rem}.hire-mobile-stats span{font-size:.73rem}.hire-mobile-form.contact-form{padding:25px 18px}.hire-mobile-form .form-row{flex-direction:column;gap:0}.hire-mobile-specialists,.hire-web-specialists{padding-top:64px}.hire-web-specialists{padding-bottom:72px}.hire-uiux-services{padding:64px 0 72px}.hire-uiux-services-grid{grid-template-columns:1fr;gap:13px}.hire-uiux-service-card{min-height:0}.hire-specialist-layout,.hire-web-specialist-layout{grid-template-columns:1fr}.hire-specialist-visual,.hire-web-specialist-visual{grid-column:auto;grid-row:auto;min-height:300px}.hire-web-specialist-visual>div{min-height:300px;padding:16px 10px}.hire-web-specialist-visual img{width:112%}.hire-specialist-column,.hire-web-specialist-column{gap:13px}.hire-specialist-card,.hire-web-specialist-layout .hire-specialist-card{min-height:0;padding:24px 21px}.hire-mobile-cta{margin-top:42px;padding:32px 22px;gap:25px}.hire-mobile-cta-btn{width:100%;min-width:0}.hire-mobile-process{padding:64px 0 72px}.hire-process-grid{gap:38px}.hire-process-copy h2{font-size:clamp(1.85rem,8.5vw,2.35rem)}.hire-assurance{margin-top:38px}.hire-assurance ul{grid-template-columns:1fr}.hire-process-steps::before{left:36px}.hire-process-steps article{grid-template-columns:72px minmax(0,1fr);min-height:150px;padding:20px 18px 20px 0}.hire-process-steps article>span{width:53px;height:53px;margin-left:9px;font-size:1.2rem}.hire-process-steps h3{font-size:.94rem}.hire-process-steps p{font-size:.78rem}.hire-mobile-skills{padding-top:62px;padding-bottom:70px}.hire-skills-grid{grid-template-columns:1fr}.hire-skills-grid>div{min-height:0;padding:20px 8px 19px 31px;font-size:.84rem}.hire-skills-grid>div::before{top:22px}.hire-mobile-cta-section{padding-bottom:68px}.hire-mobile-trust{padding:64px 0 72px}.hire-mobile-trust .trust-sticky h2{font-size:clamp(1.85rem,8vw,2.3rem)}.hire-other-talent{padding-top:4px}.hire-talent-list{grid-template-columns:1fr}
}
@media (max-width:420px){
  .hire-mobile-stats{grid-template-columns:1fr}.hire-mobile-stats>div,.hire-mobile-stats>div:nth-child(2n),.hire-mobile-stats>div:nth-child(n+3){min-height:0;border-right:0;border-bottom:1px solid rgba(72,99,160,.12)}.hire-mobile-stats>div:last-child{border-bottom:0}.hire-mobile-form h2{font-size:1.25rem}.hire-specialist-visual,.hire-web-specialist-visual{min-height:245px;padding:8px}.hire-web-specialist-visual>div{min-height:245px}.hire-process-steps article{grid-template-columns:62px minmax(0,1fr)}.hire-process-steps::before{left:31px}.hire-process-steps article>span{width:47px;height:47px;margin-left:7px}
}

/* ===================== Shared premium footer ===================== */
.site-footer.footer-v2{position:relative;overflow:hidden;padding:0;background:radial-gradient(circle at 88% 12%,rgba(25,80,172,.15),transparent 30%),radial-gradient(circle at 10% 82%,rgba(24,72,157,.1),transparent 32%),#030918;color:#aebbd2}
.site-footer.footer-v2::before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.12;background-image:linear-gradient(rgba(104,145,220,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(104,145,220,.08) 1px,transparent 1px);background-size:38px 38px;mask-image:linear-gradient(to bottom,#000,transparent 45%)}
.footer-v2 .container{position:relative;z-index:1;max-width:1340px}
.footer-v2-top{display:flex;align-items:flex-start;justify-content:space-between;gap:50px;padding-top:52px;padding-bottom:28px}
.footer-v2-logo{position:relative;display:block;width:210px;isolation:isolate}.footer-v2-logo img{display:block;width:100%;height:auto;filter:brightness(0) invert(1);opacity:.96}.footer-v2-logo::before,.footer-v2-logo::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;background:url("../assets/logo/trinex-logo.png") center/100% 100% no-repeat}.footer-v2-logo::before{clip-path:polygon(18.7% 14%,21.4% 24%,23.4% 40%,25.5% 54%,24% 73%,21.6% 91%,18.8% 100%,16.2% 91%,13.2% 73%,12.2% 44%,14.1% 25%)}.footer-v2-logo::after{clip-path:inset(23% 0 16% 79%)}.footer-v2-brand p{max-width:390px;margin:20px 0 0;color:#b8c4d9;font-size:.82rem;line-height:1.65}
.footer-v2-follow{padding-top:6px}.footer-v2-follow h2{margin:0 0 16px;color:#fff;font-size:.86rem;letter-spacing:-.01em}.footer-v2-social{display:flex;gap:12px}
.footer-v2-social a{display:grid;place-items:center;width:45px;height:45px;border:1px solid rgba(118,158,230,.25);border-radius:50%;color:#6ba0ff;transition:transform .22s ease,border-color .22s ease,background .22s ease,color .22s ease}.footer-v2-social a:hover{transform:translateY(-3px);border-color:#3579ee;background:rgba(43,105,225,.14);color:#fff}.footer-v2-social svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.footer-v2-divider{height:1px;background:rgba(154,178,220,.17)}
.footer-v2-contact{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));margin-top:24px;padding:24px 28px;border:1px solid rgba(112,150,218,.16);border-radius:17px;background:linear-gradient(110deg,rgba(17,29,53,.82),rgba(11,23,45,.72));box-shadow:0 18px 45px rgba(0,0,0,.18)}
.footer-v2-contact-item{display:grid;grid-template-columns:58px minmax(0,1fr);align-items:center;gap:19px;min-width:0;padding:4px 30px;border-right:1px solid rgba(131,163,219,.15)}.footer-v2-contact-item:first-child{padding-left:8px}.footer-v2-contact-item:last-child{padding-right:8px;border-right:0}
.footer-v2-contact-icon{display:grid;place-items:center;width:58px;height:58px;border:1px solid rgba(49,116,235,.42);border-radius:13px;background:linear-gradient(145deg,rgba(23,52,105,.72),rgba(9,25,55,.82));color:#2879ff}.footer-v2-contact-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.footer-v2-contact h2{margin:0 0 7px;color:#fff;font-size:.84rem}.footer-v2-contact p,.footer-v2-contact a{display:block;margin:0;color:#b6c2d7;font-size:.76rem;line-height:1.62}.footer-v2-contact a:hover{color:#56a6ff}
.footer-v2-links{display:grid;grid-template-columns:.72fr .9fr 1.7fr;gap:65px;padding-top:42px;padding-bottom:43px}
.footer-v2-column h2{position:relative;display:flex;align-items:center;gap:13px;margin:0 0 29px;padding-bottom:14px;color:#fff;font-size:.87rem}.footer-v2-column h2::after{content:"";position:absolute;left:55px;bottom:0;width:38px;height:2px;background:#2878f0}
.footer-v2-heading-icon{display:grid;place-items:center;width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.055);color:#5e9cff}.footer-v2-heading-icon svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.footer-v2-column>a,.footer-v2-service-links a{position:relative;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:7px 0;color:#bdc8da;font-size:.72rem;line-height:1.5;transition:color .2s ease,transform .2s ease}.footer-v2-column>a::after,.footer-v2-service-links a::after{content:"›";flex:none;color:#dce6f7;font-size:1rem;line-height:1}.footer-v2-column>a:hover,.footer-v2-service-links a:hover{color:#4b97ff;transform:translateX(3px)}
.footer-v2-hire-options{display:grid;gap:1px}.footer-v2-hire-options span,.footer-v2-hire-options a{display:block;padding:7px 0;color:#bdc8da;font-size:.72rem;line-height:1.5}.footer-v2-hire-options a{transition:color .2s ease,transform .2s ease}.footer-v2-hire-options a:hover{color:#4b97ff;transform:translateX(3px)}
.footer-v2-services h2{margin-bottom:20px}.footer-v2-service-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));column-gap:58px;row-gap:1px}
.footer-v2-newsletter{display:grid;grid-template-columns:62px minmax(280px,.8fr) minmax(390px,1.2fr);align-items:center;gap:24px;margin-bottom:20px;padding:24px 28px;border:1px solid rgba(66,124,226,.26);border-radius:17px;background:linear-gradient(105deg,rgba(12,29,61,.82),rgba(9,24,52,.68));box-shadow:0 18px 44px rgba(0,0,0,.14)}
.footer-v2-newsletter-icon{display:grid;place-items:center;width:58px;height:58px;border-radius:50%;background:rgba(37,101,220,.14);color:#2f80ff}.footer-v2-newsletter-icon svg{width:28px;height:28px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.footer-v2-newsletter h2{margin:0 0 6px;color:#fff;font-size:.93rem}.footer-v2-newsletter p{max-width:460px;margin:0;color:#aebbd2;font-size:.72rem;line-height:1.55}.footer-newsletter-form{min-width:0}.footer-v2-newsletter-fields{display:grid;grid-template-columns:minmax(0,1fr) 145px}.footer-v2-newsletter-fields input{min-width:0;height:50px;padding:0 17px;border:1px solid rgba(125,158,216,.32);border-right:0;border-radius:9px 0 0 9px;background:rgba(3,12,29,.46);color:#fff;font:500 .74rem/1 'Inter',sans-serif;outline:0}.footer-v2-newsletter-fields input::placeholder{color:#7f8faa}.footer-v2-newsletter-fields input:focus{border-color:#2e76ee;box-shadow:inset 0 0 0 1px #2e76ee}.footer-v2-newsletter-fields button{display:flex;align-items:center;justify-content:center;gap:9px;height:50px;border-radius:0 9px 9px 0;background:linear-gradient(105deg,#173e9b,#1769eb);color:#fff;font-size:.73rem;font-weight:700;transition:filter .2s ease}.footer-v2-newsletter-fields button:hover{filter:brightness(1.13)}.footer-v2-newsletter-fields button svg{width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.footer-newsletter-status{display:block;min-height:16px;margin-top:7px;color:#70b8ff;font-size:.62rem}
.footer-v2-bottom{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:20px;padding:22px 0 29px;border-top:1px solid rgba(154,178,220,.16);color:#8593aa;font-size:.7rem}.footer-v2-bottom a{color:#b7c3d7}.footer-v2-bottom a:hover{color:#55a2ff}.footer-v2-bottom>span:last-child{text-align:right}
@media (max-width:980px){
  .footer-v2-contact{grid-template-columns:1fr}.footer-v2-contact-item,.footer-v2-contact-item:first-child,.footer-v2-contact-item:last-child{padding:16px 8px;border-right:0;border-bottom:1px solid rgba(131,163,219,.15)}.footer-v2-contact-item:last-child{border-bottom:0}.footer-v2-links{grid-template-columns:repeat(2,minmax(0,1fr));gap:42px}.footer-v2-services{grid-column:1/-1}.footer-v2-newsletter{grid-template-columns:58px minmax(0,1fr)}.footer-newsletter-form{grid-column:1/-1}
}
@media (max-width:680px){
  .footer-v2 .container{padding-left:18px;padding-right:18px}.footer-v2-top{align-items:flex-start;flex-direction:column;padding-top:42px}.footer-v2-logo{width:185px}.footer-v2-brand p{margin-top:16px;font-size:.76rem}.footer-v2-follow{padding-top:0}.footer-v2-contact{margin-top:18px;padding:13px 16px}.footer-v2-contact-item{grid-template-columns:50px minmax(0,1fr);gap:15px}.footer-v2-contact-icon{width:50px;height:50px}.footer-v2-contact-icon svg{width:24px;height:24px}.footer-v2-links{grid-template-columns:1fr;gap:34px;padding-top:36px;padding-bottom:36px}.footer-v2-services{grid-column:auto}.footer-v2-column h2{margin-bottom:20px}.footer-v2-service-links{grid-template-columns:1fr}.footer-v2-newsletter{grid-template-columns:48px minmax(0,1fr);gap:15px;padding:20px 17px}.footer-v2-newsletter-icon{width:48px;height:48px}.footer-v2-newsletter h2{font-size:.82rem}.footer-v2-newsletter p{font-size:.68rem}.footer-newsletter-form{grid-column:1/-1}.footer-v2-newsletter-fields{grid-template-columns:1fr}.footer-v2-newsletter-fields input{border-right:1px solid rgba(125,158,216,.32);border-radius:8px 8px 0 0}.footer-v2-newsletter-fields button{border-radius:0 0 8px 8px}.footer-v2-bottom{grid-template-columns:1fr;gap:9px;text-align:center}.footer-v2-bottom>span:last-child{text-align:center}
}
@media (max-width:390px){
  .footer-v2 .container{padding-left:14px;padding-right:14px}.footer-v2-contact{padding-left:12px;padding-right:12px}.footer-v2-contact-item{padding-left:3px!important;padding-right:3px!important}.footer-v2-newsletter{grid-template-columns:1fr}.footer-v2-newsletter-icon{margin:0 auto}.footer-v2-newsletter>div{text-align:center}
}

@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;}
  html{scroll-behavior:auto;}
  .home-showcase-track{animation:none!important;transform:none!important;}
}
