:root {
  --navy: #061a3a;
  --blue: #0757d9;
  --electric: #1687ff;
  --ice: #eaf4ff;
  --mist: #f5f8ff;
  --orange: #ff6a00;
  --ink: #0d1b33;
  --muted: #5b6b82;
  --line: #e4edf8;
  --green: #22c55e;
  --radius: 22px;
  --shadow: 0 10px 30px rgba(7, 87, 217, .08);
  --max: 1160px;
  --font: Inter, system-ui, sans-serif;
  --display: "Plus Jakarta Sans", Inter, sans-serif;
  --cta-bg: #0b1a3e;
  --cta-bg-gradient: linear-gradient(90deg, #0b1a3e 0%, #102a5c 48%, #123583 100%);
  --cta-bg-dots: radial-gradient(circle, rgba(120, 160, 255, 0.12) 0.85px, transparent 1.55px);
  --cta-bg-size: 34px 34px, 100% 100%;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  overflow-x: clip;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
.skip-link { position: absolute; left: 12px; top: -48px; background: #fff; padding: 8px 12px; z-index: 200; }
.skip-link:focus { top: 12px; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
section[id] { scroll-margin-top: 88px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; border-radius: 999px; padding: 12px 20px;
  font-weight: 700; font-size: 14px; transition: .25s ease;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 18px rgba(7,87,217,.28); }
.btn-primary:hover { background: #0648b8; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45);
}
.btn-outline:hover { background: rgba(255,255,255,.08); }
.btn-full { width: 100%; }
.play {
  width: 26px; height: 26px; border-radius: 50%; background: var(--orange);
  display: grid; place-items: center; font-size: 10px;
}
.text-link { color: var(--blue); font-weight: 700; white-space: nowrap; }
.kicker {
  color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 10px;
}
.kicker.light { color: #9ecbff; }
.kicker.center, h2.center { text-align: center; }
h2 {
  font-family: var(--display); font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15; letter-spacing: -.03em; font-weight: 800;
}
h2 em, h1 em { font-style: normal; color: var(--electric); }
.muted { color: var(--muted); margin-top: 10px; max-width: 420px; }

/* Header — always white like the reference */
.site-header {
  position: sticky; top: 0; z-index: 90; background: #fff;
  height: 76px; display: flex; align-items: center;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(13,27,51,.06);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; gap: 28px; }
.brand img { width: auto; max-width: 196px; max-height: 52px; height: auto; object-fit: contain; }
.nav { display: flex; gap: 22px; margin-left: auto; }
.nav-link {
  font-size: 14px; font-weight: 600; color: #24364f; padding: 8px 0; position: relative;
}
.nav-link.is-active { color: var(--blue); }
.nav-link.is-active::after,
.nav-link:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--electric); border-radius: 2px;
}
.nav-item-mega { position: static; }
.nav-item-mega.is-open::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 100%;
  height: 18px;
}
.mega-trigger {
  background: none; border: 0; cursor: pointer; font: inherit;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-chevron { transition: transform .22s ease; }
.nav-item-mega.is-open .nav-chevron,
.mobile-acc.is-open .nav-chevron { transform: rotate(180deg); }
.nav-item-mega.is-open .mega-trigger { color: var(--blue); }
.nav-item-mega.is-open .mega-trigger::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--electric); border-radius: 2px;
}

.mega-menu {
  position: absolute; left: 50%; top: 100%;
  width: min(1140px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 22px 22px;
  box-shadow: 0 28px 60px rgba(7,87,217,.14), 0 0 40px rgba(22,135,255,.1), 0 0 0 1px rgba(22,135,255,.12);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .24s ease, transform .24s ease;
  z-index: 95; overflow-x: hidden; overflow-y: auto;
  max-height: calc(100vh - 92px);
}
.nav-item-mega.is-open .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 22px;
  padding: 22px 24px 10px;
  background: linear-gradient(180deg, #f7fbff, #fff 28%);
}
.mega-cat {
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin: 4px 0 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.mega-link {
  display: grid; grid-template-columns: 32px 1fr auto; gap: 10px; align-items: flex-start;
  padding: 8px; border-radius: 12px; color: var(--ink);
}
.mega-link:hover,
.mega-link:focus-visible {
  background: var(--ice); outline: none;
}
.mega-link:hover .mega-ico,
.mega-link:focus-visible .mega-ico { color: var(--orange); background: #fff; }
.mega-link:hover .mega-arrow { transform: translateX(4px); }
.mega-ico {
  width: 32px; height: 32px; border-radius: 9px; background: var(--ice); color: var(--blue);
  display: grid; place-items: center; transition: .2s ease;
}
.mega-ico svg { width: 16px; height: 16px; }
.mega-link strong { display: block; font-size: 13px; font-weight: 700; line-height: 1.3; }
.mega-link small { display: block; color: var(--muted); font-size: 11.5px; line-height: 1.4; margin-top: 2px; }
.mega-featured {
  background: linear-gradient(135deg, #0757d9, #1687ff); color: #fff; margin-bottom: 6px;
  position: relative; padding: 12px 72px 10px 10px;
}
.mega-featured small { color: rgba(255,255,255,.86); }
.mega-featured .mega-ico { background: rgba(255,255,255,.16); color: #fff; }
.mega-featured:hover,
.mega-featured:focus-visible { background: linear-gradient(135deg, #0648b8, #0b79f0); color: #fff; }
.mega-featured:hover .mega-ico { color: #fff; background: rgba(255,255,255,.22); }
.mega-badge {
  position: absolute; top: 8px; right: 10px;
  font-size: 9px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800;
  background: var(--orange); color: #fff; border-radius: 999px; padding: 3px 7px;
}
.mega-arrow { color: #fff; font-weight: 700; align-self: center; transition: transform .2s ease; }
.mega-foot {
  display: flex; justify-content: flex-end; padding: 12px 22px 16px;
  border-top: 1px solid var(--line); background: #f8fbff;
}
.mega-all {
  color: var(--blue); font-weight: 800; font-size: 14px; display: inline-flex; gap: 6px;
}
.mega-all span { transition: transform .2s ease; }
.mega-all:hover span { transform: translateX(4px); }

.mobile-acc-trigger {
  width: 100%; background: none; border: 0; padding: 0;
  font: inherit; font-size: 20px; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.mobile-acc-panel {
  display: none; padding: 10px 0 6px 8px;
}
.mobile-acc.is-open .mobile-acc-panel { display: grid; gap: 8px; }
.mobile-acc-panel p {
  margin: 10px 0 2px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); font-weight: 800;
}
.mobile-acc-panel a { font-size: 15px !important; font-weight: 600 !important; color: #31445c; }
.mobile-all { color: var(--blue) !important; margin-top: 8px; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--ink);
}
.menu-toggle {
  display: none; width: 42px; height: 42px; border: 0; background: var(--ice);
  border-radius: 12px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer;
}
.menu-toggle span { width: 16px; height: 2px; background: var(--navy); display: block; transition: .3s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; background: rgba(6,26,58,.55); z-index: 80;
  opacity: 0; pointer-events: none; transition: .3s;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; width: min(84vw, 340px); height: 100%;
  background: #fff; padding: 96px 24px 32px; display: flex; flex-direction: column; gap: 16px;
  overflow-y: auto;
}
.mobile-nav-panel a { font-size: 20px; font-weight: 700; }

/* Hero as inset rounded card */
.page-hero {
  padding: 36px 18px 10px;
}
.page-hero-card {
  width: min(100%, 1280px); margin: 0 auto; border-radius: 24px;
  background: linear-gradient(120deg, #052047, #0757d9);
  color: #fff; padding: 48px 40px;
}
.page-hero-card h1 {
  font-family: var(--display); font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.03em; line-height: 1.15;
}
.page-hero-card p { color: #d5e6fa; max-width: 640px; margin-top: 12px; }
.service-list { padding: 48px 0 72px; }
.service-block {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-block h2 { font-size: 26px; margin-bottom: 8px; grid-column: 1 / -1; }
.service-block article {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 20px; margin-bottom: 0; scroll-margin-top: 96px;
}
.service-block article h3 { font-size: 18px; margin-bottom: 4px; }
.service-block article p { color: var(--muted); font-size: 14px; }
.service-block article a { color: var(--blue); font-weight: 700; font-size: 13px; display: inline-block; margin-top: 6px; }

/* Hero as inset rounded card */
.hero { padding: 8px 18px 0; }
.hero-card {
  width: min(100%, 1280px); margin: 0 auto;
  background: radial-gradient(900px 420px at 78% 20%, rgba(22,135,255,.35), transparent 55%),
              linear-gradient(120deg, #052047 0%, #083888 48%, #0a4db8 100%);
  border-radius: 28px; color: #fff; overflow: hidden; min-height: 560px;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 12px; align-items: center;
  padding: 42px 28px 36px 56px;
}
.eyebrow {
  display: flex; gap: 12px; flex-wrap: wrap; font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 700; color: #b9d4f5; margin-bottom: 16px;
}
.eyebrow span + span::before { content: "•"; color: var(--orange); margin-right: 12px; }
.hero h1 {
  font-family: var(--display); font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.02; letter-spacing: -.045em; font-weight: 800;
}
.lede { margin: 16px 0 24px; color: #d5e6fa; max-width: 440px; font-size: 16px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 14px 18px; margin-top: 22px; color: #d7e7fb; font-size: 13px; font-weight: 600; }
.hero-checks li { padding-left: 18px; position: relative; }
.hero-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--electric); }

.hero-visual { position: relative; min-height: 460px; }
.hero-photo {
  width: 108%; max-width: none; position: relative; left: -2%;
  object-fit: cover; object-position: 60% 50%; height: 500px;
  aspect-ratio: 1200 / 675;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 100%);
}
.partner-badge {
  position: absolute; left: 8%; top: 18%;
  background: #fff; color: var(--ink); border-radius: 16px;
  padding: 10px 14px; font-size: 12px; box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transform: rotate(-8deg);
}
.partner-badge b { display: block; line-height: 1.25; }
.stat-orbs {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  display: grid; gap: 12px;
}
.stat-orbs li {
  width: 86px; height: 86px; border-radius: 50%; background: #fff; color: var(--ink);
  display: grid; place-content: center; text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.stat-orbs strong { font-family: var(--display); font-size: 18px; color: var(--blue); line-height: 1; }
.stat-orbs span { font-size: 9px; color: var(--muted); max-width: 70px; margin: 4px auto 0; }

/* Clients */
.clients { padding: 28px 0 10px; }
.row-kicker {
  text-align: center; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; color: var(--muted); margin-bottom: 18px;
}
.logo-row {
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
}
.logo-pill {
  display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 18px; white-space: nowrap;
}
.logo-pill small { display: block; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; margin-top: -2px; }
.logo-pill.amblife { color: #e11d48; }
.logo-pill.emsos { color: #0b3b8c; font-size: 15px; }
.logo-pill.servo { color: #2563eb; letter-spacing: .04em; }
.logo-pill.ekra { color: #c9a227; font-family: Georgia, serif; font-style: italic; }
.logo-pill.vinay { color: #d4a017; }
.logo-pill.wellvana { color: #16a34a; }
.mark {
  width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; font-size: 14px; background: currentColor; color: #fff;
}
.mark.plane, .mark.leaf { background: transparent; border: 2px solid currentColor; border-radius: 50%; }
.mark.diamond { border-radius: 4px; transform: rotate(45deg); font-size: 10px; }

/* Client logo slider (home) */
.logo-slider { padding: 4px 0 20px; }
.logo-slider__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-slider__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 70s linear infinite;
}
.logo-slider__track:hover { animation-play-state: paused; }
.logo-slider__group {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding-right: 14px;
}
.logo-slider__card {
  flex: 0 0 auto;
  width: 168px;
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(11, 59, 140, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(4, 18, 38, 0.06);
}
.logo-slider__card img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.logo-slider__card img.is-broken { opacity: 0.4; filter: grayscale(1); }
@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-slider__viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .logo-slider__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    gap: 14px;
  }
  .logo-slider__group { padding-right: 0; }
  .logo-slider__group[aria-hidden="true"] { display: none; }
  .logo-slider__card { scroll-snap-align: start; }
}

/* Services */
.services { padding: 64px 0 80px; background: linear-gradient(180deg, #fff 0%, #f7fbff 100%); }
.split-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 36px;
}
.split-copy { max-width: 360px; color: var(--muted); }
.split-copy p { margin-bottom: 12px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  position: relative; background: #fff; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(7,87,217,.06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.svc:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(7,87,217,.16);
  border-color: rgba(22,135,255,.35);
}
.svc-media {
  position: relative; aspect-ratio: 16/10; overflow: hidden; background: #dbe7f8;
}
.svc-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s ease;
}
.svc:hover .svc-media img { transform: scale(1.08); }
.svc-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,26,58,.35));
  pointer-events: none;
}
.svc .num {
  position: absolute; right: 14px; top: 12px; z-index: 1;
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92); color: var(--blue);
  font-family: var(--display); font-size: 14px; font-weight: 800;
  box-shadow: 0 8px 18px rgba(6,26,58,.12);
}
.svc-body { padding: 18px 18px 20px; position: relative; }
.ico {
  width: 44px; height: 44px; border-radius: 14px; background: var(--ice); color: var(--blue);
  display: grid; place-items: center; margin: -38px 0 12px; position: relative; z-index: 1;
  box-shadow: 0 8px 16px rgba(7,87,217,.12); border: 3px solid #fff;
}
.ico svg { width: 22px; height: 22px; }
.svc h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: -.02em; }
.svc p { color: var(--muted); font-size: 14px; min-height: 44px; margin-bottom: 12px; }
.svc a { color: var(--blue); font-weight: 700; font-size: 13px; display: inline-flex; gap: 4px; }
.svc a:hover { gap: 8px; }

/* Results strip */
.results {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 52px 0;
  background: linear-gradient(105deg, #041226 0%, #061a3a 28%, #0757d9 62%, #1687ff 100%);
}
.results-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.07) 1px, transparent 1.6px),
    radial-gradient(circle at 88% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1.6px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%);
  background-size: 38px 38px, 44px 44px, auto;
  opacity: 0.85;
}
.results-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
}
.results-head { max-width: 360px; }
.results-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
}
.results h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.results-accent {
  background: linear-gradient(90deg, #fff 0%, #b8dcff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.result-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 48px rgba(4, 18, 38, 0.22);
}
.result-stat {
  position: relative;
  padding: 22px 20px 20px;
  text-align: center;
}
.result-stat + .result-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}
.result-stat__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.result-stat__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
  max-width: 11em;
  margin-inline: auto;
}

/* Work */
.work { padding: 72px 0; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work-card {
  background: #fff; border-radius: 18px; padding: 14px; box-shadow: var(--shadow);
  transition: .25s ease;
}
.work-card:hover { transform: translateY(-6px); }
.work-shot {
  border-radius: 14px; overflow: hidden; background: #eef4ff; aspect-ratio: 4/3;
}
.work-shot img { width: 100%; height: 100%; object-fit: cover; transition: .5s ease; }
.work-card:hover img { transform: scale(1.04); }
.work-card h3 { margin: 14px 8px 4px; font-size: 16px; }
.tags { margin: 0 8px; color: var(--muted); font-size: 13px; }
.result { margin: 8px 8px 10px; font-weight: 800; color: var(--orange); font-size: 22px; }
.result span { color: var(--ink); font-size: 14px; font-weight: 600; margin-left: 4px; }

/* Process */
.process { padding: 20px 0 80px; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; margin-top: 12px;
}
.steps::before {
  content: ""; position: absolute; top: 22px; left: 10%; right: 10%;
  border-top: 2px dotted #c9dbf2; z-index: 0;
}
.steps.is-on::before { border-top-color: var(--electric); }
.steps li { text-align: center; position: relative; z-index: 1; }
.step-icon {
  width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 50%;
  background: var(--green); color: #fff; display: grid; place-items: center;
  font-weight: 800; box-shadow: 0 0 0 8px #fff;
}
.steps span { color: var(--muted); font-size: 12px; font-weight: 700; }
.steps h3 { margin: 6px 0 8px; }
.steps p { color: var(--muted); font-size: 14px; }

.about { padding: 0 0 72px; }
.about-row { display: grid; grid-template-columns: .7fr 1.3fr; gap: 32px; align-items: start; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-grid article { background: var(--mist); border-radius: 16px; padding: 18px; }
.why-grid h3 { font-size: 16px; margin-bottom: 6px; }
.why-grid p { color: var(--muted); font-size: 14px; }

/* Testimonials */
.testimonials { background: var(--mist); padding: 72px 0; }
.testimonials h2 { margin-bottom: 32px; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.t-card { background: #fff; border-radius: 18px; padding: 22px; box-shadow: var(--shadow); }
.stars { color: #f5b400; letter-spacing: 2px; margin-bottom: 10px; }
.t-card p { font-size: 15px; }
.person { display: flex; gap: 10px; align-items: center; margin-top: 16px; }
.person i {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ice); color: var(--blue);
  display: grid; place-items: center; font-style: normal; font-weight: 800; font-size: 12px;
}
.person span { display: block; color: var(--muted); font-size: 13px; }

.blog { padding: 64px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-grid article { background: var(--mist); border-radius: 16px; padding: 20px; }
.blog-grid span { color: var(--blue); font-size: 12px; font-weight: 800; }
.blog-grid h3 { margin: 8px 0; font-size: 18px; }
.blog-grid time { color: var(--muted); font-size: 13px; }

/* CTA bands — shared background (lead, wd-final, corp-final) */
.lead,
.wd-final,
.corp-final {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: var(--cta-bg);
  background-image: var(--cta-bg-dots), var(--cta-bg-gradient);
  background-size: var(--cta-bg-size);
}

/* Lead */
.lead { padding: 72px 0; }
.lead-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 72% 38%, rgba(255, 255, 255, 0.05) 1px, transparent 1.6px);
  background-size: 40px 40px;
  opacity: 0.65;
}
.lead-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .9fr; gap: 48px; align-items: center; }
.lead-copy p { color: #d5e6fa; margin: 12px 0 20px; max-width: 420px; }
.checks { display: grid; gap: 10px; font-weight: 600; }
.checks li { padding-left: 26px; position: relative; }
.checks li::before {
  content: "✓"; position: absolute; left: 0; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,.15); display: grid; place-items: center; font-size: 11px; color: #8fd3ff;
}
.lead-form {
  position: relative; background: #fff; color: var(--ink); border-radius: 24px; padding: 32px 28px 26px;
  box-shadow: 0 24px 50px rgba(0,0,0,.2);
}
.form-badge {
  position: absolute; right: -6px; top: 24px; transform: rotate(11deg);
  background: var(--navy); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .04em;
  padding: 10px 12px; border-radius: 12px; width: 92px; text-align: center; line-height: 1.25;
  box-shadow: 0 10px 24px rgba(4, 18, 38, 0.25);
}
.lead-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; margin-bottom: 14px; color: var(--ink); }
.lead-form input, .lead-form select, .lead-form textarea {
  border: 1px solid #dbe6f4; border-radius: 12px; padding: 12px 14px; background: #f8fafc; outline: none;
  font-size: 14px; font-weight: 500;
}
.lead-form textarea { resize: vertical; min-height: 88px; line-height: 1.5; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--electric); box-shadow: 0 0 0 4px rgba(22,135,255,.12); }
.lead-form .btn-primary.btn-full {
  margin-top: 4px;
  box-shadow: 0 14px 32px rgba(7, 87, 217, 0.42);
}
.form-note { text-align: center; color: var(--muted); font-size: 12px; margin-top: 10px; }
.form-success { margin-top: 10px; background: #e9fff3; color: #0d6a3e; padding: 10px; border-radius: 10px; text-align: center; font-weight: 600; }

.site-footer { background: #041226; color: #c5d6ec; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1.1fr; gap: 28px; padding-bottom: 36px; }
.footer-logo {
  display: inline-block;
  background: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 14px;
}
.footer-logo img {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(220px, 100%);
  mix-blend-mode: lighten;
}
.site-footer h3 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.site-footer a, .site-footer p { display: block; margin-bottom: 8px; font-size: 14px; }
.footer-social {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px;
}
.footer-social__link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .1); color: #e8f1fc;
  transition: background .2s ease, transform .2s ease;
}
.footer-social__link:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }
.footer-social__link:focus-visible { outline: 2px solid var(--electric); outline-offset: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner { display: flex; justify-content: space-between; padding: 16px 0; font-size: 13px; }

.float-actions {
  position: fixed; right: 16px; bottom: 88px; z-index: 40;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.float-actions a {
  width: 54px; height: 54px; border-radius: 50%; color: #fff;
  display: grid; place-items: center; transition: transform .18s ease, box-shadow .18s ease;
}
.float-actions a:hover { transform: translateY(-2px) scale(1.04); }
.float-call {
  background: #0757d9;
  box-shadow: 0 10px 22px rgba(7,87,217,.4);
}
.float-wa {
  background: #25d366;
  box-shadow: 0 10px 22px rgba(37,211,102,.42);
}
.float-wa svg, .float-call svg { display: block; }
.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 35;
  background: #061a3a; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 8px;
}
.sticky-cta a {
  flex: 1; text-align: center; color: #fff; border-radius: 12px; padding: 12px; font-weight: 700;
  border: 1px solid rgba(255,255,255,.12);
}
.sticky-cta .primary { background: var(--blue); border: 0; }

.modal { border: 0; border-radius: 16px; width: min(860px, 92vw); padding: 0; background: #061a3a; color: #fff; }
.modal::backdrop { background: rgba(4,12,28,.7); }
.modal-bar { display: flex; justify-content: space-between; padding: 12px 14px; }
.modal-bar button { background: none; border: 0; color: #fff; font-size: 26px; cursor: pointer; }
.video-frame { aspect-ratio: 16/9; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 1100px) {
  .nav { gap: 14px; }
  .header-phone { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding: 36px 28px; }
  .hero-visual { min-height: 380px; }
  .hero-photo { width: 100%; left: 0; height: 380px; mask-image: none; }
  .results-row, .split-head, .about-row, .lead-grid { grid-template-columns: 1fr; align-items: stretch; }
  .results-head { max-width: none; }
  .result-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .result-stat + .result-stat::before { display: none; }
  .result-stat {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
  .result-stat:nth-child(-n + 2) { border-top: 0; }
  .result-stat:nth-child(odd) { border-left: 0; }
  .mega-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .service-grid, .work-grid, .t-grid, .blog-grid, .steps, .why-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .stat-orbs { right: 8px; }
  .stat-orbs li { width: 72px; height: 72px; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding: 6px 10px 0; }
  .hero-card { border-radius: 20px; }
  .service-grid, .work-grid, .t-grid, .blog-grid, .steps, .why-grid, .footer-grid, .service-block { grid-template-columns: 1fr; }
  .results { padding: 40px 0; }
  .result-stats { border-radius: 16px; }
  .result-stat { padding: 18px 14px; }
  .header-actions .btn { display: none; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .float-actions { bottom: 78px; }
  .logo-row { justify-content: center; }
  .stat-orbs { position: static; transform: none; grid-template-columns: repeat(4, 1fr); margin-top: 12px; }
  .stat-orbs li { width: 100%; height: auto; border-radius: 14px; padding: 8px 4px; }
  .partner-badge { display: none; }
  .lead .form-badge { transform: rotate(8deg); right: 4px; top: 12px; font-size: 10px; width: 78px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Form success / error modal */
.gnext-form-modal {
  border: none; padding: 0; margin: auto; max-width: min(420px, calc(100% - 32px));
  background: transparent;
}
.gnext-form-modal::backdrop { background: rgba(4, 18, 38, 0.72); backdrop-filter: blur(4px); }
.gnext-form-modal__card {
  background: linear-gradient(165deg, #061a3a 0%, #0a2d66 55%, #0757d9 100%);
  color: #fff; border-radius: 22px; padding: 32px 28px 28px; text-align: center;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35); border: 1px solid rgba(255, 255, 255, 0.12);
  animation: gnext-modal-in 0.35s ease;
}
@keyframes gnext-modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.gnext-form-modal__icon {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%;
  background: rgba(34, 197, 94, 0.2); color: #4ade80; font-size: 28px; font-weight: 800;
  display: grid; place-items: center;
}
.gnext-form-modal__icon.is-error { background: rgba(248, 113, 113, 0.2); color: #fca5a5; }
.gnext-form-modal h2 {
  font-family: var(--display, "Plus Jakarta Sans", sans-serif);
  font-size: 1.5rem; letter-spacing: -0.03em; margin-bottom: 10px;
}
.gnext-form-modal p { color: #c5d6ec; line-height: 1.6; margin-bottom: 22px; font-size: 15px; }
.gnext-form-modal__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.gnext-form-modal__close {
  position: absolute; right: 12px; top: 12px; background: rgba(255,255,255,0.1);
  border: 0; color: #fff; width: 36px; height: 36px; border-radius: 10px; cursor: pointer; font-size: 22px;
}
.gnext-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.lead-form.is-sending, form.lp-form.is-sending { opacity: 0.85; pointer-events: none; }
