:root {
  --color-bg: #080b10;
  --color-bg-soft: #0f141b;
  --color-panel: rgba(18, 24, 32, 0.78);
  --color-panel-strong: #121922;
  --color-line: rgba(229, 244, 255, 0.12);
  --color-line-strong: rgba(122, 236, 255, 0.36);
  --color-text: #f5f9ff;
  --color-muted: #aab8c6;
  --color-muted-strong: #d6e2ef;
  --color-cyan: #62e4ff;
  --color-blue: #4d8dff;
  --color-green: #48e0a4;
  --color-violet: #a88cff;
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.22);
  --shadow-card: 0 14px 36px rgba(0, 0, 0, 0.18);
  --container: min(1120px, calc(100% - 40px));
  --radius: 8px;
  --header-height: 76px;
  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background:
    linear-gradient(180deg, rgba(98, 228, 255, 0.04), transparent 18rem),
    radial-gradient(circle at 78% 8%, rgba(72, 224, 164, 0.1), transparent 18rem),
    var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(98, 228, 255, 0.82);
  outline-offset: 4px;
}

::selection {
  color: #061016;
  background: var(--color-cyan);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #071014;
  background: var(--color-cyan);
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-pad {
  padding: 104px 0;
}

.section-panel {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--color-bg-soft);
  border-block: 1px solid var(--color-line);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(8, 11, 16, 0.72);
  backdrop-filter: blur(18px);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--color-line);
  background: rgba(8, 11, 16, 0.9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: clamp(160px, 14vw, 190px);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a,
.mobile-nav a:not(.btn) {
  border-radius: var(--radius);
  color: var(--color-muted-strong);
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.desktop-nav a {
  padding: 10px 12px;
}

.desktop-nav a:hover,
.mobile-nav a:not(.btn):hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms var(--ease),
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  color: #071014;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-green));
  box-shadow: 0 14px 32px rgba(72, 224, 164, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(98, 228, 255, 0.25);
}

.btn-secondary {
  border-color: var(--color-line-strong);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  border-color: rgba(168, 140, 255, 0.55);
  background: rgba(168, 140, 255, 0.1);
}

.btn-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: calc(88svh - var(--header-height));
  padding: 48px 0 36px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-canvas,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-canvas {
  opacity: 0.52;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(98, 228, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 228, 255, 0.08) 1px, transparent 1px);
  background-position: center;
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 60% 28%, black, transparent 72%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--color-bg));
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--color-cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--color-cyan), transparent);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.4rem, 4.08vw, 4.42rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--color-muted-strong);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  min-height: 472px;
  perspective: 1000px;
}

.system-map,
.dashboard-panel,
.floating-card {
  position: absolute;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.system-map {
  inset: 28px 16px auto auto;
  width: min(392px, 100%);
  height: 288px;
  overflow: hidden;
}

.system-map::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
}

.map-node {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(98, 228, 255, 0.22);
  border-radius: var(--radius);
  color: var(--color-muted-strong);
  background: rgba(8, 11, 16, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.node-main {
  top: 114px;
  left: 50%;
  display: grid;
  min-width: 150px;
  min-height: 86px;
  transform: translateX(-50%);
  color: var(--color-text);
  background: linear-gradient(135deg, rgba(98, 228, 255, 0.18), rgba(72, 224, 164, 0.13));
}

.node-main strong {
  color: var(--color-green);
  font-size: 1rem;
}

.node-a {
  top: 38px;
  left: 34px;
}

.node-b {
  right: 34px;
  bottom: 44px;
}

.node-c {
  top: 42px;
  right: 30px;
}

.flow-line {
  position: absolute;
  z-index: 0;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(98, 228, 255, 0.72), transparent);
}

.flow-line::after {
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  content: "";
  background: var(--color-cyan);
  box-shadow: 0 0 18px var(--color-cyan);
  animation: pulseNode 2.4s ease-in-out infinite;
}

.flow-line-a {
  top: 108px;
  left: 120px;
  width: 128px;
  transform: rotate(31deg);
}

.flow-line-b {
  right: 103px;
  bottom: 116px;
  width: 126px;
  transform: rotate(208deg);
}

.flow-line-c {
  top: 96px;
  right: 112px;
  width: 112px;
  transform: rotate(150deg);
}

.dashboard-panel {
  right: 58px;
  bottom: 22px;
  width: min(342px, calc(100% - 40px));
  padding: 18px;
}

.panel-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.panel-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.panel-top span:nth-child(1) {
  background: var(--color-cyan);
}

.panel-top span:nth-child(2) {
  background: var(--color-green);
}

.panel-top span:nth-child(3) {
  background: var(--color-violet);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-row div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.metric-row small {
  display: block;
  color: var(--color-muted);
  font-size: 0.76rem;
}

.metric-row strong {
  display: block;
  margin-top: 6px;
  color: var(--color-text);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.1;
}

.chart-bars {
  display: flex;
  height: 118px;
  align-items: end;
  gap: 10px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(8, 11, 16, 0.32);
}

.chart-bars span {
  flex: 1;
  min-width: 12px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--color-cyan), rgba(77, 141, 255, 0.3));
  transform-origin: bottom;
  animation: barPulse 3.8s ease-in-out infinite;
}

.chart-bars span:nth-child(even) {
  background: linear-gradient(180deg, var(--color-green), rgba(72, 224, 164, 0.22));
  animation-delay: 600ms;
}

.floating-card {
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 230px;
  padding: 12px 14px;
  color: var(--color-muted-strong);
  font-size: 0.86rem;
  font-weight: 800;
  animation: floatCard 7s ease-in-out infinite;
}

.floating-card svg {
  width: 18px;
  height: 18px;
  color: var(--color-cyan);
}

.card-one {
  top: 10px;
  left: 0;
}

.card-two {
  top: 222px;
  left: 8px;
  animation-delay: 700ms;
}

.card-three {
  top: 332px;
  left: 44px;
  animation-delay: 1200ms;
}

.card-four {
  right: 0;
  top: 318px;
  animation-delay: 1600ms;
}

.card-five {
  right: 16px;
  bottom: 0;
  animation-delay: 2300ms;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.about-copy h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.cta-panel p,
.site-footer p {
  color: var(--color-muted-strong);
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  margin: 18px 0 0;
  font-size: 1.02rem;
}

.cards-grid,
.solutions-grid {
  display: grid;
  gap: 16px;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solutions-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.solution-card,
.process-step,
.stat-card,
.benefit-item,
.company-card,
.cta-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.info-card,
.solution-card {
  position: relative;
  min-height: 232px;
  padding: 24px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    background 220ms ease;
}

.info-card::after,
.solution-card::after {
  position: absolute;
  inset: auto 20px 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(98, 228, 255, 0.8), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.info-card:hover,
.solution-card:hover {
  border-color: rgba(98, 228, 255, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  transform: translateY(-5px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.info-card:hover::after,
.solution-card:hover::after {
  opacity: 1;
}

.info-card svg,
.solution-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
  color: var(--color-cyan);
}

.info-card h3,
.solution-card h3,
.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.22;
}

.info-card p,
.solution-card p,
.process-step p,
.company-card p {
  margin: 0;
  color: var(--color-muted);
}

.solution-card-wide {
  grid-column: span 3;
  min-height: auto;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-line {
  position: absolute;
  top: 42px;
  left: 8%;
  width: 84%;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.process-line::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--line-progress, 0%);
  content: "";
  background: linear-gradient(90deg, var(--color-cyan), var(--color-green), var(--color-violet));
  transition: width 600ms var(--ease);
}

.process-step {
  position: relative;
  min-height: 220px;
  padding: 26px;
}

.process-step span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 32px;
  border: 1px solid rgba(98, 228, 255, 0.42);
  border-radius: 999px;
  color: var(--color-cyan);
  background: var(--color-bg);
  font-size: 0.78rem;
  font-weight: 900;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.stat-card {
  padding: 28px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.stat-card span {
  color: var(--color-muted);
  font-weight: 700;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.benefit-item {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: var(--color-muted-strong);
  font-weight: 800;
}

.benefit-item svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--color-green);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: 48px;
}

.about-copy p {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: 1.04rem;
}

.company-card {
  padding: 28px;
}

.company-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(98, 228, 255, 0.42);
  border-radius: var(--radius);
  color: #061016;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-green));
  font-size: 1.25rem;
  font-weight: 900;
}

.company-icon svg {
  width: 30px;
  height: 30px;
  color: #061016;
}

.company-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.company-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.company-tags span {
  padding: 8px 10px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-muted-strong);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 800;
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  position: absolute;
  inset: 10% 8%;
  content: "";
  border: 1px solid rgba(98, 228, 255, 0.08);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
  pointer-events: none;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
}

.cta-panel::after {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--color-cyan), var(--color-green), var(--color-violet));
}

.cta-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
}

.btn-whatsapp {
  min-width: 224px;
}

.site-footer {
  border-top: 1px solid var(--color-line);
  background: #06080c;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 0.7fr 0.8fr;
  gap: 36px;
  padding: 52px 0 34px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: 0.9rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer a:not(.brand) {
  color: var(--color-muted);
  font-weight: 600;
}

.site-footer a:not(.brand):hover {
  color: var(--color-cyan);
}

.site-footer p {
  max-width: 460px;
  margin: 0 0 8px;
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease),
    filter 700ms var(--ease);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes pulseNode {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes barPulse {
  0%,
  100% {
    transform: scaleY(0.84);
  }
  50% {
    transform: scaleY(1);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .section-pad {
    padding: 82px 0;
  }

  .desktop-nav,
  .header-actions > .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 14px auto;
    z-index: 101;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: rgba(8, 11, 16, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav a:not(.btn) {
    padding: 13px 12px;
  }

  .mobile-nav .btn {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
  }

  .hero-layout,
  .about-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
  }

  .system-map {
    right: 0;
    left: auto;
  }

  .cards-grid,
  .solutions-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-card-wide {
    grid-column: span 2;
  }

  .process-track,
  .benefits-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-line {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  body.menu-open {
    overflow: hidden;
  }

  .section-pad {
    padding: 68px 0;
  }

  .brand-logo-shell {
    max-width: calc(100vw - 104px);
  }

  .brand-logo {
    width: clamp(142px, 41vw, 160px);
  }

  .hero {
    padding-top: 50px;
  }

  .hero-title {
    font-size: clamp(2.05rem, 10.4vw, 2.9rem);
  }

  .hero-buttons,
  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 610px;
  }

  .system-map {
    top: 26px;
    right: 0;
    left: 0;
    width: 100%;
    height: 292px;
  }

  .dashboard-panel {
    right: 12px;
    bottom: 70px;
  }

  .floating-card {
    max-width: 204px;
    font-size: 0.78rem;
  }

  .card-one {
    top: 0;
    left: 4px;
  }

  .card-two {
    top: 316px;
    left: 4px;
  }

  .card-three {
    top: auto;
    right: 0;
    bottom: 18px;
    left: auto;
  }

  .card-four {
    top: 374px;
    right: 0;
  }

  .card-five {
    display: none;
  }

  .cards-grid,
  .solutions-grid,
  .stats-grid,
  .process-track,
  .benefits-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child,
  .solution-card-wide {
    grid-column: auto;
  }

  .info-card,
  .solution-card,
  .process-step,
  .stat-card,
  .company-card {
    padding: 22px;
  }

  .info-card,
  .solution-card {
    min-height: auto;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
