﻿:root {
  --purple: #43246f;
  --purple-dark: #2a1648;
  --purple-light: #6d4aa4;
  --purple-glow: rgba(109, 74, 164, 0.25);
  --white: #ffffff;
  --ink: #1c1330;
  --text: #4f4561;
  --text-soft: #7b738c;
  --surface: #ffffff;
  --surface-muted: #f5f4f8;
  --surface-muted-2: #efedf4;
  --border: #dfdbe8;
  --border-strong: #cfc8de;
  --footer-bg: #120c1e;
  --ok: #22c55e;
  --warn: #f59e0b;
  --danger: #ef4444;
  --shadow-sm: 0 8px 20px rgba(20, 12, 36, 0.07);
  --shadow-md: 0 16px 40px rgba(20, 12, 36, 0.12);
  --shadow-lg: 0 30px 70px rgba(20, 12, 36, 0.16);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --ring: 0 0 0 3px rgba(67, 36, 111, 0.14);
  --transition-fast: 160ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-base: 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --container: 1160px;
  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

.section {
  padding: clamp(68px, 9vw, 104px) 0;
}

.section--muted {
  background: var(--surface-muted);
}

.title {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.subtitle {
  margin: 0;
  max-width: 68ch;
  color: var(--text-soft);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(67, 36, 111, 0.08);
  border: 1px solid rgba(67, 36, 111, 0.18);
  border-radius: 999px;
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 1.9;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 12px 20px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-base), background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(140deg, #8a6bb8, var(--purple-light));
  box-shadow: 0 8px 20px rgba(109, 74, 164, 0.24);
}

.btn--primary:hover {
  background: linear-gradient(140deg, #9a7bc8, #7d5cb5);
  box-shadow: 0 12px 26px rgba(109, 74, 164, 0.3);
}

.btn--ghost {
  color: var(--purple);
  background: var(--white);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--purple-light);
  box-shadow: var(--shadow-sm);
}

.btn--block {
  width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1200;
  height: var(--header-h);
  border-bottom: 1px solid rgba(67, 36, 111, 0.08);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  transition: box-shadow var(--transition-base), background var(--transition-base), border-color var(--transition-base);
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(67, 36, 111, 0.16);
  box-shadow: 0 10px 30px rgba(32, 20, 56, 0.13);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  padding: 9px 13px;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav__link:hover,
.nav__link.active {
  color: var(--purple);
  background: rgba(67, 36, 111, 0.08);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
}

.nav__cta {
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform var(--transition-fast), box-shadow var(--transition-base), background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.nav__cta--primary {
  color: #ffffff !important;
  background: var(--purple) !important;
  border: 1px solid var(--purple-dark);
  box-shadow: 0 6px 18px rgba(67, 36, 111, 0.32);
}

.nav__cta--primary:hover {
  color: #ffffff !important;
  background: var(--purple-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(67, 36, 111, 0.38);
}

.nav__cta--secondary {
  color: var(--purple) !important;
  background: var(--white) !important;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.nav__cta--secondary:hover {
  border-color: var(--purple-light);
  background: rgba(67, 36, 111, 0.04) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--white);
  padding: 0 14px 0 10px;
  cursor: pointer;
  color: var(--purple);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.nav__toggle-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 20px;
}

.nav__toggle-text {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav__toggle:hover {
  border-color: var(--purple-light);
  background: rgba(67, 36, 111, 0.04);
  box-shadow: 0 4px 14px rgba(67, 36, 111, 0.12);
}

.nav__toggle:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: calc(var(--header-h) + clamp(42px, 7vw, 78px)) 0 clamp(56px, 8vw, 92px);
  background: radial-gradient(circle at 18% 12%, rgba(109, 74, 164, 0.1), transparent 44%), linear-gradient(180deg, #fbfafe 0%, #ffffff 58%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(67, 36, 111, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(67, 36, 111, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 78%);
  pointer-events: none;
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(28px, 4.6vw, 62px);
}

.hero__grid > * {
  min-width: 0;
}

.hero__lead {
  margin: 16px 0 28px;
  color: var(--text);
  max-width: 60ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__scene {
  position: relative;
  min-height: 510px;
  width: 100%;
  max-width: 100%;
}

.hero__scene .dash--hero {
  width: 100%;
  max-width: 100%;
}

.hero__glow {
  position: absolute;
  width: 74%;
  height: 62%;
  left: 13%;
  top: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-glow), transparent 72%);
  filter: blur(20px);
  z-index: 0;
}

.float-card {
  position: absolute;
  z-index: 2;
  min-width: 168px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  animation: floatCard 6.5s ease-in-out infinite;
}

.float-card--a {
  top: 40px;
  left: -16px;
}

.float-card--b {
  right: -20px;
  bottom: 24px;
  animation-delay: 1.4s;
}

.float-card strong {
  color: var(--ink);
  display: block;
  font-size: 0.87rem;
  margin-bottom: 3px;
}

.float-card span {
  font-size: 0.78rem;
  color: var(--text-soft);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-11px) rotateX(2deg);
  }
}

/* Dashboard Mock */
.dash {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fcfbfe;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.dash__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #f8f6fc;
}

.dash__lights {
  display: inline-flex;
  gap: 6px;
}

.dash__lights i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5d0e2;
}

.dash__lights i:nth-child(1) {
  background: #f87171;
}

.dash__lights i:nth-child(2) {
  background: #fbbf24;
}

.dash__lights i:nth-child(3) {
  background: #34d399;
}

.dash__title {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-soft);
}

.dash__body {
  display: flex;
  min-height: 380px;
}

.dash__sidebar {
  width: 158px;
  padding: 14px 10px;
  border-right: 1px solid var(--border);
  background: #f6f3fb;
}

.dash__nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-soft);
}

.dash__nav-item.active {
  color: var(--purple);
  background: rgba(67, 36, 111, 0.08);
  border-color: rgba(67, 36, 111, 0.14);
}

.dash__content {
  flex: 1;
  padding: 14px;
  background: var(--white);
}

.dash__kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.dash__kpi {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-muted);
  padding: 10px 11px;
}

.dash__kpi-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-soft);
  margin-bottom: 2px;
}

.dash__kpi-value {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
}

.dash__spark {
  width: 100%;
  height: 22px;
  margin-top: 6px;
}

.dash__row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
}

.dash__chart,
.dash__map,
.dash__feed {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-muted);
  padding: 12px;
}

.dash__chart-head,
.dash__map-head,
.dash__feed-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
}

.dash__bars {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 118px;
}

.dash__bars span {
  flex: 1;
  height: var(--h, 55%);
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #9d87cf, var(--purple));
}

.dash__map {
  position: relative;
  overflow: hidden;
  background-color: #f3f0fa;
  background-image: linear-gradient(rgba(67, 36, 111, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(67, 36, 111, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}

.dash__route {
  width: 100%;
  height: 84px;
}

.dash__unit {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple);
  border: 2px solid #ede7f9;
  box-shadow: 0 0 0 4px rgba(67, 36, 111, 0.14);
}

.dash__unit.u1 {
  top: 32%;
  left: 20%;
}

.dash__unit.u2 {
  top: 48%;
  left: 58%;
}

.dash__unit.u3 {
  top: 68%;
  left: 38%;
}

.dash__feed-list {
  display: grid;
  gap: 8px;
}

.dash__feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.74rem;
}

.dash__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
}

.dash__dot.warn {
  background: var(--warn);
}

.dash__dot.danger {
  background: var(--danger);
}

.dash--hero {
  transform: none;
  transform-origin: center;
}

.dash--hero .dash__body {
  min-height: 350px;
}

.dash--lg .dash__body {
  min-height: 460px;
}

.dash--lg .dash__kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dash--fleet {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #201337, #1a102c);
  color: #ddd4ec;
}

.dash--fleet .dash__bar,
.dash--fleet .dash__sidebar {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.dash--fleet .dash__content {
  background: transparent;
}

.dash--fleet .dash__kpi,
.dash--fleet .dash__chart,
.dash--fleet .dash__map,
.dash--fleet .dash__feed {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.dash--fleet .dash__kpi-value,
.dash--fleet .dash__chart-head,
.dash--fleet .dash__map-head,
.dash--fleet .dash__feed-head {
  color: #f4efff;
}

.dash--fleet .dash__kpi-label,
.dash--fleet .dash__feed-item,
.dash--fleet .dash__title,
.dash--fleet .dash__nav-item {
  color: #cabfe0;
}

.dash--fleet .dash__nav-item.active {
  color: #ffffff;
  background: rgba(172, 137, 232, 0.2);
  border-color: rgba(172, 137, 232, 0.32);
}

/* Trust / About / Services */
.trust {
  background: var(--surface-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust__bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 20px 0;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--white);
  font-size: 0.82rem;
  color: var(--text-soft);
}

.about-grid,
.services-grid,
.value-strip,
.method-grid,
.sectors-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.about-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 74, 164, 0.42);
  box-shadow: 0 18px 42px rgba(34, 18, 58, 0.15), 0 0 0 1px rgba(109, 74, 164, 0.24);
}

.card--pad {
  padding: 22px;
}

.service__title {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 1.02rem;
}

.service__text {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* Value Strip */
.value-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #fbf9ff);
}

.value-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1rem;
}

.value-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* Control Center */
.control-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.control-center__visual {
  padding: 8px;
}

.control-center__text .pill {
  margin-bottom: 14px;
}

/* Fleet */
.fleet-premium {
  background: linear-gradient(180deg, #1a122a, #120c1e);
  color: #ddd2f1;
}

.fleet-premium .title,
.fleet-premium h3 {
  color: #f5efff;
}

.fleet-premium .tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #e7def8;
}

.fleet-premium .subtitle {
  color: #c7bbdf;
}

.fleet-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: center;
}

.fleet-timeline {
  margin-top: 18px;
  border-left: 2px solid rgba(200, 184, 233, 0.35);
  padding-left: 14px;
  display: grid;
  gap: 12px;
}

.fleet-timeline__item {
  position: relative;
}

.fleet-timeline__item::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: -20px;
  top: 6px;
  background: #c8b8e9;
  box-shadow: 0 0 0 6px rgba(200, 184, 233, 0.16);
}

.fleet-timeline__item h4 {
  margin: 0 0 3px;
  color: #f7f1ff;
  font-size: 0.92rem;
}

.fleet-timeline__item p {
  margin: 0;
  color: #c7bbdf;
  font-size: 0.82rem;
}

/* Method / Sectors / Contact */
.method-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.method-step {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}

.method-step h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 0.95rem;
}

.card h3 {
  margin: 0 0 14px;
  color: var(--ink);
}

.method-step__n {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 8px;
  background: rgba(67, 36, 111, 0.1);
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
}

.sectors-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sector-chip {
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 14px 12px;
  background: var(--white);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-panel {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}

/* Forms */
.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-muted);
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--purple-light);
  background: var(--white);
  box-shadow: var(--ring);
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: #c6bed8;
  padding: 36px 0 16px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 14px 20px;
}

.footer__module {
  padding: 4px 8px;
}

.footer__module > p {
  margin: 10px 0 0;
  font-size: 0.84rem;
  line-height: 1.5;
  max-width: 28ch;
}

.footer__title {
  margin: 0 0 12px;
  color: #f4edff;
  font-size: 0.9rem;
}

.footer__links {
  display: grid;
  gap: 8px;
}

.footer__links a {
  color: #c6bed8;
  font-size: 0.86rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: #ffffff;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  border: 1px solid rgba(200, 184, 233, 0.34);
  background: rgba(200, 184, 233, 0.12);
  color: #e7def8;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 10px;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6cf4a5;
}

.footer__bottom {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 184, 233, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: #a89bc4;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.38);
  transition: transform var(--transition-fast), box-shadow var(--transition-base);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.42);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.visible,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.brand__logo {
  width: min(210px, 46vw);
  height: auto;
  object-fit: contain;
}

.brand__logo--footer {
  width: 130px;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer__module .status-pill {
  margin-top: 10px;
}

.hero h1 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.75rem, 4.4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero .tag,
.hero__lead {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.checklist {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.section-head {
  margin-bottom: 34px;
}

.float-card--c {
  top: 52%;
  right: 6%;
  animation-delay: 0.8s;
}

.nav__toggle-icon span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__toggle.is-active {
  background: rgba(67, 36, 111, 0.08);
  border-color: var(--purple-light);
}

.nav__toggle.is-active .nav__toggle-icon span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__toggle.is-active .nav__toggle-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle.is-active .nav__toggle-icon span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav.open,
.nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.contact-list {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.contact-row:hover {
  border-color: rgba(109, 74, 164, 0.4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.contact-row__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(67, 36, 111, 0.08);
  color: var(--purple);
  display: grid;
  place-items: center;
}

.contact-row__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.contact-row__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.2;
}

.contact-row__value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  word-break: break-word;
}

.contact-row__body span:last-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  word-break: break-word;
}

.form-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.form-card h3 {
  margin: 0 0 18px;
  color: var(--ink);
}

.form__msg {
  min-height: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.form__msg.success {
  color: var(--ok);
}

.form__msg.error {
  color: var(--danger);
}

.service__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(67, 36, 111, 0.1);
  color: var(--purple);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 960px) {
  .hero__grid,
  .about-grid,
  .control-center,
  .fleet-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__scene {
    min-height: 480px;
  }

  .trust__bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .value-strip,
  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sectors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dash__sidebar {
    width: 128px;
  }

  .dash__kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dash--lg .dash__kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  .container {
    padding-inline: clamp(16px, 4.5vw, 20px);
  }

  .title,
  .subtitle,
  .section-head {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .header__inner {
    padding-inline: 0;
    gap: 10px;
  }

  .brand__logo {
    max-width: min(140px, 42vw);
    height: auto;
  }

  .hero {
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7.2vw, 2rem);
    letter-spacing: -0.015em;
  }

  .hero__lead {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .credibility-strip {
    gap: 8px;
  }

  .credibility-strip li {
    max-width: 100%;
    font-size: 0.72rem;
    padding: 7px 10px;
  }

  .credibility-strip li span {
    overflow-wrap: anywhere;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition-base), opacity var(--transition-base);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__actions {
    margin-left: 0;
    flex-direction: column;
    width: 100%;
  }

  .nav__cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__scene {
    min-height: auto;
    margin-top: 8px;
  }

  .dash--hero .dash__body {
    min-height: 280px;
  }

  .dash__title {
    font-size: 0.68rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
  }

  .dash__feed-item {
    overflow-wrap: anywhere;
  }

  .float-card {
    min-width: 150px;
  }

  .float-card--a {
    left: -4px;
    top: 20px;
  }

  .float-card--b {
    right: -4px;
    bottom: 14px;
  }

  .dash__body {
    flex-direction: column;
  }

  .dash__sidebar {
    width: 100%;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .dash__nav-item {
    margin-bottom: 0;
    white-space: nowrap;
  }

  .dash__row {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .value-strip,
  .method-grid,
  .sectors-grid,
  .trust__bar,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

.icon--sm {
  width: 0.95rem;
  height: 0.95rem;
}

/* Corporate hub */
.metric-strip {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.metric-strip li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric-strip strong {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--purple);
  line-height: 1;
}

.metric-strip span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast);
}

.solution-card:hover {
  border-color: rgba(109, 74, 164, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.solution-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(109, 74, 164, 0.14), rgba(67, 36, 111, 0.06));
  color: var(--purple);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.solution-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.solution-card__desc {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--text-soft);
  flex: 1;
}

.solution-card__benefits {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 7px;
}

.solution-card__benefits li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}

.solution-card__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-light);
}

.solution-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

.ops-preview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.why-card {
  position: relative;
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.why-card__n {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(67, 36, 111, 0.22);
}

.why-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(67, 36, 111, 0.09);
  color: var(--purple);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.why-card h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  color: var(--ink);
}

.why-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.case-card {
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-base);
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.case-card__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--purple);
  margin-bottom: 12px;
}

.case-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--ink);
}

.case-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* Nav dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 1300;
}

.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav__dropdown-menu a:hover {
  background: rgba(67, 36, 111, 0.08);
  color: var(--purple);
}

.nav__link--active,
body[data-page="fleet"] .nav__link[href*="fleet"],
body[data-page="pos"] .nav__link[href*="pos"] {
  color: var(--purple);
}

.dash--lg .dash__kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid,
  .cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ops-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .why-grid,
  .cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Credibilidad y problemas */
.credibility-strip {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.credibility-strip li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.credibility-strip .icon {
  color: var(--purple);
}

.problems-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.problems-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.problems-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.problems-list .icon {
  color: var(--purple);
  margin-top: 2px;
}

.problems-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  margin-bottom: 3px;
}

.problems-list span {
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 500;
}

.problems-layout__label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.client-card {
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.client-card .icon {
  color: var(--purple);
  width: 1.35rem;
  height: 1.35rem;
  margin-bottom: 10px;
}

.client-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--ink);
}

.client-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.cases-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.case-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.case-chip .icon {
  color: var(--purple);
}

.cases-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cases-detail .case-card {
  padding: 20px 18px;
}

.cases-detail .case-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--ink);
}

.cases-detail .case-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-soft);
}

@media (max-width: 1100px) {
  .problems-layout,
  .clients-grid,
  .cases-detail {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .problems-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .solutions-grid,
  .why-grid,
  .cases-grid,
  .clients-grid,
  .cases-detail {
    grid-template-columns: 1fr;
  }

  .credibility-strip li {
    font-size: 0.74rem;
  }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 12px;
    display: none;
  }

  .nav__dropdown.is-open .nav__dropdown-menu {
    display: block;
  }

  .metric-strip {
    gap: 14px 20px;
  }

  .impl-scenarios,
  .growth-levels,
  .ops-capabilities {
    grid-template-columns: 1fr;
  }
}

/* Profundidad visual y credibilidad */
.section--elevated {
  background: linear-gradient(180deg, #faf9fd 0%, #ffffff 100%);
}

.section--gradient {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-muted) 50%, #ffffff 100%);
}

.section--dark {
  background: linear-gradient(155deg, #2a1648 0%, #3d2566 48%, #2a1648 100%);
  color: #e8e0f5;
}

.section--dark-soft {
  background: linear-gradient(160deg, #23143c 0%, #2f1d52 55%, #1f1235 100%);
}

.tag--on-dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #e7def8;
}

.title--on-dark {
  color: #f4edff;
}

.subtitle--on-dark {
  color: #c9bddf;
}

.solution-card {
  border-color: rgba(109, 74, 164, 0.18);
  box-shadow: 0 12px 32px rgba(32, 20, 56, 0.08);
}

/* ORBEX en operación */
.ops-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ops-capability {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: transform var(--transition-fast), border-color var(--transition-base);
}

.ops-capability:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
}

.ops-capability__mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 100px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
  color: #d4c8ea;
  padding: 10px;
}

.ops-capability__mock .icon {
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.9;
}

.ops-capability__mock--fleet { background: linear-gradient(145deg, rgba(108, 244, 165, 0.12), rgba(255, 255, 255, 0.04)); }
.ops-capability__mock--pos { background: linear-gradient(145deg, rgba(109, 74, 164, 0.25), rgba(255, 255, 255, 0.04)); }
.ops-capability__mock--cctv { background: linear-gradient(145deg, rgba(30, 30, 45, 0.5), rgba(109, 74, 164, 0.15)); }
.ops-capability__mock--erp { background: linear-gradient(145deg, rgba(167, 139, 250, 0.15), rgba(255, 255, 255, 0.04)); }

.ops-capability__body h3 {
  margin: 0 0 8px;
  color: #f4edff;
  font-size: 1.05rem;
}

.ops-capability__body p {
  margin: 0 0 12px;
  font-size: 0.86rem;
  color: #c9bddf;
  line-height: 1.55;
}

.ops-capability__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #e7def8;
  transition: color var(--transition-fast);
}

.ops-capability__link:hover {
  color: #fff;
}

/* Niveles de empresa */
.growth-levels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.growth-level {
  position: relative;
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.growth-level--featured {
  border-color: rgba(109, 74, 164, 0.4);
  box-shadow: 0 16px 36px rgba(67, 36, 111, 0.12);
  background: linear-gradient(180deg, #fff 0%, #f9f6fd 100%);
}

.growth-level__step {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--purple-light);
  letter-spacing: 0.06em;
}

.growth-level h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--ink);
}

.growth-level p {
  margin: 0 0 14px;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.growth-level__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.growth-level__tags li {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(67, 36, 111, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--purple);
}

/* Escenarios de implementación */
.impl-scenarios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.impl-scenario {
  padding: 24px 22px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(32, 20, 56, 0.07);
}

.impl-scenario__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(67, 36, 111, 0.1);
  color: var(--purple);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.impl-scenario h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  color: var(--ink);
}

.impl-scenario p {
  margin: 0 0 16px;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.impl-scenario__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.impl-scenario__tags li {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-muted);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text);
}

.industry-strip {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.industry-strip__label {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.trust-metrics--on-dark .trust-metric {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.trust-metrics--on-dark .trust-metric h3 {
  color: #f4edff;
}

.trust-metrics--on-dark .trust-metric p {
  color: #c9bddf;
}

.trust-metrics--on-dark .trust-metric .icon {
  color: #c4b5fd;
}

.form-card {
  border-color: var(--border-strong);
  box-shadow: 0 18px 44px rgba(32, 20, 56, 0.1);
}

@media (max-width: 1100px) {
  .growth-levels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impl-scenarios {
    grid-template-columns: 1fr;
  }

  .ops-capability {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
