:root {
  --navy-950: #071229;
  --navy-900: #0b1736;
  --navy-800: #122758;
  --ink: #10234a;
  --ink-soft: #324568;
  --muted: #66738d;
  --line: #dfe6f2;
  --line-strong: #cad5e7;
  --canvas: #f5f8fd;
  --canvas-blue: #eef5ff;
  --white: #ffffff;
  --blue: #087df3;
  --blue-deep: #0957e8;
  --cyan: #24c8f2;
  --purple: #7b3ff2;
  --purple-soft: #b066ff;
  --green: #0ca879;
  --gradient: linear-gradient(125deg, #057ff4 0%, #2459f4 47%, #843df0 100%);
  --gradient-dark: linear-gradient(135deg, #07172f 0%, #102c68 54%, #5522a0 100%);
  --shadow-sm: 0 12px 30px rgba(29, 64, 124, .08);
  --shadow: 0 28px 80px rgba(24, 54, 116, .14);
  --shadow-deep: 0 34px 90px rgba(3, 20, 55, .3);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --wrap: 1220px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font: 16px/1.65 "Segoe UI Variable", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible { outline: 3px solid rgba(8, 125, 243, .32); outline-offset: 4px; }

.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }

.narrow { width: min(810px, 100%); }

.section-pad { padding: 110px 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip { position: fixed; left: -9999px; top: 14px; z-index: 100; }
.skip:focus { left: 14px; padding: 12px 16px; border-radius: 10px; background: #fff; box-shadow: var(--shadow-sm); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(20px) saturate(150%);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(205, 216, 233, .8);
  box-shadow: 0 10px 35px rgba(17, 42, 91, .08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: none;
  filter: drop-shadow(0 7px 10px rgba(16, 72, 173, .13));
}

.brand-copy { display: grid; line-height: 1.1; gap: 4px; }
.brand-copy strong { color: var(--navy-900); font-size: 15px; letter-spacing: -.025em; }
.brand-copy small { color: #6b7590; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(15px, 1.45vw, 24px); margin-left: auto; }
.nav-links > a { position: relative; color: #415170; font-size: 13px; font-weight: 720; white-space: nowrap; }
.nav-links > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; border-radius: 5px; background: var(--gradient); transition: right .2s ease; }
.nav-links > a:hover, .nav-links > a[aria-current="page"] { color: var(--navy-900); }
.nav-links > a:hover::after, .nav-links > a[aria-current="page"]::after { right: 0; }
.nav-cta { flex: none; }
.mobile-nav-actions { display: none; }

.menu {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy-900);
  background: #fff;
  cursor: pointer;
}

.menu span { width: 20px; height: 2px; display: block; margin: 4px auto; border-radius: 5px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: var(--gradient); box-shadow: 0 12px 28px rgba(39, 76, 232, .2); }
.button.primary:hover { box-shadow: 0 17px 36px rgba(39, 76, 232, .28); }
.button.secondary { color: var(--navy-900); background: #fff; border-color: var(--line-strong); box-shadow: 0 9px 24px rgba(15, 39, 84, .05); }
.button.secondary:hover { border-color: #9eb4d5; box-shadow: var(--shadow-sm); }
.button.light { color: var(--navy-900); background: #fff; }
.button.outline-light { color: #fff; border-color: rgba(255, 255, 255, .36); background: rgba(255, 255, 255, .05); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 780;
}

.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #5a41c6;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 3px; background: var(--gradient); }
.eyebrow.light { color: #d7e5ff; }
.eyebrow.light::before { background: linear-gradient(90deg, var(--cyan), #c689ff); }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  margin: 14px 0 16px;
  color: var(--navy-900);
  font-size: clamp(2.25rem, 4.5vw, 4.3rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.062em;
}
.section-head p { max-width: 690px; margin: 0; color: var(--muted); font-size: 17px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 0;
  background:
    radial-gradient(circle at 87% 18%, rgba(129, 61, 240, .12), transparent 27%),
    radial-gradient(circle at 10% 8%, rgba(0, 157, 255, .09), transparent 27%),
    linear-gradient(180deg, #fff 0%, #f4f8ff 76%, #fff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image: linear-gradient(rgba(43, 91, 171, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(43, 91, 171, .06) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(450px, .96fr);
  align-items: center;
  gap: 54px;
}

.hero-copy { padding: 28px 0 76px; }
.hero h1 {
  max-width: 780px;
  margin: 19px 0 25px;
  color: var(--navy-950);
  font-size: clamp(3.4rem, 6.5vw, 5.45rem);
  font-weight: 690;
  line-height: .98;
  letter-spacing: -.077em;
}
.hero h1 em {
  display: block;
  color: transparent;
  font-style: normal;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-copy > p { max-width: 680px; margin: 0; color: #546582; font-size: clamp(1.05rem, 1.55vw, 1.24rem); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 31px; }
.low-friction { display: inline-flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; color: #67758d; font-size: 13px; }
.low-friction strong { color: var(--blue-deep); }

.system-visual { position: relative; min-height: 575px; isolation: isolate; }
.system-grid { position: absolute; inset: 50px 0 30px; border: 1px solid rgba(99, 121, 164, .17); border-radius: 50% 32% 45% 38%; transform: rotate(-5deg); background-image: linear-gradient(rgba(51, 92, 165, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(51, 92, 165, .08) 1px, transparent 1px); background-size: 38px 38px; box-shadow: inset 0 0 80px rgba(32, 88, 202, .05); }
.system-grid::after { content: ""; position: absolute; inset: 10%; border: 1px dashed rgba(88, 76, 191, .24); border-radius: 50%; }
.system-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(71, 98, 186, .22); }
.orbit-one { width: 470px; height: 285px; left: 40px; top: 148px; transform: rotate(-18deg); }
.orbit-two { width: 350px; height: 470px; left: 105px; top: 46px; transform: rotate(22deg); border-style: dashed; }
.system-core { position: absolute; left: 50%; top: 50%; width: 238px; min-height: 150px; padding: 26px; transform: translate(-50%, -50%); display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(255, 255, 255, .45); border-radius: 30px; color: #fff; background: var(--gradient-dark); box-shadow: var(--shadow-deep); overflow: hidden; }
.system-core::before { content: ""; position: absolute; width: 180px; height: 180px; right: -105px; top: -95px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25); }
.system-core span { position: relative; font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; color: #a9cbff; }
.system-core strong { position: relative; margin: 8px 0; font-size: 23px; line-height: 1.1; letter-spacing: -.035em; }
.system-core small { position: relative; color: #c7d7f7; font-size: 11px; }
.system-node { position: absolute; min-width: 145px; display: flex; align-items: center; gap: 10px; padding: 13px 15px; border: 1px solid rgba(189, 204, 230, .9); border-radius: 17px; background: rgba(255, 255, 255, .9); backdrop-filter: blur(13px); color: var(--navy-800); box-shadow: 0 18px 45px rgba(18, 47, 105, .13); font-size: 12px; font-weight: 780; }
.system-node .line-icon { width: 23px; color: var(--blue-deep); }
.node-web { left: 3%; top: 18%; }
.node-commerce { right: -2%; top: 27%; }
.node-automation { left: 5%; bottom: 18%; }
.node-growth { right: 0; bottom: 12%; }
.signal { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 7px rgba(36, 200, 242, .13), 0 0 26px rgba(36, 200, 242, .8); }
.signal-a { left: 27%; top: 25%; animation: signal-pulse 2.8s ease-in-out infinite; }
.signal-b { right: 18%; bottom: 27%; animation: signal-pulse 2.8s .8s ease-in-out infinite; background: var(--purple-soft); }

.trust-rail { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 255, 255, .9); box-shadow: var(--shadow-sm); transform: translateY(32px); }
.trust-rail div { min-height: 86px; display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--ink-soft); font-size: 13px; font-weight: 780; }
.trust-rail div + div { border-left: 1px solid var(--line); }
.trust-rail .line-icon { width: 22px; color: #5a45c5; }

.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 300px; display: grid; grid-template-columns: auto 1fr; gap: 19px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -100px; bottom: -110px; border-radius: 50%; border: 1px solid rgba(98, 72, 203, .18); transition: transform .3s ease; }
.service-card:hover { transform: translateY(-6px); border-color: #c9d5ed; box-shadow: var(--shadow); }
.service-card:hover::after { transform: scale(1.25); }
.service-card:nth-child(1) { grid-column: span 7; background: linear-gradient(145deg, #fff 40%, #eaf4ff); }
.service-card:nth-child(2) { grid-column: span 5; background: linear-gradient(145deg, #fff 38%, #f1eaff); }
.service-card:nth-child(n+3) { grid-column: span 3; min-height: 330px; display: block; }
.service-card:nth-child(5) { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.service-card:nth-child(5) h3 { color: #fff; }
.service-card:nth-child(5) p, .service-card:nth-child(5) li { color: #bfcde8; }
.service-card:nth-child(5) .text-link { color: #8fdcff; }
.service-card:nth-child(5) .service-icon { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .16); color: #7fd9ff; }
.service-icon { width: 53px; height: 53px; display: grid; place-items: center; border: 1px solid #d8e5f7; border-radius: 17px; color: var(--blue-deep); background: linear-gradient(145deg, #f4f9ff, #eeeaff); }
.service-icon .line-icon { width: 27px; }
.service-number { color: #6c55ca; font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.service-card h3 { margin: 8px 0 10px; color: var(--navy-900); font-size: 24px; line-height: 1.1; letter-spacing: -.04em; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 20px 0 0; list-style: none; }
.service-card li { padding: 5px 9px; border: 1px solid rgba(199, 211, 232, .85); border-radius: 999px; color: #546681; font-size: 10px; font-weight: 720; }
.service-card .text-link { margin-top: 22px; }

.work-section { background: var(--canvas); }
.project-showcase { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; align-items: stretch; gap: 0; border: 1px solid #d5dfef; border-radius: var(--radius-lg); background: #fff; box-shadow: 0 25px 70px rgba(27, 58, 119, .1); overflow: hidden; }
.project-copy { padding: clamp(34px, 5vw, 62px); }
.project-copy h3 { margin: 15px 0; color: var(--navy-900); font-size: clamp(2rem, 3.5vw, 3.6rem); line-height: 1.02; letter-spacing: -.06em; }
.project-copy > p { color: var(--muted); }
.project-copy dl { margin: 28px 0 0; display: grid; gap: 13px; }
.project-copy dl div { padding-top: 12px; border-top: 1px solid var(--line); }
.project-copy dt { color: #6a55c8; font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.project-copy dd { margin: 4px 0 0; color: var(--ink-soft); font-size: 13px; font-weight: 680; }
.project-visual { min-height: 510px; margin: 22px 22px 22px 0; border: 1px solid rgba(161, 182, 219, .4); border-radius: 24px; background: linear-gradient(145deg, #0a1b43, #174da8 58%, #6731b6); box-shadow: var(--shadow-deep); overflow: hidden; }
.browser-chrome { height: 49px; display: flex; align-items: center; gap: 7px; padding: 0 17px; border-bottom: 1px solid rgba(255, 255, 255, .12); color: #d7e5ff; font-size: 10px; }
.browser-chrome span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .35); }
.browser-chrome strong { margin-left: 8px; font-weight: 650; }
.platform-ui { height: calc(100% - 49px); display: grid; grid-template-columns: 148px 1fr; color: #fff; }
.platform-ui aside { display: flex; flex-direction: column; gap: 9px; padding: 22px 14px; border-right: 1px solid rgba(255, 255, 255, .1); background: rgba(3, 12, 39, .26); }
.platform-ui aside b { margin-bottom: 16px; font-size: 12px; }
.platform-ui aside span { padding: 8px 9px; border-radius: 8px; color: #adc4ee; font-size: 9px; }
.platform-ui aside span.active { color: #fff; background: rgba(255, 255, 255, .12); }
.platform-main { padding: clamp(23px, 4vw, 42px); background-image: radial-gradient(circle at 80% 15%, rgba(192, 125, 255, .35), transparent 25%), linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px); background-size: auto, 34px 34px, 34px 34px; }
.platform-heading small { display: block; color: #a5c9ff; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.platform-heading strong { max-width: 420px; display: block; margin-top: 8px; font-size: clamp(1.45rem, 2.6vw, 2.35rem); line-height: 1.05; letter-spacing: -.05em; }
.platform-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 43px; }
.platform-cards div { min-height: 116px; padding: 15px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 15px; background: rgba(255, 255, 255, .09); backdrop-filter: blur(8px); }
.platform-cards i { display: block; color: #8fcfff; font-size: 9px; font-style: normal; }
.platform-cards b { display: block; margin-top: 14px; font-size: 13px; }
.platform-cards span { color: #c4d3ed; font-size: 9px; }
.platform-flow { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 26px; padding: 15px; border-radius: 14px; background: rgba(2, 12, 43, .32); }
.platform-flow span { font-size: 8px; font-weight: 750; }
.platform-flow i { flex: 1; height: 1px; background: linear-gradient(90deg, #35d4fa, #b974ff); position: relative; }
.platform-flow i::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: #bc78ff; }

.why-section { position: relative; overflow: hidden; }
.why-section::before { content: ""; position: absolute; width: 480px; height: 480px; left: -360px; top: 0; border: 1px solid #e1e8f5; border-radius: 50%; }
.why-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.why-capabilities { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.why-item { display: flex; gap: 16px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.why-item > .line-icon { width: 27px; flex: none; color: #6346ca; }
.why-item h3 { margin: 0 0 7px; color: var(--navy-900); font-size: 17px; letter-spacing: -.03em; }
.why-item p { margin: 0; color: var(--muted); font-size: 13px; }

.process-section { background: linear-gradient(180deg, #f7f9fd, #fff); }
.process-line { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 17px; }
.process-line::before { content: ""; position: absolute; left: 0; right: 0; top: 48px; height: 1px; background: linear-gradient(90deg, #1a88f4, #8b43ed); }
.process-step { position: relative; padding-top: 76px; }
.process-step > span { position: absolute; top: 0; left: 0; color: #6751c5; font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.process-dot { position: absolute; top: 40px; left: 0; width: 17px; height: 17px; border: 4px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px #93b8ec, 0 6px 14px rgba(37, 104, 220, .23); }
.process-step:nth-child(n+4) .process-dot { background: var(--purple); }
.process-step h3 { margin: 0 0 8px; color: var(--navy-900); font-size: 17px; letter-spacing: -.03em; }
.process-step p { margin: 0; color: var(--muted); font-size: 12px; }

.global-section { position: relative; overflow: hidden; color: #fff; background: var(--navy-950); }
.global-section::before { content: ""; position: absolute; inset: 0; opacity: .4; background-image: linear-gradient(rgba(121, 153, 220, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(121, 153, 220, .08) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(circle at 72% 50%, #000, transparent 62%); }
.global-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 75px; }
.global-copy h2 { margin: 17px 0; max-width: 630px; font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 670; line-height: 1; letter-spacing: -.065em; }
.global-copy > p { max-width: 620px; color: #b8c9e8; font-size: 17px; }
.global-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; padding: 0; margin: 30px 0 0; list-style: none; }
.global-copy li { display: flex; gap: 9px; color: #d5e2f7; font-size: 13px; }
.global-copy li span { color: #68d7f2; }
.global-visual { position: relative; min-height: 480px; }
.globe-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(134, 167, 229, .22); border-radius: 50%; transform: translate(-50%, -50%); }
.ring-a { width: 430px; height: 430px; }
.ring-b { width: 320px; height: 440px; transform: translate(-50%, -50%) rotate(55deg); border-style: dashed; }
.global-hub { position: absolute; left: 50%; top: 50%; width: 225px; min-height: 170px; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 25px; text-align: center; border: 1px solid rgba(255, 255, 255, .16); border-radius: 50%; background: radial-gradient(circle at 35% 20%, #257bea, #32319b 57%, #631f99); box-shadow: 0 25px 70px rgba(0, 0, 0, .35), 0 0 90px rgba(46, 102, 237, .2); }
.globe-icon { width: 38px; color: #8ce6ff; }
.global-hub strong { margin-top: 12px; font-size: 16px; }
.global-hub small { margin-top: 5px; color: #c0ceeb; font-size: 10px; }
.location-tag { position: absolute; padding: 9px 13px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 999px; background: rgba(255, 255, 255, .08); backdrop-filter: blur(10px); color: #dce7fb; font-size: 10px; font-weight: 750; }
.tag-india { left: 4%; top: 23%; }
.tag-one { right: 1%; top: 29%; }
.tag-two { right: 9%; bottom: 17%; }

.insights-section { background: #fff; }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading-row .section-head { margin-bottom: 43px; }
.section-heading-row > .text-link { margin-bottom: 51px; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.insight-card { position: relative; min-height: 330px; display: flex; flex-direction: column; padding: 27px; border: 1px solid var(--line); border-radius: 22px; background: #fff; transition: transform .24s ease, box-shadow .24s ease; }
.insight-card:nth-child(2) { background: #f5f8ff; }
.insight-card:nth-child(3) { background: linear-gradient(145deg, #f8f4ff, #fff); }
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.insight-card > span { color: #6750c5; font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.insight-card h3 { margin: 17px 0 12px; color: var(--navy-900); font-size: 23px; line-height: 1.18; letter-spacing: -.04em; }
.insight-card p { margin: 0; color: var(--muted); font-size: 13px; }
.insight-card > div { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 25px; }
.insight-card small { color: #7a879d; font-size: 10px; }

.cta { position: relative; min-height: 330px; display: flex; align-items: center; justify-content: space-between; gap: 45px; padding: clamp(38px, 6vw, 76px); border-radius: var(--radius-lg); color: #fff; background: var(--gradient-dark); box-shadow: var(--shadow-deep); overflow: hidden; }
.cta > div:not(.cta-orbit) { position: relative; z-index: 2; }
.cta h2 { max-width: 690px; margin: 15px 0 12px; font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1; letter-spacing: -.065em; }
.cta p { max-width: 620px; margin: 0; color: #c8d7f2; }
.cta-actions { min-width: 250px; display: flex; flex-direction: column; gap: 11px; }
.cta-orbit { position: absolute; width: 520px; height: 520px; right: -250px; top: -260px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 50%; }
.cta-orbit::before, .cta-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; }
.cta-orbit::before { inset: 55px; }
.cta-orbit::after { inset: 115px; }

.footer { padding: 78px 0 25px; color: #c6d2e8; background: var(--navy-950); }
.footer-top { display: grid; grid-template-columns: 1.55fr 1fr 1fr 1fr 1.15fr; gap: 45px; }
.footer .brand-copy strong { color: #fff; }
.footer .brand-copy small { color: #8fa7ce; }
.footer-logo { width: 54px; height: 54px; }
.footer-brand p { max-width: 330px; color: #9fb1d0; font-size: 13px; }
.availability-dot { display: block; max-width: 330px; padding-left: 17px; position: relative; color: #b9c8e1; font-size: 11px; }
.availability-dot::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 50%; background: #4bd6bd; box-shadow: 0 0 0 5px rgba(75, 214, 189, .1); }
.footer h2 { margin: 0 0 17px; color: #fff; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer ul { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; }
.footer li, .footer a { color: #a7b8d5; font-size: 12px; }
.footer a:hover { color: #fff; }
.copyright { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); color: #8295b8; font-size: 11px; }
.copyright span:last-child { display: flex; gap: 20px; }
.whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%; color: #fff; background: #0aae6c; box-shadow: 0 15px 35px rgba(5, 103, 64, .28); font-size: 20px; transition: transform .2s ease; }
.whatsapp:hover { transform: translateY(-3px) scale(1.03); }

.page-hero { position: relative; min-height: 535px; display: flex; align-items: center; overflow: hidden; background: linear-gradient(155deg, #fff 0%, #f4f8ff 66%, #eee9ff 100%); }
.page-grid { position: absolute; inset: 0; opacity: .43; background-image: linear-gradient(rgba(31, 73, 149, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 73, 149, .07) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(circle at 80% 50%, #000, transparent 65%); }
.page-hero::after { content: ""; position: absolute; width: 420px; height: 420px; right: -100px; top: -100px; border: 1px solid rgba(100, 71, 204, .19); border-radius: 50%; box-shadow: 0 0 0 58px rgba(93, 66, 196, .025), 0 0 0 116px rgba(31, 126, 235, .02); }
.page-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 250px; align-items: center; gap: 60px; padding-block: 85px; }
.page-hero h1 { max-width: 940px; margin: 17px 0 22px; color: var(--navy-950); font-size: clamp(3rem, 6.3vw, 6.4rem); font-weight: 680; line-height: .99; letter-spacing: -.075em; }
.page-hero p { max-width: 760px; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.22rem); }
.page-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 24px; border: 1px solid #d2dff1; border-radius: 18px; background: rgba(255, 255, 255, .8); color: #5b45c6; box-shadow: var(--shadow-sm); }
.page-icon .line-icon { width: 30px; }
.page-signal { position: relative; width: 220px; height: 220px; border: 1px solid rgba(58, 104, 190, .2); border-radius: 50%; }
.page-signal::before, .page-signal::after { content: ""; position: absolute; border: 1px dashed rgba(95, 76, 192, .2); border-radius: 50%; }
.page-signal::before { inset: 30px; }
.page-signal::after { inset: 67px; background: var(--gradient); box-shadow: 0 20px 60px rgba(48, 77, 196, .24); }
.page-signal i { position: absolute; z-index: 2; width: 10px; height: 10px; border: 2px solid #fff; border-radius: 50%; background: var(--cyan); box-shadow: 0 4px 14px rgba(13, 128, 231, .4); }
.page-signal i:nth-child(1) { top: 8px; left: 105px; }
.page-signal i:nth-child(2) { right: 11px; bottom: 45px; background: var(--purple); }
.page-signal i:nth-child(3) { left: 19px; bottom: 54px; }

.service-connection { background: var(--canvas); }
.connection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.connection-map { position: relative; min-height: 300px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 30px; border: 1px solid var(--line); border-radius: 50% 38% 48% 36%; background: #fff; box-shadow: var(--shadow-sm); }
.connection-map span { position: relative; z-index: 1; padding: 10px 12px; border: 1px solid #d5e0f1; border-radius: 999px; background: #fff; color: var(--ink-soft); font-size: 10px; font-weight: 780; }
.connection-map i { width: 30px; height: 1px; background: var(--gradient); }

.service-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: start; }
.service-fit h2 { margin: 15px 0; color: var(--navy-900); font-size: clamp(2.25rem, 4.2vw, 4.25rem); line-height: 1.04; letter-spacing: -.06em; }
.service-fit p { max-width: 620px; color: var(--muted); }
.deliverables { padding: 35px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, #fff, #f3f7ff); box-shadow: var(--shadow-sm); }
.deliverables > div { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 24px; }
.deliverables > div span { display: flex; gap: 9px; padding: 13px; border: 1px solid #dce5f3; border-radius: 13px; background: #fff; color: var(--ink-soft); font-size: 12px; font-weight: 680; }
.deliverables i { color: var(--green); font-style: normal; }
.deliverables small { display: block; margin-top: 17px; color: #7b889e; font-size: 10px; }
.service-process { background: var(--navy-950); color: #fff; }
.service-process .section-head h2 { color: #fff; }
.service-process .section-head p { color: #afc1de; }
.service-process .eyebrow { color: #b9cff0; }
.service-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.service-process-grid article { min-height: 240px; padding: 26px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 20px; background: rgba(255, 255, 255, .05); }
.service-process-grid span { color: #77dafa; font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.service-process-grid h3 { margin: 42px 0 9px; font-size: 19px; line-height: 1.2; }
.service-process-grid p { margin: 0; color: #adbfdd; font-size: 12px; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; color: var(--navy-900); font-weight: 750; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--purple); font-size: 20px; transition: transform .2s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq p { max-width: 720px; margin: -8px 0 23px; color: var(--muted); font-size: 14px; }

.honest-note { display: flex; gap: 12px; align-items: baseline; margin-bottom: 27px; padding: 18px 21px; border-left: 3px solid #6951c9; border-radius: 0 15px 15px 0; background: #f5f6ff; }
.honest-note span { color: var(--muted); font-size: 13px; }
.project-principles { background: var(--canvas); }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle-grid article { min-height: 240px; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.principle-grid span, .values-grid span { color: #6650c6; font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.principle-grid h3 { margin: 55px 0 8px; color: var(--navy-900); font-size: 22px; }
.principle-grid p { color: var(--muted); font-size: 13px; }

.case-study { padding: clamp(26px, 5vw, 62px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.case-intro { display: grid; grid-template-columns: 1fr .62fr; gap: 55px; margin-bottom: 45px; }
.case-intro h2 { max-width: 760px; margin: 15px 0; color: var(--navy-900); font-size: clamp(2.4rem, 4.5vw, 4.8rem); line-height: 1; letter-spacing: -.065em; }
.case-intro p { color: var(--muted); }
.case-intro dl { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 0; }
.case-intro dl div { padding-top: 12px; border-top: 1px solid var(--line); }
.case-intro dt { color: #6c57c5; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.case-intro dd { margin: 6px 0 0; color: var(--ink-soft); font-size: 12px; font-weight: 680; }
.case-study > .project-visual { min-height: 560px; margin: 0; }
.case-journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 50px; }
.case-journey section { padding-top: 17px; border-top: 1px solid var(--line); }
.case-journey span { color: #6751c5; font-size: 10px; font-weight: 850; }
.case-journey h3 { margin: 15px 0 7px; color: var(--navy-900); font-size: 18px; }
.case-journey p { margin: 0; color: var(--muted); font-size: 12px; }
.case-actions { display: flex; align-items: center; gap: 24px; margin-top: 42px; }

.pricing-intro { display: flex; gap: 13px; align-items: baseline; margin-bottom: 28px; padding: 20px 22px; border-left: 3px solid var(--blue); border-radius: 0 15px 15px 0; background: var(--canvas-blue); }
.pricing-intro span { color: var(--muted); font-size: 13px; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.offer { min-height: 320px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.offer:nth-child(2) { background: linear-gradient(145deg, #f4f8ff, #fff); box-shadow: var(--shadow-sm); }
.offer > span { color: #6853c4; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.offer h3 { margin: 42px 0 10px; color: var(--navy-900); font-size: 25px; line-height: 1.1; letter-spacing: -.04em; }
.offer p { margin: 0; color: var(--muted); font-size: 13px; }
.offer small { margin-top: 19px; color: var(--ink-soft); font-size: 11px; font-weight: 680; }
.offer .text-link { margin-top: auto; padding-top: 28px; }
.engagement-section { background: var(--canvas); }
.engagement-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.engagement-grid ol { padding: 0; margin: 0; list-style: none; }
.engagement-grid li { display: flex; gap: 22px; padding: 22px 0; border-top: 1px solid var(--line); }
.engagement-grid li:last-child { border-bottom: 1px solid var(--line); }
.engagement-grid li > span { color: #6751c5; font-size: 11px; font-weight: 850; }
.engagement-grid strong { color: var(--navy-900); }
.engagement-grid p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }

.about-story { background: #fff; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.story-lead h2 { margin: 15px 0 0; color: var(--navy-900); font-size: clamp(2.5rem, 4.5vw, 4.7rem); line-height: 1.02; letter-spacing: -.065em; }
.story-copy p { margin: 0 0 20px; color: var(--muted); font-size: 17px; }
.values-section { background: var(--canvas); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.values-grid article { min-height: 275px; padding: 27px; border: 1px solid var(--line); border-radius: 21px; background: #fff; }
.values-grid h3 { margin: 55px 0 9px; color: var(--navy-900); font-size: 20px; line-height: 1.2; }
.values-grid p { color: var(--muted); font-size: 12px; }

.insight-featured { max-width: 820px; margin-bottom: 42px; }
.insight-featured h2 { margin: 15px 0; color: var(--navy-900); font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -.06em; }
.insight-featured p { color: var(--muted); }
.article-hero { padding: 105px 0 80px; background: linear-gradient(155deg, #fff, #f4f8ff 65%, #f1eaff); }
.back-link { display: inline-block; margin-bottom: 36px; color: var(--blue-deep); font-size: 13px; font-weight: 750; }
.article-hero h1 { margin: 17px 0 21px; color: var(--navy-950); font-size: clamp(3rem, 6.3vw, 6rem); line-height: .99; letter-spacing: -.072em; }
.article-hero p { max-width: 750px; color: var(--muted); font-size: 18px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; color: #77839a; font-size: 11px; }
.article-layout { display: grid; grid-template-columns: 230px minmax(0, 740px); justify-content: center; gap: 80px; padding-top: 90px; }
.article-layout aside { position: sticky; top: 120px; align-self: start; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--canvas); }
.article-layout aside strong { color: var(--navy-900); font-size: 12px; }
.article-layout aside ol { display: grid; gap: 9px; padding-left: 18px; color: #697892; font-size: 11px; }
.article-layout aside a:hover { color: var(--blue-deep); }
.article-intro { margin: 0 0 55px; color: var(--ink-soft); font-size: 22px; line-height: 1.55; }
.article-body section { padding: 45px 0; border-top: 1px solid var(--line); }
.article-body section > span { color: #6751c5; font-size: 10px; font-weight: 850; }
.article-body h2 { margin: 10px 0 15px; color: var(--navy-900); font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: 1.08; letter-spacing: -.055em; }
.article-body p { color: var(--muted); font-size: 17px; }
.article-note { padding: 27px; border: 1px solid #d7e2f4; border-radius: 20px; background: linear-gradient(145deg, #eff6ff, #f8f2ff); }
.article-note strong { color: var(--navy-900); }
.article-note p { margin-bottom: 0; font-size: 14px; }

.form-section { background: var(--canvas); }
.form-shell { display: grid; grid-template-columns: .78fr 1.22fr; gap: 55px; align-items: start; }
.form-context { position: sticky; top: 120px; }
.form-context > h2 { margin: 16px 0; color: var(--navy-900); font-size: clamp(2rem, 3.8vw, 3.6rem); line-height: 1.05; letter-spacing: -.055em; }
.form-context > p, .form-context > small { color: var(--muted); }
.audit-points, .contact-methods { display: grid; gap: 12px; margin-top: 27px; }
.audit-points article { display: flex; gap: 13px; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.audit-points .line-icon { width: 24px; flex: none; color: #5d48c7; }
.audit-points strong, .audit-points span { display: block; }
.audit-points strong { color: var(--navy-900); font-size: 13px; }
.audit-points span { color: var(--muted); font-size: 11px; }
.contact-methods > * { display: flex; flex-direction: column; padding: 16px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.contact-methods span { color: #6c7890; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-methods strong { margin-top: 3px; color: var(--navy-900); font-size: 13px; overflow-wrap: anywhere; }
.form { padding: clamp(25px, 4vw, 43px); border: 1px solid #d7e1ef; border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.form-heading { margin-bottom: 28px; }
.form-heading h2 { margin: 12px 0 8px; color: var(--navy-900); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.08; letter-spacing: -.05em; }
.form-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 15px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { color: var(--ink-soft); font-size: 11px; font-weight: 780; }
.field label span { color: #6c45cb; }
.field input, .field textarea, .field select { width: 100%; min-height: 49px; padding: 12px 13px; border: 1px solid #cfdaea; border-radius: 11px; color: var(--ink); background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9ca8ba; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8, 125, 243, .11); }
.span-2 { grid-column: span 2; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden; }
.submit-button { margin-top: 4px; }
.submit-button:disabled { opacity: .6; cursor: wait; transform: none; }
.form-status { min-height: 25px; margin: 14px 0 0; font-size: 13px; font-weight: 700; }
.form-status[data-state="error"] { color: #b42318; }
.form-status[data-state="success"] { color: #087443; }
.fineprint { margin: 6px 0 0; color: #7d899c; font-size: 10px; }
.fineprint a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 2px; }

.prose { max-width: 800px; }
.prose h2 { margin: 45px 0 13px; color: var(--navy-900); font-size: 30px; line-height: 1.15; letter-spacing: -.04em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }
.empty-page { display: flex; flex-wrap: wrap; gap: 12px; }

.line-icon { width: 24px; height: 24px; }

.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s cubic-bezier(.2, .75, .25, 1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes signal-pulse {
  0%, 100% { transform: scale(.85); opacity: .65; }
  50% { transform: scale(1.15); opacity: 1; }
}

@media (max-width: 1100px) {
  .nav { min-height: 74px; }
  .nav-links { position: fixed; inset: 74px 18px auto; max-height: calc(100vh - 92px); display: none; align-items: stretch; gap: 0; padding: 18px; overflow-y: auto; border: 1px solid var(--line); border-radius: 19px; background: rgba(255, 255, 255, .98); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; flex-direction: column; }
  .nav-links > a { padding: 12px 8px; font-size: 15px; }
  .nav-links > a::after { display: none; }
  .mobile-nav-actions { display: grid; gap: 12px; margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
  .menu { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr 450px; gap: 24px; }
  .hero h1 { font-size: clamp(3.3rem, 7vw, 5.6rem); }
  .service-card:nth-child(n) { grid-column: span 6; min-height: 300px; display: grid; }
  .process-line { grid-template-columns: repeat(3, 1fr); gap: 35px 20px; }
  .process-line::before { display: none; }
  .process-step { padding-top: 55px; }
  .process-dot { top: 24px; }
  .global-grid { gap: 35px; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-row: span 2; }
  .page-hero-inner { grid-template-columns: 1fr 190px; }
  .page-signal { width: 180px; height: 180px; }
  .page-signal i:nth-child(1) { left: 85px; }
  .project-showcase { grid-template-columns: 1fr; }
  .project-visual { margin: 0 22px 22px; }
  .service-process-grid, .case-journey, .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 850px) {
  .section-pad { padding: 84px 0; }
  .hero { padding-top: 50px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 15px; }
  .system-visual { min-height: 500px; width: min(560px, 100%); margin-inline: auto; }
  .trust-rail { grid-template-columns: repeat(5, minmax(100px, 1fr)); overflow-x: auto; justify-content: start; }
  .trust-rail div { min-width: 112px; }
  .why-grid, .global-grid, .connection-grid, .service-intro, .faq-grid, .engagement-grid, .story-grid, .form-shell { grid-template-columns: 1fr; gap: 42px; }
  .why-capabilities { grid-template-columns: 1fr 1fr; }
  .global-visual { min-height: 430px; }
  .insights-grid, .offer-grid, .principle-grid { grid-template-columns: 1fr 1fr; }
  .insight-card:last-child, .principle-grid article:last-child { grid-column: span 2; }
  .section-heading-row { display: block; }
  .section-heading-row > .text-link { margin: -24px 0 40px; }
  .cta { display: block; }
  .cta-actions { margin-top: 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; grid-row: auto; }
  .page-hero { min-height: 470px; }
  .page-hero-inner { grid-template-columns: 1fr; padding-block: 68px; }
  .page-signal { display: none; }
  .case-intro { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 35px; padding-top: 60px; }
  .article-layout aside { position: static; }
  .form-context { position: static; }
}

@media (max-width: 650px) {
  .wrap { width: min(var(--wrap), calc(100% - 30px)); }
  .section-pad { padding: 68px 0; }
  .brand-logo { width: 43px; height: 43px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 8px; }
  .hero { padding-top: 38px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.85rem); }
  .hero-copy > p { font-size: 1rem; }
  .actions { align-items: stretch; }
  .actions .button { flex: 1 1 180px; }
  .system-visual { min-height: 415px; transform: scale(.97); }
  .system-grid { inset: 34px 0 22px; }
  .orbit-one { width: 360px; height: 230px; left: 50%; top: 105px; transform: translateX(-50%) rotate(-18deg); }
  .orbit-two { width: 270px; height: 360px; left: 50%; top: 28px; transform: translateX(-50%) rotate(22deg); }
  .system-core { width: 205px; min-height: 130px; padding: 21px; }
  .system-core strong { font-size: 20px; }
  .system-node { min-width: 125px; padding: 10px 11px; font-size: 10px; }
  .node-web { left: 0; top: 14%; }
  .node-commerce { right: 0; top: 24%; }
  .node-automation { left: 0; bottom: 15%; }
  .node-growth { right: 0; bottom: 8%; }
  .trust-rail { transform: translateY(22px); border-radius: 15px; }
  .trust-rail div { min-height: 72px; }
  .section-head { margin-bottom: 35px; }
  .section-head h2 { font-size: clamp(2.1rem, 11vw, 3.35rem); }
  .section-head p { font-size: 15px; }
  .service-card:nth-child(n) { grid-column: span 12; min-height: 0; display: grid; padding: 23px; }
  .project-copy { padding: 27px; }
  .project-visual { min-height: 390px; margin: 0 12px 12px; border-radius: 17px; }
  .platform-ui { grid-template-columns: 84px 1fr; }
  .platform-ui aside { padding: 15px 7px; }
  .platform-ui aside b { font-size: 8px; }
  .platform-ui aside span { padding: 6px; font-size: 7px; }
  .platform-main { padding: 18px; }
  .platform-cards { grid-template-columns: 1fr; gap: 6px; margin-top: 22px; }
  .platform-cards div { min-height: 54px; padding: 9px; }
  .platform-cards b { margin-top: 4px; }
  .platform-flow { display: none; }
  .why-capabilities, .global-copy ul, .insights-grid, .offer-grid, .principle-grid, .service-process-grid, .case-journey, .values-grid, .deliverables > div, .form-grid { grid-template-columns: 1fr; }
  .insight-card:last-child, .principle-grid article:last-child { grid-column: auto; }
  .why-item { padding: 19px; }
  .process-line { grid-template-columns: 1fr 1fr; }
  .global-copy h2 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .global-copy ul { gap: 10px; }
  .global-visual { min-height: 355px; transform: scale(.95); }
  .ring-a { width: 335px; height: 335px; }
  .ring-b { width: 255px; height: 355px; }
  .global-hub { width: 190px; min-height: 150px; }
  .tag-india { left: -3%; top: 18%; }
  .tag-one { right: -4%; top: 26%; }
  .tag-two { right: 1%; bottom: 12%; }
  .cta { min-height: 0; padding: 32px 25px; border-radius: 24px; }
  .cta h2 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .footer { padding-top: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand { grid-column: span 2; }
  .copyright { display: block; }
  .copyright span:last-child { margin-top: 8px; }
  .page-hero { min-height: 430px; }
  .page-hero h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  .page-hero-inner { padding-block: 60px; }
  .connection-map { min-height: 240px; flex-wrap: wrap; border-radius: 26px; }
  .connection-map i { width: 18px; }
  .service-fit h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .deliverables { padding: 23px; }
  .case-study { padding: 22px; }
  .case-intro dl { grid-template-columns: 1fr; }
  .case-study > .project-visual { min-height: 390px; }
  .case-actions { align-items: stretch; flex-direction: column; }
  .case-actions .button { width: 100%; }
  .pricing-intro, .honest-note { display: block; }
  .pricing-intro span, .honest-note span { display: block; margin-top: 7px; }
  .article-hero { padding: 75px 0 55px; }
  .article-hero h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .article-intro { font-size: 19px; }
  .span-2 { grid-column: auto; }
  .form { padding: 23px; border-radius: 22px; }
  .whatsapp { right: 14px; bottom: 14px; width: 48px; height: 48px; }
}

@media (max-width: 390px) {
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 13px; }
  .menu { width: 43px; height: 43px; }
  .system-visual { margin-inline: -6px; }
  .system-node { min-width: 112px; font-size: 9px; }
  .system-node .line-icon { width: 19px; }
  .process-line { grid-template-columns: 1fr; gap: 20px; }
  .process-step { padding: 15px 0 15px 48px; border-top: 1px solid var(--line); }
  .process-step > span { top: 18px; }
  .process-dot { top: 45px; left: 8px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .project-visual { min-height: 365px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; transition-delay: 0ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
