﻿:root {
  --bg: #ffffff;
  --text: #0b1220;
  --muted: rgba(11, 18, 32, 0.72);
  --muted2: rgba(11, 18, 32, 0.56);
  --border: rgba(109, 94, 252, 0.16);
  --shadow: 0 20px 60px rgba(20, 20, 40, 0.10);
  --shadow2: 0 14px 40px rgba(20, 20, 40, 0.08);
  --glass: rgba(255, 255, 255, 0.62);
  --glass2: rgba(255, 255, 255, 0.78);

  --radius: 18px;
  --radiusSm: 14px;
  --container: 1180px;

  /* Helper Dynamics logo palette (blue + green + cyan) */
  --purple: #1976d2; /* brand blue */
  --violet: #0d47a1; /* deep blue */
  --teal: #2e7d32; /* brand green */
  --cyan: #38bdf8; /* soft cyan accent */
  --blue: #0ea5e9; /* azure accent */
  --ink: #0b1220;

  --grad: linear-gradient(135deg, rgba(25, 118, 210, 1), rgba(56, 189, 248, 1));
  --grad2: linear-gradient(135deg, rgba(13, 71, 161, 1), rgba(14, 165, 233, 1));
  --grad3: linear-gradient(135deg, rgba(46, 125, 50, 1), rgba(56, 189, 248, 1));

  --focus: 0 0 0 4px rgba(34, 211, 238, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-gradient {
  background: var(--grad2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient--alt {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient--teal {
  background: var(--grad3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 94, 252, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 30% 10%, rgba(0, 0, 0, 0.8), transparent 60%);
  opacity: 0.75;
}
.bg__orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.65;
  animation: floaty 10s ease-in-out infinite;
}
.bg__orb--1 {
  top: -220px;
  left: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(109, 94, 252, 0.65), transparent 65%);
}
.bg__orb--2 {
  top: 100px;
  right: -220px;
  background: radial-gradient(circle at 40% 30%, rgba(34, 211, 238, 0.55), transparent 70%);
  animation-duration: 12s;
}
.bg__orb--3 {
  bottom: -260px;
  left: 25%;
  background: radial-gradient(circle at 40% 30%, rgba(20, 184, 166, 0.40), transparent 70%);
  animation-duration: 14s;
}
@keyframes floaty {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 20%, rgba(109, 94, 252, 0.12), transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(34, 211, 238, 0.10), transparent 58%),
    #ffffff;
  z-index: 9999;
  transition: opacity 350ms ease, visibility 350ms ease;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loader__ring {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 3px solid rgba(109, 94, 252, 0.20);
  border-top-color: rgba(34, 211, 238, 0.85);
  animation: spin 1s linear infinite;
  box-shadow: var(--shadow2);
}
.loader__text {
  margin-top: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header / Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(109, 94, 252, 0.10);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.header__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109, 94, 252, 0.16), rgba(34, 211, 238, 0.14), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(109, 94, 252, 1), rgba(34, 211, 238, 1));
  position: relative;
  box-shadow: 0 18px 34px rgba(109, 94, 252, 0.22);
  overflow: hidden;
}
.brand__logoWrap {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.16);
  box-shadow: var(--shadow2);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  display: block;
  background: transparent;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.55), transparent 45%);
}
.brand__markDot {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}
.brand__text {
  display: grid;
  line-height: 1.1;
}
.brand__name {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand__tag {
  font-size: 12px;
  color: var(--muted2);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
}
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(109, 94, 252, 0.14);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  box-shadow: var(--shadow2);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.nav__toggle:focus-visible {
  outline: none;
  box-shadow: var(--shadow2), var(--focus);
}
.nav__toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.28);
}
.nav__toggleIcon {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(11, 18, 32, 0.80);
  position: relative;
  margin-inline: auto;
  border-radius: 999px;
}
.nav__toggleIcon::before,
.nav__toggleIcon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(11, 18, 32, 0.80);
  border-radius: 999px;
  transition: transform 200ms ease, top 200ms ease, opacity 200ms ease;
}
.nav__toggleIcon::before {
  top: -6px;
}
.nav__toggleIcon::after {
  top: 6px;
}
.nav__toggle[aria-expanded="true"] .nav__toggleIcon {
  background: transparent;
}
.nav__toggle[aria-expanded="true"] .nav__toggleIcon::before {
  top: 0;
  transform: rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggleIcon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__link {
  font-weight: 700;
  font-size: 14px;
  color: rgba(11, 18, 32, 0.76);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}
.nav__link:hover {
  background: rgba(109, 94, 252, 0.08);
  transform: translateY(-1px);
  color: rgba(11, 18, 32, 0.92);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  font-weight: 800;
  letter-spacing: 0.1px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  box-shadow: var(--shadow2);
}
.btn i {
  font-size: 14px;
}
.btn--primary {
  background: linear-gradient(135deg, rgba(109, 94, 252, 1), rgba(34, 211, 238, 1));
  color: white;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(109, 94, 252, 0.22);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(109, 94, 252, 0.18);
  color: rgba(11, 18, 32, 0.86);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.30);
}
.btn--sm {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}
.btn--block {
  width: 100%;
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow2), var(--focus);
}

/* Glass container */
.glass {
  background: var(--glass);
  border: 1px solid rgba(109, 94, 252, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

/* Hero */
.hero {
  position: relative;
  padding: 64px 0 34px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}
.hero__content {
  padding-top: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.16);
  box-shadow: var(--shadow2);
  color: rgba(11, 18, 32, 0.78);
  font-weight: 800;
  font-size: 13px;
}
.pill i {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title {
  margin: 16px 0 12px;
  font-size: clamp(34px, 3.9vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.6px;
}
.hero__lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 600;
  max-width: 56ch;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero__trust {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.trustCard {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.14);
  border-radius: var(--radiusSm);
  padding: 12px 12px;
  box-shadow: var(--shadow2);
  display: flex;
  gap: 10px;
  align-items: center;
  transition: transform 180ms ease, border-color 180ms ease;
}
.trustCard:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.28);
}
.trustCard__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.12), rgba(34, 211, 238, 0.10));
  border: 1px solid rgba(109, 94, 252, 0.14);
}
.trustCard__icon i {
  background: var(--grad2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trustCard__title {
  font-size: 12px;
  font-weight: 900;
  color: rgba(11, 18, 32, 0.84);
}
.trustCard__desc {
  font-size: 12px;
  color: var(--muted2);
  font-weight: 650;
}

.hero__visual {
  position: relative;
  min-height: 520px;
}
.heroCard {
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.heroCard::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 30% 20%, rgba(109, 94, 252, 0.18), transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(34, 211, 238, 0.14), transparent 55%);
  pointer-events: none;
}
.heroCard__header,
.heroCard__body {
  position: relative;
}
.heroLogo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 4px 0 10px;
}
.heroLogo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 14px 28px rgba(20, 20, 40, 0.10));
  opacity: 0.98;
}
.heroCard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.heroCard__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(109, 94, 252, 0.14);
  font-weight: 900;
  color: rgba(11, 18, 32, 0.86);
}
.heroCard__badge i {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.heroCard__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.12);
  color: rgba(11, 18, 32, 0.70);
  font-weight: 800;
  font-size: 13px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.dot--good {
  background: rgba(20, 184, 166, 1);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
}

.miniKpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.miniKpi {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.12);
  border-radius: 14px;
  padding: 12px;
}
.miniKpi__label {
  font-size: 12px;
  font-weight: 900;
  color: rgba(11, 18, 32, 0.70);
}
.miniKpi__value {
  font-size: 16px;
  font-weight: 900;
  margin-top: 4px;
}

.diagram {
  position: relative;
  height: 290px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.08), rgba(34, 211, 238, 0.06));
  border: 1px solid rgba(109, 94, 252, 0.12);
  overflow: hidden;
}
.diagram__center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.diagram__centerRing {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  border: 1px dashed rgba(109, 94, 252, 0.32);
  animation: spin 10s linear infinite;
  opacity: 0.75;
}
.diagram__centerCore {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(109, 94, 252, 0.14);
  display: grid;
  place-items: center;
  gap: 6px;
  font-weight: 900;
  box-shadow: var(--shadow2);
}
.diagram__centerCore i {
  background: var(--grad2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18px;
}
.diagram__centerCore span {
  font-size: 12px;
  color: rgba(11, 18, 32, 0.72);
}
.diagram__node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.12);
  box-shadow: var(--shadow2);
  font-weight: 900;
  color: rgba(11, 18, 32, 0.78);
  transform: translateZ(0);
  animation: bob 5.5s ease-in-out infinite;
}
.diagram__node i {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.diagram__node--a {
  top: 24px;
  left: 24px;
}
.diagram__node--b {
  top: 30px;
  right: 22px;
  animation-delay: -1.2s;
}
.diagram__node--c {
  bottom: 22px;
  left: 50%;
  transform: translate(-50%, 0);
  animation-delay: -2.2s;
}
.diagram__line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(109, 94, 252, 0.0), rgba(109, 94, 252, 0.34), rgba(34, 211, 238, 0.26), rgba(34, 211, 238, 0.0));
  opacity: 0.7;
}
.diagram__line--1 {
  top: 84px;
  left: 80px;
  width: 60%;
}
.diagram__line--2 {
  top: 90px;
  right: 70px;
  width: 55%;
  transform: rotate(-10deg);
}
.diagram__line--3 {
  bottom: 92px;
  left: 25%;
  width: 50%;
}
@keyframes bob {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.heroCard__footer {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.12);
  box-shadow: var(--shadow2);
  font-weight: 850;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.76);
}
.chip i {
  background: var(--grad3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.chip--ms {
  box-shadow: none;
}

.floatBadge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.14);
  box-shadow: var(--shadow);
  font-weight: 900;
  color: rgba(11, 18, 32, 0.78);
  animation: floaty 10s ease-in-out infinite;
}
.floatBadge i {
  background: var(--grad2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.floatBadge--1 {
  top: -18px;
  right: 28px;
  animation-duration: 9s;
}
.floatBadge--2 {
  bottom: -18px;
  left: 24px;
  animation-duration: 11s;
}

.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

/* Sections */
.section {
  padding: 76px 0;
}
.section--muted {
  background: radial-gradient(circle at 20% 0%, rgba(109, 94, 252, 0.06), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(34, 211, 238, 0.05), transparent 55%);
}
.section__head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}
.section__head--left {
  text-align: left;
  margin-inline: 0;
}
.section__title {
  margin: 0;
  font-size: clamp(26px, 3.0vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.4px;
}
.section__title--small {
  font-size: clamp(22px, 2.4vw, 30px);
}
.section__subtitle {
  margin: 12px auto 0;
  color: var(--muted);
  font-weight: 650;
}
.section__subtitle--small {
  max-width: 70ch;
  margin-inline: auto;
}

/* About */
.aboutGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.aboutCard {
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease;
}
.aboutCard:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.26);
}
.aboutCard--highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.60));
  border-color: rgba(34, 211, 238, 0.18);
}
.aboutCard__icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.12), rgba(34, 211, 238, 0.10));
  border: 1px solid rgba(109, 94, 252, 0.14);
  box-shadow: var(--shadow2);
  margin-bottom: 10px;
}
.aboutCard__icon i {
  background: var(--grad2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.aboutCard h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.aboutCard p {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 600;
}
.checkList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.checkList li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.78);
}
.checkList i {
  margin-top: 2px;
  color: rgba(20, 184, 166, 1);
}
.aboutBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.12);
  box-shadow: var(--shadow2);
  font-weight: 900;
  font-size: 13px;
}
.badge i {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.quote {
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid rgba(109, 94, 252, 0.12);
  background: rgba(255, 255, 255, 0.68);
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.quote__mark {
  position: absolute;
  top: -20px;
  right: 12px;
  font-size: 66px;
  font-weight: 900;
  color: rgba(109, 94, 252, 0.12);
}
.quote__text {
  position: relative;
  color: rgba(11, 18, 32, 0.74);
  font-weight: 650;
}

/* Services cards */
.cardsGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card {
  padding: 18px;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 20% 10%, rgba(109, 94, 252, 0.16), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.14), transparent 52%);
  opacity: 0;
  transition: opacity 200ms ease;
}
.card:hover::before {
  opacity: 1;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.30);
  box-shadow: 0 26px 70px rgba(20, 20, 40, 0.14);
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.12), rgba(34, 211, 238, 0.10));
  border: 1px solid rgba(109, 94, 252, 0.14);
  box-shadow: var(--shadow2);
  margin-bottom: 10px;
  position: relative;
}
.card__icon i {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.card h3 {
  margin: 10px 0 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
  position: relative;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  position: relative;
}

.ctaStrip {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(109, 94, 252, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.62));
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ctaStrip h3 {
  margin: 0 0 6px;
  letter-spacing: -0.2px;
}
.ctaStrip p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

/* Industries */
.industriesGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.industry {
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease;
}
.industry:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.28);
}
.industry i {
  font-size: 18px;
  background: var(--grad2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.industry h3 {
  margin: 10px 0 6px;
}
.industry p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

/* Microsoft section */
.msGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}
.msPillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}
.msFeatureList {
  display: grid;
  gap: 12px;
}
.msFeature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--radiusSm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.12);
  box-shadow: var(--shadow2);
}
.msFeature i {
  margin-top: 2px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.12), rgba(34, 211, 238, 0.10));
  border: 1px solid rgba(109, 94, 252, 0.12);
  color: rgba(109, 94, 252, 1);
}
.msFeature h3 {
  margin: 0 0 4px;
  letter-spacing: -0.2px;
}
.msFeature p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.msPanel {
  padding: 18px;
}
.msPanel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.msPanel__title {
  font-weight: 900;
  letter-spacing: -0.2px;
}
.msPanel__hint {
  font-size: 13px;
  font-weight: 800;
  color: rgba(11, 18, 32, 0.64);
}
.msPanel__items {
  display: grid;
  gap: 10px;
}
.msItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.12);
  box-shadow: var(--shadow2);
}
.msItem__left {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  color: rgba(11, 18, 32, 0.78);
}
.msItem__left i {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.msItem__tag {
  font-weight: 900;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(11, 18, 32, 0.70);
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.10), rgba(34, 211, 238, 0.10));
  border: 1px solid rgba(34, 211, 238, 0.18);
}
.msPanel__cta {
  margin-top: 14px;
}

/* Why */
.whyGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.why {
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease;
}
.why:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.28);
}
.why i {
  font-size: 18px;
  background: var(--grad3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.why h3 {
  margin: 10px 0 6px;
}
.why p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

/* Process */
.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.step {
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}
.step:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.26);
}
.step__num {
  font-weight: 900;
  letter-spacing: -0.3px;
  font-size: 14px;
  padding: 8px 10px;
  display: inline-flex;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.10), rgba(34, 211, 238, 0.10));
  border: 1px solid rgba(109, 94, 252, 0.16);
  color: rgba(11, 18, 32, 0.72);
}
.step h3 {
  margin: 12px 0 6px;
  letter-spacing: -0.2px;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.testimonial {
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease;
}
.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.26);
}
.testimonial__stars {
  color: rgba(245, 158, 11, 1);
}
.testimonial__quote {
  margin: 12px 0 16px;
  color: rgba(11, 18, 32, 0.82);
  font-weight: 650;
}
.testimonial__who {
  display: flex;
  gap: 12px;
  align-items: center;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
  background: var(--grad2);
  box-shadow: var(--shadow2);
}
.avatar--alt {
  background: var(--grad);
}
.avatar--teal {
  background: var(--grad3);
}
.testimonial__name {
  font-weight: 900;
  letter-spacing: -0.1px;
}
.testimonial__role {
  color: var(--muted2);
  font-weight: 700;
  font-size: 13px;
}

/* Stats */
.statsWrap {
  padding: 18px;
}
.statsHead {
  text-align: center;
  margin-bottom: 14px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.stat {
  border-radius: 18px;
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.12);
  box-shadow: var(--shadow2);
  text-align: center;
}
.stat__value {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.6px;
}
.stat__suffix {
  margin-left: 2px;
  background: var(--grad3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

/* Contact */
.contactGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
}
.form {
  padding: 18px;
}
.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.field span {
  font-weight: 900;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.72);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(109, 94, 252, 0.16);
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 12px;
  outline: none;
  box-shadow: var(--shadow2);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(34, 211, 238, 0.32);
  box-shadow: var(--shadow2), var(--focus);
}
.form__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6px;
}
.form__note {
  margin: 0;
  color: var(--muted2);
  font-weight: 700;
  font-size: 13px;
}
.form__note a {
  color: rgba(109, 94, 252, 1);
}
.form__toast {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  background: rgba(20, 184, 166, 0.08);
  color: rgba(11, 18, 32, 0.78);
  font-weight: 800;
  display: none;
}
.form__toast.is-show {
  display: block;
}

.contactSide {
  display: grid;
  gap: 12px;
}
.contactCard,
.mapCard {
  padding: 18px;
}
.contactCard h3 {
  margin: 0 0 12px;
}
.contactLine {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.12);
  box-shadow: var(--shadow2);
  margin-bottom: 10px;
}
.contactLine i {
  margin-top: 2px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.12), rgba(34, 211, 238, 0.10));
  border: 1px solid rgba(109, 94, 252, 0.12);
  color: rgba(109, 94, 252, 1);
}
.contactLine__label {
  font-size: 12px;
  font-weight: 900;
  color: rgba(11, 18, 32, 0.64);
}
.contactLine a {
  color: rgba(109, 94, 252, 1);
  font-weight: 900;
}

.mapCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.mapCard__title {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
}
.mapCard__title i {
  background: var(--grad3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mapCard__hint {
  font-size: 13px;
  font-weight: 800;
  color: rgba(11, 18, 32, 0.62);
}
.mapCard__canvas {
  border-radius: 18px;
  border: 1px solid rgba(109, 94, 252, 0.12);
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.06), rgba(34, 211, 238, 0.06));
  overflow: hidden;
  height: 240px;
  display: grid;
  place-items: center;
}
.mapPlaceholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.mapPlaceholder__text {
  font-weight: 900;
  color: rgba(11, 18, 32, 0.62);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(109, 94, 252, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: var(--shadow2);
}
.mapPlaceholder__pin {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(109, 94, 252, 1);
  box-shadow: 0 0 0 10px rgba(109, 94, 252, 0.14);
  position: absolute;
  top: 46%;
  left: 52%;
  transform: translate(-50%, -50%);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.14);
  }
}

/* Footer */
.footer {
  padding: 54px 0;
  border-top: 1px solid rgba(109, 94, 252, 0.12);
  background: radial-gradient(circle at 10% 0%, rgba(109, 94, 252, 0.06), transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(34, 211, 238, 0.05), transparent 55%);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.footer__desc {
  margin: 12px 0 14px;
  color: var(--muted);
  font-weight: 650;
  max-width: 55ch;
}
.footer__contactQuick {
  display: grid;
  gap: 10px;
  margin: 8px 0 14px;
}
.footer__contactQuickItem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.12);
  box-shadow: var(--shadow2);
  font-weight: 900;
  color: rgba(11, 18, 32, 0.74);
  transition: transform 180ms ease, border-color 180ms ease;
}
.footer__contactQuickItem:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.26);
}
.footer__contactQuickItem i {
  background: var(--grad3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__title {
  font-weight: 900;
  margin-bottom: 10px;
}
.footer__col a {
  display: block;
  padding: 9px 0;
  color: rgba(11, 18, 32, 0.74);
  font-weight: 750;
  transition: color 180ms ease, transform 180ms ease;
}
.footer__col a:hover {
  color: rgba(109, 94, 252, 1);
  transform: translateX(2px);
}
.footer__fine {
  margin-top: 12px;
  color: rgba(11, 18, 32, 0.58);
  font-weight: 700;
  font-size: 13px;
}
.social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social__link {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 94, 252, 0.14);
  box-shadow: var(--shadow2);
  transition: transform 180ms ease, border-color 180ms ease;
}
.social__link:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.30);
}
.social__link i {
  background: var(--grad2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Scroll to top */
.toTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 18px;
  border: 1px solid rgba(109, 94, 252, 0.16);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease, border-color 180ms ease;
  opacity: 0;
  visibility: hidden;
  z-index: 60;
}
.toTop i {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.toTop.is-show {
  opacity: 1;
  visibility: visible;
}
.toTop:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.28);
}
.toTop:focus-visible {
  outline: none;
  box-shadow: var(--shadow2), var(--focus);
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    min-height: unset;
  }
  .hero__trust {
    grid-template-columns: 1fr;
  }
  .aboutGrid,
  .cardsGrid,
  .industriesGrid,
  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .whyGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .msGrid,
  .contactGrid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }
  .section {
    padding: 64px 0;
  }
  .cardsGrid,
  .aboutGrid,
  .industriesGrid,
  .testimonials,
  .whyGrid,
  .process {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form__row {
    grid-template-columns: 1fr;
  }
  .nav__toggle {
    display: inline-grid;
    place-items: center;
  }
  .brand__logoWrap {
    width: 38px;
    height: 38px;
  }
  .nav__menu {
    position: fixed;
    top: 74px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 10px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(109, 94, 252, 0.14);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
    z-index: 55;
  }
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__link {
    padding: 12px 12px;
    background: rgba(109, 94, 252, 0.06);
    border: 1px solid rgba(109, 94, 252, 0.12);
  }
  .nav__cta {
    width: 100%;
  }
  .ctaStrip {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* ===== Phase 2 extensions (multi-page site) ===== */

:root {
  --header-sticky-h: 74px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.nav__link.is-active {
  color: rgba(11, 18, 32, 0.95);
  background: rgba(109, 94, 252, 0.10);
}

.nav__item--dropdown {
  position: relative;
}
.nav__itemRow {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__dropdownBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(11, 18, 32, 0.55);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.nav__dropdownBtn:hover {
  background: rgba(109, 94, 252, 0.08);
  color: rgba(11, 18, 32, 0.85);
}
.nav__dropdown {
  list-style: none;
  margin: 0;
  padding: 8px;
  min-width: 220px;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(109, 94, 252, 0.14);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 80;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown,
.nav__item--dropdown.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdownLink {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.78);
  transition: background 180ms ease, color 180ms ease;
}
.nav__dropdownLink:hover {
  background: rgba(109, 94, 252, 0.08);
  color: rgba(11, 18, 32, 0.95);
}

.hero--compact {
  padding: 56px 0 42px;
}
.hero--compact .hero__inner {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}
.hero--compact .hero__title {
  font-size: clamp(30px, 4vw, 44px);
}
.hero--compact .hero__lead {
  margin-inline: auto;
}

.subnav {
  position: sticky;
  top: var(--header-sticky-h, 74px);
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(109, 94, 252, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.subnav__inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}
.subnav__inner::-webkit-scrollbar {
  display: none;
}
.subnav__tab {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.68);
  border: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.subnav__tab:hover {
  background: rgba(109, 94, 252, 0.06);
  color: rgba(11, 18, 32, 0.9);
}
.subnav__tab.is-active {
  background: rgba(109, 94, 252, 0.10);
  border-color: rgba(109, 94, 252, 0.18);
  color: rgba(11, 18, 32, 0.95);
}

.deepIntro {
  align-items: start;
}

.section__title--small {
  font-size: clamp(20px, 2.4vw, 26px);
}

.checkList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.checkList li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
  line-height: 1.5;
}
.checkList i {
  color: var(--teal);
  margin-top: 3px;
}

.engagementGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.faqGroup {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.faqItem {
  border-radius: var(--radiusSm);
  border: 1px solid rgba(109, 94, 252, 0.12);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}
.faqItem__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  color: rgba(11, 18, 32, 0.9);
}
.faqItem__q i {
  transition: transform 200ms ease;
  color: var(--blue);
}
.faqItem.is-open .faqItem__q i {
  transform: rotate(180deg);
}
.faqItem__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}
.faqItem__a > p {
  overflow: hidden;
  margin: 0;
  padding: 0 18px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.6;
}
.faqItem.is-open .faqItem__a {
  grid-template-rows: 1fr;
}
.faqItem.is-open .faqItem__a > p {
  padding-bottom: 16px;
}

.industryDeep__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.industryDeep__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(109, 94, 252, 0.10);
  border: 1px solid rgba(109, 94, 252, 0.14);
  color: var(--blue);
  font-size: 18px;
}

.caseTeaser {
  margin-top: 22px;
  padding: 20px;
  border-radius: var(--radius);
}
.caseTeaser__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 8px;
}
.caseTeaser h3 {
  margin: 0 0 8px;
}
.caseTeaser p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.eduCareCrosslink {
  margin-top: 14px;
}
.eduCareCrosslink a {
  font-weight: 800;
  color: var(--blue);
}

.teamGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.teamCard {
  padding: 18px;
}
.teamCard__top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.teamCard__avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: var(--grad2);
  color: #fff;
  flex-shrink: 0;
}
.teamCard__name {
  font-weight: 900;
  letter-spacing: -0.2px;
}
.teamCard__role {
  font-size: 13px;
  color: var(--muted2);
  font-weight: 700;
}
.teamCard__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.teamCard__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.teamCard__link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(109, 94, 252, 0.14);
  color: var(--blue);
  transition: transform 180ms ease, border-color 180ms ease;
}
.teamCard__link:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.28);
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-weight: 750;
  font-size: 14px;
  color: var(--muted2);
}
.crumb a {
  color: var(--blue);
  font-weight: 800;
}

.article__body {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(11, 18, 32, 0.84);
  font-weight: 650;
  line-height: 1.75;
  font-size: 16px;
}
.article__body p {
  margin: 0 0 16px;
}
.article__body h2 {
  margin: 28px 0 10px;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.3px;
  color: rgba(11, 18, 32, 0.95);
}
.article__metaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: center;
  margin-top: 12px;
  color: var(--muted2);
  font-weight: 700;
  font-size: 14px;
}
.article__metaRow i {
  color: var(--blue);
  margin-right: 6px;
}

.codeCallout {
  margin: 18px 0;
  border-radius: var(--radiusSm);
  border: 1px solid rgba(109, 94, 252, 0.14);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
}
.codeCallout__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 13px;
  background: rgba(109, 94, 252, 0.06);
  border-bottom: 1px solid rgba(109, 94, 252, 0.10);
}
.codeCallout pre {
  margin: 0;
  padding: 14px;
  overflow: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.88);
  background: rgba(13, 71, 161, 0.04);
}

.pullquote {
  margin: 18px 0;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(34, 211, 238, 0.20);
  background: radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.10), transparent 60%), rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow2);
  font-weight: 850;
  color: rgba(11, 18, 32, 0.86);
}
.pullquote__by {
  margin-top: 10px;
  color: var(--muted2);
  font-weight: 750;
}

.statBigRow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 10px;
}
.statBig {
  padding: 14px;
  border-radius: var(--radiusSm);
  border: 1px solid rgba(109, 94, 252, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow2);
}
.statBig__num {
  font-weight: 950;
  letter-spacing: -0.4px;
  font-size: 22px;
  background: var(--grad2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.statBig__label {
  margin-top: 4px;
  color: var(--muted2);
  font-weight: 750;
  font-size: 12px;
}

.tripleCol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.tripleCol h3 {
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}
.tripleCol p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.card--link h3 a {
  color: inherit;
  text-decoration: none;
}
.card--link h3 a:hover {
  color: var(--blue);
}
.card--link .btn {
  position: relative;
  z-index: 2;
}

.form__toast {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 750;
  background: rgba(109, 94, 252, 0.08);
  border: 1px solid rgba(109, 94, 252, 0.14);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.form__toast.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .engagementGrid,
  .teamGrid {
    grid-template-columns: 1fr;
  }
  .statBigRow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tripleCol {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav__item--dropdown {
    width: 100%;
  }
  .nav__itemRow {
    width: 100%;
  }
  .nav__itemRow .nav__link {
    flex: 1;
  }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 8px;
    display: none;
    min-width: unset;
  }
  .nav__item--dropdown.is-open .nav__dropdown {
    display: grid;
    gap: 6px;
    margin-top: 6px;
  }
  .nav__dropdownLink {
    background: rgba(109, 94, 252, 0.06);
    border: 1px solid rgba(109, 94, 252, 0.10);
  }
}
