/* SPARC Global Homepage — Enterprise redesign */
:root {
  --hi-navy: #071525;
  --hi-navy-mid: #0f2744;
  --hi-blue: #0070b0;
  --hi-blue-light: #1a7fd4;
  --hi-accent: #38bdf8;
  --hi-accent-soft: #7dd3fc;
  --hi-white: #ffffff;
  --hi-muted: #5c6b7f;
  --hi-surface: #f6f8fc;
  --hi-surface-alt: #eef3f9;
  --hi-border: rgba(255, 255, 255, 0.12);
  --hi-border-light: #e2e8f0;
  --hi-radius: 20px;
  --hi-radius-sm: 14px;
  --hi-shadow: 0 28px 70px rgba(7, 21, 37, 0.14);
  --hi-shadow-soft: 0 14px 44px rgba(7, 21, 37, 0.08);
  --hi-font: "DM Sans", system-ui, sans-serif;
  --hi-display: "Manrope", system-ui, sans-serif;
  --hi-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-index-page {
  background: var(--hi-surface);
  font-family: var(--hi-font);
}

body.home-index-page p {
  font-size: 1.02rem;
  line-height: 1.72;
}

/* ── Buttons ── */
.hi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--hi-ease), box-shadow 0.25s var(--hi-ease), background 0.25s var(--hi-ease), color 0.25s var(--hi-ease);
}

.hi-btn:hover { transform: translateY(-2px); text-decoration: none; }

.hi-btn--primary {
  background: var(--hi-white);
  color: var(--hi-navy);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.hi-btn--primary:hover { color: var(--hi-navy); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26); }

.hi-btn--dark {
  background: var(--hi-blue);
  color: var(--hi-white);
}

.hi-btn--dark:hover { background: var(--hi-blue-light); color: var(--hi-white); }

.hi-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--hi-white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hi-btn--ghost:hover { background: rgba(255, 255, 255, 0.14); color: var(--hi-white); }

.hi-btn--outline {
  border: 2px solid var(--hi-blue);
  color: var(--hi-blue);
  background: transparent;
}

.hi-btn--outline:hover { background: var(--hi-blue); color: var(--hi-white); }

.hi-text-accent {
  background: linear-gradient(115deg, var(--hi-accent-soft) 0%, var(--hi-accent) 50%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hi-section__cta { margin-top: 2.5rem; }

/* ── Hero ── */
.hi-hero {
  position: relative;
  margin-top: -82px;
  height: 100vh;
  min-height: 100vh;
  min-height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  padding: 82px 0 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--hi-navy);
  color: var(--hi-white);
  overflow: hidden;
}

/* Full-screen background video */
.hi-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hi-hero__video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.hi-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 21, 37, 0.88) 0%, rgba(7, 21, 37, 0.55) 45%, rgba(7, 21, 37, 0.25) 100%),
    linear-gradient(180deg, rgba(7, 21, 37, 0.4) 0%, transparent 35%, rgba(7, 21, 37, 0.5) 100%);
}

.hi-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 100% 80% at 30% 50%, #000 20%, transparent 75%);
  pointer-events: none;
}

.hi-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
  padding-bottom: 2.5rem;
}

.hi-hero__content {
  max-width: 52rem;
  padding: 1rem 0;
}

.hi-hero__separator {
  display: block;
  width: min(100%, 22rem);
  height: 1px;
  margin: 0 0 1.15rem;
  border: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12));
}

.hi-hero__trust-label {
  margin: 0 0 1.15rem;
  max-width: 36rem;
  font-size: clamp(0.95rem, 1.45vw, 1.12rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.78);
}

.hi-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.1);
  backdrop-filter: blur(6px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hi-accent-soft);
}

.hi-hero__title {
  font-family: var(--hi-display);
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.35rem;
  color: var(--hi-white);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
  max-width: max-content;
}

.hi-hero__title-line {
  display: block;
  white-space: nowrap;
}

.hi-hero__title-accent {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 0.15em;
  padding: 0.12em 0.6em 0.18em;
  color: var(--hi-white);
  background: var(--hi-blue);
  border-radius: 6px;
}

.hi-hero__lead {
  font-size: clamp(1.08rem, 1.65vw, 1.2rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hi-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hi-hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  animation: hi-scroll-bounce 2.2s ease-in-out infinite;
}

.hi-hero__scroll:hover {
  color: var(--hi-accent-soft);
  text-decoration: none;
}

@keyframes hi-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 991px) {
  .hi-hero__scroll { display: none; }
}

@media (max-width: 575px) {
  .hi-hero__title {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
    max-width: 100%;
  }

  .hi-hero__title-line {
    white-space: normal;
  }

  .hi-hero__actions {
    flex-direction: column;
  }

  .hi-hero__actions .hi-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hi-hero__video-bg {
    display: none;
  }

  .hi-hero__scroll {
    animation: none;
  }
}

/* ── Trust ── */
.hi-trust {
  position: relative;
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: linear-gradient(180deg, #f8fafc 0%, var(--hi-white) 100%);
  border-bottom: 1px solid var(--hi-border-light);
  overflow: hidden;
}

.hi-trust__fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(180deg, rgba(7, 21, 37, 0.06) 0%, transparent 100%);
  pointer-events: none;
}

.hi-trust__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.hi-trust__rule {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 86, 179, 0.25), transparent);
}

.hi-trust__label {
  margin: 0;
  text-align: center;
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  font-weight: 600;
  color: var(--hi-muted);
  letter-spacing: 0.01em;
  line-height: 1.5;
  max-width: 42rem;
}

.hi-trust__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.hi-trust__brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--hi-radius);
  background: var(--hi-white);
  border: 1px solid var(--hi-border-light);
  text-align: center;
}

.hi-trust__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100px;
  padding: 0.35rem 0.65rem;
}

.hi-trust__logo {
  display: block;
  max-width: 100%;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hi-trust__name {
  margin: 0;
  font-family: var(--hi-display);
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--hi-muted);
}

@media (max-width: 991px) {
  .hi-trust__strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hi-trust__rule {
    max-width: 48px;
  }
}

@media (max-width: 575px) {
  .hi-trust__head {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hi-trust__rule {
    max-width: 80px;
    width: 100%;
  }

  .hi-trust__strip {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── Sections ── */
.hi-section { padding: clamp(4.5rem, 8vw, 6.5rem) 0; }

.hi-section--alt { background: var(--hi-surface-alt); }

.hi-section--dark { background: var(--hi-navy); color: var(--hi-white); }

.hi-section--geoai {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--hi-white) 0%, var(--hi-surface-alt) 100%);
}

/* ── GeoAI ── */
.hi-geoai__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: var(--hi-surface-alt);
  background-image:
    radial-gradient(circle, rgba(0, 86, 179, 0.09) 1px, transparent 1px),
    radial-gradient(ellipse 50% 42% at 0% 50%, rgba(0, 86, 179, 0.05), transparent 58%),
    radial-gradient(ellipse 45% 38% at 100% 20%, rgba(56, 189, 248, 0.07), transparent 55%);
  background-size: 22px 22px, 100% 100%, 100% 100%;
  background-position: 0 0, 0 0, 0 0;
}

.hi-geoai-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hi-geoai__intro {
  max-width: 34rem;
}

.hi-geoai__intro h2 {
  margin-bottom: 1rem;
}

.hi-geoai__text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--hi-muted);
  margin-bottom: 1.65rem;
}

.hi-geoai-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: var(--hi-radius-sm);
  background: transparent;
  border: 1px solid #b1b7bd;
  overflow: hidden;
}

.hi-geoai-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.5rem 1.35rem;
  background: transparent;
  border-right: 1px solid #b1b7bd;
  border-bottom: 1px solid #b1b7bd;
}

.hi-geoai-card:nth-child(even) {
  border-right: 0;
}

.hi-geoai-card:nth-last-child(-n+2) {
  border-bottom: 0;
}

.hi-geoai-card__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.05rem;
  color: var(--hi-white);
  background: var(--hi-blue);
}

.hi-geoai-card h3 {
  margin: 0;
  font-family: var(--hi-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--hi-navy);
}

.hi-geoai-card__text {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--hi-muted);
}

.hi-section__head { margin-bottom: 2.75rem; }

.hi-section__kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hi-blue);
}

.hi-section--dark .hi-section__kicker { color: var(--hi-accent); }

.hi-section h2 {
  font-family: var(--hi-display);
  font-size: clamp(1.95rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  color: var(--hi-navy);
}

.hi-section--dark h2 { color: var(--hi-white); }

.hi-section__lead {
  font-size: 1.13rem;
  line-height: 1.7;
  color: var(--hi-muted);
  max-width: 44rem;
}

.hi-section--dark .hi-section__lead { color: rgba(255, 255, 255, 0.72); }

.hi-section__kicker--soft {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--hi-muted);
}

/* ── Differentiators ── */
.hi-section--diff {
  position: relative;
  background: #ffffff;
}

.hi-diff__bg {
  display: none;
}

.hi-section--diff .hi-section__head {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.hi-section--diff .hi-section__head h2 {
  color: var(--hi-navy);
  margin-bottom: 0.85rem;
}

.hi-section--diff .hi-section__lead {
  max-width: 40rem;
  color: var(--hi-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

.hi-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.hi-diff-card {
  display: flex;
  flex-direction: column;
  padding: 1.85rem 1.75rem 1.75rem;
  border-radius: var(--hi-radius);
  background: #ffffff;
  border: 1px solid #b1b7bd;
}

.hi-diff-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.35rem;
  background: #0070b0;
  color: var(--hi-white);
  font-size: 1.15rem;
}

.hi-diff-card h3 {
  font-family: var(--hi-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: var(--hi-navy);
  line-height: 1.35;
}

.hi-diff-card p {
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--hi-muted);
  margin: 0;
}

.hi-certs-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.25rem;
  margin-top: 1.25rem;
  padding: 1.65rem 2rem;
  border-radius: var(--hi-radius);
  background: #ffffff;
  border: 1px solid #b1b7bd;
}

.hi-certs-panel__lead {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.hi-certs-panel__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #0070b0;
  color: var(--hi-white);
  font-size: 1.35rem;
}

.hi-certs-panel__title {
  font-family: var(--hi-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--hi-navy);
  letter-spacing: 0.01em;
}

.hi-certs-panel__list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: min(100%, 560px);
}

.hi-certs-panel__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 1 1 0;
  min-width: 0;
  padding: 0.35rem 1.15rem;
  border-right: 1px solid #e2eaf5;
}

.hi-certs-panel__item:last-child {
  border-right: 0;
}

.hi-certs-panel__logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  min-height: 56px;
  padding: 0.45rem 0.75rem;



}

.hi-certs-panel__logo {
  display: block;
  width: auto;
  max-width: 120px;
  height: 52px;
  object-fit: contain;
}

.hi-certs-panel__logo-fallback {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hi-blue);
  font-size: 1.35rem;
}

.hi-certs-panel__label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hi-navy);
  text-align: center;
  line-height: 1.25;
}

.hi-certs-panel__sublabel {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--hi-muted);
  text-align: center;
  line-height: 1.2;
}

/* ── Metrics ── */
.hi-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hi-metric {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--hi-radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hi-border);
  transition: transform 0.3s var(--hi-ease), border-color 0.3s ease;
}

.hi-metric__value {
  display: block;
  font-family: var(--hi-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--hi-accent);
  line-height: 1.1;
}

.hi-metric__label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
}

/* ── Impact Projects (brand carousel) ── */
.hi-section--impact {
  position: relative;
  background: linear-gradient(105deg, #ffffff 0%, #f8fbff 48%, #f0f7ff 100%);
  color: var(--hi-navy);
  overflow: hidden;
}

.hi-impact__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

.hi-impact__head-main {
  max-width: 40rem;
}

.hi-impact__kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hi-blue);
}

.hi-section--impact h2 {
  margin: 0 0 0.85rem;
  font-family: var(--hi-display);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--hi-navy);
}

.hi-impact__lead {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.65;
  color: var(--hi-muted);
}

.hi-impact-carousel {
  position: relative;
}

.hi-impact-carousel__viewport {
  overflow: hidden;
  margin-right: -1rem;
}

.hi-impact-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 1rem 0.25rem 0;
  align-items: stretch;
}

.hi-impact-carousel__track::-webkit-scrollbar {
  display: none;
}

.hi-impact-card {
  position: relative;
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: var(--hi-radius-sm);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #b1b7bd;
}

.hi-impact-card__media {
  position: relative;
  flex-shrink: 0;
  height: 180px;
  overflow: hidden;
  background: #dbe4ef;
}

.hi-impact-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hi-impact-card__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.5rem 1.5rem;
  min-height: 200px;
}

.hi-impact-card__watermark {
  position: absolute;
  right: -0.25rem;
  bottom: -1rem;
  pointer-events: none;
  line-height: 1;
  color: rgba(0, 112, 176, 0.06);
}

.hi-impact-card__watermark i {
  font-size: clamp(7rem, 14vw, 9rem);
}

.hi-impact-card__brand-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.hi-impact-card__logo {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--hi-blue);
  color: var(--hi-white);
  font-size: 1rem;
}

.hi-impact-card__brand {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--hi-muted);
  line-height: 1.3;
}

.hi-impact-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.85rem;
  font-family: var(--hi-display);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--hi-navy);
}

.hi-impact-card__desc {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--hi-muted);
}

.hi-impact-carousel__footer {
  margin-top: 1.75rem;
}

.hi-impact__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--hi-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hi-impact__view-all:hover {
  color: var(--hi-navy);
  text-decoration: none;
}

.hi-impact__view-all i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.hi-impact__view-all:hover i {
  transform: translateX(3px);
}

.hi-impact-carousel__nav {
  display: flex;
  flex-shrink: 0;
  gap: 0.5rem;
}

.hi-impact-carousel__btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--hi-blue);
  border-radius: 50%;
  background: #ffffff;
  color: var(--hi-blue);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hi-impact-carousel__btn:hover {
  background: var(--hi-blue);
  border-color: var(--hi-blue);
  color: var(--hi-white);
  transform: none;
}

.hi-impact-carousel__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 767px) {
  .hi-impact__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hi-impact-carousel__nav {
    align-self: flex-end;
  }

  .hi-impact-card {
    flex-basis: min(300px, 86vw);
  }

  .hi-impact-card__media {
    height: 160px;
  }

  .hi-impact-card__body {
    min-height: 180px;
    padding: 1.15rem 1.25rem 1.35rem;
  }
}

/* ── Platform ecosystem (horizontal accordion) ── */
.hi-section--platforms {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 86, 179, 0.06), transparent 48%),
    radial-gradient(circle at 88% 78%, rgba(7, 21, 37, 0.05), transparent 42%),
    linear-gradient(180deg, var(--hi-surface-alt) 0%, var(--hi-white) 100%);
}

.hi-section--platforms::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 21, 37, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 21, 37, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hi-section--platforms > .container {
  position: relative;
  z-index: 1;
}

.hi-section--platforms .platform-interactive {
  height: min(52vh, 460px);
  min-height: 360px;
  border-radius: calc(var(--hi-radius) + 2px);
}

.hi-section--platforms .platform-panel {
  border-radius: calc(var(--hi-radius-sm) + 2px);
  transition: flex 0.55s var(--hi-ease);
}

.hi-section--platforms .platform-panel-content h3 {
  font-family: var(--hi-display);
  font-weight: 800;
}

.home-index-page .platform-panel-content p {
  font-size: clamp(15px, 1.2vw, 19px);
}

@media (max-width: 991px) {
  .hi-section--platforms .platform-interactive {
    min-height: auto;
    height: auto;
  }
}

@media (max-width: 575px) {
  .hi-section--platforms .platform-panel:not(.is-active) {
    min-height: 190px;
  }

  .hi-section--platforms .platform-panel.is-active {
    min-height: 340px;
  }
}

/* ── Services ── */
.hi-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hi-service {
  position: relative;
  border-radius: var(--hi-radius);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}

.hi-service__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s var(--hi-ease);
}

.hi-service__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 37, 0.1) 0%, rgba(7, 21, 37, 0.92) 100%);
}

.hi-service__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: var(--hi-white);
}

.hi-service__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hi-service__content h3 {
  font-family: var(--hi-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--hi-white);
  margin-bottom: 0.55rem;
}

.hi-service__content p {
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.88;
  margin-bottom: 1.15rem;
}

/* ── Process ── */
.hi-process {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hi-process__step {
  display: flex;
  gap: 1.25rem;
  padding: 1.65rem 1.85rem;
  border-radius: var(--hi-radius);
  background: var(--hi-white);
  border: 1px solid var(--hi-border-light);
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s var(--hi-ease);
}

.hi-process__step.is-active {
  border-color: rgba(0, 86, 179, 0.3);
}

.hi-process__step.is-active { transform: translateX(8px); }

.hi-process__num {
  flex-shrink: 0;
  font-family: var(--hi-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--hi-blue);
  opacity: 0.3;
  line-height: 1;
}

.hi-process__step.is-active .hi-process__num { opacity: 1; color: var(--hi-accent); }

.hi-process__step h3 {
  font-family: var(--hi-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--hi-navy);
  margin-bottom: 0.4rem;
}

.hi-process__step p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--hi-muted);
  margin: 0;
}

/* ── Industries ── */
.hi-industries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hi-industry {
  display: block;
  text-decoration: none;
  border-radius: var(--hi-radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  color: var(--hi-white);
  transition: transform 0.35s var(--hi-ease);
}

.hi-industry__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--hi-ease);
}

.hi-industry__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(7, 21, 37, 0.88) 100%);
}

.hi-industry span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-family: var(--hi-display);
  font-weight: 800;
  font-size: 0.95rem;
}

/* ── Technology stack ── */
.hi-section--tech {
  background: var(--hi-surface);
  border-top: 1px solid var(--hi-border-light);
  border-bottom: 1px solid var(--hi-border-light);
}

.hi-section__head--left {
  text-align: left;
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.hi-section__head--left .hi-section__lead {
  margin-left: 0;
  margin-right: 0;
}

.hi-tech-matrix {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: calc(var(--hi-radius) + 2px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--hi-border-light);
  overflow: hidden;
}

.hi-tech-matrix::before {
  content: "";
  position: absolute;
  top: -28%;
  right: -8%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, rgba(96, 165, 250, 0.08) 45%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.hi-tech-matrix::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(0, 86, 179, 0.22),
    rgba(56, 189, 248, 0.14) 35%,
    rgba(167, 139, 250, 0.1) 65%,
    transparent 85%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.9;
  pointer-events: none;
}

.hi-tech-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 11.5rem) minmax(0, 1fr);
  gap: 1.25rem 1.75rem;
  align-items: center;
  padding: 1.4rem 1.65rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
}

.hi-tech-row:nth-child(odd) {
  border-right: 1px solid rgba(226, 232, 240, 0.75);
}

.hi-tech-row:nth-last-child(-n+2) {
  border-bottom: 0;
}

.hi-tech-row--cloud {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.08) 0%, transparent 58%);
}

.hi-tech-row--ai {
  background: linear-gradient(225deg, rgba(167, 139, 250, 0.08) 0%, transparent 58%);
}

.hi-tech-row--gis {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.08) 0%, transparent 58%);
}

.hi-tech-row--satellite {
  background: linear-gradient(225deg, rgba(56, 189, 248, 0.08) 0%, transparent 58%);
}

.hi-tech-row--database {
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.1) 0%, transparent 58%);
}

.hi-tech-row--development {
  background: linear-gradient(225deg, rgba(244, 114, 182, 0.07) 0%, transparent 58%);
}

.hi-tech-row__meta {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.hi-tech-row__index {
  flex-shrink: 0;
  font-family: var(--hi-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--hi-muted);
  letter-spacing: 0.04em;
}

.hi-tech-row h3 {
  margin: 0;
  font-family: var(--hi-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--hi-navy);
  line-height: 1.3;
}

.hi-tech-row__tools {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 500;
  color: var(--hi-navy);
}

.hi-tech-row__sep {
  margin: 0 0.55rem;
  color: #b8c2d0;
  font-weight: 400;
}

/* ── Testimonials (carousel) ── */
.hi-section--testimonials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #ffffff 0%, #f8fbff 48%, #f0f7ff 100%);
  color: var(--hi-navy);
}

.hi-testimonials__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(0, 112, 176, 0.07) 1px, transparent 1px),
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(0, 112, 176, 0.05), transparent 58%),
    radial-gradient(ellipse 48% 42% at 0% 100%, rgba(56, 189, 248, 0.06), transparent 52%);
  background-size: 26px 26px, 100% 100%, 100% 100%;
}

.hi-testimonials__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.hi-testimonials__title {
  margin: 0;
  padding-bottom: 1rem;
  font-family: var(--hi-display);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--hi-navy);
}

.hi-testimonials__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 3px;
  border-radius: 999px;
  background: var(--hi-blue);
}

.hi-testimonials__head .hi-testimonials__title {
  position: relative;
}

.hi-testimonials-carousel {
  position: relative;
  z-index: 1;
}

.hi-testimonials-carousel__viewport {
  overflow: hidden;
  margin-right: -1rem;
}

.hi-testimonials-carousel__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 1rem 0.25rem 0;
  align-items: stretch;
}

.hi-testimonials-carousel__track::-webkit-scrollbar {
  display: none;
}

.hi-testimonials-carousel__nav {
  display: flex;
  flex-shrink: 0;
  gap: 0.5rem;
}

.hi-testimonials-carousel__btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--hi-blue);
  border-radius: 50%;
  background: #ffffff;
  color: var(--hi-blue);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hi-testimonials-carousel__btn:hover {
  background: var(--hi-blue);
  border-color: var(--hi-blue);
  color: var(--hi-white);
  transform: none;
}

.hi-testimonials-carousel__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.hi-testimonial {
  position: relative;
  flex: 0 0 min(640px, 88vw);
  scroll-snap-align: start;
  display: flex;
  margin: 0;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2.25rem);
  border-radius: var(--hi-radius);
  border: 1px solid #e8eef5;
  background: #ffffff;
  overflow: hidden;
}

.hi-testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hi-blue) 0%, var(--hi-accent) 50%, var(--hi-blue) 100%);
  pointer-events: none;
}

.hi-testimonial__inner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
}

.hi-testimonial__glyph {
  flex-shrink: 0;
  margin-top: -0.15rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--hi-blue);
  pointer-events: none;
  user-select: none;
}

.hi-testimonial__content {
  flex: 1;
  min-width: 0;
}

.hi-testimonial blockquote {
  margin: 0 0 1.25rem;
  font-size: clamp(1.18rem, 1.7vw, 1.28rem);
  font-weight: 500;
  line-height: 1.75;
  color: var(--hi-navy);
  font-style: normal;
}

.hi-testimonial figcaption {
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid var(--hi-blue);
}

.hi-testimonial cite {
  display: block;
  font-style: normal;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--hi-blue);
  line-height: 1.45;
}

/* ── Global presence ── */
.hi-section--global {
  background: var(--hi-surface-alt);
  border-top: 1px solid var(--hi-border-light);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: clamp(1.75rem, 3.5vh, 2.5rem) 0;
  box-sizing: border-box;
  overflow: hidden;
}

.hi-section--global > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(0.5rem, 1.2vh, 0.85rem);
  width: 100%;
  min-height: calc(100vh - clamp(3.5rem, 7vh, 5rem));
  min-height: calc(100dvh - clamp(3.5rem, 7vh, 5rem));
}

.hi-section--global .hi-section__head {
  margin-bottom: 0;
}

.hi-section--global h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  margin-bottom: 0.45rem;
}

.hi-section--global .hi-section__lead {
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  line-height: 1.5;
  max-width: 36rem;
  margin-bottom: 0;
}

.hi-global {
  width: 100%;
  max-width: min(1180px, 96vw);
  margin: 0 auto;
}

.hi-global__map {
  position: relative;
  width: min(100%, calc(clamp(320px, 58vh, 560px) * 950 / 510));
  aspect-ratio: 950 / 510;
  margin: 0 auto;
  background-color: transparent;
  overflow: hidden;
}

.hi-global__world-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}

.hi-global__pin {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
  transform: translate(-50%, -50%);
}

.hi-global__pin-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--hi-blue);
  border: 2px solid var(--hi-white);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.22);
  animation: hi-pin-pulse 2.8s ease-in-out infinite;
}

.hi-global__pin-label {
  padding: 0.26rem 0.62rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--hi-navy);
  background: var(--hi-white);
  border: 1px solid var(--hi-border-light);
  white-space: nowrap;
}

.hi-global__pin--ca .hi-global__pin-dot { animation-delay: 0s; }
.hi-global__pin--me .hi-global__pin-dot { animation-delay: 0.5s; }
.hi-global__pin--in .hi-global__pin-dot { animation-delay: 1s; }
.hi-global__pin--af .hi-global__pin-dot { animation-delay: 1.5s; }

@keyframes hi-pin-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ── Sustainability ── */
.hi-section--sustain {
  background: var(--hi-white);
}

.hi-section--sustain .hi-section__head {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.hi-sustain-pillars {
  display: flex;
  gap: 0.65rem;
  align-items: stretch;
}

.hi-sustain-pillar {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: clamp(460px, 62vh, 600px);
  border-radius: 18px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: var(--hi-white);
}

.hi-sustain-pillar__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s var(--hi-ease);
}

.hi-sustain-pillar__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, var(--pillar-overlay, rgba(7, 21, 37, 0.92)) 100%);
  transition: opacity 0.45s var(--hi-ease);
}

.hi-sustain-pillar__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.35rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.hi-sustain-pillar__content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(7, 21, 37, 0.78) 22%,
    rgba(7, 21, 37, 0.97) 100%
  );
  transition: background 0.45s var(--hi-ease);
}

.hi-sustain-pillar__title {
  margin: 0;
  font-family: var(--hi-display);
  font-size: clamp(0.68rem, 0.95vw, 0.8rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hi-white);
  padding-left: 0.7rem;
  border-left: 3px solid var(--pillar-accent, var(--hi-blue));
}

.hi-sustain-pillar__desc {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.96);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.5s var(--hi-ease),
    opacity 0.35s ease,
    margin-top 0.35s ease;
}

.hi-sustain-pillar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hi-white);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.5s var(--hi-ease),
    opacity 0.35s ease,
    margin-top 0.35s ease;
}

.hi-sustain-pillar:hover .hi-sustain-pillar__bg,
.hi-sustain-pillar:focus-visible .hi-sustain-pillar__bg {
  transform: scale(1.06);
}

.hi-sustain-pillar:hover .hi-sustain-pillar__overlay,
.hi-sustain-pillar:focus-visible .hi-sustain-pillar__overlay {
  opacity: 0.35;
}

.hi-sustain-pillar:hover .hi-sustain-pillar__content::before,
.hi-sustain-pillar:focus-visible .hi-sustain-pillar__content::before {
  background: rgba(7, 21, 37, 0.98);
}

.hi-sustain-pillar:hover .hi-sustain-pillar__desc,
.hi-sustain-pillar:focus-visible .hi-sustain-pillar__desc {
  max-height: 24rem;
  opacity: 1;
  margin-top: 0.75rem;
}

.hi-sustain-pillar:hover .hi-sustain-pillar__cta,
.hi-sustain-pillar:focus-visible .hi-sustain-pillar__cta {
  max-height: 2rem;
  opacity: 1;
  margin-top: 0.9rem;
}

.hi-sustain-pillar--forestry {
  --pillar-accent: #86efac;
  --pillar-overlay: rgba(6, 78, 59, 0.9);
}

.hi-sustain-pillar--climate {
  --pillar-accent: #5eead4;
  --pillar-overlay: rgba(15, 118, 110, 0.9);
}

.hi-sustain-pillar--carbon {
  --pillar-accent: #bfdbfe;
  --pillar-overlay: rgba(30, 58, 138, 0.9);
}

.hi-sustain-pillar--mining {
  --pillar-accent: #fca5a5;
  --pillar-overlay: rgba(7, 21, 37, 0.94);
}

.hi-sustain-pillar--agriculture {
  --pillar-accent: #bef264;
  --pillar-overlay: rgba(54, 83, 20, 0.9);
}

.hi-sustain-pillar--governance {
  --pillar-accent: #f0abfc;
  --pillar-overlay: rgba(88, 28, 135, 0.9);
}

.hi-sustain-pillar:focus-visible {
  outline: 2px solid var(--hi-blue);
  outline-offset: 3px;
}

/* ── Insights ── */
.hi-insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hi-insight {
  border-radius: var(--hi-radius);
  overflow: hidden;
  background: var(--hi-white);
  border: 1px solid var(--hi-border-light);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--hi-ease);
}

.hi-insight__thumb {
  height: 210px;
  background-size: cover;
  background-position: center;
  background-color: #dbe4ef;
}

.hi-insight__body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hi-insight__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hi-blue);
  margin-bottom: 0.45rem;
}

.hi-insight h3 {
  font-family: var(--hi-display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--hi-navy);
  margin: 0 0 auto;
  padding-bottom: 1rem;
}

.hi-insight__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--hi-blue);
}

.hi-insight__link i { transition: transform 0.25s ease; }

/* ── Pre-footer ── */
.hi-prefooter {
  padding: 3.5rem 0;
  background: #0d1f35;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
}

.hi-prefooter h4 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hi-accent);
  margin-bottom: 1rem;
}

.hi-prefooter ul { list-style: none; padding: 0; margin: 0; }
.hi-prefooter li { padding: 0.3rem 0; line-height: 1.5; }
.hi-prefooter a { color: rgba(255, 255, 255, 0.85); }
.hi-prefooter a:hover { color: var(--hi-accent-soft); }
.hi-prefooter__email { margin-top: 0.75rem; margin-bottom: 0; }

.hi-newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.hi-newsletter input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--hi-border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--hi-white);
  font-size: 0.88rem;
}

.hi-newsletter input::placeholder { color: rgba(255, 255, 255, 0.45); }

.hi-newsletter button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--hi-blue);
  color: var(--hi-white);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hi-newsletter button:hover { background: var(--hi-blue-light); transform: scale(1.05); }

/* ── CTA ── */
.hi-cta { padding: 0 0 clamp(4rem, 8vw, 6rem); }

.hi-cta__panel {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: calc(var(--hi-radius) + 4px);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(56, 189, 248, 0.18), transparent 55%),
    linear-gradient(145deg, var(--hi-navy) 0%, #0d3a6e 55%, var(--hi-blue) 100%);
  color: var(--hi-white);
}

.hi-cta__panel h2 {
  font-family: var(--hi-display);
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--hi-white);
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.hi-cta__panel > p {
  font-size: 1.13rem;
  line-height: 1.7;
  opacity: 0.88;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.hi-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .hi-diff-grid { grid-template-columns: repeat(2, 1fr); }
  .hi-tech-matrix { grid-template-columns: 1fr; }
  .hi-tech-row:nth-child(odd) { border-right: 0; }
  .hi-tech-row:last-child { border-bottom: 0; }
  .hi-industries { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991px) {
  .hi-metrics { grid-template-columns: repeat(2, 1fr); }
  .hi-services,
  .hi-insights { grid-template-columns: 1fr; }
  .hi-testimonials__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hi-testimonials-carousel__nav {
    align-self: flex-end;
  }

  .hi-testimonial {
    flex-basis: min(520px, 90vw);
  }

  .hi-geoai-layout { grid-template-columns: 1fr; }
  .hi-geoai__intro { max-width: none; }
  .hi-industries { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .hi-diff-grid { grid-template-columns: 1fr; }
  .hi-tech-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.2rem 1.25rem;
  }
  .hi-certs-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.35rem;
  }
  .hi-certs-panel__list {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem;
  }
  .hi-certs-panel__item {
    min-width: calc(50% - 0.25rem);
    flex: 1 1 calc(50% - 0.25rem);
  }
  .hi-geoai-matrix { grid-template-columns: 1fr; }
  .hi-geoai-card {
    border-right: 0;
    border-bottom: 1px solid var(--hi-border-light);
  }
  .hi-geoai-card:nth-child(even) { border-right: 0; }
  .hi-geoai-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--hi-border-light); }
  .hi-geoai-card:last-child { border-bottom: 0; }
  .hi-sustain-pillars {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
  }

  .hi-sustain-pillar {
    flex: 0 0 min(68vw, 260px);
    scroll-snap-align: start;
    min-height: 480px;
  }

  .hi-sustain-pillar__content::before {
    background: rgba(7, 21, 37, 0.96);
  }

  .hi-sustain-pillar__desc {
    max-height: none;
    opacity: 1;
    margin-top: 0.75rem;
  }

  .hi-sustain-pillar__cta {
    max-height: none;
    opacity: 1;
    margin-top: 0.9rem;
  }

  .hi-industries { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .hi-section { padding: 3.5rem 0; }
  .hi-section--global {
    padding: clamp(1.5rem, 3vh, 2rem) 0;
  }
  .hi-section--global > .container {
    gap: 0.5rem;
    min-height: calc(100vh - 3.5rem);
    min-height: calc(100dvh - 3.5rem);
  }
  .hi-global__map {
    width: min(100%, calc(clamp(240px, 42vh, 360px) * 950 / 510));
  }
  .hi-metrics { grid-template-columns: repeat(2, 1fr); }
}
