:root {
  --bg: #f3f6ef;
  --bg-2: #e9efe6;
  --surface: #ffffff;
  --surface-2: #f8faf5;
  --ink: #101411;
  --muted: #657168;
  --line: #dde6dc;
  --brand: #e3485a;
  --brand-dark: #b92c3e;
  --lime: #ccfb56;
  --green: #139b74;
  --blue: #286d89;
  --amber: #d9a53a;
  --dark: #121713;
  --shadow: 0 28px 90px rgba(16, 20, 17, 0.14);
  --shadow-soft: 0 16px 44px rgba(16, 20, 17, 0.08);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(16, 20, 17, 0.035) 1px, transparent 1px) 50% 0 / 88px 88px,
    linear-gradient(rgba(16, 20, 17, 0.035) 1px, transparent 1px) 50% 0 / 88px 88px,
    linear-gradient(180deg, var(--bg) 0%, #fff 34%, var(--bg-2) 100%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(221, 230, 220, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(16, 20, 17, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 64px rgba(16, 20, 17, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 156px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 760;
}

.main-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: var(--radius);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  background: #eef4eb;
  color: var(--ink);
}

.main-nav .nav-cta {
  margin-left: 6px;
  color: #fff;
  background: var(--ink);
}

.main-nav .nav-cta:hover {
  color: #fff;
  background: var(--brand);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(520px, 1.04fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding-top: 58px;
  padding-bottom: 86px;
}

.hero-copy,
.hero-product {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 1px solid rgba(16, 20, 17, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(204, 251, 86, 0.22);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 7vw, 6.4rem);
  font-weight: 900;
  line-height: 0.93;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
  line-height: 1.18;
}

.hero-text,
.section-heading p,
.integrations-copy p,
.pricing-intro p,
.contact-copy p,
.page-hero p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-text {
  max-width: 650px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 860;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 18px 36px rgba(227, 72, 90, 0.28);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: rgba(16, 20, 17, 0.34);
  box-shadow: var(--shadow-soft);
}

.hero-product {
  min-height: 674px;
}

.hero-card {
  --parallax-y: 0px;
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(221, 230, 220, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  translate: 0 var(--parallax-y);
  backdrop-filter: blur(16px);
}

.customers-card {
  top: 26px;
  left: 4px;
  width: 318px;
  padding: 16px;
}

.average-card {
  top: 88px;
  right: 0;
  width: 236px;
  padding: 16px;
}

.alert-card {
  right: 28px;
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 260px;
  padding: 14px;
}

.alert-dot {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(227, 72, 90, 0.12);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.card-head span,
.unit-list small,
.alert-card small,
.average-value span,
.dashboard-bottom span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.unit-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.unit-avatar {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.unit-avatar.red {
  background: var(--brand);
}

.unit-avatar.green {
  background: var(--green);
}

.unit-avatar.blue {
  background: var(--blue);
}

.unit-list em {
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.average-value {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.average-value strong {
  font-size: 2.25rem;
  line-height: 1;
}

.average-value span {
  color: var(--green);
}

.week-chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  align-items: end;
  height: 118px;
}

.week-chart i {
  display: block;
  min-height: 18px;
  background: linear-gradient(180deg, var(--lime), var(--green));
  border-radius: 999px 999px 4px 4px;
}

.hero-dashboard {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: absolute;
  left: 50%;
  top: 162px;
  z-index: 2;
  width: min(620px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #11171c;
  box-shadow: 0 38px 100px rgba(16, 20, 17, 0.34);
  transform: translateX(-50%) perspective(1400px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotate(-1.5deg);
  transition: transform 120ms ease-out;
}

.dashboard-toolbar {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: #dce7e2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-toolbar span {
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-toolbar em {
  margin-left: auto;
  padding: 5px 9px;
  color: #111713;
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.fleet-map {
  position: relative;
  min-height: 374px;
  overflow: hidden;
  background: #171f26;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

.fleet-map::before,
.fleet-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.fleet-map::before {
  width: 380px;
  height: 380px;
  left: -120px;
  top: 72px;
}

.fleet-map::after {
  right: -84px;
  bottom: -82px;
  width: 260px;
  height: 260px;
}

.route-line {
  position: absolute;
  inset: 76px 62px 104px 78px;
  border-top: 4px solid var(--brand);
  border-right: 4px solid var(--green);
  border-bottom: 4px solid var(--lime);
  border-radius: 8px 86px 8px 86px;
  filter: drop-shadow(0 0 18px rgba(204, 251, 86, 0.28));
  animation: route-breathe 4.6s ease-in-out infinite;
}

.route-pulse {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2.4s ease-out infinite;
}

.pulse-a {
  left: 34%;
  top: 28%;
}

.pulse-b {
  right: 22%;
  bottom: 28%;
  animation-delay: 0.9s;
}

.vehicle-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-width: 74px;
  height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  font-size: 0.72rem;
  font-weight: 850;
  animation: float-soft 5.2s ease-in-out infinite;
}

.vehicle-pin::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 7px;
  background: var(--brand);
  border-radius: 50%;
}

.pin-a {
  left: 15%;
  top: 24%;
}

.pin-b {
  right: 16%;
  top: 47%;
  animation-delay: 0.8s;
}

.pin-c {
  left: 42%;
  bottom: 20%;
  animation-delay: 1.5s;
}

.dashboard-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.dashboard-bottom article {
  padding: 18px;
  color: #fff;
  background: #11171c;
}

.dashboard-bottom strong {
  display: block;
  margin-top: 4px;
  font-size: 2.2rem;
  line-height: 1;
}

.client-strip {
  overflow: hidden;
  width: 100%;
  padding: 18px 0;
  color: #dfe8e2;
  background: var(--dark);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.strip-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.strip-track span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 850;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: end;
  padding-bottom: 88px;
}

.trust-copy h2 {
  max-width: 720px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.trust-grid article {
  min-height: 150px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 20, 17, 0.05);
  backdrop-filter: blur(14px);
}

.trust-grid article > span {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.trust-names {
  grid-column: span 2;
}

.trust-names div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-names div span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 850;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 890px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-self: center;
}

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

.process-card,
.story-list a,
.faq-item,
.pricing-option,
.pricing-panel,
.pricing-proof,
.contact-form,
.timeline div,
.philosophy-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 36px rgba(16, 20, 17, 0.06);
  backdrop-filter: blur(14px);
}

.process-card {
  min-height: 438px;
  padding: 18px;
}

.process-visual {
  position: relative;
  display: grid;
  min-height: 190px;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius);
}

.setup-visual {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: end;
  padding: 18px;
}

.setup-visual span {
  display: block;
  height: 74%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.setup-visual span:nth-child(2) {
  height: 96%;
  background: rgba(204, 251, 86, 0.16);
}

.route-visual::before,
.route-visual::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 3px solid var(--lime);
  border-left-color: transparent;
  border-radius: 12px 80px 12px 80px;
}

.route-visual i {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
}

.route-visual i:nth-child(1) {
  left: 28%;
  top: 30%;
}

.route-visual i:nth-child(2) {
  right: 22%;
  top: 48%;
}

.route-visual i:nth-child(3) {
  left: 45%;
  bottom: 24%;
}

.growth-visual {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
  padding: 20px;
}

.growth-visual i {
  display: block;
  background: linear-gradient(180deg, var(--lime), var(--green));
  border-radius: var(--radius) var(--radius) 0 0;
}

.process-card > span,
.story-list span,
.plan-label,
.timeline span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-card p,
.story-list em,
.pricing-panel p,
.pricing-panel li,
.pricing-proof p,
.timeline p,
.philosophy-grid p,
.proof-copy {
  color: var(--muted);
}

.feature-suite {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.feature-copy {
  display: flex;
  min-height: 584px;
  flex-direction: column;
  justify-content: space-between;
}

.feature-tabs {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.feature-tab {
  display: grid;
  gap: 5px;
  min-height: 94px;
  padding: 16px;
  text-align: left;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-tab span {
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-tab:hover,
.feature-tab.is-active {
  transform: translateY(-2px);
  border-color: rgba(227, 72, 90, 0.36);
  box-shadow: var(--shadow-soft);
}

.feature-tab.is-active {
  color: #fff;
  background: var(--ink);
}

.feature-tab.is-active span {
  color: #c8d2cc;
}

.feature-stage {
  position: relative;
  min-height: 584px;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(16, 20, 17, 0.04) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(rgba(16, 20, 17, 0.04) 1px, transparent 1px) 0 0 / 36px 36px,
    #f8faf5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-screen {
  position: absolute;
  inset: 24px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 22px;
  color: #fff;
  background: #111713;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
  transition: opacity 280ms ease, transform 280ms ease;
}

.feature-screen.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.screen-top span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dispatch-board,
.safety-board,
.maintenance-board {
  display: grid;
  gap: 12px;
  align-content: center;
}

.dispatch-board div,
.safety-board div,
.maintenance-board {
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.dispatch-board span,
.safety-board small,
.maintenance-board small {
  color: #9aa49f;
}

.dispatch-board i {
  display: block;
  height: 9px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--lime), var(--green));
  border-radius: 999px;
}

.safety-board {
  grid-template-columns: minmax(190px, 0.9fr) repeat(2, minmax(0, 1fr));
  align-items: center;
}

.risk-meter {
  min-height: 230px;
  background:
    radial-gradient(circle closest-side, #111713 64%, transparent 66%),
    conic-gradient(var(--brand) 0 22%, var(--amber) 22% 48%, var(--lime) 48% 100%);
  border-radius: 50%;
}

.safety-board strong {
  display: block;
  font-size: 2.45rem;
  line-height: 1;
}

.maintenance-board {
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  min-height: 390px;
}

.maintenance-board span {
  display: block;
  min-height: 92px;
  background: linear-gradient(180deg, var(--lime), var(--green));
  border-radius: var(--radius) var(--radius) 0 0;
}

.maintenance-board span:nth-child(2) {
  min-height: 172px;
  background: linear-gradient(180deg, var(--brand), var(--amber));
}

.maintenance-board span:nth-child(3) {
  min-height: 238px;
}

.maintenance-board span:nth-child(4) {
  min-height: 136px;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.maintenance-board strong,
.maintenance-board small {
  grid-column: 1 / -1;
}

.performance-section {
  padding-top: 86px;
}

.performance-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.16fr) minmax(260px, 0.62fr);
  gap: 14px;
  align-items: stretch;
}

.performance-menu {
  display: grid;
  gap: 10px;
  align-content: start;
}

.performance-menu span,
.performance-copy {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 20, 17, 0.05);
  backdrop-filter: blur(14px);
}

.performance-menu span {
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 16px;
  font-weight: 850;
}

.performance-menu span:first-child {
  color: #fff;
  background: var(--ink);
}

.performance-visual {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  padding: 22px;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.abstract-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--ink);
}

.abstract-panel span {
  position: absolute;
  border-radius: 50%;
}

.abstract-panel span:nth-child(1) {
  width: 340px;
  height: 340px;
  left: -90px;
  top: 42px;
  border: 1px solid rgba(204, 251, 86, 0.22);
}

.abstract-panel span:nth-child(2) {
  width: 220px;
  height: 220px;
  right: 42px;
  top: 64px;
  background: rgba(204, 251, 86, 0.12);
}

.abstract-panel span:nth-child(3) {
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -80px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.ops-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(430px, 100%);
  margin: 96px auto 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

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

.priority-list article {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.priority-list i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.risk-high {
  background: var(--brand);
}

.risk-mid {
  background: var(--amber);
}

.risk-low {
  background: var(--green);
}

.priority-list small {
  color: var(--muted);
}

.performance-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.performance-copy > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: auto;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.performance-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.integrations-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.integrations-copy .button {
  margin-top: 24px;
}

.integration-stack {
  display: grid;
  gap: 12px;
}

.integration-stack article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 20, 17, 0.05);
}

.integration-stack article span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.integration-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  min-height: 236px;
  padding: 18px;
  background: var(--ink);
  border-radius: var(--radius);
}

.integration-cloud span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-weight: 900;
}

.integration-cloud span:nth-child(2),
.integration-cloud span:nth-child(5) {
  color: var(--ink);
  background: var(--lime);
}

.pricing-section {
  padding-top: 122px;
}

.pricing-intro {
  display: grid;
  max-width: 760px;
  margin-bottom: 42px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.1fr) minmax(220px, 0.58fr);
  gap: 14px;
  align-items: stretch;
}

.pricing-options {
  display: grid;
  gap: 10px;
}

.pricing-option {
  display: grid;
  gap: 5px;
  min-height: 132px;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.pricing-option span {
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-option small {
  color: var(--muted);
}

.pricing-option:hover,
.pricing-option.is-active {
  transform: translateY(-2px);
  border-color: rgba(227, 72, 90, 0.36);
}

.pricing-option.is-active {
  color: #fff;
  background: var(--ink);
}

.pricing-option.is-active span {
  color: var(--lime);
}

.pricing-option.is-active small {
  color: #c8d2cc;
}

.pricing-detail {
  position: relative;
  min-height: 548px;
}

.pricing-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 30px;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.pricing-panel.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.pricing-panel h3 {
  max-width: 520px;
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  line-height: 0.98;
}

.pricing-panel .button {
  width: fit-content;
  margin: 8px 0 28px;
}

.pricing-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.pricing-panel li {
  position: relative;
  padding-left: 24px;
  font-weight: 680;
}

.pricing-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
}

.pricing-proof {
  display: flex;
  min-height: 548px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(204, 251, 86, 0.18), transparent 42%),
    var(--ink);
  border-color: rgba(255, 255, 255, 0.1);
}

.rating-stack span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

.proof-avatars {
  display: flex;
}

.proof-avatars span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-right: -10px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.pricing-proof p {
  color: #c8d2cc;
}

.stories-section {
  border-top: 1px solid var(--line);
}

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

.story-list a {
  display: grid;
  grid-template-columns: minmax(120px, 0.24fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.story-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(227, 72, 90, 0.34);
  box-shadow: var(--shadow-soft);
}

.story-list strong {
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1.14;
}

.story-list em {
  font-style: normal;
  font-weight: 850;
}

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

.testimonial-grid article {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 20, 17, 0.05);
  backdrop-filter: blur(14px);
}

.testimonial-grid p {
  color: var(--ink);
  font-size: 1.08rem;
}

.testimonial-grid article div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px 12px;
  align-items: center;
}

.testimonial-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  grid-row: span 2;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.testimonial-grid small {
  color: var(--muted);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 54px;
  align-items: start;
}

.faq-section .button {
  width: fit-content;
  margin-top: 12px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 850;
}

.faq-item button span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  inset: 8px 2px auto;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease;
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: rotate(0deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-panel p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel p {
  padding: 0 20px 20px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 16px;
  padding: 64px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--brand);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-section .eyebrow,
.contact-copy p {
  color: #ffe6e9;
}

.contact-section .eyebrow::before {
  background: #fff;
}

.contact-copy h2 {
  max-width: 760px;
  color: inherit;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.contact-proof strong {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

.contact-proof > div:last-child span {
  color: #ffe6e9;
}

.contact-lines a {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 860;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.95);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 820;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 12px;
  color: var(--ink);
  background: var(--surface-2);
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(250px, 0.72fr);
  gap: 38px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 36px;
  color: #c8d2cc;
  background: var(--ink);
  border-radius: var(--radius);
}

.site-footer img {
  width: 156px;
  margin-bottom: 16px;
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: #c8d2cc;
  font-style: normal;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  max-width: 420px;
  margin-top: 24px;
}

.newsletter-form label {
  color: #fff;
  font-weight: 850;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 46px;
  border-radius: var(--radius);
}

.newsletter-form input {
  min-width: 0;
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.newsletter-form input::placeholder {
  color: #9facaa;
}

.newsletter-form button {
  padding: 0 14px;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  font-weight: 900;
  cursor: pointer;
}

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

.footer-links a,
.site-footer a {
  color: #fff;
  font-weight: 760;
}

.page-hero {
  padding-top: 126px;
  padding-bottom: 72px;
}

.page-hero h1 {
  max-width: 1040px;
}

.case-hero h1,
.case-detail-hero h1 {
  max-width: 980px;
}

.back-link {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin-bottom: 28px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.case-index {
  display: grid;
  gap: 10px;
  padding-top: 42px;
}

.case-index-card {
  display: grid;
  grid-template-columns: minmax(90px, 0.14fr) minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 136px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 20, 17, 0.05);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.case-index-card:hover {
  transform: translateY(-2px);
  border-color: rgba(227, 72, 90, 0.34);
  box-shadow: var(--shadow-soft);
}

.case-index-card span,
.case-meta span {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.case-index-card strong {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.case-index-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.case-meta strong {
  color: var(--muted);
}

.case-content {
  display: grid;
  gap: 14px;
  padding-top: 42px;
}

.case-content article {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 34px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 20, 17, 0.05);
  backdrop-filter: blur(14px);
}

.case-content h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.case-content p,
.case-content li {
  color: var(--muted);
  font-size: 1.04rem;
}

.case-content ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.case-content li {
  position: relative;
  padding-left: 24px;
}

.case-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
}

.split-section,
.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: start;
}

.timeline,
.contact-stack {
  display: grid;
  gap: 12px;
}

.mission-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 86px;
}

.mission-card {
  padding: 28px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mission-card .eyebrow {
  color: var(--lime);
}

.mission-card p {
  color: #c8d2cc;
}

.metrics-grid,
.team-grid {
  display: grid;
  gap: 14px;
}

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

.metrics-grid article,
.team-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 20, 17, 0.05);
  backdrop-filter: blur(14px);
}

.metrics-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.metrics-grid span,
.team-grid p {
  color: var(--muted);
}

.timeline div,
.philosophy-grid article {
  padding: 24px;
}

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

.philosophy-grid article {
  min-height: 218px;
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.team-grid article {
  min-height: 230px;
}

.team-grid span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
  font-weight: 900;
}

.team-grid strong {
  display: block;
  margin-bottom: 10px;
}

.proof-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-stack {
  margin-top: 24px;
}

.contact-stack a {
  color: var(--brand-dark);
  font-weight: 850;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.72);
    box-shadow: 0 0 0 0 rgba(204, 251, 86, 0.42);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 18px rgba(204, 251, 86, 0);
  }

  100% {
    transform: scale(0.72);
    box-shadow: 0 0 0 0 rgba(204, 251, 86, 0);
  }
}

@keyframes route-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 12px rgba(204, 251, 86, 0.18));
    transform: translateY(0);
  }

  50% {
    filter: drop-shadow(0 0 22px rgba(204, 251, 86, 0.36));
    transform: translateY(-5px);
  }
}

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

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

@media (max-width: 1100px) {
  .hero,
  .feature-suite,
  .integrations-section,
  .faq-section,
  .contact-section,
  .trust-section,
  .performance-layout,
  .mission-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
  }

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

  .pricing-layout {
    grid-template-columns: minmax(230px, 0.74fr) minmax(0, 1.26fr);
  }

  .pricing-proof {
    grid-column: 1 / -1;
    min-height: 230px;
  }

  .performance-copy {
    min-height: 230px;
  }

  .contact-section {
    padding: 44px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav .nav-cta {
    margin-left: 0;
  }

  .process-grid,
  .safety-board,
  .testimonial-grid,
  .team-grid,
  .split-section,
  .proof-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .brand img {
    width: 134px;
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 62px;
    padding-bottom: 76px;
  }

  h1 {
    font-size: clamp(2.72rem, 13vw, 4.45rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.35rem);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-product {
    min-height: 760px;
  }

  .customers-card {
    top: 0;
    left: 0;
    right: 18px;
    width: auto;
  }

  .average-card {
    top: 222px;
    right: 0;
    width: 214px;
  }

  .hero-dashboard {
    top: 330px;
    width: 100%;
    transform: translateX(-50%) rotate(0deg);
  }

  .alert-card {
    right: 0;
    bottom: 0;
  }

  .fleet-map {
    min-height: 300px;
  }

  .dashboard-bottom {
    grid-template-columns: 1fr;
  }

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

  .trust-names {
    grid-column: auto;
  }

  .feature-copy {
    min-height: unset;
  }

  .feature-stage {
    min-height: 500px;
    padding: 14px;
  }

  .feature-screen {
    inset: 14px;
    padding: 16px;
  }

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

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

  .pricing-detail,
  .pricing-proof {
    min-height: 560px;
  }

  .performance-visual {
    min-height: 460px;
  }

  .story-list a {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .case-index-card,
  .case-content article {
    grid-template-columns: 1fr;
  }

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

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

  .contact-section,
  .site-footer {
    padding: 28px;
  }

  .newsletter-form div {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .main-nav a {
    justify-content: flex-start;
  }

  .hero-product {
    min-height: 815px;
  }

  .average-card {
    top: 244px;
    width: 190px;
  }

  .hero-dashboard {
    top: 372px;
  }

  .dashboard-toolbar strong {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .route-line {
    inset: 68px 32px 96px 40px;
  }

  .vehicle-pin {
    min-width: 62px;
    height: 28px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

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

  .pricing-panel {
    padding: 22px;
  }
}

@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;
  }

  .strip-track {
    animation: none;
  }
}
