/* ============================================================
   KKRF TECH — Mobile App Services
   Enterprise Design System — Accenture / HCL / TCS grade
   Pure black + white + blue accent. No templates.
   ============================================================ */

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --E-black:   #0a0b0d;
  --E-ink:     #111216;
  --E-white:   #ffffff;
  --E-offwhite:#f5f6f8;
  --E-gray:    #f0f1f4;
  --E-blue:    #1574FF;
  --E-blue-d:  #0a52cc;
  --E-blue-t:  rgba(21,116,255,.08);
  --E-blue-t2: rgba(21,116,255,.18);
  --E-muted:   #6b7280;
  --E-line:    rgba(0,0,0,.09);
  --E-line-dk: rgba(255,255,255,.08);
  --mono:      'Inter', sans-serif;
  --snap:      cubic-bezier(.22,1,.36,1);
}

/* ── Reset & base ───────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  background: var(--E-white);
  color: var(--E-ink);
  overflow-x: hidden;
  max-width: 100%;
}
/* Every section must stay within viewport width */
.lhero, .ltrust, .lmet, .lsvc, .lwork, .lind, .lcomp,
.lwhy, .ltechcat, .lstack, .lfeat, .lproc, .lpart,
.lfaq, .lcta, .gsx {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* ── Reveal animation ───────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--snap), transform .75s var(--snap);
  transition-delay: calc(var(--d, 0) * 85ms);
}
.reveal-up.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
}

/* ── Shared: eyebrow label ──────────────────────────────────── */
.leyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--E-blue);
}
.leyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--E-blue);
  flex-shrink: 0;
}
.leyebrow--dark { color: rgba(110,167,255,.8); }
.leyebrow--dark::before { background: rgba(110,167,255,.8); }

/* ── Shared: section heading ────────────────────────────────── */
.lh2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--E-ink);
  margin-top: 16px;
  max-width: 22ch;
  text-wrap: balance;
}
.lh2--dark { color: var(--E-white); }

/* ── Shared: lead paragraph ─────────────────────────────────── */
.llead {
  font-size: clamp(14.5px, 1.15vw, 17px);
  line-height: 1.74;
  color: var(--E-muted);
  max-width: 60ch;
  margin-top: 18px;
  text-wrap: pretty;
}
.llead--dark { color: rgba(255,255,255,.5); }

/* ── Shared: inline link ────────────────────────────────────── */
.llink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--E-blue);
  letter-spacing: -.01em;
  transition: gap .25s var(--snap), color .25s;
}
.llink:hover { gap: 14px; color: var(--E-blue-d); }

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

.lbtn--solid {
  background: var(--E-blue);
  color: #fff;
  box-shadow: 0 4px 20px -4px rgba(21,116,255,.45);
}
.lbtn--solid:hover {
  background: var(--E-blue-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px -8px rgba(21,116,255,.55);
}
.lbtn--ghost {
  background: transparent;
  color: var(--E-ink);
  border-color: rgba(0,0,0,.2);
}
.lbtn--ghost:hover {
  border-color: var(--E-ink);
  background: rgba(0,0,0,.03);
  transform: translateY(-1px);
}
.lbtn--light {
  background: var(--E-white);
  color: var(--E-ink);
  border-color: rgba(255,255,255,.2);
}
.lbtn--light:hover {
  background: var(--E-blue);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Nav overrides */
.nav .btn--solid { background: var(--E-blue); border-radius: 6px; }
.nav .btn--solid:hover { background: var(--E-blue-d); }


/* ═══════════════════════════════════════════════════════════
   HERO — White, massive headline, split layout
   ══════════════════════════════════════════════════════════ */
.lhero {
  background: var(--E-white);
  padding: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.lhero__in {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 60px;
  row-gap: 0;
}

/* Hero eyebrow: hidden (H1 already says the same thing) */
.lhero .leyebrow {
  display: none;
}

/* Breadcrumbs span full width */
.lhero__crumbs {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--E-muted);
  margin-bottom: 44px;
}
.lhero__crumbs a { color: var(--E-muted); transition: color .2s; }
.lhero__crumbs a:hover { color: var(--E-blue); }
.lhero__crumbs span:not(.lhero__here) { color: #ccc; }
.lhero__here { color: var(--E-ink); font-weight: 600; }

/* H1 — left column, massive */
.lhero__title {
  grid-column: 1 / 2;
  grid-row: 2;
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 96px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.055em;
  color: var(--E-ink);
  margin: 0;
  align-self: start;
  text-wrap: balance;
}

/* Description — right column, aligned to top of h1 */
.lhero__sub {
  grid-column: 2 / 3;
  grid-row: 2;
  font-size: clamp(14.5px, 1.15vw, 17px);
  line-height: 1.74;
  color: var(--E-muted);
  margin: 0;
  align-self: start;
  padding-top: 10px;
  max-width: 56ch;
  text-wrap: pretty;
}

/* CTA + proof — left column below H1 */
.lhero__cta {
  grid-column: 1 / 2;
  grid-row: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 12px;
  margin-top: 48px;
  align-self: start;
}

/* Proof stats — right column below description */
.lhero__proof {
  grid-column: 2 / 3;
  grid-row: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--E-line);
  border-radius: 10px;
  overflow: hidden;
}
.lhero__proof > div {
  padding: 24px 22px;
  border-right: 1px solid var(--E-line);
  border-bottom: 1px solid var(--E-line);
  transition: background .25s;
}
.lhero__proof > div:nth-child(2n) { border-right: none; }
.lhero__proof > div:nth-child(3),
.lhero__proof > div:nth-child(4) { border-bottom: none; }
.lhero__proof > div:hover { background: var(--E-gray); }
.lhero__proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 900;
  letter-spacing: -.045em;
  color: var(--E-ink);
  line-height: 1;
}
.lhero__proof span {
  display: block;
  font-size: 12.5px;
  color: var(--E-muted);
  margin-top: 5px;
  font-weight: 500;
}

/* Ambient visuals */
.lhero__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.lhero__orb {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(21,116,255,.07), transparent 65%);
  filter: blur(30px);
}
.lhero__grid {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background-image:
    linear-gradient(rgba(21,116,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,116,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 70% 30%, #000 40%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 80% at 70% 30%, #000 40%, transparent 80%);
}

/* Bottom rule */
.lhero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--E-line);
}


/* ═══════════════════════════════════════════════════════════
   TRUSTED BY — off-white
   ══════════════════════════════════════════════════════════ */
.ltrust {
  padding: 80px 0 60px;
  background: var(--E-offwhite);
  border-bottom: 1px solid var(--E-line);
  overflow: hidden;
}
.ltrust__label {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--E-muted);
  margin-bottom: 36px;
}

/* Marquee */
.marq {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  -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: 44px;
  width: max-content;
  animation: marqMove 42s linear infinite;
}
.marq__t--slow { animation-duration: 60s; }
.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: 800;
  font-size: clamp(18px, 2vw, 28px);
  color: #c0c5ce;
  letter-spacing: -.025em;
  transition: color .25s;
  display: flex;
  align-items: center;
}
.marq span:hover { color: var(--E-ink); }
.marq__logo {
  height: 40px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 1;
}
.marq i { color: var(--E-blue); font-style: normal; font-size: 9px; opacity: .45; }
@media (prefers-reduced-motion: reduce) { .marq__t { animation: none; } }

/* Trust copy — 2 cols */
.ltrust__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 72px;
  align-items: start;
}
.ltrust__copy > p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--E-ink);
  letter-spacing: -.025em;
}
.ltrust__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--E-line);
}
.ltrust__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--E-line);
  font-size: 14.5px;
  color: var(--E-muted);
  line-height: 1.65;
}
.ltrust__list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--E-blue);
}


/* ═══════════════════════════════════════════════════════════
   METRICS — pure black
   ══════════════════════════════════════════════════════════ */
.lmet {
  padding: 96px 0;
  background: var(--E-black);
  position: relative;
  overflow: hidden;
}
.lmet::before {
  content: "";
  position: absolute;
  top: -100px; left: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,116,255,.14), transparent 65%);
  filter: blur(24px);
}
.lmet .wrap { position: relative; z-index: 1; }
.lmet__head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 56px;
}
.lmet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--E-line-dk);
  border-radius: 12px;
  overflow: hidden;
}
.lmet__c {
  padding: 48px 40px;
  border-right: 1px solid var(--E-line-dk);
  border-bottom: 1px solid var(--E-line-dk);
  position: relative;
  transition: background .3s;
}
.lmet__c:nth-child(3n) { border-right: none; }
.lmet__c:nth-child(4),
.lmet__c:nth-child(5),
.lmet__c:nth-child(6) { border-bottom: none; }
.lmet__c:hover { background: rgba(255,255,255,.03); }
.lmet__n {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--E-white);
  display: block;
}
.lmet__l {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--E-line-dk);
  color: rgba(255,255,255,.38);
  font-size: 13px;
  letter-spacing: .02em;
}


/* ═══════════════════════════════════════════════════════════
   SERVICES — white, numbered list + sticky preview
   ══════════════════════════════════════════════════════════ */
.lsvc {
  padding: 112px 0;
  background: var(--E-white);
  border-top: 1px solid var(--E-line);
}
.lsvc__head { max-width: 840px; margin-bottom: 64px; }

.lsvc__pin {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
}
.lsvc__list {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 90px;
  border-top: 1px solid var(--E-line);
}
.lsvc__item {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: left;
  padding: 18px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--E-line);
  cursor: pointer;
  color: #bbb;
  transition: color .25s, padding-left .3s var(--snap), background .25s;
}
.lsvc__item:hover { color: var(--E-ink); padding-left: 8px; }
.lsvc__item.is-active {
  color: var(--E-ink);
  padding-left: 0;
}
.lsvc__no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: #ccc;
  min-width: 26px;
  transition: color .25s;
}
.lsvc__item.is-active .lsvc__no { color: var(--E-blue); }
.lsvc__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  flex: 1;
}
.lsvc__arr {
  font-size: 15px;
  color: var(--E-blue);
  opacity: 0;
  transform: translateX(-8px);
  transition: .25s var(--snap);
}
.lsvc__item.is-active .lsvc__arr { opacity: 1; transform: none; }

/* Service card */
.lsvc__preview {
  position: relative;
  min-height: 500px;
  border-radius: 10px;
  border: 1px solid var(--E-line);
  overflow: hidden;
  background: var(--E-gray);
}
.lsvc__card {
  position: absolute;
  inset: 0;
  padding: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s var(--snap), transform .45s var(--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: 11px;
  letter-spacing: .06em;
  color: var(--E-blue);
  background: var(--E-white);
  border: 1px solid var(--E-blue-t2);
  padding: 7px 14px;
  border-radius: 4px;
  margin-bottom: auto;
}
.lsvc__card h3 {
  font-family: var(--font-display);
  color: var(--E-ink);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  letter-spacing: -.035em;
  margin: 24px 0 14px;
  text-wrap: balance;
}
.lsvc__card p {
  color: var(--E-muted);
  font-size: 15px;
  line-height: 1.73;
  max-width: 54ch;
  text-wrap: pretty;
}

.lsvc__cta {
  margin-top: 80px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding: 56px;
  border: 1px solid var(--E-line);
  border-radius: 10px;
  background: var(--E-gray);
}
.lsvc__cta h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--E-ink);
  text-wrap: balance;
}
.lsvc__cta p {
  color: var(--E-muted);
  margin: 14px 0 28px;
  line-height: 1.7;
  font-size: 15px;
}


/* ═══════════════════════════════════════════════════════════
   SUCCESS STORIES — off-white
   ══════════════════════════════════════════════════════════ */
.lwork {
  padding: 112px 0;
  background: var(--E-offwhite);
  border-top: 1px solid var(--E-line);
}
.lwork__head { max-width: 840px; margin-bottom: 56px; }

.lwork__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--E-line);
  border: 1px solid var(--E-line);
  border-radius: 10px;
  overflow: hidden;
}
.lwork__card {
  background: var(--E-white);
  padding: clamp(32px, 3.5vw, 52px);
  transition: background .25s;
  position: relative;
}
.lwork__card:hover { background: #fafbfc; }
.lwork__sector {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: -.025em;
  color: var(--E-ink);
  margin-bottom: 12px;
}
.lwork__sector::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--E-blue);
  margin-bottom: 16px;
}
.lwork__card p {
  color: var(--E-muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.lwork__why {
  margin-top: 24px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--E-line);
  min-height: 200px;
}
.lwork__why-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.lwork__why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.lwork__why-content {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
}
.lwork__why h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--E-white);
  margin-bottom: 12px;
  text-wrap: balance;
}
.lwork__why p {
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  font-size: 14.5px;
}
.lwork__why .llink { color: var(--E-white); white-space: nowrap; }


/* ═══════════════════════════════════════════════════════════
   INDUSTRIES — white
   ══════════════════════════════════════════════════════════ */
.lind {
  padding: 112px 0;
  background: var(--E-white);
  border-top: 1px solid var(--E-line);
}
.lind__in {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.lind__left .llead { margin-bottom: 28px; }
.lind__acc { border-top: 1px solid var(--E-line); }
.lind__item { border-bottom: 1px solid var(--E-line); }
.lind__q {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--E-ink);
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 700;
  letter-spacing: -.025em;
  transition: color .2s;
}
.lind__q:hover { color: var(--E-blue); }
.lind__no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: #bbb;
}
.lind__ic {
  margin-left: auto;
  position: relative;
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.lind__ic::before, .lind__ic::after {
  content: "";
  position: absolute;
  background: var(--E-blue);
  transition: transform .35s var(--snap);
}
.lind__ic::before { top: 7px; left: 0; width: 16px; height: 2px; }
.lind__ic::after  { top: 0; left: 7px; width: 2px; height: 16px; }
.lind__item.is-open .lind__ic::after { transform: scaleY(0); }
.lind__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--snap); }
.lind__item.is-open .lind__a { max-height: 260px; }
.lind__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 24px;
}
.lind__chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 4px;
  background: var(--E-gray);
  border: 1px solid var(--E-line);
  font-size: 13px;
  color: var(--E-ink);
  font-weight: 600;
  letter-spacing: -.01em;
}
.lind__chips span::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--E-blue);
  flex-shrink: 0;
}
.lind__note {
  margin-top: 20px;
  color: var(--E-muted);
  font-size: 13px;
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════
   COMPLIANCE — pure black
   ══════════════════════════════════════════════════════════ */
.lcomp {
  padding: 112px 0;
  background: var(--E-black);
  border-top: 1px solid rgba(255,255,255,.06);
}
.lcomp__head {
  max-width: 780px;
  margin-bottom: 56px;
}
.lcomp__head .lh2 { margin-top: 14px; color: var(--E-white); }
.lcomp__head .llead { color: rgba(255,255,255,.5); }

.lcomp__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.lcomp__c {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80px;
  padding: 16px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  letter-spacing: -.01em;
  transition: border-color .25s, box-shadow .25s;
}
.lcomp__c:hover {
  border-color: rgba(21,116,255,.5);
  box-shadow: 0 4px 20px rgba(21,116,255,.15);
}
.lcomp__logo {
  height: 52px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════════
   WHY KKRF — white
   ══════════════════════════════════════════════════════════ */
.lwhy {
  padding: 112px 0;
  background: var(--E-white);
  border-top: 1px solid var(--E-line);
}
.lwhy__head { max-width: 840px; margin-bottom: 56px; }
.lwhy__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--E-line);
  border: 1px solid var(--E-line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.lwhy__card {
  background: var(--E-white);
  padding: clamp(32px, 3vw, 48px);
  transition: background .25s;
}
.lwhy__card:hover { background: var(--E-gray); }
.lwhy__no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--E-blue);
  display: block;
  margin-bottom: 20px;
}
.lwhy__card h3 {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--E-ink);
  margin-bottom: 10px;
  text-wrap: balance;
}
.lwhy__card p {
  color: var(--E-muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.lwhy__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: clamp(32px, 4vw, 52px);
  border-radius: 10px;
  background: var(--E-black);
  border: 1px solid rgba(21,116,255,.2);
}
.lwhy__banner p {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: -.035em;
  color: var(--E-white);
  max-width: 26ch;
  text-wrap: balance;
}


/* ═══════════════════════════════════════════════════════════
   TECH CATEGORIES — pure black
   ══════════════════════════════════════════════════════════ */
.ltechcat {
  padding: 112px 0;
  background: var(--E-black);
  border-top: 1px solid rgba(255,255,255,.05);
}
.ltechcat__head { max-width: 840px; margin-bottom: 56px; }
.ltechcat__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  overflow: hidden;
}
.ltechcat__card {
  background: var(--E-black);
  padding: clamp(28px, 3vw, 44px);
  transition: background .25s;
  position: relative;
}
.ltechcat__card:hover { background: #111318; }
.ltechcat__card::before {
  content: "";
  display: block;
  width: 32px; height: 32px;
  border-radius: 6px;
  background: rgba(21,116,255,.12);
  border: 1px solid rgba(21,116,255,.25);
  margin-bottom: 20px;
}
.ltechcat__card h3 {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--E-white);
  margin-bottom: 10px;
  text-wrap: balance;
}
.ltechcat__card p {
  color: rgba(255,255,255,.38);
  font-size: 13.5px;
  line-height: 1.68;
  text-wrap: pretty;
}


/* ═══════════════════════════════════════════════════════════
   TECH STACK — white, tabs + FULLY RESPONSIVE grid
   ══════════════════════════════════════════════════════════ */
.lstack {
  padding: 112px 0;
  background: var(--E-white);
  border-top: 1px solid var(--E-line);
  overflow: hidden;
}
.lstack__head { max-width: 840px; margin-bottom: 44px; }
.lstack__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--E-line);
}
.lstack__tab {
  padding: 9px 20px;
  border-radius: 4px;
  background: var(--E-white);
  border: 1.5px solid var(--E-line);
  color: var(--E-muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: all .2s var(--snap);
  white-space: nowrap;
}
.lstack__tab:hover { color: var(--E-ink); border-color: #aaa; }
.lstack__tab.is-active {
  background: var(--E-ink);
  color: var(--E-white);
  border-color: var(--E-ink);
}
.lstack__panel { display: none; }
.lstack__panel.is-active {
  display: block;
  animation: lfadeUp .4s var(--snap);
}
@keyframes lfadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ★ KEY FIX: auto-fill so it wraps on any screen width */
.lstack__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.ltech {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 128px;
  padding: 20px 14px;
  border-radius: 8px;
  background: var(--E-white);
  border: 1px solid var(--E-line);
  transition: border-color .25s, background .25s, transform .3s var(--snap), box-shadow .3s;
  text-align: center;
}
.ltech:hover {
  border-color: var(--E-blue);
  background: var(--E-blue-t);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -12px rgba(21,116,255,.3);
}
.ltech__ic {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 10px;
  background: #f4f6f9;
  color: var(--E-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -.01em;
  flex-shrink: 0;
  padding: 6px;
}
.ltech:hover .ltech__ic { background: #e8f0fe; }
.ltech__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ltech__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--E-ink);
  letter-spacing: -.01em;
}


/* ═══════════════════════════════════════════════════════════
   FEATURES — off-white pill cloud
   ══════════════════════════════════════════════════════════ */
.lfeat {
  padding: 112px 0;
  background: var(--E-offwhite);
  border-top: 1px solid var(--E-line);
}
.lfeat__head { max-width: 680px; margin-bottom: 40px; }
.lfeat__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lfeat__i {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 4px;
  background: var(--E-white);
  border: 1px solid var(--E-line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--E-ink);
  letter-spacing: -.01em;
  transition: border-color .2s, background .2s, color .2s;
}
.lfeat__i::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--E-blue);
  flex-shrink: 0;
}
.lfeat__i:hover {
  border-color: var(--E-blue);
  background: var(--E-blue-t);
  color: var(--E-blue-d);
}


/* ═══════════════════════════════════════════════════════════
   PROCESS — white numbered steps
   ══════════════════════════════════════════════════════════ */
.lproc {
  padding: 112px 0;
  background: var(--E-white);
  border-top: 1px solid var(--E-line);
}
.lproc__head { max-width: 680px; margin-bottom: 52px; }
.lproc__list {
  display: grid;
  border-top: 1px solid var(--E-line);
  max-width: 960px;
}
.lproc__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 16px;
  border-bottom: 1px solid var(--E-line);
  align-items: start;
  transition: background .2s, padding-left .3s var(--snap);
  border-radius: 0;
}
.lproc__step:hover { background: var(--E-gray); padding-left: 24px; }
.lproc__no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--E-blue);
  font-weight: 600;
  padding-top: 5px;
}
.lproc__step h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--E-ink);
  margin-bottom: 8px;
  text-wrap: balance;
}
.lproc__step p {
  color: var(--E-muted);
  line-height: 1.73;
  font-size: 14.5px;
  max-width: 62ch;
  text-wrap: pretty;
}


/* ═══════════════════════════════════════════════════════════
   PARTNERS — off-white marquee
   ══════════════════════════════════════════════════════════ */
.lpart {
  padding: 72px 0 88px;
  background: var(--E-white);
  border-top: 1px solid var(--E-line);
  overflow: hidden;
  position: relative;
}
.lpart .wrap { text-align: center; margin-bottom: 48px; }
.lpart .leyebrow { color: var(--E-blue); }
.lpart__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--E-ink);
  margin: 0 auto 14px;
}
.lpart .llead { color: var(--E-muted); max-width: 580px; margin-inline: auto; }

/* marquee tiles */
.marq--cards .marq__t { gap: 16px; }
.lpart__tile {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 100px;
  padding: 0 20px;
  border: 1px solid var(--E-line);
  border-radius: 10px;
  background: var(--E-white);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: border-color .2s, box-shadow .2s;
  overflow: hidden;
}
.lpart__tile:hover {
  border-color: var(--E-blue);
  box-shadow: 0 4px 16px rgba(21,116,255,.12);
}
.lpart__logo {
  display: block;
  height: 30px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: center;
  opacity: .9;
  transition: opacity .25s;
}
.lpart__tile:hover .lpart__logo { opacity: 1; }

/* PNG-embed logos — force to black */
.lpart__logo[alt="AWS Bedrock"],
.lpart__logo[alt="OneStream"] {
  filter: brightness(0);
  opacity: .75;
}
.lpart__tile:hover .lpart__logo[alt="AWS Bedrock"],
.lpart__tile:hover .lpart__logo[alt="OneStream"] {
  filter: brightness(0);
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════════
   FAQ — white + aside card
   ══════════════════════════════════════════════════════════ */
.lfaq {
  padding: 112px 0;
  background: var(--E-white);
  border-top: 1px solid var(--E-line);
}
.lfaq__in {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.lfaq__left .lh2 { margin: 12px 0 32px; }
.lfaq__acc { border-top: 1px solid var(--E-line); }
.lfaq__item { border-bottom: 1px solid var(--E-line); }
.lfaq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--E-ink);
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 700;
  letter-spacing: -.02em;
  transition: color .2s;
}
.lfaq__q:hover { color: var(--E-blue); }
.lfaq__no {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: #bbb;
  min-width: 24px;
}
.lfaq__ic {
  margin-left: auto;
  position: relative;
  width: 15px; height: 15px;
  flex-shrink: 0;
}
.lfaq__ic::before, .lfaq__ic::after {
  content: "";
  position: absolute;
  background: var(--E-blue);
  transition: transform .3s var(--snap);
}
.lfaq__ic::before { top: 6px; left: 0; width: 15px; height: 1.5px; }
.lfaq__ic::after  { top: 0; left: 6px; width: 1.5px; height: 15px; }
.lfaq__item.is-open .lfaq__ic::after { transform: scaleY(0); }
.lfaq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--snap); }
.lfaq__item.is-open .lfaq__a { max-height: 300px; }
.lfaq__a p {
  color: var(--E-muted);
  line-height: 1.73;
  padding: 4px 0 22px 40px;
  font-size: 14.5px;
  text-wrap: pretty;
}

.lfaq__aside { position: sticky; top: 90px; }
.lfaq__card {
  border-radius: 10px;
  padding: clamp(32px, 4vw, 48px);
  background: var(--E-black);
  color: var(--E-white);
  border: 1px solid rgba(21,116,255,.2);
}
.lfaq__card::before { display: none; }
.lfaq__card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -.035em;
  margin-bottom: 14px;
  line-height: 1.15;
  text-wrap: balance;
  color: var(--E-white);
  position: static;
}
.lfaq__card p {
  line-height: 1.68;
  margin-bottom: 24px;
  color: rgba(255,255,255,.5);
  font-size: 14.5px;
  position: static;
  padding: 0;
}
.lfaq__card .lbtn {
  background: var(--E-blue);
  color: var(--E-white);
  border-radius: 6px;
  position: static;
}
.lfaq__card .lbtn:hover { background: var(--E-blue-d); color: #fff; }


/* ═══════════════════════════════════════════════════════════
   FINAL CTA — pure black
   ══════════════════════════════════════════════════════════ */
.lcta {
  padding: 112px 0;
  background: var(--E-black);
  border-top: 1px solid rgba(255,255,255,.06);
}
.lcta::before { display: none; }
.lcta__in {
  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(30px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.05em;
  color: var(--E-white);
  margin: 16px 0 20px;
  max-width: 14ch;
  text-wrap: balance;
}
.lcta__sub {
  color: rgba(255,255,255,.45);
  line-height: 1.72;
  font-size: 15px;
  max-width: 46ch;
}
.lcta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lcta__form textarea,
.lcta__form button {
  grid-column: 1 / -1;
}
.lcta__form input,
.lcta__form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--E-white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.lcta__form input::placeholder,
.lcta__form textarea::placeholder { color: rgba(255,255,255,.25); }
.lcta__form input:focus,
.lcta__form textarea:focus {
  outline: none;
  border-color: var(--E-blue);
  background: rgba(21,116,255,.08);
}
.lcta__msg {
  font-size: 13px;
  color: rgba(110,167,255,.8);
  min-height: 18px;
}


/* ═══════════════════════════════════════════════════════════
   GSX SECTION (reused dark card grid)
   ══════════════════════════════════════════════════════════ */
.gsx {
  background: var(--E-black);
  color: var(--E-white);
  padding: 112px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.gsx__head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.gsx__head .leyebrow { color: rgba(110,167,255,.8); justify-content: center; }
.gsx__head .leyebrow::before { background: rgba(110,167,255,.8); }
.gsx__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3.8vw, 52px);
  line-height: 1.04;
  letter-spacing: -.045em;
  color: var(--E-white);
  text-wrap: balance;
}
.gsx__title .gsx__w { display: inline-block; }
.gsx__lead {
  color: rgba(255,255,255,.42);
  line-height: 1.72;
  margin: 18px auto 0;
  max-width: 54ch;
  font-size: clamp(14px, 1.15vw, 16.5px);
  text-wrap: pretty;
}
.gsx__grid {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  overflow: hidden;
}
.gsx__card {
  background: var(--E-black);
  padding: clamp(28px, 3vw, 44px);
  transition: background .25s;
}
.gsx__card:hover { background: #111318; }
.gsx__card::after { display: none; }
.gsx__card::before { display: none; }
.gsx__row {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 26px);
}
.gsx__num {
  flex: none;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(110,167,255,.6);
  margin-top: 4px;
}
.gsx__body { flex: 1; }
.gsx__body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16px, 1.7vw, 22px);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--E-white);
  text-wrap: balance;
}
.gsx__body p {
  color: rgba(255,255,255,.38);
  line-height: 1.7;
  font-size: 14px;
  text-wrap: pretty;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER override
   ══════════════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--E-line); }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet ≤ 1024px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Hero: stack to single column */
  .lhero__in {
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 48px;
  }
  .lhero__title { grid-column: 1; grid-row: 2; }
  .lhero__sub   { grid-column: 1; grid-row: 3; margin-top: 24px; padding-top: 0; }
  .lhero__cta   { grid-column: 1; grid-row: 4; }
  .lhero__proof {
    grid-column: 1;
    grid-row: 5;
    grid-template-columns: repeat(4, 1fr);
  }

  .ltrust__copy { grid-template-columns: 1fr; gap: 36px; }
  .lmet__grid   { grid-template-columns: repeat(2, 1fr); }
  .lmet__c:nth-child(3n)  { border-right: 1px solid var(--E-line-dk); }
  .lmet__c:nth-child(2n)  { border-right: none; }
  .lmet__c:nth-child(4),
  .lmet__c:nth-child(5)   { border-bottom: 1px solid var(--E-line-dk); }
  .lmet__c:nth-child(6)   { border-bottom: none; border-right: none; }
  .lmet__c:nth-child(5)   { border-right: none; }

  .lsvc__pin { grid-template-columns: 1fr; }
  .lsvc__list { position: static; }
  .lsvc__preview {
    min-height: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }
  .lsvc__card {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    justify-content: flex-start;
    background: var(--E-gray);
    border: 1px solid var(--E-line);
    border-radius: 8px;
    padding: clamp(24px, 5vw, 40px);
  }
  .lsvc__card.is-active { display: flex; }
  .lsvc__card h3 { margin-top: 0; }

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

  /* Tighten vertical rhythm */
  .lhero, .ltrust, .lmet, .lsvc, .lwork, .lind, .lcomp, .lwhy,
  .ltechcat, .lstack, .lfeat, .lproc, .lpart, .lfaq, .lcta, .gsx {
    padding-top: 88px;
    padding-bottom: 88px;
  }
}


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

  .lhero { min-height: 0; }
  .lhero__in { padding-top: 80px; padding-bottom: 40px; }
  .lhero__crumbs { margin-bottom: 32px; }
  .lhero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 32px;
  }
  .lhero__cta .lbtn { width: 100%; justify-content: center; }
  .lhero__proof {
    grid-template-columns: 1fr 1fr;
    margin-top: 36px;
  }

  .lhero, .ltrust, .lmet, .lsvc, .lwork, .lind, .lcomp, .lwhy,
  .ltechcat, .lstack, .lfeat, .lproc, .lpart, .lfaq, .lcta, .gsx {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .lpart { padding-top: 40px; padding-bottom: 44px; }

  .lmet__grid { grid-template-columns: repeat(2, 1fr); }
  .lmet__c { padding: 28px 22px; }

  .lwork__grid { grid-template-columns: 1fr; gap: 2px; }
  .lcomp__grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .lcomp__c { min-height: 64px; padding: 12px 10px; font-size: 12px; }

  .ltechcat__grid { grid-template-columns: 1fr; }

  /* Tech stack tabs: 2-col grid, all visible, stays within wrap */
  .lstack__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-bottom: 24px;
    width: 100%;
    box-sizing: border-box;
  }
  .lstack__tab {
    width: 100%;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
    white-space: normal;
    font-size: 13px;
    padding: 10px 12px;
  }

  /* Tech stack grid: fluid auto-fill stays responsive */
  .lstack__grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
  .ltech { min-height: 110px; padding: 16px 12px; }

  .lsvc__cta { padding: 32px 24px; margin-top: 52px; }
  .lwhy__banner {
    gap: 20px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .lwhy__banner p { max-width: 100%; }
  .lwork__why-content { padding: 28px 22px; }
  .lproc__step { grid-template-columns: 64px 1fr; gap: 16px; padding: 28px 8px; }
  .lproc__step:hover { padding-left: 8px; }

  .lfeat__i { font-size: 13.5px; padding: 10px 16px; }
  .lind__q { padding: 20px 0; }
  .lfaq__q { padding: 20px 0; }

  .lcta__form { grid-template-columns: 1fr; }
  .lwhy__banner .lbtn,
  .lsvc__cta .lbtn,
  .lcta__form .lbtn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .lcta__title { max-width: 100%; }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Small phone ≤ 480px
   ══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .lhero__in { padding-top: 88px; }
  .lhero__title { font-size: clamp(28px, 9vw, 44px); }
  .lh2 { font-size: clamp(20px, 7vw, 30px); }

  .lhero, .ltrust, .lmet, .lsvc, .lwork, .lind, .lcomp, .lwhy,
  .ltechcat, .lstack, .lfeat, .lproc, .lpart, .lfaq, .lcta, .gsx {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .lmet__grid { grid-template-columns: 1fr; }
  .lmet__c { padding: 26px 20px; border-right: none !important; }
  .lmet__c:last-child { border-bottom: none; }

  .lhero__proof { grid-template-columns: 1fr 1fr; }
  .lstack__grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 8px; }
  .ltech { min-height: 100px; }
  .ltech__ic { width: 38px; height: 38px; font-size: 11px; }
  .ltech__n { font-size: 12px; }

  .lwork__card,
  .lwhy__card { padding: 24px 20px; }
  .lcta__title { font-size: clamp(26px, 9vw, 40px); }
  .lcta__form input,
  .lcta__form textarea { font-size: 16px; }
  .lsvc__item { padding: 16px 0; min-height: 54px; }
  .lsvc__name { font-size: 14.5px; }
  .lbtn--lg { padding: 14px 24px; font-size: 14.5px; }
  .lfaq__q { font-size: 14px; }
  .lind__q { font-size: clamp(15px, 5vw, 18px); }
}


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