/* ==========================================================================
   QWise — Landing Page
   Aesthetic: Bright, airy, elegant. Light base; brand gradients as accents.
   ========================================================================== */

:root {
  /* Brand palette */
  --navy-900: #071B3A;
  --navy-800: #0A1F44;
  --navy-700: #11295A;
  --blue-600: #0A84FF;
  --blue-500: #2E9BFF;
  --cyan-400: #22D3EE;
  --mint-400: #1DD1A1;

  /* Light neutrals */
  --bg:        #FFFFFF;
  --bg-soft:   #F7FAFD;
  --bg-tint:   #EEF5FF;
  --bg-cream:  #FBFCFE;
  --line:      #E4ECF6;
  --line-soft: #EEF3FA;

  /* Text */
  --ink-900: #0B1A33;
  --ink-700: #2B3A57;
  --ink-500: #5A6B86;
  --ink-400: #7B8AA3;
  --ink-300: #A3B0C5;

  /* Gradients */
  --grad-brand:  linear-gradient(135deg, #1DD1A1 0%, #22D3EE 45%, #0A84FF 100%);
  --grad-brand-2: linear-gradient(135deg, #0A84FF 0%, #22D3EE 100%);
  --grad-soft:   linear-gradient(180deg, #FFFFFF 0%, #F2F8FF 100%);
  --grad-glow:   radial-gradient(60% 60% at 50% 40%, rgba(34,211,238,0.18), rgba(10,132,255,0.06) 40%, transparent 70%);

  /* Shadow */
  --shadow-sm: 0 2px 6px rgba(11, 26, 51, 0.05), 0 1px 2px rgba(11, 26, 51, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 26, 51, 0.07), 0 2px 6px rgba(11, 26, 51, 0.04);
  --shadow-lg: 0 24px 60px rgba(11, 26, 51, 0.10), 0 8px 18px rgba(11, 26, 51, 0.05);
  --shadow-glow: 0 20px 60px -10px rgba(10, 132, 255, 0.35);

  /* Layout */
  --container: 1200px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* ========== Reset / base ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11', 'ss01';
  overflow-x: hidden;
}
::selection { background: rgba(10, 132, 255, 0.18); color: var(--ink-900); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-300); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ========== Typography utilities ========== */
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: rgba(10, 132, 255, 0.08);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.section-title {
  font-size: clamp(32px, 4.0vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink-900);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 18px;
  color: var(--ink-500);
  max-width: 680px;
  line-height: 1.65;
}

.section-head { margin-bottom: 60px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all .25s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--primary {
  background: var(--grad-brand-2);
  color: white;
  box-shadow: 0 10px 28px -8px rgba(10, 132, 255, 0.50), 0 4px 10px -2px rgba(10, 132, 255, 0.25);
  position: relative;
  overflow: hidden;
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 50%);
  opacity: 0;
  transition: opacity .3s ease;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -8px rgba(10, 132, 255, 0.60), 0 8px 16px -2px rgba(10, 132, 255, 0.30);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary:active { transform: translateY(0); }
.btn--outline {
  border: 1.5px solid var(--line);
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}
.btn--outline:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: rgba(10, 132, 255, 0.04);
  transform: translateY(-2px);
}
.btn--ghost {
  color: var(--ink-700);
  padding: 10px 16px;
}
.btn--ghost:hover { color: var(--blue-600); }

/* ========== Navigation ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, height .3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px -8px rgba(11, 26, 51, 0.08);
}
.nav.scrolled .nav__inner { height: 64px; }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: height .3s ease;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.brand__mark {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 4px 12px rgba(10, 132, 255, 0.25));
}
.brand__name sup {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--blue-600);
  margin-left: 2px;
  top: -0.8em;
  position: relative;
}
.nav__links {
  display: flex;
  gap: 36px;
  font-size: 15px;
  font-weight: 500;
}
.nav__links a {
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--grad-brand-2);
  border-radius: 2px;
  transition: right .25s ease;
}
.nav__links a:hover { color: var(--ink-900); }
.nav__links a:hover::after { right: 0; }
.nav__cta { display: flex; align-items: center; gap: 8px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 150px 0 120px;
  overflow: hidden;
  background: var(--bg);
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero__orb--1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(34,211,238,0.45), transparent 70%);
  top: -140px; right: -100px;
}
.hero__orb--2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(29,209,161,0.35), transparent 70%);
  bottom: -100px; left: -120px;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,132,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,132,255,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.6;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 28px;
  box-shadow: 0 4px 12px -2px rgba(10, 132, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pill__dot {
  width: 8px; height: 8px;
  background: var(--mint-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(29,209,161,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(29,209,161,0.08); }
}

.hero__title {
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink-900);
  margin-bottom: 24px;
}
.hero__title--light {
  font-weight: 500;
  color: var(--ink-500);
  font-size: 0.62em;
  display: inline-block;
  margin-top: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero__sub {
  font-size: 18px;
  color: var(--ink-500);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust__item {
  display: flex;
  flex-direction: column;
}
.trust__item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.trust__item span {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust__divider {
  width: 1px; height: 28px;
  background: var(--line);
}

/* Hero visual / logo stage */
.hero__visual { position: relative; display: flex; justify-content: center; }
.logo-stage {
  position: relative;
  width: 460px;
  max-width: 100%;
  aspect-ratio: 1;
}
.logo-stage__mark {
  position: absolute;
  inset: 22%;
  z-index: 5;
  filter: drop-shadow(0 30px 60px rgba(10,132,255,0.25));
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  50% { transform: translateY(-12px); }
}
.logo-stage__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(10, 132, 255, 0.25);
}
.logo-stage__ring--1 {
  inset: 12%;
  animation: spin 30s linear infinite;
}
.logo-stage__ring--2 {
  inset: 2%;
  border-style: solid;
  border-color: rgba(34, 211, 238, 0.18);
  animation: spin 40s linear infinite reverse;
}
.logo-stage__ring--3 {
  inset: -8%;
  border-style: dotted;
  border-color: rgba(29, 209, 161, 0.18);
  animation: spin 50s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.logo-stage__pulse {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: var(--grad-glow);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  50% { transform: scale(1.15); opacity: 0.7; }
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(228, 236, 246, 0.8);
  border-radius: 14px;
  box-shadow: 0 24px 48px -12px rgba(10, 31, 68, 0.16), 0 8px 16px rgba(11, 26, 51, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10;
  animation: floatCard 5s ease-in-out infinite;
}
.float-card svg {
  width: 22px; height: 22px;
  color: var(--blue-600);
  flex-shrink: 0;
}
.float-card span {
  display: block;
  font-size: 11px;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.float-card strong {
  font-size: 18px;
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.float-card--tl { top: 8%; left: -8%; animation-delay: 0s; }
.float-card--tr { top: 18%; right: -10%; animation-delay: 1s; }
.float-card--br { bottom: 14%; right: -4%; animation-delay: 2s; }
@keyframes floatCard {
  50% { transform: translateY(-8px); }
}

/* ========== Modules section ========== */
.modules {
  padding: 110px 0;
  background: var(--bg-soft);
  position: relative;
}
.modules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.module-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 30px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.module-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,211,238,0.0), rgba(10,132,255,0.0));
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.module-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10, 132, 255, 0.18);
  box-shadow: 0 28px 60px -10px rgba(10, 132, 255, 0.18), 0 8px 24px rgba(11, 26, 51, 0.05);
}
.module-card:hover::before { opacity: 1; }
.module-card[data-color="blue"]::before { background: linear-gradient(135deg, rgba(10,132,255,0.05), transparent 60%); }
.module-card[data-color="cyan"]::before { background: linear-gradient(135deg, rgba(34,211,238,0.06), transparent 60%); }
.module-card[data-color="mint"]::before { background: linear-gradient(135deg, rgba(29,209,161,0.06), transparent 60%); }

.module-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.module-card[data-color="blue"] .module-card__icon {
  background: linear-gradient(135deg, rgba(10,132,255,0.12), rgba(10,132,255,0.04));
  color: var(--blue-600);
}
.module-card[data-color="cyan"] .module-card__icon {
  background: linear-gradient(135deg, rgba(34,211,238,0.15), rgba(34,211,238,0.04));
  color: #0CA9C4;
}
.module-card[data-color="mint"] .module-card__icon {
  background: linear-gradient(135deg, rgba(29,209,161,0.15), rgba(29,209,161,0.04));
  color: #14B889;
}
.module-card__icon svg { width: 26px; height: 26px; }

.module-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-700);
  margin-bottom: 12px;
  position: relative; z-index: 2;
}
.module-card h3 strong {
  color: var(--ink-900);
  font-weight: 800;
}
.module-card > p {
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 18px;
  position: relative; z-index: 2;
}
.module-card__list {
  list-style: none;
  position: relative; z-index: 2;
}
.module-card__list li {
  font-size: 14px;
  color: var(--ink-700);
  padding: 7px 0 7px 24px;
  position: relative;
  border-top: 1px solid var(--line-soft);
}
.module-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A84FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ========== Visibility / Dashboard section ========== */
.visibility {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.visibility::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,132,255,0.06), transparent 70%);
  top: 20%; right: -200px;
  filter: blur(40px);
}
.visibility__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.visibility__copy p {
  font-size: 17px;
  color: var(--ink-500);
  margin-bottom: 26px;
  line-height: 1.65;
}
.checklist {
  list-style: none;
  margin-bottom: 34px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--ink-700);
}
.check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad-brand-2);
  position: relative;
  margin-top: 1px;
}
.check::after {
  content: '';
  position: absolute;
  left: 6px; top: 6px;
  width: 10px; height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.visibility__panel {
  background: white;
  border-radius: 24px;
  box-shadow: 0 40px 80px -20px rgba(11, 26, 51, 0.14), 0 12px 28px rgba(11, 26, 51, 0.05);
  border: 1px solid var(--line);
  overflow: hidden;
  transform: perspective(2200px) rotateY(-3deg) rotateX(1.5deg);
  transition: transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
}
.visibility__panel:hover {
  transform: perspective(2200px) rotateY(0) rotateX(0) translateY(-4px);
  box-shadow: 0 50px 90px -20px rgba(11, 26, 51, 0.18), 0 16px 40px rgba(10, 132, 255, 0.06);
}
.panel__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.panel__dots {
  display: flex;
  gap: 6px;
}
.panel__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line);
}
.panel__dots span:nth-child(1) { background: #FF6B6B; }
.panel__dots span:nth-child(2) { background: #FFD93D; }
.panel__dots span:nth-child(3) { background: var(--mint-400); }
.panel__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-500);
}
.panel__body {
  padding: 28px;
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.kpi {
  padding: 18px 20px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #FFFFFF 100%);
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.kpi:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(10, 132, 255, 0.10);
}
.kpi span {
  display: block;
  font-size: 12px;
  color: var(--ink-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.kpi strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.kpi em {
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
}
.kpi em.up { color: var(--mint-400); }
.kpi em.down { color: #E55C5C; }
.kpi em.up::before, .kpi em.down::before {
  content: '↑';
  margin-right: 4px;
}
.kpi em.down::before { content: '↓'; }

.panel__chart {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
}
.panel__chart svg { width: 100%; height: 100px; }
.panel__legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.legend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-500);
}
.legend i {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}

/* ========== Why QWise ========== */
.why {
  padding: 110px 0;
  background: var(--bg-soft);
  position: relative;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why__card {
  background: white;
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .25s ease;
  position: relative;
}
.why__card:hover {
  border-color: rgba(10, 132, 255, 0.22);
  box-shadow: 0 22px 50px -12px rgba(10, 132, 255, 0.15), 0 4px 14px rgba(11, 26, 51, 0.04);
  transform: translateY(-6px);
}
.why__icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34,211,238,0.12), rgba(10,132,255,0.06));
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why__icon svg { width: 24px; height: 24px; }
.why__card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.why__card p {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.6;
}

/* ========== Industries ========== */
.industries {
  padding: 110px 0;
  background: var(--bg);
}
.industries .section-head { margin-bottom: 50px; }
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.industry {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .25s ease, background .35s ease;
  cursor: default;
}
.industry:hover {
  border-color: rgba(10, 132, 255, 0.18);
  background: linear-gradient(135deg, rgba(34,211,238,0.05), rgba(10,132,255,0.02));
  box-shadow: 0 22px 50px -12px rgba(10, 132, 255, 0.15), 0 4px 14px rgba(11, 26, 51, 0.04);
  transform: translateY(-6px);
}
.industry__svg {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--blue-600);
  margin-bottom: 18px;
  transition: all .3s ease;
}
.industry:hover .industry__svg {
  background: var(--grad-brand-2);
  color: white;
}
.industry__svg svg { width: 28px; height: 28px; }
.industry h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.industry p {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.6;
}

/* ========== Multi-Site Operations ========== */
.qw-multisite {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5FBFF 100%);
  padding: 110px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.qw-multisite-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.qw-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 600;
  color: #0A84FF;
  margin: 0 0 12px;
}
.qw-section-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #071B3A;
  margin: 0 0 16px;
  max-width: 760px;
}
.qw-section-lede {
  font-size: 17px;
  line-height: 1.6;
  color: #4A5A75;
  max-width: 820px;
  margin: 0 0 56px;
}
.qw-multisite-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.qw-ms-card {
  background: #FFFFFF;
  border: 1px solid #E5EBF5;
  border-radius: 20px;
  padding: 32px 30px 28px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .25s ease;
}
.qw-ms-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px -12px rgba(10, 132, 255, 0.18), 0 4px 14px rgba(11, 26, 51, 0.04);
  border-color: rgba(10, 132, 255, 0.20);
}
.qw-ms-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #E5F1FF;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.qw-ms-icon svg { width: 30px; height: 30px; }
.qw-ms-card h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #071B3A;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.qw-ms-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #4A5A75;
  margin: 0;
}
.qw-multisite-reg {
  margin: 48px 0 0;
  padding: 18px 24px;
  background: #FFFFFF;
  border: 1px solid #E5EBF5;
  border-left: 3px solid #0A84FF;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #4A5A75;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.qw-reg-label {
  font-weight: 600;
  color: #071B3A;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 11px;
  margin-right: 4px;
}
.qw-reg-sep { color: #BFC8DA; }
@media (max-width: 760px) {
  .qw-multisite { padding: 64px 0; }
  .qw-section-title { font-size: 30px; }
  .qw-multisite-grid { grid-template-columns: 1fr; gap: 18px; }
  .qw-multisite-reg { font-size: 12px; }
}

/* ========== Integrity / Security ========== */
.integrity {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%);
  position: relative;
  overflow: hidden;
}
.integrity__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.integrity__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.shield {
  position: relative;
  width: 200px;
  filter: drop-shadow(0 20px 40px rgba(10,132,255,0.18));
}
.shield svg { width: 100%; }
.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 360px;
}
.badge {
  padding: 11px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  text-align: center;
  box-shadow: 0 4px 10px rgba(11, 26, 51, 0.04);
  transition: all .25s ease;
  cursor: default;
}
.badge:hover {
  border-color: rgba(10, 132, 255, 0.4);
  color: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(10, 132, 255, 0.25);
}

.integrity__lead {
  font-size: 17px;
  color: var(--ink-500);
  margin-bottom: 30px;
  line-height: 1.65;
}
.integrity__rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.integrity__row {
  padding: 20px 24px;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.integrity__row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity .25s ease;
}
.integrity__row:hover {
  border-color: rgba(10,132,255,0.2);
  transform: translateX(4px);
  box-shadow: 0 10px 24px -8px rgba(10, 132, 255, 0.15);
}
.integrity__row:hover::before { opacity: 1; }
.integrity__row strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.integrity__row span {
  font-size: 14px;
  color: var(--ink-500);
}

/* ========== Stats ========== */
.stats {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(34, 211, 238, 0.04), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(29, 209, 161, 0.04), transparent 40%);
  pointer-events: none;
}
.stats__grid { position: relative; z-index: 1; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat strong {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: -0.03em;
}
.stat span {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.5;
}

/* ========== Process ========== */
.process {
  padding: 110px 0;
  background: var(--bg-soft);
}
.process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
  counter-reset: step;
}
.process__step {
  position: relative;
  padding: 34px 26px 30px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .25s ease;
}
.process__step::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 132, 255, 0.02) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.process__step:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px -12px rgba(10, 132, 255, 0.15), 0 4px 14px rgba(11, 26, 51, 0.04);
  border-color: rgba(10, 132, 255, 0.18);
}
.process__step:hover::after { opacity: 1; }
.process__num {
  display: block;
  font-size: 14px;
  font-weight: 800;
  background: var(--grad-brand-2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.process__step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process__step p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.6;
}

/* ========== CTA section (the ONE dark accent) ========== */
.cta {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
}
.cta__inner {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #071B3A 0%, #0A1F44 50%, #0E2862 100%);
  color: white;
  border-radius: 32px;
  padding: 90px 40px 80px;
  overflow: hidden;
  box-shadow: 0 50px 100px -24px rgba(7, 27, 58, 0.45), 0 20px 40px -10px rgba(10, 31, 68, 0.25);
}
.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(34,211,238,0.30), transparent 45%),
    radial-gradient(circle at 82% 75%, rgba(29,209,161,0.25), transparent 45%),
    radial-gradient(circle at 50% 110%, rgba(10,132,255,0.30), transparent 50%);
  pointer-events: none;
}
.cta .eyebrow {
  background: rgba(255,255,255,0.10);
  color: #BFE6FF;
  position: relative;
  z-index: 2;
}
.cta__title {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: white;
  position: relative;
  z-index: 2;
}
.cta__title .grad-text {
  background: linear-gradient(135deg, #22D3EE 0%, #1DD1A1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.65;
  position: relative;
  z-index: 2;
}
.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
  padding: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}
.cta__form input {
  background: transparent;
  border: none;
  padding: 14px 20px;
  color: white;
  font-size: 15px;
  outline: none;
}
.cta__form input::placeholder { color: rgba(255,255,255,0.5); }
.cta__form input:focus { background: rgba(255,255,255,0.06); border-radius: 100px; }
.cta__form-msg {
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--mint-400);
  margin-top: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease;
}
.cta__form-msg.show { opacity: 1; transform: translateY(0); }
.cta__meta {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 2;
}
.cta__meta a {
  color: #22D3EE;
  font-weight: 600;
  border-bottom: 1px solid rgba(34,211,238,0.4);
  padding-bottom: 1px;
}

/* ========== Footer ========== */
.footer {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-top: 1px solid var(--line);
  padding-top: 90px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer__brand p {
  margin: 14px 0 22px;
  font-size: 14px;
  color: var(--ink-500);
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-500);
  transition: all .25s ease;
}
.footer__social a svg { width: 16px; height: 16px; }
.footer__social a:hover {
  background: var(--grad-brand-2);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.footer__cols h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-900);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer__cols a {
  display: block;
  font-size: 14px;
  color: var(--ink-500);
  padding: 6px 0;
  transition: color .2s ease;
}
.footer__cols a:hover { color: var(--blue-600); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-400);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: var(--blue-600); }

/* ========== Reveal animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .modules__grid, .why__grid, .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .hero__inner, .visibility__inner, .integrity__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { order: -1; max-width: 420px; margin: 0 auto; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .footer__inner { grid-template-columns: 1fr; gap: 50px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: flex; }
  .hero { padding: 130px 0 80px; }
  .hero__trust { gap: 16px; }
  .trust__divider { display: none; }
  .modules, .why, .industries, .visibility, .integrity, .process, .cta { padding: 70px 0; }
  .modules__grid, .why__grid, .industries__grid, .process__steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .visibility__panel { transform: none; }
  .cta__inner { padding: 50px 24px; }
  .cta__form { grid-template-columns: 1fr; border-radius: 24px; padding: 16px; }
  .cta__form input { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .cta__form .btn { width: 100%; justify-content: center; }
  .float-card--tl { left: 0; top: 0; }
  .float-card--tr { right: 0; top: 30%; }
  .float-card--br { right: 0; bottom: 0; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: 12px; }
}
