/*
  Orvirex-inspired Gahtori redesign.
  Separate development layer for D:\00. PROFILE\Documents\Sales\gahtori.com-redesign.
*/

:root {
  --navy: #12284a;
  --blue: #0f6fa8;
  --cyan: #0f9ed5;
  --teal: #167f70;
  --green: #34b64f;
  --amber: #f5b84b;
  --orange: #e97132;
  --red: #e94d55;
  --ink: #172032;
  --muted: #607384;
  --soft: #eef5f8;
  --paper: #f6f9fb;
  --panel: #ffffff;
  --line: #d6e2e8;
  --shadow: 0 24px 60px rgba(16, 37, 62, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(15, 158, 213, 0.1), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(233, 113, 50, 0.11), transparent 30rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 8px clamp(20px, 4vw, 64px);
  color: #fff;
  border: 0;
  background: linear-gradient(105deg, #18274c 0%, #0e4c7a 47%, #07a6ce 74%, #e47b38 100%);
  box-shadow: 0 8px 26px rgba(16, 32, 56, 0.2);
}

.site-header::before {
  display: none;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: #fff;
  background: linear-gradient(105deg, #18274c 0%, #0e4c7a 47%, #07a6ce 74%, #e47b38 100%);
  box-shadow: 0 8px 26px rgba(16, 32, 56, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 128px;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  display: block;
  width: clamp(96px, 8.5vw, 118px);
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.brand::before {
  display: none;
}

.brand::after {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  min-height: auto;
  padding: 10px 2px;
  opacity: 1;
}

.site-nav a:hover {
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.button.primary {
  color: #fff;
  border: 0;
  background: var(--orange);
  box-shadow: 0 16px 34px rgba(233, 113, 50, 0.28);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.nav-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 760px);
  gap: 0;
  align-items: stretch;
  min-height: calc(88vh - 70px);
  padding: clamp(34px, 4.5vw, 64px) clamp(20px, 4vw, 64px) 30px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 40, 74, 0.96) 0%, rgba(18, 40, 74, 0.86) 36%, rgba(14, 76, 122, 0.42) 62%, rgba(22, 127, 112, 0.18) 100%),
    url("assets/hero.webp") center right / cover no-repeat;
}

.hero-media,
.hero-shade {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: auto;
  max-width: 760px;
  margin: 0;
  padding: clamp(14px, 2.5vw, 26px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--amber);
}

.hero h1,
.section-head h2,
.consulting-copy h2,
.contact-copy h2,
.subpage-hero h1 {
  margin: 0;
  color: #fff;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2rem, 3.8vw, 4.35rem);
  font-weight: 750;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
  font-weight: 450;
}

.hero-copy strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
  line-height: 1.32;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-graphics {
  display: none;
}

.orbit-board {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  aspect-ratio: auto;
  border: 1px solid rgba(214, 226, 232, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 251, 0.92)),
    repeating-linear-gradient(90deg, rgba(15, 111, 168, 0.07) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgba(15, 158, 213, 0.07) 0 1px, transparent 1px 54px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.orbit-board::before {
  content: "IT";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 178px;
  height: 178px;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  font-size: 3.5rem;
  font-weight: 900;
  transform: translate(-50%, -50%) rotate(-6deg);
  box-shadow: 0 24px 54px rgba(16, 37, 62, 0.26);
}

.orbit-board::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(15, 158, 213, 0.22);
  border-radius: 50%;
}

.orbit-board img {
  display: none;
}

.orbit-dot,
.orbit-line {
  z-index: 4;
}

.metric-card {
  z-index: 5;
  border: 1px solid rgba(214, 226, 232, 0.86);
  color: var(--muted);
  background: #fff;
  box-shadow: 0 16px 34px rgba(16, 37, 62, 0.14);
}

.metric-card strong {
  color: var(--navy);
}

.hero-panel {
  position: relative;
  z-index: 3;
  grid-column: 1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(980px, calc(100vw - clamp(40px, 8vw, 128px)));
  margin: 22px 0 0;
  border: 1px solid rgba(214, 226, 232, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 18px 22px;
}

.hero-panel div + div {
  border-left: 1px solid var(--line);
}

.hero-panel strong {
  display: block;
  color: var(--navy);
  font-size: 1.18rem;
}

.hero-panel span {
  display: block;
  color: var(--muted);
}

.section-pad {
  padding: clamp(38px, 4.2vw, 64px) clamp(20px, 4vw, 64px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  max-width: 1180px;
  margin: 0 auto 30px;
}

.section-head.compact {
  display: block;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.consulting-copy h2,
.contact-copy h2 {
  color: var(--navy);
  font-size: clamp(1.85rem, 2.8vw, 3.35rem);
  line-height: 1.06;
  font-weight: 720;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
}

.intro,
.services,
.visual-services,
.industries,
.process,
.faq,
.subpage-main,
.page-content {
  background: var(--paper);
}

.intro {
  background:
    linear-gradient(135deg, rgba(238, 245, 248, 0.98), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 80% 10%, rgba(15, 158, 213, 0.12), transparent 24rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(28px, 3.5vw, 58px);
  align-items: center;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}

.intro-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.intro-copy .eyebrow {
  margin-bottom: 0;
}

.intro-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.85rem, 2.8vw, 3.35rem);
  line-height: 1.06;
  font-weight: 720;
}

.intro-copy p {
  margin: 0;
  color: var(--muted);
}

.intro-grid > p,
.service-card p,
.why-grid p,
.process-grid p,
.consulting-copy p,
.contact-copy p,
.visual-card p,
.faq-grid p,
.page-summary p,
.page-panel p,
.page-cta p {
  color: var(--muted);
}

.intro-orbit-card {
  position: relative;
  min-height: clamp(460px, 36vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(214, 226, 232, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 245, 248, 0.84)),
    url("assets/hero.webp") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.intro-orbit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(1px);
}

.intro-orbit-card img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: clamp(230px, 30vw, 390px);
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(16, 37, 62, 0.18));
  transform: translate(-50%, -50%);
  animation: symbolFloat 5s ease-in-out infinite;
}

.intro-ring,
.intro-line {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
}

.intro-ring {
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(15, 158, 213, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 18s linear infinite;
}

.intro-ring.ring-b {
  width: 44%;
  border-color: rgba(233, 113, 50, 0.32);
  animation-duration: 13s;
  animation-direction: reverse;
}

.intro-line {
  width: 56%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(233, 113, 50, 0.95), rgba(15, 158, 213, 0.58), rgba(52, 182, 79, 0.85));
  transform: translate(-50%, -50%) rotate(18deg);
  transform-origin: center;
  animation: orbitSpin 16s linear infinite;
}

.intro-line.line-b {
  width: 48%;
  background: linear-gradient(90deg, rgba(15, 158, 213, 0.9), rgba(245, 184, 75, 0.7));
  animation-duration: 12s;
  animation-direction: reverse;
}

.intro-line.line-c {
  width: 42%;
  background: linear-gradient(90deg, rgba(52, 182, 79, 0.72), rgba(233, 113, 50, 0.7));
  animation-duration: 20s;
}

.intro-metric {
  position: absolute;
  z-index: 4;
  min-width: 104px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 158, 213, 0.28);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(16, 37, 62, 0.13);
  font-weight: 800;
  line-height: 1.2;
}

.intro-metric strong {
  display: block;
  color: var(--navy);
  font-size: 1.22rem;
}

.intro-metric.cloud { right: 9%; top: 9%; }
.intro-metric.support { left: 7%; bottom: 12%; }
.intro-metric.security { right: 8%; bottom: 11%; border-color: rgba(233, 113, 50, 0.28); }

@keyframes orbitSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes symbolFloat {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, calc(-50% - 8px)) scale(1.03);
  }
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-row div,
.service-card,
.why-grid article,
.process-grid article,
.faq-grid article,
.contact-form,
.page-summary,
.page-panel,
.page-cta,
.legal-contact-card {
  border: 1px solid rgba(214, 226, 232, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(16, 37, 62, 0.1);
}

.stat-row div {
  position: relative;
  min-height: 126px;
  padding: 22px 18px;
  overflow: hidden;
  border-color: rgba(15, 158, 213, 0.2);
  background:
    linear-gradient(135deg, #eaf8ff 0%, #ffffff 100%);
}

.stat-row div::before {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 82px;
  height: 82px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(15, 158, 213, 0.22), rgba(52, 182, 79, 0.1));
  transform: rotate(12deg);
}

.stat-row div::after {
  content: "";
  position: absolute;
  inset: auto 18px 14px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.stat-row div:nth-child(2) {
  border-color: rgba(233, 113, 50, 0.22);
  background: linear-gradient(135deg, #fff4ea 0%, #ffffff 100%);
}

.stat-row div:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(233, 113, 50, 0.2), rgba(245, 184, 75, 0.16));
}

.stat-row div:nth-child(2)::after {
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.stat-row div:nth-child(3) {
  border-color: rgba(233, 77, 85, 0.2);
  background: linear-gradient(135deg, #fff1f3 0%, #ffffff 100%);
}

.stat-row div:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(233, 77, 85, 0.18), rgba(15, 158, 213, 0.12));
}

.stat-row div:nth-child(3)::after {
  background: linear-gradient(90deg, var(--red), var(--cyan));
}

.stat-row strong {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: 2rem;
}

.stat-row span {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  border-color: transparent;
  background:
    linear-gradient(135deg, #ffffff 0%, #eef8fb 100%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--cyan);
}

.service-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 86px;
  height: 86px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(18, 40, 74, 0.05) 8px 9px);
  opacity: 0.78;
}

.service-card:hover {
  border-color: rgba(15, 158, 213, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card.feature {
  grid-column: span 2;
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(135deg, #13284c 0%, #0f7ca8 58%, #e97132 100%);
}

.service-card.feature h3,
.service-card.feature p {
  color: #fff;
}

.service-card.feature p {
  opacity: 0.88;
}

.service-card:nth-child(6n + 1) {
  background: linear-gradient(135deg, #fff4ea 0%, #ffffff 100%);
}

.service-card:nth-child(6n + 2) {
  background: linear-gradient(135deg, #eaf8ff 0%, #ffffff 100%);
}

.service-card:nth-child(6n + 3) {
  background: linear-gradient(135deg, #edf9ef 0%, #ffffff 100%);
}

.service-card:nth-child(6n + 4) {
  background: linear-gradient(135deg, #fff1f3 0%, #ffffff 100%);
}

.service-card:nth-child(6n + 5) {
  background: linear-gradient(135deg, #eff4ff 0%, #ffffff 100%);
}

.service-card:nth-child(6n) {
  background: linear-gradient(135deg, #fff8df 0%, #ffffff 100%);
}

.icon,
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  font-weight: 850;
}

.service-card:nth-child(4n + 1) .icon,
.service-card:nth-child(4n + 1)::before {
  background: var(--orange);
}

.service-card:nth-child(4n + 2) .icon,
.service-card:nth-child(4n + 2)::before {
  background: linear-gradient(135deg, var(--navy), var(--cyan));
}

.service-card:nth-child(4n + 3) .icon,
.service-card:nth-child(4n + 3)::before {
  background: var(--green);
}

.service-card:nth-child(4n) .icon,
.service-card:nth-child(4n)::before {
  background: var(--red);
}

.service-card h3,
.why-grid h3,
.process-grid h3,
.visual-card h3,
.faq-grid h3,
.page-summary h2,
.page-panel h2,
.page-cta h2 {
  color: var(--navy);
}

.command-center,
.consulting,
.why,
.solutions,
.contact {
  background:
    linear-gradient(135deg, rgba(18, 40, 74, 0.98), rgba(14, 76, 122, 0.9) 58%, rgba(233, 113, 50, 0.72)),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.18), transparent 24rem);
  color: #fff;
}

.command-copy .eyebrow,
.why .eyebrow,
.contact .eyebrow {
  color: var(--amber);
}

.command-copy h2,
.why .section-head h2,
.contact-copy h2 {
  color: #fff;
}

.command-copy p,
.why-grid p,
.contact-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.command-actions span,
.solution-list span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.command-graphic {
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 56px),
    rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.command-core {
  width: 240px;
  height: 240px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.command-core img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.22));
}

.command-node {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.15);
}

.consulting {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(520px, 1.05fr);
  gap: 22px clamp(24px, 4vw, 62px);
  align-items: stretch;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.consulting::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(245, 184, 75, 0.2), transparent 25rem),
    radial-gradient(circle at 84% 26%, rgba(15, 158, 213, 0.18), transparent 28rem);
  pointer-events: none;
}

.consulting-image,
.consulting-showcase,
.consulting-heading,
.consulting-copy {
  position: relative;
  z-index: 1;
}

.consulting .eyebrow,
.consulting-heading .eyebrow {
  color: #fff;
}

.consulting-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.85rem, 2.8vw, 3.35rem);
  line-height: 1.06;
  font-weight: 720;
}

.consulting-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.consulting-showcase {
  display: grid;
  min-height: 420px;
}

.consulting-heading {
  grid-column: 1 / -1;
  max-width: 780px;
  margin: 0 auto 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  backdrop-filter: none;
}

.consulting-image {
  min-height: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-image:
    linear-gradient(180deg, rgba(18, 40, 74, 0.06), rgba(18, 40, 74, 0.24)),
    url("assets/consulting.webp");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.consulting-image::before {
  display: none;
}

.consulting-image::after {
  content: "Implementation | Governance | Adoption";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  background: rgba(18, 40, 74, 0.64);
  backdrop-filter: blur(12px);
  font-weight: 560;
}

.consulting-copy {
  display: grid;
  align-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.consulting-copy > p {
  max-width: 760px;
  margin: 0 0 16px;
}

.check-list li {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 58px;
  margin-top: 10px;
  padding: 13px 14px 13px 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.1);
}

.check-list li::before {
  top: 50%;
  left: 15px;
  color: var(--amber);
  transform: translateY(-50%);
}

.visual-services {
  background:
    radial-gradient(circle at 12% 8%, rgba(15, 158, 213, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #eef5f8 100%);
}

.expertise-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  width: 100%;
  max-width: 1500px;
  min-height: clamp(360px, 34vw, 520px);
  margin: 0 auto 18px;
  padding: clamp(26px, 4vw, 54px);
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(18, 40, 74, 0.94) 0%, rgba(18, 40, 74, 0.74) 42%, rgba(15, 158, 213, 0.16) 100%);
  box-shadow: var(--shadow);
}

.expertise-feature::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.expertise-feature::after {
  content: "";
  position: absolute;
  right: clamp(24px, 6vw, 92px);
  top: clamp(24px, 5vw, 72px);
  width: clamp(140px, 18vw, 260px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 32px rgba(15, 158, 213, 0.12),
    0 0 0 32px rgba(233, 113, 50, 0.1);
  pointer-events: none;
}

.expertise-feature-copy,
.expertise-feature-metrics {
  position: relative;
  z-index: 1;
}

.expertise-feature-copy span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.expertise-feature-copy h3 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 4.2rem);
  line-height: 1.04;
  font-weight: 760;
}

.expertise-feature-copy p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.expertise-feature-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.expertise-feature-metrics span {
  display: grid;
  place-items: center;
  min-height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(2, 16, 32, 0.18);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 330px;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 226, 232, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 37, 62, 0.14);
  isolation: isolate;
}

.visual-card.tall {
  grid-row: auto;
}

.visual-card.wide {
  grid-column: auto;
}

.visual-card img {
  visibility: visible;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.02);
  transition: transform 220ms ease;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 40, 74, 0.02), rgba(18, 40, 74, 0.78)),
    linear-gradient(135deg, rgba(15, 158, 213, 0.28), transparent 44%, rgba(233, 113, 50, 0.2));
}

.visual-card::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  box-shadow: 0 14px 30px rgba(16, 37, 62, 0.22);
  font-size: 1.35rem;
  font-weight: 900;
}

.visual-card:nth-child(1)::before { content: "ERP"; font-size: 0.82rem; }
.visual-card:nth-child(2)::before { content: "DC"; font-size: 0.95rem; background: linear-gradient(135deg, var(--navy), var(--cyan)); }
.visual-card:nth-child(3)::before { content: "@"; background: linear-gradient(135deg, var(--teal), var(--green)); }
.visual-card:nth-child(4)::before { content: "IoT"; font-size: 0.82rem; background: linear-gradient(135deg, var(--amber), var(--orange)); }
.visual-card:nth-child(5)::before { content: "VPN"; font-size: 0.78rem; background: linear-gradient(135deg, var(--red), var(--orange)); }
.visual-card:nth-child(6)::before { content: "DR"; font-size: 0.95rem; background: linear-gradient(135deg, var(--cyan), var(--teal)); }

.visual-card:hover img {
  transform: scale(1.08);
}

.visual-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 24px;
  color: #fff;
}

.visual-card span {
  color: #c9f5ff;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-card h3,
.visual-card p {
  color: #fff;
}

.solutions {
  background:
    linear-gradient(135deg, rgba(18, 40, 74, 0.97), rgba(14, 76, 122, 0.88) 54%, rgba(22, 127, 112, 0.9)),
    radial-gradient(circle at 90% 10%, rgba(245, 184, 75, 0.26), transparent 24rem);
}

.solutions .section-head h2,
.solutions .section-head p:not(.eyebrow) {
  color: #fff;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.solution-list span {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 104px;
  padding: 18px 16px 18px 74px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 16px 38px rgba(16, 37, 62, 0.16);
  font-weight: 750;
  line-height: 1.35;
}

.solution-list span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--amber), var(--orange)),
    #fff;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}

.solution-list span:nth-child(2)::before,
.solution-list span:nth-child(4)::before,
.solution-list span:nth-child(5)::before,
.solution-list span:nth-child(13)::before,
.solution-list span:nth-child(14)::before {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
}

.solution-list span:nth-child(3)::before,
.solution-list span:nth-child(15)::before,
.solution-list span:nth-child(28)::before {
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.solution-list span:nth-child(7)::before,
.solution-list span:nth-child(8)::before,
.solution-list span:nth-child(12)::before,
.solution-list span:nth-child(20)::before,
.solution-list span:nth-child(21)::before {
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.solution-list span:nth-child(6)::before,
.solution-list span:nth-child(9)::before,
.solution-list span:nth-child(10)::before,
.solution-list span:nth-child(11)::before {
  background: linear-gradient(135deg, var(--navy), var(--cyan));
}

.solution-list span::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 5px;
  transform: translateY(-50%);
}

.solution-list span:nth-child(1)::after {
  border-radius: 2px;
  border-top-width: 8px;
}

.solution-list span:nth-child(2)::after,
.solution-list span:nth-child(4)::after,
.solution-list span:nth-child(5)::after {
  width: 18px;
  height: 14px;
  border-radius: 2px;
  border-bottom-width: 7px;
}

.solution-list span:nth-child(6)::after,
.solution-list span:nth-child(20)::after,
.solution-list span:nth-child(21)::after {
  width: 20px;
  height: 12px;
  border-radius: 2px;
  border-top: 0;
  border-left: 0;
  transform: translateY(-50%) skewX(-14deg);
}

.solution-list span:nth-child(7)::after,
.solution-list span:nth-child(8)::after,
.solution-list span:nth-child(12)::after {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.solution-list span:nth-child(9)::after,
.solution-list span:nth-child(10)::after {
  width: 20px;
  height: 15px;
  border-radius: 2px 2px 7px 7px;
  border-top-width: 8px;
}

.solution-list span:nth-child(11)::after,
.solution-list span:nth-child(28)::after {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border-left-color: transparent;
}

.solution-list span:nth-child(13)::after,
.solution-list span:nth-child(17)::after {
  width: 18px;
  height: 18px;
  border-left: 0;
  border-top: 0;
  transform: translateY(-56%) rotate(45deg);
}

.why-grid,
.process-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.faq-grid {
  grid-template-columns: repeat(4, 1fr);
}

.faq-grid article {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 248, 0.96));
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process {
  background:
    radial-gradient(circle at 12% 12%, rgba(15, 158, 213, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #eef5f8 100%);
}

.process-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px 24px;
  overflow: hidden;
}

.process-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
}

.process-grid article::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 24px;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background:
    repeating-linear-gradient(45deg, rgba(18, 40, 74, 0.08) 0 2px, transparent 2px 8px),
    rgba(15, 158, 213, 0.09);
}

.process-grid article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.process-grid article:nth-child(3)::before {
  background: linear-gradient(90deg, var(--green), var(--teal));
}

.process-grid article:nth-child(4)::before {
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.process-grid span {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin-bottom: 42px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  box-shadow: 0 14px 30px rgba(16, 37, 62, 0.16);
  font-size: 0;
}

.process-grid span::before {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
}

.process-grid article:nth-child(1) span::before { content: "?"; }
.process-grid article:nth-child(2) span::before { content: "D"; }
.process-grid article:nth-child(3) span::before { content: "✓"; }
.process-grid article:nth-child(4) span::before { content: "∞"; }

.process-grid article:nth-child(2) span {
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.process-grid article:nth-child(3) span {
  background: linear-gradient(135deg, var(--green), var(--teal));
}

.process-grid article:nth-child(4) span {
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.why-grid article {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.why-grid h3 {
  color: #fff;
}

.industries {
  background:
    linear-gradient(135deg, #ffffff, #eef5f8);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}

.industry-grid span {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 136px;
  padding: 72px 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 37, 62, 0.08);
  text-align: center;
  font-weight: 750;
}

.industry-grid span::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  box-shadow: 0 14px 28px rgba(15, 158, 213, 0.18);
  transform: translateX(-50%) rotate(8deg);
}

.industry-grid span::after {
  content: "";
  position: absolute;
  top: 33px;
  left: 50%;
  width: 20px;
  height: 16px;
  border: 3px solid #fff;
  border-top: 0;
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
}

.industry-grid span:nth-child(4n + 2)::before {
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.industry-grid span:nth-child(4n + 3)::before {
  background: linear-gradient(135deg, var(--green), var(--teal));
}

.industry-grid span:nth-child(4n)::before {
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.industry-grid span:nth-child(1)::after {
  width: 22px;
  height: 14px;
  border-radius: 2px;
  border-top-width: 8px;
}

.industry-grid span:nth-child(2)::after {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  border-bottom-width: 7px;
}

.industry-grid span:nth-child(3)::after {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.industry-grid span:nth-child(4)::after {
  width: 18px;
  height: 18px;
  border-left: 0;
  border-top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.industry-grid span:nth-child(5)::after {
  width: 20px;
  height: 16px;
  border-radius: 2px 2px 10px 10px;
  border-top-width: 8px;
}

.industry-grid span:nth-child(6)::after {
  width: 22px;
  height: 14px;
  border-radius: 2px;
  border-left: 0;
  border-right: 0;
}

.industry-grid span:nth-child(7)::after {
  width: 22px;
  height: 14px;
  border-radius: 1px;
  border-top: 0;
}

.industry-grid span:nth-child(8)::after {
  width: 20px;
  height: 18px;
  border-radius: 2px;
  border-top-width: 6px;
}

.industry-grid span:nth-child(9)::after {
  width: 20px;
  height: 18px;
  border-radius: 50% 50% 3px 3px;
}

.industry-grid span:nth-child(10)::after {
  width: 19px;
  height: 19px;
  border-radius: 4px;
  border-left-color: transparent;
  transform: translateX(-50%) rotate(45deg);
}

.intro,
.services,
.why,
.solutions,
.industries,
.process,
.faq {
  padding-inline: clamp(14px, 2vw, 28px);
}

.services .section-head,
.visual-services .section-head,
.solutions .section-head,
.industries .section-head,
.process .section-head,
.faq .section-head {
  max-width: 1040px;
}

.service-grid,
.solution-list,
.industry-grid,
.process-grid,
.faq-grid {
  width: 100%;
  max-width: 1500px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  min-height: 168px;
  padding: 20px;
  box-shadow: 0 18px 38px rgba(16, 37, 62, 0.1);
}

.service-card.feature {
  grid-column: auto;
  background: linear-gradient(135deg, #fff4ea 0%, #ffffff 100%);
}

.service-card:not(.feature) {
  grid-column: auto;
}

.service-card .icon {
  grid-row: 1 / span 2;
  grid-column: 1;
  align-self: center;
  width: 54px;
  height: 54px;
  margin: 2px 0 0;
  border-radius: 18px;
  font-size: 0;
  box-shadow: 0 16px 30px rgba(16, 37, 62, 0.15);
}

.service-card.feature h3 {
  color: var(--navy);
}

.service-card.feature p {
  color: var(--muted);
  opacity: 1;
}

.service-card h3 {
  grid-column: 2;
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.service-card p {
  grid-column: 2;
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.5;
}

.service-card::after {
  width: 56px;
  height: 56px;
  right: 12px;
  bottom: 12px;
  border-radius: 18px;
}

.service-card .icon::before {
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
}

.service-card:nth-child(1) .icon::before { content: "🧭"; }
.service-card:nth-child(2) .icon::before { content: "📊"; }
.service-card:nth-child(3) .icon::before { content: "🛠️"; }
.service-card:nth-child(4) .icon::before { content: "🛡️"; }
.service-card:nth-child(5) .icon::before { content: "🌐"; }
.service-card:nth-child(6) .icon::before { content: "☁️"; }
.service-card:nth-child(7) .icon::before { content: "🖥️"; }
.service-card:nth-child(8) .icon::before { content: "💾"; }
.service-card:nth-child(9) .icon::before { content: "💻"; }
.service-card:nth-child(10) .icon::before { content: "📦"; }
.service-card:nth-child(11) .icon::before { content: "🎥"; }
.service-card:nth-child(12) .icon::before { content: "🔌"; }
.service-card:nth-child(13) .icon::before { content: "📁"; }
.service-card:nth-child(14) .icon::before { content: "📡"; }
.service-card:nth-child(15) .icon::before { content: "🚀"; }
.service-card:nth-child(16) .icon::before { content: "🧩"; }
.service-card:nth-child(17) .icon::before { content: "✅"; }
.service-card:nth-child(18) .icon::before { content: "🎧"; }

.visual-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: minmax(260px, 19vw);
  gap: 14px;
}

.visual-card {
  grid-column: span 2;
}

.visual-card:nth-child(1),
.visual-card:nth-child(5) {
  grid-column: span 3;
}

.visual-card:nth-child(2) {
  grid-row: span 2;
}

.visual-card::before {
  width: 60px;
  height: 60px;
  border-radius: 20px;
}

.solutions {
  background:
    radial-gradient(circle at 12% 8%, rgba(245, 184, 75, 0.26), transparent 24rem),
    linear-gradient(135deg, #12284a 0%, #0e4c7a 42%, #167f70 76%, #e97132 100%);
}

.solution-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.solution-list span {
  min-height: 136px;
  padding: 74px 14px 16px;
  place-items: end center;
  text-align: center;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.11));
  box-shadow: 0 18px 38px rgba(2, 16, 32, 0.18);
  backdrop-filter: blur(14px);
}

.solution-list span::before,
.industry-grid span::before {
  top: 18px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #30b7ff, #2ed47a);
  box-shadow: 0 18px 30px rgba(16, 37, 62, 0.16);
  transform: translateX(-50%);
  font-size: 1.65rem;
  line-height: 1;
}

.solution-list span::after,
.industry-grid span::after {
  content: "";
  position: absolute;
  inset: auto 16px 12px;
  width: auto;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 158, 213, 0), rgba(15, 158, 213, 0.6), rgba(233, 113, 50, 0));
  transform: none;
}

.solution-list span:nth-child(6n + 1)::before,
.industry-grid span:nth-child(6n + 1)::before {
  background: linear-gradient(135deg, #29b6f6, #2ed47a);
}

.solution-list span:nth-child(6n + 2)::before,
.industry-grid span:nth-child(6n + 2)::before {
  background: linear-gradient(135deg, #ffb53f, #ff6f3c);
}

.solution-list span:nth-child(6n + 3)::before,
.industry-grid span:nth-child(6n + 3)::before {
  background: linear-gradient(135deg, #36d16f, #0f9ed5);
}

.solution-list span:nth-child(6n + 4)::before,
.industry-grid span:nth-child(6n + 4)::before {
  background: linear-gradient(135deg, #f25f7a, #8f6dff);
}

.solution-list span:nth-child(6n + 5)::before,
.industry-grid span:nth-child(6n + 5)::before {
  background: linear-gradient(135deg, #39c8ff, #5f78ff);
}

.solution-list span:nth-child(6n)::before,
.industry-grid span:nth-child(6n)::before {
  background: linear-gradient(135deg, #ff9548, #f04856);
}

.solution-list span:nth-child(1)::before { content: "🏢"; }
.solution-list span:nth-child(2)::before { content: "📊"; }
.solution-list span:nth-child(3)::before { content: "🧭"; }
.solution-list span:nth-child(4)::before { content: "⚙️"; }
.solution-list span:nth-child(5)::before { content: "🧾"; }
.solution-list span:nth-child(6)::before { content: "🖥️"; }
.solution-list span:nth-child(7)::before { content: "💾"; }
.solution-list span:nth-child(8)::before { content: "🛡️"; }
.solution-list span:nth-child(9)::before { content: "☁️"; }
.solution-list span:nth-child(10)::before { content: "✉️"; }
.solution-list span:nth-child(11)::before { content: "📡"; }
.solution-list span:nth-child(12)::before { content: "🗄️"; }
.solution-list span:nth-child(13)::before { content: "✅"; }
.solution-list span:nth-child(14)::before { content: "📁"; }
.solution-list span:nth-child(15)::before { content: "📈"; }
.solution-list span:nth-child(16)::before { content: "🏷️"; }
.solution-list span:nth-child(17)::before { content: "📦"; }
.solution-list span:nth-child(18)::before { content: "🌐"; }
.solution-list span:nth-child(19)::before { content: "🔐"; }
.solution-list span:nth-child(20)::before { content: "🧰"; }
.solution-list span:nth-child(21)::before { content: "🔌"; }
.solution-list span:nth-child(22)::before { content: "🎥"; }
.solution-list span:nth-child(23)::before { content: "👆"; }
.solution-list span:nth-child(24)::before { content: "🚚"; }
.solution-list span:nth-child(25)::before { content: "🛠️"; }
.solution-list span:nth-child(26)::before { content: "🎧"; }
.solution-list span:nth-child(27)::before { content: "🚀"; }
.solution-list span:nth-child(28)::before { content: "🧩"; }
.solution-list span:nth-child(29)::before { content: "🔎"; }

.industries {
  background:
    radial-gradient(circle at 84% 8%, rgba(233, 113, 50, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f2f7fa 100%);
}

.industry-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.industry-grid span {
  min-height: 158px;
  padding: 84px 16px 18px;
  border-color: rgba(214, 226, 232, 0.72);
  background:
    linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: 0 18px 38px rgba(16, 37, 62, 0.1);
}

.industry-grid span:nth-child(1)::before { content: "🏢"; }
.industry-grid span:nth-child(2)::before { content: "🎓"; }
.industry-grid span:nth-child(3)::before { content: "💚"; }
.industry-grid span:nth-child(4)::before { content: "🛍️"; }
.industry-grid span:nth-child(5)::before { content: "🛎️"; }
.industry-grid span:nth-child(6)::before { content: "🏠"; }
.industry-grid span:nth-child(7)::before { content: "🏭"; }
.industry-grid span:nth-child(8)::before { content: "🏬"; }
.industry-grid span:nth-child(9)::before { content: "🏛️"; }
.industry-grid span:nth-child(10)::before { content: "👥"; }

.process-grid {
  gap: 14px;
}

.process-grid article:nth-child(1) span::before { content: "🔍"; }
.process-grid article:nth-child(2) span::before { content: "🧭"; }
.process-grid article:nth-child(3) span::before { content: "🚀"; }
.process-grid article:nth-child(4) span::before { content: "🛠️"; }

.process-grid article,
.faq-grid article {
  box-shadow: 0 18px 38px rgba(16, 37, 62, 0.1);
}

.faq-grid {
  gap: 14px;
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1680px;
}

.why-grid article {
  position: relative;
  min-height: 260px;
  padding: 86px 24px 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  box-shadow: 0 18px 38px rgba(2, 16, 32, 0.2);
}

.why-grid article::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 16px 30px rgba(2, 16, 32, 0.18);
  font-size: 1.45rem;
}

.why-grid article::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.why-grid article:nth-child(1)::before { content: "🧩"; }
.why-grid article:nth-child(2)::before { content: "🧭"; background: linear-gradient(135deg, var(--amber), var(--orange)); }
.why-grid article:nth-child(3)::before { content: "🎧"; background: linear-gradient(135deg, var(--cyan), var(--navy)); }
.why-grid article:nth-child(4)::before { content: "📚"; background: linear-gradient(135deg, var(--red), var(--orange)); }

.why-grid article:nth-child(2)::after {
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

.why-grid article:nth-child(3)::after {
  background: linear-gradient(90deg, var(--cyan), var(--navy));
}

.why-grid article:nth-child(4)::after {
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.solution-list span {
  font-weight: 560;
}

.solution-list span:nth-child(30)::before {
  content: "📚";
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.contact-detail {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-detail span {
  color: var(--amber);
}

.contact-detail strong,
.contact-detail a {
  color: #fff;
}

.social-links a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.14);
}

.contact-form {
  background: #fff;
}

label {
  color: var(--ink);
}

input,
select,
textarea {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px clamp(20px, 4vw, 64px);
  color: #d9e6ef;
  border: 0;
  background: linear-gradient(105deg, #12284a 0%, #0e4c7a 68%, #167f70 100%);
}

.footer-brand {
  color: #fff;
}

.footer-links,
.footer-service-links {
  color: rgba(255, 255, 255, 0.84);
}

.footer-service-links a {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer .copyright {
  color: rgba(255, 255, 255, 0.64);
}

.image-frame img {
  visibility: visible;
}

.subpage-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 40, 74, 0.96), rgba(18, 40, 74, 0.8) 56%, rgba(14, 76, 122, 0.42)),
    url("assets/hero.webp") center right / cover no-repeat;
}

.subpage-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
}

.page-list li {
  color: var(--ink);
}

.related-pages a {
  color: var(--navy);
  border: 1px solid var(--line);
  background: #fff;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-graphics {
    max-width: 760px;
    margin: 0 auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.feature,
  .service-card:not(.feature) {
    grid-column: auto;
  }

  .expertise-feature {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-grid,
  .solution-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-grid {
    grid-auto-rows: 330px;
  }

  .visual-card,
  .visual-card:nth-child(1),
  .visual-card:nth-child(2),
  .visual-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .solution-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-card.tall,
  .visual-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 840px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(128px, 1fr) auto;
    min-height: 70px;
    padding: 8px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(108px, 40vw);
    height: auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    color: var(--ink);
    padding: 13px 12px;
  }

  .hero {
    min-height: auto;
    padding: 36px 16px 24px;
  }

  .hero-graphics {
    display: none;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-panel div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-head,
  .intro-grid,
  .consulting,
  .command-center,
  .contact,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .consulting-showcase {
    min-height: 0;
  }

  .intro-copy {
    order: -1;
  }

  .intro-orbit-card {
    min-height: 430px;
  }

  .section-head.compact {
    text-align: left;
  }

  .service-grid,
  .solution-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.feature,
  .service-card:not(.feature) {
    grid-column: auto;
  }

  .stat-row,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: min(102px, 38vw);
    height: auto;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3.05rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .service-card.feature,
  .service-card:not(.feature),
  .expertise-feature,
  .visual-grid,
  .solution-list,
  .industry-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: auto;
    padding: 18px;
  }

  .expertise-feature {
    min-height: 520px;
    padding: 24px;
  }

  .intro-orbit-card {
    min-height: 360px;
  }

  .consulting-heading,
  .consulting-copy {
    padding: 22px;
  }

  .consulting-showcase {
    display: block;
    grid-template-rows: none;
    min-height: 0;
  }

  .consulting-image {
    min-height: 260px;
    background-position: center;
  }

  .consulting-image::before {
    display: none;
  }

  .consulting-image::after {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .intro-orbit-card img {
    width: min(270px, 72vw);
  }

  .intro-metric {
    min-width: 92px;
    padding: 10px 12px;
    font-size: 0.86rem;
  }

  .expertise-feature-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .service-card.feature {
    grid-column: auto;
  }

  .visual-card {
    min-height: 310px;
  }

  .site-footer {
    display: grid;
    padding: 28px 16px;
  }
}
