/* ============================================================
   KKRF TECH — Mobile App Services — Enterprise Premium UI
   Revamped: HCL/TCS-grade design language
   ============================================================ */

:root {
  --blue:        #1574FF;
  --blue-dark:   #0a52cc;
  --blue-mid:    #1460d4;
  --blue-tint:   rgba(21,116,255,.07);
  --blue-tint-2: rgba(21,116,255,.14);
  --ink-2:       #1a1c20;
  --mono:        'Inter', sans-serif;
  --radius-card: 20px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 12px rgba(0,0,0,.06), 0 8px 32px rgba(0,0,0,.05);
  --shadow-lift: 0 12px 48px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  --ease-snap:   cubic-bezier(.22,1,.36,1);
}

/* Reset */
body { background: #fff; color: var(--ink); }

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease-snap), transform .8s var(--ease-snap);
  transition-delay: calc(var(--d, 0) * 90ms);
  will-change: opacity, transform;
}
.reveal-up.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
}
html { scroll-padding-top: 84px; scroll-behavior: smooth; }

/* ── Shared typography tokens ──────────────────────────────── */
.leyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
}
.leyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--blue);
  flex-shrink: 0;
}
.leyebrow--dark { color: #6ea7ff; }
.leyebrow--dark::before { background: #6ea7ff; }

.lh2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.035em;
  color: var(--ink);
  margin-top: 18px;
  max-width: 24ch;
  text-wrap: balance;
}
.lh2--dark { color: #fff; }

.llead {
  font-size: clamp(15px, 1.2vw, 17.5px);
  line-height: 1.72;
  color: var(--g-600);
  max-width: 62ch;
  margin-top: 20px;
  text-wrap: pretty;
}
.llead--dark { color: rgba(255,255,255,.65); }

.llink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.01em;
  transition: gap .3s var(--ease-snap), color .3s;
}
.llink:hover { gap: 14px; color: var(--blue-dark); }

/* ── Buttons ───────────────────────────────────────────────── */
.lbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -.01em;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease-snap), background .3s, border-color .3s, color .3s, box-shadow .3s;
  white-space: nowrap;
  text-decoration: none;
}
.lbtn span { transition: transform .3s var(--ease-snap); }
.lbtn:hover span { transform: translateX(3px); }
.lbtn--lg { padding: 16px 32px; font-size: 15.5px; }
.lbtn--block { width: 100%; justify-content: center; }

.lbtn--solid {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 24px -6px rgba(21,116,255,.5);
}
.lbtn--solid:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(21,116,255,.6);
}
.lbtn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(0,0,0,.18);
}
.lbtn--ghost:hover {
  border-color: var(--ink);
  background: rgba(0,0,0,.03);
  transform: translateY(-2px);
}
.lbtn--light {
  background: #fff;
  color: var(--ink);
  border-color: rgba(255,255,255,.2);
}
.lbtn--light:hover {
  background: var(--blue);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Nav button override */
.nav .btn--solid { background: var(--blue); }
.nav .btn--solid:hover { background: var(--blue-dark); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.lhero {
  position: relative;
  padding: 152px 0 100px;
  background: #fff;
  overflow: hidden;
}
.lhero__in { position: relative; z-index: 2; }

/* Breadcrumbs */
.lhero__crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--g-500);
  margin-bottom: 40px;
}
.lhero__crumbs a { color: var(--g-500); transition: color .25s; }
.lhero__crumbs a:hover { color: var(--blue); }
.lhero__crumbs span:not(.lhero__here) { color: var(--g-300); }
.lhero__here { color: var(--ink); font-weight: 500; }

/* H1 — large, sharp, enterprise */
.lhero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 88px);
  font-weight: 800;
  line-height: .97;
  letter-spacing: -.05em;
  color: var(--ink);
  margin-top: 0;
  max-width: 18ch;
  text-wrap: balance;
}

.lhero__sub {
  font-size: clamp(15px, 1.25vw, 17.5px);
  line-height: 1.72;
  color: var(--g-600);
  max-width: 66ch;
  margin-top: 28px;
  text-wrap: pretty;
}

/* CTA row */
.lhero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* Stat proof strip */
.lhero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.lhero__proof > div {
  padding: 0 40px 0 0;
  margin-right: 40px;
  border-right: 1px solid rgba(0,0,0,.08);
}
.lhero__proof > div:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.lhero__proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1;
}
.lhero__proof span {
  display: block;
  font-size: 13px;
  color: var(--g-500);
  margin-top: 6px;
  font-weight: 500;
}

/* Hero ambient visuals */
.lhero__visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.lhero__orb {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(21,116,255,.09), transparent 65%);
  filter: blur(24px);
}
.lhero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,116,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,116,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 80% 20%, #000, transparent 70%);
  mask-image: radial-gradient(ellipse 75% 65% at 80% 20%, #000, transparent 70%);
}

/* ═══════════════════════════════════════════════════════════
   TRUSTED BY
   ══════════════════════════════════════════════════════════ */
.ltrust {
  padding: 80px 0 28px;
  background: #fff;
}
.ltrust__label {
  text-align: center;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g-400);
  margin-bottom: 40px;
}

/* Marquee */
.marq {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marq__t {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marqMove 40s linear infinite;
}
.marq__t--slow { animation-duration: 58s; }
.marq:hover .marq__t { animation-play-state: paused; }
@keyframes marqMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marq span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--g-300);
  letter-spacing: -.02em;
  transition: color .3s;
}
.marq span:hover { color: var(--g-600); }
.marq i { color: var(--blue); font-style: normal; font-size: 10px; opacity: .5; }
@media (prefers-reduced-motion: reduce) { .marq__t { animation: none; } }

/* Copy block */
.ltrust__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 80px;
  align-items: start;
}
.ltrust__copy > p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.52;
  color: var(--ink);
  letter-spacing: -.02em;
}
.ltrust__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ltrust__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,.07);
  font-size: 14.5px;
  color: var(--g-700);
  line-height: 1.6;
}
.ltrust__list li:last-child { border-bottom: 1px solid rgba(0,0,0,.07); }
.ltrust__list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--blue);
  opacity: .7;
}

/* ═══════════════════════════════════════════════════════════
   METRICS — dark band
   ══════════════════════════════════════════════════════════ */
.lmet {
  padding: 100px 0;
  background: #06080d;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.lmet::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -100px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,116,255,.16), transparent 65%);
  filter: blur(18px);
  animation: orbDrift1 16s ease-in-out infinite alternate;
}
.lmet::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,116,255,.08), transparent 65%);
  filter: blur(18px);
  animation: orbDrift2 20s ease-in-out infinite alternate;
}
@keyframes orbDrift1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(70px, 40px) scale(1.15); }
}
@keyframes orbDrift2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-50px,-30px) scale(1.1); }
}
.lmet .wrap { position: relative; z-index: 1; }

.lmet__head {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  color: rgba(255,255,255,.45);
  margin-bottom: 56px;
  letter-spacing: -.01em;
}

.lmet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.lmet__c {
  padding: 44px 36px;
  background: #06080d;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .4s var(--ease-snap);
}
.lmet__c::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent 70%);
  opacity: 0;
  transition: opacity .4s;
}
.lmet__c:hover { background: #0a0d14; }
.lmet__c:hover::before { opacity: 1; }

.lmet__n {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  color: #fff;
}
.lmet__l {
  display: block;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.45);
  font-size: 13.5px;
  letter-spacing: .01em;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES — tab selector
   ══════════════════════════════════════════════════════════ */
.lsvc {
  padding: 120px 0;
  background: #fff;
}
.lsvc__head { max-width: 880px; margin-bottom: 60px; }

.lsvc__pin {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}
.lsvc__list {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 104px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.lsvc__item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 20px 14px 20px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.07);
  cursor: pointer;
  color: var(--g-500);
  transition: color .3s, padding-left .3s var(--ease-snap), background .3s;
  border-radius: 0;
}
.lsvc__item:hover { color: var(--ink); padding-left: 10px; }
.lsvc__item.is-active {
  color: var(--ink);
  padding-left: 14px;
  background: var(--blue-tint);
  border-radius: 12px;
  border-bottom-color: transparent;
}

.lsvc__no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--g-400);
  transition: color .3s;
  min-width: 22px;
}
.lsvc__item.is-active .lsvc__no { color: var(--blue); }
.lsvc__name {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -.02em;
  flex: 1;
  text-align: left;
}
.lsvc__arr {
  font-size: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: .3s var(--ease-snap);
  color: var(--blue);
}
.lsvc__item.is-active .lsvc__arr { opacity: 1; transform: none; }

/* Service card preview */
.lsvc__preview {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  background: linear-gradient(150deg, #f6f9ff 0%, #edf2fc 100%);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(21,116,255,.08);
}
.lsvc__preview::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 65%;
  height: 45%;
  background: radial-gradient(circle at 100% 0%, rgba(21,116,255,.12), transparent 65%);
  pointer-events: none;
}
.lsvc__card {
  position: absolute;
  inset: 0;
  padding: clamp(40px, 4.5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px) scale(.99);
  transition: opacity .5s var(--ease-snap), transform .5s var(--ease-snap);
  pointer-events: none;
}
.lsvc__card.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.lsvc__tag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid rgba(21,116,255,.2);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: auto;
}
.lsvc__card h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -.035em;
  margin: 28px 0 16px;
  text-wrap: balance;
}
.lsvc__card p {
  color: var(--g-700);
  font-size: 15.5px;
  line-height: 1.72;
  max-width: 56ch;
  text-wrap: pretty;
}

.lsvc__cta {
  margin-top: 100px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.lsvc__cta h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  text-wrap: balance;
}
.lsvc__cta p {
  color: var(--g-600);
  margin: 16px 0 30px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   SUCCESS STORIES
   ══════════════════════════════════════════════════════════ */
.lwork {
  padding: 120px 0;
  background: #f7f9fc;
}
.lwork__head { max-width: 880px; margin-bottom: 56px; }

.lwork__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.lwork__card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-card);
  padding: clamp(32px, 3vw, 48px);
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease-snap), box-shadow .45s, border-color .3s;
}
.lwork__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #6ea7ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-snap);
}
.lwork__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(21,116,255,.12);
}
.lwork__card:hover::before { transform: scaleX(1); }

.lwork__sector {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.lwork__card p {
  color: var(--g-600);
  font-size: 15px;
  line-height: 1.7;
}

.lwork__why {
  margin-top: 56px;
  padding: clamp(36px, 4vw, 52px);
  border-radius: var(--radius-card);
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 40px;
  align-items: center;
}
.lwork__why h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 14px;
  max-width: 22ch;
  text-wrap: balance;
}
.lwork__why p {
  color: var(--g-600);
  line-height: 1.7;
  max-width: 60ch;
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════
   INDUSTRIES
   ══════════════════════════════════════════════════════════ */
.lind {
  padding: 120px 0;
  background: #fff;
}
.lind__in {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.lind__left .llead { margin-bottom: 28px; }

.lind__acc { border-top: 1px solid rgba(0,0,0,.08); }
.lind__item { border-bottom: 1px solid rgba(0,0,0,.08); }
.lind__q {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 26px 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 700;
  letter-spacing: -.025em;
  transition: color .25s;
}
.lind__q:hover { color: var(--blue); }
.lind__no {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--g-400);
  letter-spacing: .1em;
}
.lind__ic {
  margin-left: auto;
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.lind__ic::before, .lind__ic::after {
  content: "";
  position: absolute;
  background: var(--blue);
  transition: transform .4s var(--ease-snap);
}
.lind__ic::before { top: 8px; left: 0; width: 18px; height: 2px; }
.lind__ic::after  { top: 0; left: 8px; width: 2px; height: 18px; }
.lind__item.is-open .lind__ic::after { transform: scaleY(0); }

.lind__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-snap);
}
.lind__item.is-open .lind__a { max-height: 280px; }
.lind__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 26px;
}
.lind__chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--blue-tint);
  border: 1px solid rgba(21,116,255,.15);
  font-size: 13.5px;
  color: var(--blue-dark);
  font-weight: 600;
  letter-spacing: -.01em;
}
.lind__chips span::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.lind__note {
  margin-top: 24px;
  color: var(--g-400);
  font-size: 13.5px;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   COMPLIANCE
   ══════════════════════════════════════════════════════════ */
.lcomp {
  padding: 120px 0;
  background: #f7f9fc;
}
.lcomp__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}
.lcomp__head .lh2 { margin: 18px auto 0; }
.lcomp__head .llead { margin-left: auto; margin-right: auto; }

.lcomp__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.lcomp__c {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px;
  background: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  transition: transform .35s var(--ease-snap), border-color .35s, color .35s, box-shadow .35s, background .35s;
  letter-spacing: -.01em;
}
.lcomp__c:hover {
  transform: translateY(-4px);
  border-color: rgba(21,116,255,.3);
  color: var(--blue-dark);
  background: var(--blue-tint);
  box-shadow: 0 10px 30px -12px rgba(21,116,255,.35);
}
.lcomp__c:has(.lcomp__logo) {
  background: var(--E-white);
  border-color: rgba(255,255,255,.15);
  padding: 12px;
}
.lcomp__c:has(.lcomp__logo):hover {
  background: var(--E-white);
  border-color: var(--E-blue);
}
.lcomp__logo {
  display: block;
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════
   WHY KKRF
   ══════════════════════════════════════════════════════════ */
.lwhy {
  padding: 120px 0;
  background: #fff;
}
.lwhy__head { max-width: 880px; margin-bottom: 56px; }
.lwhy__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.lwhy__card {
  position: relative;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--radius-card);
  padding: clamp(32px, 3vw, 48px);
  background: #fff;
  overflow: hidden;
  transition: transform .45s var(--ease-snap), border-color .35s, box-shadow .45s;
}
.lwhy__card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #6ea7ff 70%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-snap);
}
.lwhy__card:hover {
  transform: translateY(-6px);
  border-color: rgba(21,116,255,.12);
  box-shadow: var(--shadow-lift);
}
.lwhy__card:hover::after { transform: scaleX(1); }

.lwhy__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--blue-tint);
  border: 1px solid rgba(21,116,255,.15);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: .06em;
}
.lwhy__card h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 18px 0 12px;
  text-wrap: balance;
}
.lwhy__card p {
  color: var(--g-600);
  font-size: 15px;
  line-height: 1.7;
}

.lwhy__banner {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: clamp(36px, 4vw, 56px);
  border-radius: var(--radius-card);
  background: linear-gradient(130deg, #0a52cc 0%, #1574FF 60%, #3d8fff 100%);
  position: relative;
  overflow: hidden;
}
.lwhy__banner::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -8%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.1), transparent 65%);
  pointer-events: none;
}
.lwhy__banner p {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -.03em;
  color: #fff;
  max-width: 24ch;
  text-wrap: balance;
}
.lwhy__banner .lbtn { position: relative; }

/* ═══════════════════════════════════════════════════════════
   TECH CATEGORIES — dark band
   ══════════════════════════════════════════════════════════ */
.ltechcat {
  padding: 120px 0;
  background: #06080d;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ltechcat::before {
  content: "";
  position: absolute;
  top: 50%; right: -150px;
  width: 580px; height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,116,255,.12), transparent 65%);
  animation: orbDrift1 22s ease-in-out infinite alternate;
}
.ltechcat .wrap { position: relative; z-index: 1; }
.ltechcat__head { max-width: 880px; margin-bottom: 56px; }

.ltechcat__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
  overflow: hidden;
}
.ltechcat__card {
  background: #06080d;
  padding: clamp(28px, 2.8vw, 44px);
  transition: background .35s;
  position: relative;
}
.ltechcat__card:hover { background: #0b0f18; }
.ltechcat__card::before {
  content: "";
  display: block;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(21,116,255,.15);
  border: 1px solid rgba(21,116,255,.3);
  margin-bottom: 22px;
}
.ltechcat__card h3 {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 12px;
  text-wrap: balance;
}
.ltechcat__card p {
  color: rgba(255,255,255,.45);
  font-size: 14px;
  line-height: 1.68;
  text-wrap: pretty;
}

/* ═══════════════════════════════════════════════════════════
   TECH STACK — tabs
   ══════════════════════════════════════════════════════════ */
.lstack {
  padding: 120px 0;
  background: #fff;
}
.lstack__head { max-width: 880px; margin-bottom: 44px; }

.lstack__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.lstack__tab {
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.1);
  color: var(--g-600);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: all .25s var(--ease-snap);
}
.lstack__tab:hover { color: var(--ink); border-color: rgba(0,0,0,.25); }
.lstack__tab.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 6px 20px -8px rgba(21,116,255,.55);
}

.lstack__panel { display: none; }
.lstack__panel.is-active {
  display: block;
  animation: lfadeUp .4s var(--ease-snap);
}
@keyframes lfadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.lstack__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.ltech {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 140px;
  padding: 22px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  transition: transform .35s var(--ease-snap), box-shadow .35s, border-color .3s, background .3s;
}
.ltech:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px -16px rgba(21,116,255,.35);
  border-color: rgba(21,116,255,.2);
  background: var(--blue-tint);
}
.ltech__ic {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 13px;
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -.02em;
}
.ltech:hover .ltech__ic { background: transparent; }
.ltech__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  text-align: center;
  letter-spacing: -.01em;
}

/* ═══════════════════════════════════════════════════════════
   FEATURES — pill cloud
   ══════════════════════════════════════════════════════════ */
.lfeat {
  padding: 120px 0;
  background: #f7f9fc;
}
.lfeat__head { max-width: 720px; margin-bottom: 44px; }
.lfeat__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lfeat__i {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--g-700);
  letter-spacing: -.01em;
  transition: all .3s var(--ease-snap);
}
.lfeat__i::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  opacity: .7;
}
.lfeat__i:hover {
  border-color: rgba(21,116,255,.3);
  color: var(--blue-dark);
  background: var(--blue-tint);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -8px rgba(21,116,255,.3);
}

/* ═══════════════════════════════════════════════════════════
   PROCESS — numbered timeline
   ══════════════════════════════════════════════════════════ */
.lproc {
  padding: 120px 0;
  background: #fff;
}
.lproc__head { max-width: 720px; margin-bottom: 52px; }
.lproc__list { display: grid; max-width: 960px; }

.lproc__step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  padding: 36px 20px;
  border-top: 1px solid rgba(0,0,0,.08);
  align-items: start;
  border-radius: 0;
  transition: background .3s, padding-left .3s var(--ease-snap);
}
.lproc__step:last-child { border-bottom: 1px solid rgba(0,0,0,.08); }
.lproc__step:hover {
  background: rgba(21,116,255,.03);
  padding-left: 28px;
  border-radius: 14px;
}

.lproc__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--blue-tint);
  border: 1.5px solid rgba(21,116,255,.18);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.lproc__step h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 10px;
  text-wrap: balance;
}
.lproc__step p {
  color: var(--g-600);
  line-height: 1.72;
  font-size: 15px;
  max-width: 64ch;
  text-wrap: pretty;
}

/* ═══════════════════════════════════════════════════════════
   PARTNERS — marquee
   ══════════════════════════════════════════════════════════ */
.lpart {
  padding: 80px 0 100px;
  background: #f7f9fc;
  overflow: hidden;
}
.lpart__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -.03em;
  text-align: center;
  margin: 0 auto 52px;
  max-width: none;
  color: var(--ink);
}

.marq--cards .marq__t { gap: 18px; }
.lpart__tile {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 220px;
  height: 116px;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 18px;
  background: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--g-500);
  letter-spacing: -.01em;
  transition: all .35s var(--ease-snap);
}
.lpart__tile:hover {
  background: var(--blue-tint);
  border-color: rgba(21,116,255,.2);
  color: var(--blue-dark);
}
.lpart__logo {
  display: block;
  height: 32px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
  opacity: .9;
  transition: opacity .25s;
}
.lpart__tile:hover .lpart__logo { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.lfaq {
  padding: 120px 0;
  background: #fff;
}
.lfaq__in {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.lfaq__left .lh2 { margin: 14px 0 36px; }

.lfaq__acc { border-top: 1px solid rgba(0,0,0,.08); }
.lfaq__item { border-bottom: 1px solid rgba(0,0,0,.08); }
.lfaq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: -.02em;
  transition: color .25s;
}
.lfaq__q:hover { color: var(--blue); }
.lfaq__no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--g-400);
  min-width: 24px;
}
.lfaq__ic {
  margin-left: auto;
  position: relative;
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.lfaq__ic::before, .lfaq__ic::after {
  content: "";
  position: absolute;
  background: var(--blue);
  transition: transform .35s var(--ease-snap);
}
.lfaq__ic::before { top: 7px; left: 0; width: 16px; height: 2px; }
.lfaq__ic::after  { top: 0; left: 7px; width: 2px; height: 16px; }
.lfaq__item.is-open .lfaq__ic::after { transform: scaleY(0); }

.lfaq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-snap);
}
.lfaq__item.is-open .lfaq__a { max-height: 320px; }
.lfaq__a p {
  color: var(--g-600);
  line-height: 1.72;
  padding: 0 0 26px 40px;
  font-size: 15px;
  text-wrap: pretty;
}

.lfaq__aside { position: sticky; top: 104px; }
.lfaq__card {
  border-radius: var(--radius-card);
  padding: clamp(36px, 4vw, 52px);
  background: linear-gradient(150deg, #0a52cc, #1574FF 55%, #3d8fff);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.lfaq__card::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.15), transparent 65%);
  pointer-events: none;
}
.lfaq__card h3 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -.035em;
  margin-bottom: 16px;
  line-height: 1.15;
  text-wrap: balance;
}
.lfaq__card p {
  position: relative;
  line-height: 1.68;
  margin-bottom: 28px;
  color: rgba(255,255,255,.85);
  font-size: 15px;
}
.lfaq__card .lbtn {
  position: relative;
  background: #fff;
  color: var(--blue-dark);
  font-weight: 800;
}
.lfaq__card .lbtn:hover { background: var(--ink); color: #fff; }

/* ═══════════════════════════════════════════════════════════
   FINAL CTA — dark
   ══════════════════════════════════════════════════════════ */
.lcta {
  padding: 120px 0;
  background: #06080d;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.lcta::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(21,116,255,.2), transparent 65%);
  filter: blur(20px);
  animation: ctaGlow 12s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
  from { opacity: .7; transform: translateX(-50%) scale(1); }
  to   { opacity: 1; transform: translateX(-50%) scale(1.25); }
}
.lcta__in {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.lcta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.045em;
  color: #fff;
  margin: 18px 0 22px;
  max-width: 14ch;
  text-wrap: balance;
}
.lcta__sub {
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  font-size: 16px;
  max-width: 46ch;
  text-wrap: pretty;
}
.lcta__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lcta__form input,
.lcta__form textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .25s, background .25s;
  resize: vertical;
}
.lcta__form input::placeholder,
.lcta__form textarea::placeholder { color: rgba(255,255,255,.3); }
.lcta__form input:focus,
.lcta__form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(21,116,255,.1);
}
.lcta__msg {
  font-size: 13.5px;
  color: #6ea7ff;
  min-height: 18px;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   GSX SHOWCASE SECTION (dark cards)
   ══════════════════════════════════════════════════════════ */
.gsx {
  background: #06080d;
  color: #fff;
  padding: 104px 0 116px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.gsx::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}
.gsx .wrap { position: relative; z-index: 1; }
.gsx__head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.gsx__head .leyebrow { color: #6ea7ff; justify-content: center; }
.gsx__head .leyebrow::before { background: #6ea7ff; }
.gsx__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.045em;
  color: #fff;
  text-wrap: balance;
}
.gsx__title .gsx__w { display: inline-block; }
.gsx__lead {
  color: rgba(255,255,255,.5);
  line-height: 1.72;
  margin: 20px auto 0;
  max-width: 56ch;
  font-size: clamp(15px, 1.2vw, 17px);
  text-wrap: pretty;
}
.gsx__grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  perspective: 1400px;
}
.gsx__card {
  position: relative;
  border-radius: 22px;
  padding: clamp(28px, 3vw, 44px);
  background: linear-gradient(150deg, #141b27, #0a0d12);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  transform-origin: center bottom;
  transition: transform .45s var(--ease-snap), border-color .45s, box-shadow .45s;
}
.gsx__card:hover {
  transform: translateY(-5px);
  border-color: rgba(110,167,255,.4);
  box-shadow: 0 24px 56px -28px rgba(21,116,255,.45);
}
.gsx__card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 80% at 100% 0%, rgba(21,116,255,.14), transparent 58%);
}
.gsx__row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: clamp(18px, 2vw, 28px);
}
.gsx__num {
  flex: none;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: .85;
  font-size: clamp(32px, 3vw, 50px);
  letter-spacing: -.045em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(110,167,255,.5);
}
.gsx__body { flex: 1; }
.gsx__body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 25px);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #fff;
  text-wrap: balance;
}
.gsx__body p {
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  font-size: 15px;
  text-wrap: pretty;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lhero { padding: 120px 0 72px; }
  .lmet, .lsvc, .lwork, .lind, .lcomp, .lwhy, .ltechcat, .lstack, .lfeat, .lproc, .lfaq, .lcta, .gsx { padding: 88px 0; }
  .ltrust { padding: 72px 0 20px; }
  .lpart { padding: 72px 0 88px; }

  .ltrust__copy { grid-template-columns: 1fr; gap: 32px; }
  .lmet__grid { grid-template-columns: repeat(2, 1fr); }
  .lsvc__pin { grid-template-columns: 1fr; }
  .lsvc__list { position: static; border-top: 1px solid rgba(0,0,0,.08); }
  .lsvc__preview {
    min-height: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }
  .lsvc__preview::before { display: none; }
  .lsvc__card {
    position: relative; inset: auto;
    display: none;
    opacity: 1; transform: none;
    pointer-events: auto;
    justify-content: flex-start;
    border-radius: 22px;
    background: linear-gradient(150deg, #f6f9ff, #edf2fc);
    padding: clamp(26px, 5vw, 44px);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(21,116,255,.08);
  }
  .lsvc__card.is-active { display: flex; }
  .lsvc__card h3 { margin-top: 0; }
  .lsvc__cta { margin-top: 60px; }

  .lind__in { grid-template-columns: 1fr; gap: 44px; }
  .lcomp__grid { grid-template-columns: repeat(3, 1fr); }
  .lwhy__grid { grid-template-columns: 1fr; }
  .ltechcat__grid { grid-template-columns: repeat(2, 1fr); }
  .lstack__grid { grid-template-columns: repeat(4, 1fr); }
  .lwork__why { grid-template-columns: 1fr; }
  .lfaq__in { grid-template-columns: 1fr; }
  .lfaq__aside { position: static; }
  .lcta__in { grid-template-columns: 1fr; gap: 40px; }
  .gsx__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Phone (≤ 768px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .lhero { padding: 104px 0 56px; }

  .lhero__cta { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 28px; }
  .lhero__cta .lbtn { width: 100%; justify-content: center; }

  /* Proof stats — 2×2 grid with card look */
  .lhero__proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
    padding-top: 0;
    border-top: none;
  }
  .lhero__proof > div {
    background: var(--blue-tint);
    border: 1px solid rgba(21,116,255,.12);
    border-radius: 16px;
    padding: 20px 18px;
    border-right: none;
    margin-right: 0;
  }

  .lmet { padding: 56px 0; }
  .lmet__grid { grid-template-columns: repeat(2, 1fr); }
  .lmet__c { padding: 26px 20px; }

  .lsvc, .lwork, .lind, .lcomp, .lwhy, .ltechcat, .lstack, .lfeat, .lproc, .lfaq, .lcta, .gsx { padding: 64px 0; }
  .lpart { padding: 56px 0 64px; }

  .lwork__grid { grid-template-columns: 1fr; }
  .lcomp__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lcomp__c { min-height: 60px; padding: 14px 10px; font-size: 12.5px; border-radius: 14px; }

  .ltechcat__grid { grid-template-columns: 1fr; }
  .lstack__grid { grid-template-columns: repeat(3, 1fr); }
  .lmet__grid { grid-template-columns: 1fr; }

  .lstack__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -20px 24px;
    padding: 0 20px 4px;
  }
  .lstack__tabs::-webkit-scrollbar { display: none; }
  .lstack__tab { flex: 0 0 auto; }

  .ltech { min-height: 116px; padding: 16px; border-radius: 16px; }
  .ltech__ic { background: var(--blue); }

  .lsvc__cta .lbtn,
  .lwhy__banner .lbtn,
  .lcta__form .lbtn { width: 100%; justify-content: center; }
  .lsvc__cta { margin-top: 52px; }
  .lwhy__banner { gap: 20px; }
  .lwork__why { padding: 28px 22px; }
  .lproc__step { grid-template-columns: 72px 1fr; gap: 18px; padding: 24px 0; border-radius: 0; }
  .lproc__step:hover { padding-left: 0; }
  .lfeat__grid { gap: 8px; }
  .lfeat__i { font-size: 13.5px; padding: 11px 18px; }

  .gsx__card { padding: 24px 20px; }
  .gsx__row { gap: 14px; }
  .gsx__num { font-size: 32px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Small phone (≤ 480px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .lhero { padding: 94px 0 48px; }
  .lhero__title { font-size: clamp(30px, 9vw, 44px); }
  .lh2 { font-size: clamp(24px, 7.5vw, 36px); }
  .lhero__proof { gap: 12px; margin-top: 36px; }
  .lhero__proof > div { padding: 16px 14px; }

  .lsvc, .lwork, .lind, .lcomp, .lwhy, .ltechcat, .lstack, .lfeat, .lproc, .lfaq, .lcta, .gsx { padding: 52px 0; }
  .lmet__grid { grid-template-columns: 1fr; }

  .lstack__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lwork__card, .lwhy__card { padding: 24px 20px; }
  .lcomp__c { min-height: 80px; }

  .lcta__title { font-size: clamp(26px, 8.5vw, 38px); }
  .lind__q { font-size: clamp(16px, 5vw, 20px); padding: 20px 0; }
  .lfaq__q { font-size: 15px; padding: 20px 0; }
  .lsvc__item { padding: 18px 4px; min-height: 56px; }
  .lsvc__name { font-size: 15px; }
  .lsvc__card h3 { font-size: clamp(20px, 6vw, 26px); }

  .lcta__form input,
  .lcta__form textarea { font-size: 16px; padding: 14px 16px; border-radius: 12px; }

  .lwhy__grid { gap: 12px; }
  .lwhy__card { border-radius: 18px; }
  .lbtn--lg { padding: 14px 24px; font-size: 15px; }
  .lstack__tab { font-size: 13px; padding: 10px 18px; min-height: 42px; }
  .lind__q { min-height: 58px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Very small (≤ 360px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .lhero__proof { gap: 10px; }
  .lcomp__c { font-size: 12px; padding: 12px 8px; }
  .lfeat__i { font-size: 13px; padding: 10px 14px; }
  .lstack__tab { font-size: 12.5px; padding: 10px 16px; }
}
