/* ============================================================
   Aryabh Corp — Global Stylesheet
   Brand: Teal #167B81  •  Gold #E1C68F
   ============================================================ */

:root {
  --teal: #167b81;
  --teal-dark: #0f5a5f;
  --teal-soft: #e7f2f2;
  --gold: #e1c68f;
  --gold-soft: #f7efdd;
  --ink: #1d2b2c;
  --muted: #5c6f70;
  --line: #e6ecec;
  --bg: #ffffff;
  --bg-alt: #f6faf9;
  --shadow-sm: 0 2px 8px rgba(22, 123, 129, .06);
  --shadow-md: 0 12px 32px rgba(22, 123, 129, .12);
  --shadow-lg: 0 24px 60px rgba(15, 90, 95, .16);
  --radius: 14px;
  --radius-sm: 10px;
  --nav-h: 78px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

/* ============================================================
   NAVBAR
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease),
              background .4s var(--ease);
}
.nav.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
  background: rgba(255, 255, 255, .92);
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ---- Logo ---- */
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__brand img { height: 70px; width: auto; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav__brand-name {
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: .04em;
  color: var(--teal);
}
.nav__brand-sub {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ---- Menu ---- */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 9px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.nav__link:hover,
.nav__link:focus-visible { color: var(--teal); outline: none; }
.nav__item.is-active > .nav__link { color: var(--teal); }

/* animated underline */
.nav__link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__link:hover::after,
.nav__item.is-open > .nav__link::after { transform: scaleX(1); }

/* caret */
.nav__caret {
  width: 11px; height: 11px;
  transition: transform .35s var(--ease);
}
.nav__item.is-open .nav__caret { transform: rotate(180deg); }

/* ---- Dropdown ---- */
.nav__dropdown {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  min-width: 290px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease),
              visibility .3s var(--ease);
}
.nav__item.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
/* little notch */
.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -7px; left: 50%;
  width: 14px; height: 14px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.nav__drop-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: .92rem;
  font-weight: 500;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav__drop-link:hover { background: var(--teal-soft); transform: translateX(3px); }
.nav__drop-ic {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--gold-soft);
  color: var(--teal);
}
.nav__drop-ic svg { width: 18px; height: 18px; }
.nav__drop-link:hover .nav__drop-ic { background: var(--teal); color: #fff; }
.nav__drop-tt { display: flex; flex-direction: column; }
.nav__drop-title { font-weight: 600; }
.nav__drop-desc { font-size: .76rem; color: var(--muted); font-weight: 400; }

/* ---- CTA + hamburger ---- */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--teal);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(22, 123, 129, .28);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.nav__cta:hover {
  transform: translateY(-2px);
  background: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(22, 123, 129, .38);
}

.nav__burger {
  display: none;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--teal);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav.is-open-mobile .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open-mobile .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open-mobile .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile overlay */
.nav__scrim {
  position: fixed; inset: 0;
  background: rgba(15, 35, 36, .42);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
  z-index: 998;
}
.nav.is-open-mobile .nav__scrim { opacity: 1; visibility: visible; }

/* ============================================================
   RESPONSIVE NAV
   ============================================================ */
@media (max-width: 980px) {
  .nav__burger { display: flex; }
  .nav__cta { display: none; }

  .nav__menu {
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 86vw);
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: calc(var(--nav-h) + 16px) 18px 32px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    transform: translateX(105%);
    transition: transform .45s var(--ease);
    z-index: 999;
  }
  .nav.is-open-mobile .nav__menu { transform: translateX(0); }

  .nav__link {
    width: 100%;
    justify-content: space-between;
    padding: 15px 14px;
    font-size: .9rem;
    border-radius: 11px;
  }
  .nav__link::after { display: none; }
  .nav__link:hover { background: var(--teal-soft); }

  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    box-shadow: none;
    border: none;
    padding: 0 0 8px 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
  }
  .nav__dropdown::before { display: none; }
  .nav__item.is-open .nav__dropdown { max-height: 520px; transform: none; }
  .nav__drop-desc { display: none; }

  /* in-menu contact CTA */
  .nav__menu .nav__menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
    padding: 15px 22px;
    background: var(--teal);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .04em;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(22, 123, 129, .28);
  }
  .nav__menu-cta:hover { background: var(--teal-dark); }
}

/* hidden on desktop (only inside the mobile panel) */
.nav__menu-cta { display: none; }

@media (max-width: 480px) {
  .nav__inner { padding: 0 16px; }
  .nav__brand-sub { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 80px;
  background:
    radial-gradient(60% 80% at 85% -10%, rgba(225, 198, 143, .28), transparent 60%),
    radial-gradient(55% 70% at 5% 110%, rgba(22, 123, 129, .12), transparent 60%),
    linear-gradient(180deg, #fbfdfd 0%, #f3f9f8 100%);
}
/* faint grid texture */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(22, 123, 129, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 123, 129, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 40%, transparent 100%);
          mask-image: radial-gradient(70% 60% at 50% 30%, #000 40%, transparent 100%);
  pointer-events: none;
}
/* floating brand orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .5;
  pointer-events: none;
}
.hero__orb--1 { width: 220px; height: 220px; top: 12%; right: 8%;
  background: radial-gradient(circle at 30% 30%, var(--gold), transparent 70%);
  animation: floatY 9s var(--ease) infinite; }
.hero__orb--2 { width: 160px; height: 160px; bottom: 14%; left: 6%;
  background: radial-gradient(circle at 30% 30%, rgba(22,123,129,.5), transparent 70%);
  animation: floatY 11s var(--ease) infinite reverse; }
@keyframes floatY {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(-26px) translateX(10px); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.hero__head { margin: 0 auto; text-align: center; }

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(22, 123, 129, .18);
  box-shadow: var(--shadow-sm);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--teal-dark);
  backdrop-filter: blur(6px);
}
.hero__kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(225, 198, 143, .35);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(225, 198, 143, .35); }
  50%      { box-shadow: 0 0 0 8px rgba(225, 198, 143, .12); }
}

.hero__title {
  margin: 22px 0 0;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
}
.hero__title .grad {
  background: linear-gradient(100deg, var(--teal) 20%, #2aa0a6 55%, var(--gold) 110%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  margin: 20px auto 0;
  max-width: 640px;
  font-size: 15px;
  /* font-weight: 600; */
  color: var(--teal-dark);
  letter-spacing: .01em;
}

/* contact options */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .3s var(--ease), color .3s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 26px rgba(22, 123, 129, .3);
}
.btn--primary:hover {
  transform: translateY(-3px);
  background: var(--teal-dark);
  box-shadow: 0 18px 34px rgba(22, 123, 129, .4);
}
.btn--ghost {
  background: #fff;
  color: var(--teal-dark);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}
.hero__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: 22px;
}
.hero__contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .25s var(--ease);
}
.hero__contact:hover { color: var(--teal); }
.hero__contact svg { width: 17px; height: 17px; color: var(--teal); }

/* ---- Verticals showcase ---- */
.hero__verticals {
  position: relative;
  margin-top: 52px;
}
.hero__vert-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__vert-label::before,
.hero__vert-label::after {
  content: "";
  height: 1px; width: 56px;
  background: linear-gradient(90deg, transparent, var(--line));
}
.hero__vert-label::after { background: linear-gradient(90deg, var(--line), transparent); }

.vert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* simple card: photo on top fading into white */
.vert-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.vert-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

/* image on top */
.vert-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.vert-card__media .scene {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.vert-card:hover .vert-card__media .scene { transform: scale(1.06); }
/* fade the bottom of the photo into the white card */
.vert-card__media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 60%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
}

/* content on white */
.vert-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 4px 26px 28px;
}
.vert-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
}
.vert-card__eyebrow .ic {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--teal-soft);
  color: var(--teal);
  transition: background .4s var(--ease), color .4s var(--ease);
}
.vert-card__eyebrow .ic svg { width: 15px; height: 15px; }
.vert-card:hover .vert-card__eyebrow .ic { background: var(--teal); color: #fff; }

.vert-card__body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.22;
  margin-bottom: 10px;
}
.vert-card__body p {
  font-size: .93rem;
  line-height: 1.55;
  color: var(--muted);
}
.vert-card__more {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--teal-soft);
  border: 1px solid transparent;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--teal);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
/* guaranteed breathing room above the button */
.vert-card__body p { margin-bottom: 26px; }
.vert-card__more svg {
  width: 16px; height: 16px;
  transition: transform .35s var(--ease);
}
.vert-card:hover .vert-card__more {
  background: var(--teal);
  color: #fff;
}
.vert-card:hover .vert-card__more svg { transform: translateX(5px); }

/* entrance animation */
[data-anim] {
  opacity: 0;
  transform: translateY(26px);
  animation: rise .8s var(--ease) forwards;
}
[data-anim="1"] { animation-delay: .05s; }
[data-anim="2"] { animation-delay: .18s; }
[data-anim="3"] { animation-delay: .31s; }
[data-anim="4"] { animation-delay: .44s; }
[data-anim="5"] { animation-delay: .57s; }
[data-anim="6"] { animation-delay: .70s; }
[data-anim="7"] { animation-delay: .83s; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  [data-anim], .hero__orb, .hero__kicker .dot { animation: none !important; opacity: 1; transform: none; }
}

/* The AI stack sits far below the fold. A load-time entrance animation can be
   throttled/skipped by the browser while off-screen (it may get stuck at
   opacity:0 on a live server). When JS adds `.js-reveal`, reveal on scroll-in
   instead of on load. Without JS the `.js-reveal` class is never added, so the
   default load-time animation above still applies — content is never hidden. */
#ai-stack.js-reveal [data-anim] {
  opacity: 0;
  transform: translateY(26px);
  animation: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
#ai-stack.js-reveal.is-in [data-anim] { opacity: 1; transform: none; }
#ai-stack.js-reveal [data-anim="2"] { transition-delay: .10s; }
#ai-stack.js-reveal [data-anim="3"] { transition-delay: .20s; }
#ai-stack.js-reveal [data-anim="4"] { transition-delay: .30s; }
@media (prefers-reduced-motion: reduce) {
  #ai-stack.js-reveal [data-anim] { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 860px) {
  .vert-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .hero { padding: 50px 0 72px; }
}

/* ============================================================
   SHARED SECTION HELPERS
   ============================================================ */
.section { padding: 92px 0; }
.section--alt { background: var(--bg-alt); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
}
.sec-eyebrow::before {
  content: "";
  width: 24px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.sec-title {
  margin-top: 16px;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.02em;
  color: var(--ink);
}

/* ============================================================
   WHO WE ARE  (dark brand section, no image)
   ============================================================ */
.who {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(38% 55% at 8% 12%, rgba(225, 198, 143, .18), transparent 60%),
    radial-gradient(45% 60% at 95% 95%, rgba(42, 160, 166, .35), transparent 60%),
    linear-gradient(155deg, #11666c 0%, #0d4d52 55%, #0a3c40 100%);
}
/* faint grid texture */
.who::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(75% 75% at 50% 40%, #000 35%, transparent 100%);
          mask-image: radial-gradient(75% 75% at 50% 40%, #000 35%, transparent 100%);
  pointer-events: none;
}
/* floating gold orb accent */
.who__orb {
  position: absolute;
  top: -90px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(225, 198, 143, .35), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
  animation: floatY 12s var(--ease) infinite;
}
.who .container { position: relative; z-index: 1; }

.who .sec-eyebrow { color: var(--gold); }
.who .sec-eyebrow::before { background: linear-gradient(90deg, var(--gold), #fff); }
.who .sec-title { color: #fff; }

.who__grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 60px;
  align-items: start;
}

/* left intro column */
.who__intro .sec-title { margin-bottom: 28px; }
.who__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.who__stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.who__stat:hover { background: rgba(255, 255, 255, .12); transform: translateX(4px); }
.who__stat b {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  min-width: 86px;
}
.who__stat span { font-size: .84rem; font-weight: 500; color: rgba(255, 255, 255, .82); }

/* right text column */
.who__lead {
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, .86);
}
.who__lead + .who__lead { margin-top: 16px; }

/* credential badges */
.who__creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.cred {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.cred:hover { background: rgba(225, 198, 143, .18); border-color: var(--gold); transform: translateY(-2px); }
.cred svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }

/* capabilities strip */
.who__caps {
  margin-top: 56px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.who__caps-label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 18px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.tag:hover { background: var(--gold); color: var(--teal-dark); transform: translateY(-2px); border-color: transparent; }
.tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.tag:hover::before { background: var(--teal-dark); }

@media (max-width: 900px) {
  .who__grid { grid-template-columns: 1fr; gap: 0px; }
  .section { padding: 64px 0; }
}

/* ============================================================
   VISION & MISSION
   ============================================================ */
/* soft distinct tint so this section reads apart from the AI section above */
.section--alt.vm {
  background: linear-gradient(180deg, #edf4f5 0%, #f2f8f7 55%, #f6faf9 100%);
}
.vm-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.vm-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 46px 44px;
  overflow: hidden;
}
/* large faint index */
.vm-card__no {
  position: absolute;
  top: 30px; right: 38px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--teal);
  opacity: .07;
  pointer-events: none;
}
/* header: icon + label + trailing hairline */
.vm-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.vm-card__ic {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  color: var(--teal);
}
.vm-card__ic svg { width: 22px; height: 22px; }
.vm-card__label {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
}
.vm-card__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.vm-card p {
  position: relative;
  font-size: 1.12rem;
  line-height: 1.74;
  color: var(--ink);
  font-weight: 400;
}
/* gold variant for the mission card */
.vm-card--gold .vm-card__no { color: var(--gold); opacity: .22; }
.vm-card--gold .vm-card__ic { border-color: #cdaa55; color: #b08828; }
.vm-card--gold .vm-card__label { color: #b08828; }

@media (max-width: 760px) {
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 38px 30px; }
}

/* ============================================================
   TECHNOLOGIES WE WORK WITH
   ============================================================ */
.tech__head { text-align: center; margin-bottom: 18px; }
.tech__head .sec-title { margin-top: 0; }

.tech__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.tech__tab {
  position: relative;
  padding: 14px 22px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color .3s var(--ease);
}
.tech__tab::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}
.tech__tab:hover { color: var(--teal); }
.tech__tab.is-active { color: var(--teal); }
.tech__tab.is-active::after { transform: scaleX(1); }

.tech__panels {
    position: relative;
    /* margin-top: 56px; */
    /* border-top: 1px solid var(--line); */
    padding-top: 30px;
}
.tech__panel { display: none; }
.tech__panel.is-active { display: block; }

.tech__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 56px;
}
.tech__item {
  width: 130px;
  text-align: center;
  color: var(--ink);
  opacity: 0;
  transform: translateY(14px);
}
.tech__panel.is-active .tech__item {
  animation: rise .55s var(--ease) forwards;
}
.tech__panel.is-active .tech__item:nth-child(1) { animation-delay: .04s; }
.tech__panel.is-active .tech__item:nth-child(2) { animation-delay: .10s; }
.tech__panel.is-active .tech__item:nth-child(3) { animation-delay: .16s; }
.tech__panel.is-active .tech__item:nth-child(4) { animation-delay: .22s; }
.tech__panel.is-active .tech__item:nth-child(5) { animation-delay: .28s; }
.tech__panel.is-active .tech__item:nth-child(6) { animation-delay: .34s; }
.tech__panel.is-active .tech__item:nth-child(7) { animation-delay: .40s; }
.tech__panel.is-active .tech__item:nth-child(8) { animation-delay: .46s; }

.tech__ic {
  height: 56px;
  display: grid;
  place-items: center;
  transition: transform .35s var(--ease), color .35s var(--ease);
}
.tech__ic svg { max-height: 52px; width: auto; max-width: 56px; }
.tech__item:hover .tech__ic { transform: translateY(-4px) scale(1.06); color: var(--teal); }
.tech__label {
  display: block;
  margin-top: 16px;
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 600px) {
  .tech__tab { padding: 11px 14px; font-size: .98rem; }
  .tech__grid { gap: 26px 34px; }
  .tech__item { width: 92px; }
  .tech__label { font-size: .88rem; }
}
@media (prefers-reduced-motion: reduce) {
  .tech__panel.is-active .tech__item { animation: none; opacity: 1; transform: none; }
}

/* ============================================================
   AI TECHNOLOGY STACK (LAYER BY LAYER)
   ============================================================ */
/* guard: the spinning orbit must never push the page sideways */
.ai { overflow-x: clip; }
/* split layout — copy on the left, orbit on the right */
.ai-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.ai-copy { max-width: 540px; }
.ai-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.ai-eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.ai-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.16;
  color: var(--ink);
}
.ai-title__icon {
  width: clamp(38px, 5vw, 54px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 14px rgba(22, 123, 129, .16));
}
.ai-lede {
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}
.ai-points {
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 12px;
  list-style: none;
}
.ai-points li {
  position: relative;
  padding-left: 30px;
  font-size: .95rem; font-weight: 500;
  color: var(--ink);
}
.ai-points li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23167b81' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat,
    var(--teal-soft);
}

@media (max-width: 900px) {
  .ai-split { grid-template-columns: 1fr; gap: clamp(20px, 6vw, 44px); }
  .ai-copy { max-width: 620px; margin: 0 auto; text-align: center; }
  .ai-title { justify-content: center; }
  .ai-eyebrow { justify-content: center; }
  .ai-points { max-width: 380px; margin-left: auto; margin-right: auto; text-align: left; }
}

/* tabs — match Technologies section (text + underline) */
.ai-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  margin-bottom: 8px;
}
.ai-tab {
  position: relative;
  padding: 14px 22px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color .3s var(--ease);
}
.ai-tab::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}
.ai-tab:hover { color: var(--teal); }
.ai-tab.is-active { color: var(--teal); }
.ai-tab.is-active::after { transform: scaleX(1); }

/* panels */
.ai-panel { display: none; }
.ai-panel.is-active {
  display: block;
  /* margin-top: 56px; */
  padding-top: 30px;
  /* border-top: 1px solid var(--line); */
  animation: rise .5s var(--ease) both;
}
.ai-card {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  padding: 38px 40px;
}
.ai-card__head {
  padding-bottom: 24px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.ai-card__name {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.ai-card__desc { font-size: .95rem; color: var(--muted); margin-top: 10px; }

.ai-groups { display: flex; flex-direction: column; gap: 22px; }
.ai-group {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 18px;
  align-items: start;
}
.ai-group + .ai-group { padding-top: 22px; border-top: 1px dashed var(--line); }
.ai-group__label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  padding-top: 18px;
}
.ai-chips { display: flex; flex-wrap: wrap; gap: 12px; }

/* logo-only tile */
.ai-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 58px;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ai-chip:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: var(--shadow-md); }
.ai-chip img {
  height: 30px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
}
/* text chip (no logo) — pill with brand dot */
.ai-chip--text {
  gap: 9px;
  min-width: 0;
  min-height: 0;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink);
}
.ai-chip--text::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .ai-tabs { justify-content: flex-start; }
  .ai-card { padding: 28px 22px; }
  .ai-group { grid-template-columns: 1fr; gap: 10px; }
  .ai-group__label { padding-top: 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px 56px;
}
.footer__brand img { height: 84px; width: auto; }

.footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  flex: 1;
}
.footer__contact { display: flex; flex-direction: column; gap: 6px; }
.footer__contact-head {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}
.footer__contact-head .ic {
  width: 30px; height: 30px;
  color: var(--teal);
  flex-shrink: 0;
}
.footer__contact-head .ic svg { width: 30px; height: 30px; }
.footer__contact a,
.footer__contact span.val {
  font-size: 1.05rem;
  color: var(--muted);
  transition: color .25s var(--ease);
}
.footer__contact a:hover { color: var(--teal); }

/* social */
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.footer__social a:hover {
  transform: translateY(-3px);
  background: var(--teal);
  border-color: transparent;
  color: #fff;
}
.footer__social svg { width: 20px; height: 20px; }

/* bottom bar */
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 36px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.footer__copy { font-size: 1rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.footer__note { font-size: 1rem; color: var(--muted); }

@media (max-width: 880px) {
  .footer__top { gap: 28px 40px; }
  .footer__brand img { height: 70px; }
  .footer__contacts { flex: 1 1 100%; order: 3; }
}
@media (max-width: 600px) {
  .footer { padding: 40px 0 24px; }
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .footer__brand img { height: 60px; }
  .footer__contacts {
    flex-direction: column;
    gap: 22px;
    order: 0;
  }
  .footer__social { width: 100%; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 28px;
  }
  .footer__copy { white-space: normal; }
}

/* ============================================================
   MOBILE REFINEMENTS
   ============================================================ */
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .hero__inner { padding: 0 15px; }
  .section { padding: 56px 0; }

  /* AI stack title wraps cleanly instead of overflowing */
  .ai-title { flex-wrap: wrap; gap: 10px; }

  /* tab rows wrap to new lines */
  .ai-tabs,
  .tech__tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 6px;
  }
  .ai-tab,
  .tech__tab { padding: 10px 14px; font-size: .92rem; }

  /* AI panels: less top gap on mobile */
  .ai-panel.is-active { margin-top: 36px; padding-top: 36px; }

  /* hide stats & credential badges on mobile */
  .who__stats,
  .who__creds { display: none; }

  .tech__label { margin-top: 0; }

  /* footer */
  .footer__contact-head { font-size: 1.1rem; }
  .footer__contact a { font-size: .98rem; }
  .footer__note { font-size: .92rem; }
  .footer__copy { font-size: .95rem; }
}

@media (max-width: 480px) {
  .nav__brand img { height: 52px; }
  .nav__inner { gap: 12px; }
  .hero__kicker { font-size: .72rem; letter-spacing: .02em; padding: 7px 14px; }
  .vert-card__body h3 { font-size: 1.15rem; }
}

@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .ai-card { padding: 24px 18px; }
}

/* ============================================================
   SUB-PAGE COMPONENTS (shared by detail pages)
   ============================================================ */

/* breadcrumb */
.crumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--muted); }
.crumb a { color: var(--muted); transition: color .25s var(--ease); }
.crumb a:hover { color: var(--teal); }
.crumb span { color: var(--teal); }
.crumb svg { width: 14px; height: 14px; opacity: .6; }

/* page hero */
.phero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
  background:
    radial-gradient(55% 75% at 90% -10%, rgba(225,198,143,.26), transparent 60%),
    radial-gradient(50% 65% at 0% 110%, rgba(22,123,129,.12), transparent 60%),
    linear-gradient(180deg, #fbfdfd 0%, #f3f9f8 100%);
}
.phero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}
.phero__title {
  margin-top: 18px;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
}
.phero__title .grad {
  background: linear-gradient(100deg, var(--teal) 20%, #2aa0a6 60%, var(--gold) 115%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.phero__lead {
  margin-top: 18px;
  max-width: 540px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}
.phero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.phero__visual { position: relative; }
.phero__visual-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
}
.phero__visual-img img { width: 100%; height: 100%; object-fit: cover; }
.phero__visual::before {
  content: "";
  position: absolute; top: 22px; right: -16px; bottom: -16px; left: 22px;
  border: 2px solid var(--gold); border-radius: 24px; z-index: -1;
}
.phero__chip {
  position: absolute;
  left: -18px; bottom: 26px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.86); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px; box-shadow: var(--shadow-md);
}
.phero__chip .gic { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: var(--teal); color: #fff; flex-shrink: 0; }
.phero__chip .gic svg { width: 20px; height: 20px; }
.phero__chip b { display: block; font-size: .98rem; color: var(--ink); }
.phero__chip span { font-size: .76rem; color: var(--muted); }

/* section heading helper (centered) */
.sec-head { max-width: 750px; margin: 0 auto 48px; text-align: center; }
.sec-head .sec-eyebrow { justify-content: center; }
.sec-head .sec-lead { margin-top: 16px; font-size: 1.02rem; line-height: 1.7; color: var(--muted); }

/* feature grid */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-grid.feat-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .feat-grid.feat-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid.feat-grid--4 { grid-template-columns: 1fr; } }
.feat-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feat-card__ic {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 14px; background: var(--teal-soft); color: var(--teal); margin-bottom: 18px;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.feat-card__ic svg { width: 26px; height: 26px; }
.feat-card:hover .feat-card__ic { background: var(--teal); color: #fff; }
.feat-card h3 { font-size: 1.12rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.feat-card p { font-size: .93rem; line-height: 1.6; color: var(--muted); }

/* compact module list grid */
.mod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mod {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.mod:hover { transform: translateY(-4px); border-color: var(--teal); }
.mod .ic { width: 38px; height: 38px; flex-shrink: 0; display: grid; place-items: center; border-radius: 10px; background: var(--gold-soft); color: var(--teal); }
.mod .ic svg { width: 20px; height: 20px; }
.mod b { font-size: .92rem; font-weight: 600; color: var(--ink); line-height: 1.25; }

/* split (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body .sec-title { margin-top: 14px; }
.split__body > p { margin-top: 16px; font-size: 1rem; line-height: 1.72; color: var(--muted); }

/* check list */
.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px 28px; margin-top: 26px; }
.check { display: grid; grid-template-columns: 24px 1fr; column-gap: 12px; row-gap: 3px; align-items: start; }
.check .ic { grid-row: 1 / span 2; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-soft); color: var(--teal); margin-top: 1px; }
.check .ic svg { width: 14px; height: 14px; }
.check b { font-weight: 600; color: var(--ink); font-size: .96rem; line-height: 1.35; }
.check span { font-size: .86rem; color: var(--muted); line-height: 1.5; }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.step { position: relative; }
.step__no {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; box-shadow: 0 8px 18px rgba(22,123,129,.3);
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.step p { font-size: .9rem; line-height: 1.6; color: var(--muted); }

/* stat band */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-b { text-align: center; }
.stat-b b { display: block; font-size: 2.4rem; font-weight: 700; line-height: 1; color: var(--gold); }
.stat-b span { display: block; margin-top: 8px; font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.82); }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: 26px; padding: 56px 56px;
  background:
    radial-gradient(40% 60% at 90% 10%, rgba(225,198,143,.22), transparent 60%),
    linear-gradient(150deg, #11666c, #0a3c40);
  color: #fff;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; max-width: 620px; }
.cta-band p { margin-top: 10px; color: rgba(255,255,255,.82); max-width: 560px; }
.cta-band .btn--primary { background: var(--gold); color: var(--teal-dark); }
.cta-band .btn--primary:hover { background: #efd9a6; }

/* faq */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1.08rem; font-weight: 600; color: var(--ink);
  padding: 22px 44px 22px 0; position: relative;
}
.faq__q::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--teal); transition: transform .3s var(--ease);
}
.faq__item.is-open .faq__q::after { content: "−"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 0 22px; color: var(--muted); line-height: 1.7; }

@media (max-width: 980px) {
  .phero__grid { grid-template-columns: 1fr; gap: 40px; }
  .phero__visual { max-width: 480px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .mod-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
}
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--rev .split__media { order: 0; }
  .checks { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .feat-grid { grid-template-columns: 1fr; }
  .mod-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 26px; }
}

/* feature cards: photo on top, text below, all in one row */
.feat-card--img { padding: 0; overflow: hidden; }
.feat-card--img .feat-card__img { position: relative; aspect-ratio: 5 / 3; overflow: hidden; }
.feat-card--img .feat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.feat-card--img:hover .feat-card__img img { transform: scale(1.06); }
/* fade the bottom of the photo into the white card */
.feat-card--img .feat-card__img::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 100%);
  pointer-events: none;
}
.feat-card--img .feat-card__bd { position: relative; padding: 10px 26px 28px; }

/* ============================================================
   BUSINESS DEVELOPMENT WORKFLOWS PAGE
   ============================================================ */

/* ---- dark hero band ---- */
.bdw-hero {
  position: relative; overflow: hidden; color: #fff;
  padding: 60px 0 76px;
  background:
    radial-gradient(40% 60% at 10% 8%, rgba(225,198,143,.18), transparent 60%),
    radial-gradient(45% 60% at 96% 100%, rgba(42,160,166,.35), transparent 60%),
    linear-gradient(155deg, #11666c 0%, #0d4d52 55%, #0a3c40 100%);
}
.bdw-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(75% 75% at 50% 30%, #000 35%, transparent 100%);
          mask-image: radial-gradient(75% 75% at 50% 30%, #000 35%, transparent 100%);
  pointer-events: none;
}
.bdw-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.bdw-hero .crumb, .bdw-hero .crumb a { color: rgba(255,255,255,.7); }
.bdw-hero .crumb a:hover { color: #fff; }
.bdw-hero .crumb span { color: var(--gold); }
.bdw-hero .sec-eyebrow { color: var(--gold); }
.bdw-hero .sec-eyebrow::before { background: linear-gradient(90deg, var(--gold), #fff); }
.bdw-hero__title { margin-top: 16px; font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; }
.bdw-hero__title .grad { background: linear-gradient(100deg, #fff 30%, var(--gold) 115%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bdw-hero__lead { margin-top: 18px; max-width: 520px; font-size: 1.08rem; line-height: 1.7; color: rgba(255,255,255,.85); }
.bdw-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.bdw-hero .btn--ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); color: #fff; box-shadow: none; }
.bdw-hero .btn--ghost:hover { background: rgba(255,255,255,.16); border-color: var(--gold); }

/* workflow node visual */
.wf-flow { display: flex; flex-direction: column; }
.wf-node {
  position: relative;
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px; backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(18px) scale(.98);
  animation: wfIn .6s var(--ease) forwards;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.wf-node:nth-of-type(1) { animation-delay: .15s; }
.wf-node:nth-of-type(3) { animation-delay: .45s; }
.wf-node:nth-of-type(5) { animation-delay: .75s; }
.wf-node:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.14);
  border-color: rgba(225,198,143,.55);
  box-shadow: 0 14px 30px rgba(7,24,26,.35);
}
@keyframes wfIn { to { opacity: 1; transform: translateY(0) scale(1); } }
.wf-node .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--gold); color: var(--teal-dark); display: grid; place-items: center; flex-shrink: 0; }
.wf-node .ic svg { width: 22px; height: 22px; }
/* glow ring that hops node to node */
.wf-node::after {
  content: ""; position: absolute; inset: -1px;
  border-radius: 14px; border: 1px solid var(--gold);
  opacity: 0; pointer-events: none;
  animation: wfPulse 4.5s var(--ease) infinite;
}
.wf-node:nth-of-type(1)::after { animation-delay: 1.4s; }
.wf-node:nth-of-type(3)::after { animation-delay: 2.9s; }
.wf-node:nth-of-type(5)::after { animation-delay: 4.4s; }
@keyframes wfPulse {
  0% { opacity: 0; transform: scale(1); }
  6% { opacity: .9; transform: scale(1); }
  20% { opacity: 0; transform: scale(1.04); }
  100% { opacity: 0; transform: scale(1.04); }
}
.wf-node b { display: block; font-size: .98rem; }
.wf-node span { font-size: .8rem; color: rgba(255,255,255,.7); }
/* connector: dashed line with dashes flowing downward */
.wf-conn {
  width: 2px; height: 24px; margin: 4px 0 4px 39px;
  background-image: linear-gradient(180deg, var(--gold) 55%, transparent 0);
  background-size: 2px 9px;
  background-repeat: repeat-y;
  transform-origin: top; transform: scaleY(0);
  animation: wfDraw .35s var(--ease) forwards, wfFlow .7s linear infinite;
}
.wf-conn:nth-of-type(2) { animation-delay: .45s, .45s; }
.wf-conn:nth-of-type(4) { animation-delay: .75s, .75s; }
@keyframes wfDraw { to { transform: scaleY(1); } }
@keyframes wfFlow { to { background-position-y: 9px; } }

@media (prefers-reduced-motion: reduce) {
  .wf-node, .wf-conn { animation: none; opacity: 1; transform: none; }
  .wf-node::after { animation: none; }
}

/* ---- before / after comparison ---- */
.pain-grid { align-items: start; }
.cmp { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
/* shift arrow between the two cards */
.cmp__arrow {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-dark);
  border: 4px solid #fff;
  box-shadow: 0 10px 24px rgba(15, 90, 95, .28);
  animation: cmpNudge 1.8s var(--ease) infinite;
}
.cmp__arrow svg { width: 24px; height: 24px; }
@keyframes cmpNudge {
  0%, 100% { transform: translate(-50%, -50%) translateX(-3px); }
  50%      { transform: translate(-50%, -50%) translateX(3px); }
}
@media (prefers-reduced-motion: reduce) { .cmp__arrow { animation: none; } }
.cmp__card { border-radius: 20px; padding: 32px 30px; border: 1px solid var(--line); }
.cmp__card--bad { background: #fdf3f2; border-color: #f1d8d4; }
.cmp__card--good { background: linear-gradient(160deg, var(--teal), var(--teal-dark)); color: #fff; border-color: transparent; box-shadow: var(--shadow-lg); }
.cmp__h { display: flex; align-items: center; gap: 11px; font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.cmp__card--bad .cmp__h { color: #b23a2c; }
.cmp__card--good .cmp__h { color: #fff; }
.cmp__sub { font-size: .86rem; color: var(--muted); margin-bottom: 18px; }
.cmp__card--bad .cmp__sub { color: #c08079; }
.cmp__card--good .cmp__sub { color: rgba(255,255,255,.75); }
.cmp__list { display: flex; flex-direction: column; }
.cmp__list li { display: flex; gap: 11px; align-items: flex-start; padding: 10px 0; font-size: .95rem; line-height: 1.5; border-top: 1px solid var(--line); }
.cmp__card--good .cmp__list li { border-top-color: rgba(255,255,255,.14); color: rgba(255,255,255,.92); }
.cmp__card--bad .cmp__list li { color: #8a6b66; border-top-color: #f1ddda; }
.cmp__list li:first-child { border-top: none; }
.cmp .mk { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.cmp__card--bad .mk { background: #f8ddd9; color: #cf4436; }
.cmp__card--good .mk { background: rgba(255,255,255,.2); color: #fff; }
.cmp .mk svg { width: 13px; height: 13px; }

/* ---- vertical tabs (solution areas) ---- */
.wf { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: start; }
.wf__nav { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 96px; }
.wf__tab {
  display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px;
  background: #fff; cursor: pointer; font-family: inherit;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.wf__tab .ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: var(--teal-soft); color: var(--teal); display: grid; place-items: center; transition: background .3s var(--ease), color .3s var(--ease); }
.wf__tab .ic svg { width: 22px; height: 22px; }
.wf__tab b { display: block; font-size: 1rem; font-weight: 700; color: var(--ink); }
.wf__tab span { font-size: .8rem; color: var(--muted); }
.wf__tab:hover { border-color: var(--teal); transform: translateX(3px); }
.wf__tab.is-active { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); border-color: transparent; box-shadow: var(--shadow-md); }
.wf__tab.is-active b, .wf__tab.is-active span { color: #fff; }
.wf__tab.is-active span { color: rgba(255,255,255,.8); }
.wf__tab.is-active .ic { background: rgba(255,255,255,.2); color: #fff; }

.wf__panel { display: none; }
.wf__panel.is-active { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; animation: rise .5s var(--ease) both; }
.wf__media { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.wf__media img { width: 100%; height: 100%; object-fit: cover; }
.wf__body h3 { font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.wf__body > p { font-size: 1rem; line-height: 1.7; color: var(--muted); margin-bottom: 18px; }
.wf__body ul { display: flex; flex-direction: column; gap: 11px; }
.wf__body li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--ink); }
.wf__body li .mk { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: var(--teal-soft); color: var(--teal); display: grid; place-items: center; margin-top: 1px; }
.wf__body li .mk svg { width: 13px; height: 13px; }

/* ---- impact metric cards ---- */
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.impact { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.impact:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.impact .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft); color: #b08828; display: grid; place-items: center; margin-bottom: 16px; }
.impact .ic svg { width: 24px; height: 24px; }
.impact b { display: block; font-size: 2.1rem; font-weight: 700; line-height: 1; color: var(--teal); }
.impact span { display: block; margin-top: 8px; font-size: .92rem; color: var(--muted); }

/* ---- engagement phases ---- */
.phase-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.phase { text-align: center; padding: 0 10px; }
.phase__no { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; display: grid; place-items: center; font-size: 1.2rem; font-weight: 700; box-shadow: 0 8px 18px rgba(22,123,129,.3); }
.phase h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.phase p { font-size: .92rem; line-height: 1.6; color: var(--muted); }

@media (max-width: 980px) {
  .bdw-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .pain-grid { grid-template-columns: 1fr; gap: 40px; }
  .cmp { grid-template-columns: 1fr; gap: 22px; }
  .cmp__arrow { animation: none; transform: translate(-50%, -50%) rotate(90deg); }
  .wf { grid-template-columns: 1fr; gap: 26px; }
  .wf__nav { position: static; flex-direction: row; flex-wrap: wrap; }
  .wf__tab { flex: 1 1 220px; }
  .wf__panel.is-active { grid-template-columns: 1fr; gap: 26px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .phase-flow { grid-template-columns: 1fr; gap: 28px; }
  .impact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GOVERNMENT PROJECTS PAGE
   ============================================================ */

/* immersive hero: image + brand-teal wash */
.gov-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 580px;
  padding: 96px 0;
  color: #fff;
}
.gov-hero__bg { position: absolute; inset: 0; z-index: 0; }
.gov-hero__bg img,
.gov-hero__bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.gov-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(8,38,40,.96) 0%, rgba(13,77,82,.9) 42%, rgba(10,60,64,.62) 100%),
    radial-gradient(60% 80% at 90% 110%, rgba(225,198,143,.22), transparent 60%);
}
.gov-hero .container { position: relative; z-index: 1; width: 100%; }
.gov-hero__inner { max-width: 720px; margin-right: auto; }
.gov-hero .crumb, .gov-hero .crumb a { color: rgba(255,255,255,.7); }
.gov-hero .crumb a:hover { color: #fff; }
.gov-hero .crumb span { color: var(--gold); }
.gov-hero .sec-eyebrow { color: var(--gold); }
.gov-hero .sec-eyebrow::before { background: linear-gradient(90deg, var(--gold), #fff); }
.gov-hero__title { margin-top: 16px; font-size: clamp(2.1rem, 4.8vw, 3.4rem); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
.gov-hero__title .grad { background: linear-gradient(100deg, #fff 30%, var(--gold) 120%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gov-hero__lead { margin-top: 18px; max-width: 560px; font-size: 1.08rem; line-height: 1.7; color: rgba(255,255,255,.88); }
.gov-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.gov-hero .btn--ghost { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); color: #fff; box-shadow: none; }
.gov-hero .btn--ghost:hover { background: rgba(255,255,255,.18); border-color: var(--gold); }
/* glass stat chips inside the hero */
.gov-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.gov-stat { padding: 14px 20px; border-radius: 14px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px); }
.gov-stat b { display: block; font-size: 1.2rem; font-weight: 700; line-height: 1; color: #fff; }
.gov-stat span { display: block; margin-top: 5px; font-size: .76rem; font-weight: 600; color: rgba(255,255,255,.72); }

/* two pillars */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pillar { background: linear-gradient(165deg, #f1faf9 0%, #ffffff 58%); border: 1px solid var(--line); border-radius: 22px; padding: 38px 34px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pillar--gold { background: linear-gradient(165deg, #fbf6ea 0%, #ffffff 58%); }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar__ic { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; background: var(--teal-soft); color: var(--teal); }
.pillar--gold .pillar__ic { background: var(--gold-soft); color: #b08828; }
.pillar__ic svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 1.4rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.pillar > p { font-size: .98rem; line-height: 1.65; color: var(--muted); margin-bottom: 22px; }
.pillar ul { display: grid; gap: 12px; }
.pillar li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--ink); }
.pillar li .mk { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: var(--teal-soft); color: var(--teal); display: grid; place-items: center; margin-top: 1px; }
.pillar--gold li .mk { background: var(--gold-soft); color: #b08828; }
.pillar li .mk svg { width: 13px; height: 13px; }

/* sectors grid */
.sectors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sector {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #f3faf9 0%, #ffffff 60%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
/* top accent bar wipes in on hover */
.sector::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.sector:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow-lg); }
.sector:hover::before { transform: scaleX(1); }
.sector .ic {
  width: 56px; height: 56px;
  margin: 0 auto;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--teal-soft);
  color: var(--teal);
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.sector:hover .ic { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; transform: scale(1.08) rotate(-4deg); }
.sector .ic svg { width: 26px; height: 26px; }
.sector b { display: block; margin-top: 16px; font-size: .96rem; font-weight: 600; color: var(--ink); line-height: 1.3; }

/* compliance band (on .who dark bg) */
.gov-comp { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.gov-comp__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; margin-top: 26px; }
.gov-comp__item { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: rgba(255,255,255,.9); }
.gov-comp__item .mk { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: rgba(255,255,255,.14); color: var(--gold); display: grid; place-items: center; margin-top: 1px; }
.gov-comp__item .mk svg { width: 13px; height: 13px; }
.gov-comp__card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: 20px; padding: 30px 28px; backdrop-filter: blur(6px); }
.gov-comp__card h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }

@media (max-width: 980px) {
  .pillars { grid-template-columns: 1fr; }
  .sectors { grid-template-columns: repeat(2, 1fr); }
  .gov-comp { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .gov-comp__list { grid-template-columns: 1fr; }
  .gov-stat { flex: 1 1 100%; }
}

/* ============================================================
   SERVICE / DOCS / CONTACT PAGE COMPONENTS
   ============================================================ */

/* service catalog grid (icon + title + desc) */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.svc-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); margin-bottom: 16px; transition: background .35s var(--ease), color .35s var(--ease); }
.svc-card:hover .svc-card__ic { background: var(--teal); color: #fff; }
.svc-card__ic svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 1.06rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.svc-card p { font-size: .9rem; line-height: 1.55; color: var(--muted); }

/* grouped category block (managed services) */
.cat { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px 30px; box-shadow: var(--shadow-sm); }
.cat + .cat { margin-top: 22px; }
.cat__head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.cat__ic { width: 50px; height: 50px; flex-shrink: 0; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; box-shadow: 0 8px 16px rgba(22,123,129,.28); }
.cat__ic svg { width: 25px; height: 25px; }
.cat__head h3 { font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.cat__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat__item { padding: 16px 18px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 13px; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.cat__item:hover { border-color: var(--teal); transform: translateY(-3px); }
.cat__item b { display: block; font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.cat__item span { font-size: .84rem; line-height: 1.5; color: var(--muted); }

/* documents: certificate cards */
.doc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.doc-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.doc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.doc-card__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-alt); }
.doc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.doc-card:hover .doc-card__img img { transform: scale(1.05); }
.doc-card__bd { padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.doc-card__bd b { font-size: .92rem; font-weight: 700; color: var(--ink); line-height: 1.35; }
.doc-card__view { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 700; color: var(--teal); }
.doc-card__view svg { width: 14px; height: 14px; }

/* logo wall (partners / clients / empanelment) */
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.logo-cell { display: grid; place-items: center; padding: 20px 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; min-height: 96px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.logo-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.logo-cell img { max-height: 56px; max-width: 100%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .8; transition: filter .3s var(--ease), opacity .3s var(--ease); }
.logo-cell:hover img { filter: grayscale(0); opacity: 1; }

/* simple name chips (empanelment / clients without logos) */
.name-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.name-chip { display: flex; align-items: center; gap: 11px; padding: 14px 18px; background: #fff; border: 1px solid var(--line); border-radius: 13px; box-shadow: var(--shadow-sm); font-size: .92rem; font-weight: 600; color: var(--ink); transition: border-color .3s var(--ease), transform .3s var(--ease); }
.name-chip:hover { border-color: var(--teal); transform: translateX(3px); }
.name-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* contact page */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.cmethod { display: flex; align-items: center; gap: 16px; padding: 22px 24px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.cmethod:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cmethod__ic { width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); }
.cmethod__ic svg { width: 26px; height: 26px; }
.cmethod b { display: block; font-size: 1.05rem; color: var(--ink); }
.cmethod a, .cmethod span.v { font-size: .95rem; color: var(--muted); }
.cmethod a:hover { color: var(--teal); }

.cform { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 34px 32px; box-shadow: var(--shadow-md); }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cfield { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.cfield label { font-size: .82rem; font-weight: 600; color: var(--ink); }
.cfield input, .cfield textarea { font-family: inherit; font-size: .95rem; color: var(--ink); padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px; background: var(--bg-alt); transition: border-color .25s var(--ease), background .25s var(--ease); }
.cfield input:focus, .cfield textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.cfield textarea { resize: vertical; min-height: 120px; }

@media (max-width: 980px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .cat__grid { grid-template-columns: repeat(2, 1fr); }
  .doc-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-wall { grid-template-columns: repeat(4, 1fr); }
  .name-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .cat__grid { grid-template-columns: 1fr; }
  .cat { padding: 24px 20px; }
  .doc-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .name-grid { grid-template-columns: 1fr; }
  .cform__row { grid-template-columns: 1fr; }
  .cform { padding: 26px 22px; }
}

/* ============================================================
   PORTFOLIO CASE BLOCKS
   ============================================================ */
.cases { display: flex; flex-direction: column; gap: 72px; }
.case { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.case--rev .case__media { order: 2; }
.case__shot { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; }
.case__shot img { width: 100%; height: auto; display: block; transition: transform .5s var(--ease); }
.case__shot:hover img { transform: scale(1.02); }
.case__thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.case__thumbs a { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s var(--ease); }
.case__thumbs a:hover { transform: translateY(-3px); border-color: var(--teal); }
.case__thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16 / 10; }
.case__body .sec-title { margin-top: 12px; }
.case__body > p { margin-top: 16px; font-size: 1rem; line-height: 1.72; color: var(--muted); }
.case__tag {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  padding: 8px 16px; border-radius: 999px; background: var(--teal-soft);
  font-size: .82rem; font-weight: 700; color: var(--teal-dark);
}
.case__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

@media (max-width: 860px) {
  .case { grid-template-columns: 1fr; gap: 28px; }
  .case--rev .case__media { order: 0; }
  .cases { gap: 56px; }
}

/* ============================================================
   INDEX2 — split hero (text left, logo right)  [scoped]
   ============================================================ */
.hero--split .hero__split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}
.hero--split .hero__head { max-width: none; margin: 0; text-align: left; }
.hero--split .hero__title { font-size: clamp(1.7rem, 3.2vw, 2.8rem); }
.hero--split .hero__sub { margin: 18px 0 0; }
.hero--split .hero__kicker { margin-left: 0; }
.hero--split .hero__actions { justify-content: flex-start; margin-top: 28px; }

.hero__logo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
}
/* soft brand glow behind the logo */
.hero__logo::before {
  content: "";
  position: absolute;
  width: 70%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,198,143,.35), transparent 65%);
  filter: blur(6px);
}
.hero__logo img {
  position: relative;
  width: min(340px, 78%);
  height: auto;
}

@media (max-width: 860px) {
  .hero--split .hero__split { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero--split .hero__head { text-align: center; }
  .hero--split .hero__kicker { margin: 0 auto; }
  .hero--split .hero__sub { margin: 18px auto 0; }
  .hero__logo { min-height: 0; order: -1; }
  .hero__logo img { width: min(240px, 60%); }
}
@media (prefers-reduced-motion: reduce) { .hero__logo img { animation: none; } }

/* ============================================================
   INDEX2 — logo "write" draw animation (A first, then C)
   ============================================================ */
.hero__logo .lg-svg { width: min(340px, 78%); height: auto; overflow: visible; }

/* A (teal) and C (gold) draw their outline, then fill in */
.hero__logo .lg-a,
.hero__logo .lg-c {
  stroke-width: 0.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  fill-opacity: 0;
}
.hero__logo .lg-a { stroke: #167b81; }
.hero__logo .lg-c { stroke: #e1c68f; }
/* A writes one stroke, then the next */
.hero__logo .lg-a1 { animation: lgDraw .85s ease forwards .25s, lgFill .45s ease forwards 1.9s; }
.hero__logo .lg-a2 { animation: lgDraw .7s ease forwards 1.15s, lgFill .45s ease forwards 1.9s; }
/* then the C draws */
.hero__logo .lg-c { stroke: #e1c68f; animation: lgDraw 1.0s ease forwards 2.15s, lgFill .5s ease forwards 3.15s; }

/* the wordmark text fades in last */
.hero__logo .lg-tx { opacity: 0; animation: lgFade .7s ease forwards 3.45s; }

@keyframes lgDraw { to { stroke-dashoffset: 0; } }
@keyframes lgFill { to { fill-opacity: 1; } }
@keyframes lgFade { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .hero__logo .lg-a,
  .hero__logo .lg-c { stroke-dashoffset: 0; fill-opacity: 1; animation: none; }
  .hero__logo .lg-tx { opacity: 1; animation: none; }
}

/* ============================================================
   INDEX2 — tech logos orbiting the logo (flat round rings)
   ============================================================ */
.hero__logo .logo-orbit {
  position: relative;
  width: min(560px, 104%);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.logo-orbit__core { position: relative; z-index: 1; width: 50%; }
.hero__logo .logo-orbit__core .lg-svg { width: 100%; height: auto; }

/* each orbit = a flat round ring carrying one icon */
.orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: var(--d); height: var(--d);
  margin-top: calc(var(--d) * -0.5);
  margin-left: calc(var(--d) * -0.5);
  border-radius: 50%;
  border: 1.5px solid transparent;
  z-index: 2;
  animation: orbSpin var(--dur) linear var(--start) infinite var(--dir),
             ringIn 1s ease 3.6s forwards;
}
@keyframes orbSpin { to { transform: rotate(360deg); } }
@keyframes ringIn { to { border-color: rgba(22, 123, 129, .07); } }

.orbit__chip { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); }
/* icon counter-rotates so it stays upright while it revolves */
.orbit__ic {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  color: var(--ink);
  opacity: 0;
  animation: orbSpinRev var(--dur) linear var(--start) infinite var(--dir),
             orbitIn .8s ease 3.7s forwards;
}
@keyframes orbSpinRev { to { transform: rotate(-360deg); } }
@keyframes orbitIn { to { opacity: 1; } }
.orbit__ic svg { width: 23px; height: 23px; }

@media (max-width: 600px) {
  .orbit__ic { width: 36px; height: 36px; border-radius: 11px; }
  .orbit__ic svg { width: 19px; height: 19px; }
}
@media (prefers-reduced-motion: reduce) {
  .orbit { animation: ringIn .1s linear forwards; }
  .orbit__ic { animation: orbitIn .1s linear forwards; }
}

/* ============================================================
   AI STACK — concentric tech orbit (icons ride the rings)
   Self-contained; does NOT touch the hero .hero__logo orbit.
   ============================================================ */
.ai-orbit {
  position: relative;
  width: min(500px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  isolation: isolate;
  /* room for the icon chips that ride the outer ring edge, so they
     never spill past the box and trigger horizontal page scroll */
  padding: clamp(30px, 7%, 40px);
}

/* soft glow behind the whole orbit */
.ai-orbit__aura {
  position: absolute; inset: 6%; z-index: 0; pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(22,123,129,.10), rgba(225,198,143,.08) 55%, transparent 72%);
}

/* each ring is a real circle; it slowly spins, carrying its icons */
.ai-orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(22,123,129,.20);
  z-index: 1;
  animation: aioSpin var(--dur, 46s) linear infinite var(--dir, normal);
}
.ai-orbit__ring--out { inset: 0; }
.ai-orbit__ring--in  { inset: 19%; border-style: solid; border-color: rgba(225,198,143,.35); }
@keyframes aioSpin { to { transform: rotate(360deg); } }

/* arm: rotates an icon to its angle on the ring */
.ai-orbit__arm {
  position: absolute; inset: 0;
  transform: rotate(var(--a, 0deg));
}
/* slot: parks the icon exactly on the ring line (12 o'clock of the arm) */
.ai-orbit__slot {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
}
/* spin: counter-rotates the ring's spin so the icon glyph stays level */
.ai-orbit__spin {
  display: block;
  animation: aioSpinRev var(--dur, 46s) linear infinite var(--dir, normal);
}
@keyframes aioSpinRev { to { transform: rotate(-360deg); } }

/* the visible icon chip; -a undoes the arm's angular tilt → upright */
.ai-orbit__ic {
  display: grid; place-items: center;
  width: clamp(44px, 8.5vw, 56px); aspect-ratio: 1;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  color: var(--teal);
  transform: rotate(calc(-1 * var(--a, 0deg)));
  transition: transform .25s var(--ease, ease), box-shadow .25s var(--ease, ease), border-color .25s var(--ease, ease);
}
.ai-orbit__ic svg { width: 52%; height: 52%; display: block; }
.ai-orbit__ic:hover {
  border-color: var(--teal);
  box-shadow: 0 14px 30px -12px rgba(22,123,129,.5);
  transform: rotate(calc(-1 * var(--a, 0deg))) scale(1.12);
}

/* central AI core */
.ai-orbit__core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: grid; place-items: center;
  width: 34%; aspect-ratio: 1;
}
.ai-orbit__disc {
  grid-area: 1 / 1;
  display: grid; place-items: center;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #fff 0%, #fff 60%, var(--bg-alt) 100%);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px -16px rgba(22,123,129,.45), inset 0 0 0 5px rgba(255,255,255,.7);
}
/* central logo — "writes" itself (A draws, then C), like the hero mark */
.ai-orbit .lg-svg { width: 72%; height: auto; display: block; overflow: visible; }
.ai-orbit .lg-a,
.ai-orbit .lg-c {
  stroke-width: 0.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  fill-opacity: 0;
}
.ai-orbit .lg-a { stroke: #167b81; }
.ai-orbit .lg-c { stroke: #e1c68f; }
.ai-orbit .lg-a1 { animation: lgDraw .8s ease forwards .35s,  lgFill .45s ease forwards 1.55s; }
.ai-orbit .lg-a2 { animation: lgDraw .6s ease forwards 1.05s, lgFill .45s ease forwards 1.55s; }
.ai-orbit .lg-c  { animation: lgDraw .95s ease forwards 1.7s, lgFill .5s  ease forwards 2.6s; }
.ai-orbit__pulse {
  grid-area: 1 / 1;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 1.5px solid rgba(22,123,129,.35);
  opacity: 0;
  animation: aioPulse 3.8s ease-out infinite;
}
.ai-orbit__pulse--2 { border-color: rgba(225,198,143,.45); animation-delay: 1.9s; }
@keyframes aioPulse {
  0%   { transform: scale(.75); opacity: .5; }
  70%  { opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (max-width: 600px) {
  .ai-orbit__ic { border-radius: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .ai-orbit__ring, .ai-orbit__spin, .ai-orbit__pulse { animation: none; }
  .ai-orbit .lg-a,
  .ai-orbit .lg-c { stroke-dashoffset: 0; fill-opacity: 1; animation: none; }
}

