:root {
  --bg: #07111f;
  --bg-soft: #0e1b31;
  --bg-card: #0f1f38;
  --bg-card-2: #132744;
  --white: #ffffff;
  --text: #dbe8ff;
  --muted: #9fb1cf;
  --line: rgba(255, 255, 255, 0.1);
  --blue: #3ea1ff;
  --blue-2: #1f6fff;
  --blue-soft: rgba(62, 161, 255, 0.14);
  --dark: #02060d;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: linear-gradient(180deg, #050b14 0%, #081321 18%, #09162a 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.dynamic-html-section,
.richfleet-html-shell,
.richfleet-html-content {
  font-family: "Inter", Arial, sans-serif;
  color: inherit;
}

.richfleet-html-content h1,
.richfleet-html-content h2,
.richfleet-html-content h3,
.richfleet-html-content h4,
.richfleet-html-content h5,
.richfleet-html-content h6,
.richfleet-html-content p,
.richfleet-html-content a,
.richfleet-html-content span,
.richfleet-html-content strong,
.richfleet-html-content li,
.richfleet-html-content button,
.richfleet-html-content input,
.richfleet-html-content textarea,
.richfleet-html-content label {
  font-family: inherit;
}

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

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

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: auto;
}

.noise,
.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.glow::before,
.glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.glow::before {
  width: 360px;
  height: 360px;
  background: rgba(31, 111, 255, 0.2);
  top: 60px;
  left: -80px;
}

.glow::after {
  width: 340px;
  height: 340px;
  background: rgba(62, 161, 255, 0.12);
  right: -70px;
  top: 30%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 12, 23, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0e2140, #173766 60%, #3ea1ff);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.brand-mark::before {
  width: 26px;
  height: 6px;
  transform: rotate(-35deg);
  top: 14px;
  left: 10px;
}

.brand-mark::after {
  width: 18px;
  height: 6px;
  transform: rotate(-35deg);
  top: 26px;
  left: 18px;
}

.brand span {
  color: var(--blue);
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.menu a {
  font-size: 14px;
  font-weight: 700;
  color: #c8d7f2;
  transition: 0.25s;
}

.menu a:hover {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: 0.28s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 12px 28px rgba(31, 111, 255, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero {
  position: relative;
  padding: 72px 0 64px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  border: 1px solid rgba(62, 161, 255, 0.24);
  color: #b8d9ff;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(62, 161, 255, 0.12);
}

.hero h1 {
  font-size: 62px;
  line-height: 1.03;
  letter-spacing: -1.8px;
  color: var(--white);
  max-width: 780px;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.quick-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.quick-card strong {
  display: block;
  font-size: 28px;
  color: #fff;
  margin-bottom: 5px;
}

.quick-card span {
  font-size: 14px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(18, 35, 62, 0.88),
    rgba(8, 16, 29, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    135deg,
    rgba(62, 161, 255, 0.22),
    transparent 30%,
    transparent 70%,
    rgba(62, 161, 255, 0.18)
  );
  pointer-events: none;
}

.slider-shell {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 560px;
  background: #08111f;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transform: scale(1.03);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 9, 16, 0.18),
    rgba(4, 9, 16, 0.55) 40%,
    rgba(3, 8, 14, 0.94) 100%
  );
}

.slide-content {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 2;
}

.slide-tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(62, 161, 255, 0.18);
  border: 1px solid rgba(62, 161, 255, 0.28);
  color: #d8ebff;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.slide h3 {
  font-size: 32px;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 10px;
  max-width: 520px;
}

.slide p {
  max-width: 540px;
  color: #d3e1f8;
  margin-bottom: 18px;
}

.slide-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mini-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.slider-controls {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}

.dots,
.arrows {
  display: flex;
  gap: 8px;
  pointer-events: auto;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: 0.25s;
}

.dot.active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 17, 31, 0.7);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section.alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.015)
  );
}

.section-head {
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2 {
  font-size: 44px;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 17px;
  color: var(--muted);
}

.fleet-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 28px;
}

.fleet-image-card,
.fleet-copy-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fleet-image-card {
  position: relative;
  min-height: 340px;
}

.fleet-image-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.fleet-image-card .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 11, 19, 0.72),
    rgba(6, 11, 19, 0.2),
    rgba(6, 11, 19, 0.7)
  );
}

.fleet-badge-row {
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  z-index: 2;
}

.glass-badge {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.fleet-overlay-copy {
  position: absolute;
  left: 20px;
  bottom: 22px;
  right: 20px;
  z-index: 2;
}

.fleet-overlay-copy h3 {
  font-size: 30px;
  color: #fff;
  max-width: 560px;
  margin-bottom: 10px;
  line-height: 1.1;
}

.fleet-overlay-copy p {
  color: #d8e4fa;
  max-width: 620px;
}

.fleet-copy-card {
  padding: 28px;
}

.fleet-copy-card h3 {
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}

.fleet-copy-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.bullet-grid {
  display: grid;
  gap: 12px;
}

.bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.bullet i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(62, 161, 255, 0.16);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  flex-shrink: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(62, 161, 255, 0.06), transparent 40%);
  pointer-events: none;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(62, 161, 255, 0.22),
    rgba(31, 111, 255, 0.2)
  );
  border: 1px solid rgba(62, 161, 255, 0.16);
  margin-bottom: 16px;
  font-size: 24px;
}

.feature-card h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-list div {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  color: #dce8ff;
}

.flow-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.flow-card {
  position: relative;
  padding: 22px 16px;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
}

.flow-card h4 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}

.flow-card p {
  font-size: 13px;
  color: var(--muted);
}

.flow-card:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #63b8ff;
}

.showcase-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tab-btn {
  border: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cfe0ff;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
}

.mock-screen,
.showcase-copy {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.screen-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(62, 161, 255, 0.16);
  border: 1px solid rgba(62, 161, 255, 0.22);
  font-size: 12px;
  font-weight: 800;
  color: #dceeff;
}

.screen-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  min-height: 360px;
}

.screen-side,
.screen-main {
  background: rgba(5, 11, 21, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 14px;
}

.line {
  height: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 12px;
}

.bars {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  border-radius: 16px;
  min-height: 140px;
  margin-bottom: 14px;
}

.bar {
  flex: 1;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, #54b1ff, #1f6fff);
}

.rows {
  display: grid;
  gap: 9px;
}

.row {
  height: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.showcase-copy h3 {
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
}

.showcase-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.metric-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.metric-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}

.metric-card h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.metric-card p {
  font-size: 14px;
  color: var(--muted);
}

.mini-slider-wrap {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mini-slider-track {
  display: flex;
  transition: transform 0.55s ease;
}

.mini-slide {
  min-width: 100%;
  padding: 34px 30px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: start;
}

.quote-icon {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}

.mini-slide p {
  font-size: 19px;
  color: #edf5ff;
  margin-bottom: 16px;
}

.mini-slide strong {
  display: block;
  color: #fff;
}

.mini-slide span {
  color: var(--muted);
}

.mini-slider-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 26px 24px;
}

.faq-grid {
  display: grid;
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
}

.faq-content {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.cta-box {
  position: relative;
  border-radius: 32px;
  padding: 40px;
  background:
    radial-gradient(circle at top right, rgba(62, 161, 255, 0.2), transparent 26%),
    linear-gradient(180deg, #0d1a30, #09111f 70%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.cta-copy h2 {
  font-size: 42px;
  line-height: 1.07;
  color: #fff;
  margin-bottom: 14px;
}

.cta-copy p {
  color: var(--muted);
  margin-bottom: 22px;
}

.cta-points {
  display: grid;
  gap: 12px;
}

.cta-points div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-box {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  outline: none;
}

.form-grid textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  resize: vertical;
}

.form-grid button {
  grid-column: 1 / -1;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #9bb0d0;
}

.form-message {
  display: none;
  margin-top: 14px;
  color: #aadaff;
  font-weight: 800;
}

footer {
  padding: 28px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #040911;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: #c8d7f2;
}

.floating-demo {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(31, 111, 255, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.float {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(62, 161, 255, 0.18);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(62, 161, 255, 0);
  }
}

.pulse {
  animation: pulseGlow 2.6s infinite;
}

@media (max-width: 1150px) {
  .hero-grid,
  .fleet-strip,
  .showcase-wrap,
  .cta-grid {
    grid-template-columns: 1fr;
  }

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

  .flow-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .flow-card:not(:last-child)::after {
    display: none;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .nav {
    flex-direction: column;
    padding: 12px 0;
  }

  .hero h1 {
    font-size: 44px;
  }

  .quick-points,
  .feature-grid,
  .metric-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .screen-layout {
    grid-template-columns: 1fr;
  }

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

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

  .mini-slide {
    grid-template-columns: 1fr;
  }

  .mini-slider-bottom {
    padding: 0 22px 22px;
  }

  .section-head h2,
  .cta-copy h2 {
    font-size: 34px;
  }

  .slider-shell {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .menu {
    justify-content: center;
    gap: 12px;
  }

  .hero {
    padding: 56px 0 46px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .slide h3 {
    font-size: 26px;
  }

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

  .floating-demo {
    left: 12px;
    right: 12px;
    text-align: center;
  }
}
