/* ============================================================
   LTI MINDTREE — Design System v2
   Limelight-inspired · Green to teal gradient · Light SaaS
   ============================================================ */

:root {
  /* Palette */
  --green-700: #0b7a4b;
  --green-600: #0e9f63;
  --green-500: #12b76a;
  --teal-500: #2fb8a6;
  --teal-600: #1ba393;
  --green-100: #e3f6ec;
  --green-50:  #f0fbf5;
  --grey-900: #1a2129;
  --grey-800: #232c36;
  --grey-700: #3b4754;
  --grey-500: #64707d;
  --grey-400: #8a95a1;
  --grey-200: #e2e6ea;
  --grey-100: #eef1f4;
  --grey-50:  #f7f9fa;
  --white: #ffffff;

  --grad-hero: linear-gradient(115deg, #63c06a 0%, #45bd8b 45%, #2fb8a6 100%);
  --grad-green: linear-gradient(135deg, #0e9f63 0%, #12b76a 55%, #2fb8a6 100%);
  --shadow-sm: 0 2px 10px rgba(26, 33, 41, 0.06);
  --shadow-md: 0 12px 34px rgba(26, 33, 41, 0.10);
  --shadow-lg: 0 24px 60px rgba(26, 33, 41, 0.14);
  --shadow-green: 0 14px 34px rgba(20, 170, 130, 0.30);

  --font-head: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius: 18px;
  --container: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--grey-700);
  background: var(--white);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--grey-900);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

section { padding: 96px 0; }

/* ---------- Eyebrow / section heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(18, 183, 106, .18);
}
.eyebrow.on-grad {
  color: #fff;
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.3);
}
.eyebrow.on-grad::before { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.22); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 16px; }
.section-head p { color: var(--grey-500); font-size: 17.5px; }
.accent { color: var(--green-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 100px;
  border: 0;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, color .35s;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--grad-green);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(20,170,130,.38); }

.btn-white {
  background: #fff;
  color: var(--green-700);
  box-shadow: 0 10px 30px rgba(10, 60, 45, .18);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(10, 60, 45, .26); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.6px solid rgba(255,255,255,.65);
}
.btn-outline-white:hover { transform: translateY(-3px); background: rgba(255,255,255,.12); }

.btn-ghost {
  background: var(--white);
  color: var(--grey-900);
  border: 1.5px solid var(--grey-200);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--green-500); color: var(--green-700); box-shadow: var(--shadow-md); }

.btn-dark { background: var(--grey-900); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ============================================================
   HEADER (transparent over gradient, white when scrolled)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background .4s, box-shadow .4s;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  transition: height .4s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(26,33,41,.09);
}
.site-header.scrolled .container { height: 76px; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { width: 44px; height: 44px; flex: 0 0 44px; }
.logo-word {
  font-family: var(--font-head);
  line-height: 1.05;
  display: flex;
  flex-direction: column;
}
.logo-word .lw-top {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--grey-900);
}
.logo-word .lw-top em { font-style: normal; color: var(--green-600); }
.logo-word .lw-sub {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--grey-400);
}

/* Logo inversion on transparent header (white on gradient) */
.site-header:not(.scrolled) .logo-mark rect { fill: #fff; }
.site-header:not(.scrolled) .logo-mark .glyph { stroke: var(--green-600); }
.site-header:not(.scrolled) .logo-mark .dot { fill: var(--green-600); }
.site-header:not(.scrolled) .logo-word .lw-top,
.site-header:not(.scrolled) .logo-word .lw-top em { color: #fff; }
.site-header:not(.scrolled) .logo-word .lw-sub { color: rgba(255,255,255,.75); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--grey-700);
  padding: 10px 16px;
  border-radius: 100px;
  position: relative;
  transition: color .3s, background .3s;
}
.main-nav a:hover { color: var(--green-700); background: var(--green-50); }
.main-nav a.active { color: var(--green-700); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 3px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--grad-green);
}

.header-cta { display: inline-flex; padding: 12px 26px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.2);
}
.site-header.scrolled .nav-toggle { background: var(--grey-100); }
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  margin: 4px auto;
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .3s;
}
.site-header.scrolled .nav-toggle span { background: var(--grey-900); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Nav on gradient (desktop only) */
@media (min-width: 721px) {
  .site-header:not(.scrolled) .main-nav a { color: rgba(255,255,255,.92); }
  .site-header:not(.scrolled) .main-nav a:hover { color: #fff; background: rgba(255,255,255,.14); }
  .site-header:not(.scrolled) .main-nav a.active { color: #fff; }
  .site-header:not(.scrolled) .main-nav a.active::after { background: #fff; }
  .site-header:not(.scrolled) .header-cta { background: #fff; color: var(--green-700); box-shadow: 0 10px 30px rgba(10,60,45,.18); }
  .site-header.scrolled .header-cta { background: var(--grad-green); color: #fff; box-shadow: var(--shadow-green); }
}

/* ============================================================
   GRADIENT HERO (home, centered like reference)
   ============================================================ */
.hero {
  position: relative;
  background: var(--grad-hero);
  padding: 190px 0 90px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  pointer-events: none;
}
.hero::before { width: 520px; height: 520px; top: -220px; right: -140px; }
.hero::after { width: 380px; height: 380px; bottom: -180px; left: -120px; }

.hero h1 {
  color: #fff;
  font-size: clamp(38px, 5.4vw, 62px);
  max-width: 940px;
  margin: 0 auto 24px;
}
.hero p.lead {
  font-size: 19px;
  color: rgba(255,255,255,.92);
  max-width: 720px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Play CTA (watch demo style) */
.play-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}
.play-cta .play-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: grid;
  place-items: center;
  position: relative;
  transition: transform .35s var(--ease), background .35s;
}
.play-cta .play-circle::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  animation: pulseRing 2.4s ease-out infinite;
}
.play-cta .play-circle svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.play-cta:hover .play-circle { transform: scale(1.08); background: rgba(255,255,255,.14); }
@keyframes pulseRing {
  0% { transform: scale(.9); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Hero trust row (on gradient) */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 54px;
}
.hero-trust .avatars { display: flex; }
.hero-trust .avatars img {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.9);
  object-fit: cover;
  margin-left: -12px;
}
.hero-trust .avatars img:first-child { margin-left: 0; }
.hero-trust .ht-text {
  text-align: left;
  font-size: 13.5px;
  color: rgba(255,255,255,.88);
  line-height: 1.45;
}
.hero-trust .ht-text strong { display: block; font-family: var(--font-head); font-size: 15px; color: #fff; }
.hero-trust .stars { color: #ffd76a; letter-spacing: 2px; font-size: 12px; }

/* Overlapping hero shot (wrapper for mock dashboard + float cards) */
.hero-shot {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto -150px;
  animation: heroIn 1.1s var(--ease) both .2s;
}

/* ---- Realistic product mockup ---- */
.mock-window {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(10, 50, 40, .35);
  text-align: left;
  color: var(--grey-700);
  font-size: 13px;
}
.mock-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  background: var(--grey-50);
  border-bottom: 1px solid var(--grey-100);
}
.mock-dots { display: flex; gap: 7px; }
.mock-dots i {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #f26d63;
}
.mock-dots i:nth-child(2) { background: #f5bd4f; }
.mock-dots i:nth-child(3) { background: #58c469; }
.mock-url {
  flex: 1;
  max-width: 330px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  padding: 5px 16px;
  font-family: var(--font-head);
  font-size: 11.5px;
  color: var(--grey-500);
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
}
.mock-url svg { width: 11px; height: 11px; stroke: var(--green-600); }
.mock-body { display: grid; grid-template-columns: 190px 1fr; }
.mock-side {
  background: var(--grey-50);
  border-right: 1px solid var(--grey-100);
  padding: 18px 14px;
}
.mock-side .ms-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--grey-900);
  margin-bottom: 18px;
  padding: 0 8px;
}
.mock-side .ms-brand i {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--grad-green);
  display: inline-block;
}
.mock-side .ms-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--grey-500);
  font-weight: 500;
  font-size: 12.5px;
  margin-bottom: 2px;
}
.mock-side .ms-item.active {
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 600;
}
.mock-side .ms-item svg { width: 14px; height: 14px; stroke: currentColor; }
.mock-main { padding: 20px 24px 24px; }
.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mock-head h5 {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--grey-900);
}
.mock-head small { display: block; color: var(--grey-400); font-size: 11.5px; font-weight: 400; }
.mock-head .mh-btn {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
  background: var(--grad-green);
  border-radius: 100px;
  padding: 7px 16px;
}
.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.mock-kpi {
  border: 1px solid var(--grey-100);
  border-radius: 12px;
  padding: 12px 14px;
}
.mock-kpi small { color: var(--grey-400); font-size: 11px; }
.mock-kpi strong {
  display: block;
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--grey-900);
  margin: 2px 0 4px;
}
.mock-kpi .delta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-50);
  border-radius: 100px;
  padding: 2px 8px;
}
.mock-kpi .delta.neutral { color: var(--grey-500); background: var(--grey-100); }
.mock-chart {
  border: 1px solid var(--grey-100);
  border-radius: 12px;
  padding: 14px 16px 12px;
}
.mock-chart .mc-label {
  display: flex;
  justify-content: space-between;
  color: var(--grey-400);
  font-size: 11px;
  margin-bottom: 12px;
}
.mock-chart .mc-label b { color: var(--grey-700); font-weight: 600; }
.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 120px;
  border-bottom: 1px solid var(--grey-100);
  padding-bottom: 1px;
}
.mock-bars i {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #35d08b, #0e9f63);
  height: calc(var(--h) * 1%);
  transform-origin: bottom;
  animation: barGrow 1s var(--ease) both;
  animation-delay: calc(var(--i) * 90ms + .5s);
  min-height: 8px;
  opacity: .92;
}
.mock-bars i:nth-child(odd) { opacity: .55; }
.mock-bars i.hot { opacity: 1; box-shadow: 0 6px 14px rgba(14,159,99,.35); }
@keyframes barGrow { from { transform: scaleY(0); } }
.mock-months {
  display: flex;
  gap: 9px;
  margin-top: 7px;
  color: var(--grey-400);
  font-size: 10px;
}
.mock-months span { flex: 1; text-align: center; }

/* Floating stat cards over the mockup */
.float-card {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  animation: floatY 5.5s ease-in-out infinite;
}
.float-card .fc-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-green);
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  box-shadow: var(--shadow-green);
}
.float-card .fc-icon svg { width: 20px; height: 20px; stroke: #fff; }
.float-card strong { display: block; font-family: var(--font-head); font-size: 17px; color: var(--grey-900); line-height: 1.2; }
.float-card small { color: var(--grey-500); font-size: 12px; }
.fc-1 { top: 68px; left: -64px; animation-delay: .4s; }
.fc-2 { bottom: 46px; right: -58px; animation-delay: 1.8s; }
.hero-has-shot { padding-bottom: 0; overflow: visible; }
.hero-has-shot::after { display: none; }
.after-hero-shot { padding-top: 230px; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(34px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ============================================================
   PAGE HERO (inner pages, gradient)
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--grad-hero);
  padding: 170px 0 84px;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  top: -200px; right: -120px;
  pointer-events: none;
}
.page-hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 52px); margin-bottom: 14px; }
.page-hero p { max-width: 660px; margin: 0 auto; color: rgba(255,255,255,.92); font-size: 17.5px; }
.crumbs {
  display: inline-flex;
  gap: 10px;
  margin-top: 22px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.crumbs a { color: #fff; }
.crumbs a:hover { text-decoration: underline; }

/* ============================================================
   CLIENT MARQUEE
   ============================================================ */
.clients-strip { padding: 44px 0; border-bottom: 1px solid var(--grey-100); background: #fff; }
.clients-strip.after-hero-shot { padding-top: 230px; }
@media (max-width: 720px) { .clients-strip.after-hero-shot { padding-top: 180px; } }
.clients-strip .strip-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 26px;
}
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 72px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  color: var(--grey-400);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .3s;
}
.marquee-track span:hover { color: var(--teal-600); }
.marquee-track span i {
  font-style: normal;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--teal-500);
  display: inline-block;
  transform: rotate(45deg);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT SPLIT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-media { position: relative; }
.about-media .am-main {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media .am-main img { width: 100%; height: 480px; object-fit: cover; }
.about-media .am-small {
  position: absolute;
  right: -30px; bottom: -36px;
  width: 46%;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: var(--shadow-md);
}
.about-media .am-small img { height: 200px; width: 100%; object-fit: cover; }
.exp-badge {
  position: absolute;
  top: 28px; left: -28px;
  background: var(--grad-green);
  color: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-green);
  animation: floatY 6s ease-in-out infinite;
}
.exp-badge strong { display: block; font-family: var(--font-head); font-size: 34px; font-weight: 800; line-height: 1; }
.exp-badge small { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; opacity: .92; }

.about-copy h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 18px; }
.about-copy > p { color: var(--grey-500); margin-bottom: 28px; }

.check-list { display: grid; gap: 14px; margin-bottom: 34px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; color: var(--grey-800); }
.check-list li svg {
  width: 22px; height: 22px; flex: 0 0 22px;
  margin-top: 3px;
  stroke: var(--green-600);
  background: var(--green-50);
  border-radius: 50%;
  padding: 4px;
}

/* Skill bars */
.skills { display: grid; gap: 22px; margin-bottom: 36px; }
.skill .skill-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 9px;
}
.skill .skill-top b { color: var(--green-700); }
.skill-bar {
  height: 9px;
  background: var(--grey-100);
  border-radius: 100px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  width: 0;
  border-radius: 100px;
  background: var(--grad-green);
  transition: width 1.6s var(--ease);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--grey-50); position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto auto -60px -60px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,184,166,.14), transparent 70%);
  transition: transform .5s var(--ease);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--green-100); }
.service-card:hover::before { transform: scale(2.2); }
.sc-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: background .4s, box-shadow .4s;
}
.sc-icon svg { width: 28px; height: 28px; stroke: var(--green-600); transition: stroke .4s; }
.service-card:hover .sc-icon { background: var(--grad-green); box-shadow: var(--shadow-green); }
.service-card:hover .sc-icon svg { stroke: #fff; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--grey-500); margin-bottom: 20px; }
.service-card p:last-child { margin-bottom: 0; }
.sc-link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sc-link svg { width: 16px; height: 16px; stroke: currentColor; transition: transform .35s var(--ease); }
.service-card:hover .sc-link svg { transform: translateX(5px); }

/* ============================================================
   STATS (gradient band)
   ============================================================ */
.stats-section {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding: 84px 0;
}
.stats-section::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -180px; right: -100px;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat h3 {
  font-size: clamp(40px, 4.6vw, 56px);
  font-weight: 800;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
}
.stat h3 .suffix { color: rgba(255,255,255,.85); margin-left: 2px; }
.stat p {
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.stat { position: relative; }
.stats-grid .stat + .stat::before {
  content: "";
  position: absolute;
  left: -20px; top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,.25);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 40px 28px 32px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--grey-100);
  line-height: 1;
  transition: color .4s;
}
.step-card:hover::before { color: var(--green-100); }
.step-card .sc-icon { margin-bottom: 20px; }
.step-card h3 { font-size: 18.5px; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; color: var(--grey-500); }

/* ============================================================
   INDUSTRIES / VALUES CARDS
   ============================================================ */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pill-card {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--grey-900);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.pill-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.pill-card svg { width: 26px; height: 26px; stroke: var(--green-600); flex: 0 0 26px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.testi-card .quote-mark {
  font-family: Georgia, serif;
  font-size: 74px;
  line-height: .6;
  color: var(--green-100);
  display: block;
  margin-bottom: 20px;
}
.testi-card .stars { color: #f5b30e; letter-spacing: 3px; margin-bottom: 16px; font-size: 14px; }
.testi-card blockquote { font-size: 15.5px; color: var(--grey-700); margin-bottom: 26px; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-person img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.avatar-init {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  flex: 0 0 50px;
}
.testi-person strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--grey-900); }
.testi-person small { color: var(--grey-400); font-size: 13px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: 0 0 96px; }
.cta-inner {
  position: relative;
  background: var(--grad-hero);
  border-radius: 30px;
  padding: 72px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  top: -150px; right: -80px;
}
.cta-inner::after {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  bottom: -120px; left: -60px;
}
.cta-inner h2 { position: relative; color: #fff; font-size: clamp(26px, 3.4vw, 38px); max-width: 560px; z-index: 1; }
.cta-inner p { position: relative; color: rgba(255,255,255,.9); margin-top: 12px; max-width: 520px; z-index: 1; }
.cta-inner .btn { position: relative; flex-shrink: 0; z-index: 1; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-100);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card figure { overflow: hidden; height: 280px; }
.team-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.team-card:hover img { transform: scale(1.06); }
.team-card .tc-body { padding: 22px 24px; }
.team-card h3 { font-size: 17.5px; }
.team-card small { color: var(--green-700); font-family: var(--font-head); font-weight: 600; font-size: 13px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.info-card {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 26px;
  margin-bottom: 18px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card .sc-icon { width: 54px; height: 54px; flex: 0 0 54px; margin: 0; }
.info-card h3 { font-size: 16.5px; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--grey-500); font-size: 15px; }
.info-card a:hover { color: var(--green-700); }

.contact-form {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 24px; margin-bottom: 8px; }
.contact-form > p { color: var(--grey-500); font-size: 15px; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--grey-900);
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(18,183,106,.14);
}
.form-note { font-size: 13px; color: var(--grey-400); margin-top: 14px; }
.form-success {
  display: none;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  font-weight: 600;
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 18px;
}
.form-success.show { display: block; animation: heroIn .6s var(--ease); }

.map-wrap {
  margin-top: 72px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--grey-100);
  box-shadow: var(--shadow-md);
  filter: grayscale(.6);
  transition: filter .5s;
}
.map-wrap:hover { filter: grayscale(0); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--grey-900);
  color: var(--grey-400);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 340px at 85% 0%, rgba(47,184,166,.12), transparent 60%);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.site-footer .logo-word .lw-top { color: #fff; }
.site-footer .logo-word .lw-sub { color: var(--grey-500); }
.footer-about p { font-size: 14.5px; margin: 20px 0 24px; max-width: 300px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  display: grid;
  place-items: center;
  transition: background .35s, transform .35s var(--ease), border-color .35s;
}
.socials a svg { width: 17px; height: 17px; stroke: var(--grey-200); fill: none; }
.socials a:hover { background: var(--teal-600); border-color: var(--teal-600); transform: translateY(-4px); }

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 22px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a {
  font-size: 14.5px;
  color: var(--grey-400);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .3s, transform .3s var(--ease);
}
.footer-col a::before {
  content: "→";
  color: var(--teal-500);
  opacity: 0;
  margin-left: -14px;
  transition: opacity .3s, margin .3s var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-col a:hover::before { opacity: 1; margin-left: 0; }

.footer-contact li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  align-items: flex-start;
}
.footer-contact svg { width: 17px; height: 17px; stroke: var(--teal-500); flex: 0 0 17px; margin-top: 4px; }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13.5px;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--grey-400); }
.footer-bottom a:hover { color: var(--teal-500); }
.footer-bottom .legal { display: flex; gap: 22px; }

/* Back to top */
.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-green);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-green);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .4s, transform .4s var(--ease);
  z-index: 90;
}
.to-top svg { width: 20px; height: 20px; stroke: #fff; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.in, .reveal-right.in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01s !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  section { padding: 76px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .services-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .team-grid, .pill-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 20px; }
  .stats-grid .stat + .stat::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; padding: 56px 36px; }
  .hero-shot { margin-left: 24px; margin-right: 24px; }
  .fc-1 { left: -12px; }
  .fc-2 { right: -12px; }
}

@media (max-width: 720px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--grey-100);
    box-shadow: var(--shadow-lg);
    padding: 14px 20px 22px;
    gap: 4px;
    display: none;
  }
  .nav-open .main-nav { display: flex; animation: heroIn .4s var(--ease); }
  .main-nav a { padding: 13px 16px; border-radius: 12px; }
  .main-nav a.active::after { display: none; }
  .main-nav a.active { background: var(--green-50); }

  .services-grid, .testi-grid, .process-grid, .team-grid, .pill-grid, .form-row { grid-template-columns: 1fr; }
  .hero { padding: 140px 0 70px; }
  .after-hero-shot { padding-top: 180px; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-side { display: none; }
  .mock-kpis { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .mock-kpi strong { font-size: 15px; }
  .float-card { display: none; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .hero-trust .ht-text { text-align: center; }
  .page-hero { padding: 130px 0 64px; }
  .about-media .am-small { right: 10px; bottom: -28px; }
  .exp-badge { left: 10px; }
  .contact-form { padding: 30px 24px; }
  .cta-band { padding-bottom: 76px; }
}
