:root {
  --red: #ff1638;
  --red-dark: #b3051f;
  --gold: #d9b77a;
  --ink: #13243d;
  --ink-soft: #24334d;
  --steel: #6f809b;
  --line: #ccd6e4;
  --line-soft: #e8eef6;
  --white: #ffffff;
  --paper: #f4f7fc;
  --shadow-dark: 0 18px 46px rgba(18, 34, 62, 0.18);
  --shadow-soft: 0 14px 32px rgba(27, 47, 79, 0.11);
  --radius: 16px;
  --max: 1160px;
  --max-nav: 1960px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.55;
  color: #162640;
  background:
    radial-gradient(circle at 12% -8%, rgba(255, 22, 56, 0.2), transparent 33%),
    radial-gradient(circle at 85% 8%, rgba(33, 74, 145, 0.14), transparent 34%),
    linear-gradient(160deg, #f8fafe, #edf2f9 42%, #f5f8fd);
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(255, 22, 56, 0.18), rgba(255, 22, 56, 0) 66%);
  animation: orb 12s ease-in-out infinite;
}

.ambient-a {
  top: -6rem;
  left: -7rem;
}

.ambient-b {
  right: -7rem;
  top: 14rem;
  animation-delay: -5s;
}

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

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(26, 47, 82, 0.14);
  background: linear-gradient(145deg, rgba(251, 253, 255, 0.94), rgba(238, 244, 252, 0.9));
  backdrop-filter: blur(14px);
  box-shadow:
    0 8px 24px rgba(17, 34, 64, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.navbar .container {
  width: min(var(--max-nav), calc(100% - 1rem));
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(29, 59, 108, 0.24);
  padding: 0.52rem 0.9rem;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 252, 0.92));
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: #1d3253;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.nav-phone:hover {
  color: #b3051f;
  border-color: rgba(255, 22, 56, 0.36);
  background: linear-gradient(140deg, rgba(255, 220, 226, 0.9), rgba(255, 255, 255, 0.94));
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
}

.nav-inner {
  min-height: 5.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.14rem 0.1rem 0.14rem 0;
}

.brand-logo {
  width: 8.65rem;
  height: auto;
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(1.06) contrast(1.05) drop-shadow(0 2px 3px rgba(0, 0, 0, 0.26));
  transform: translateZ(0);
  transition: transform 0.24s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px);
}

.brand-text {
  display: flex;
  flex-direction: column;
  padding-left: 0.76rem;
  border-left: 1px solid rgba(24, 56, 105, 0.24);
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.18rem;
  color: #112642;
}

.brand-text small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #586c88;
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  color: #223c61;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.36rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), #ff6b80);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.87rem;
  padding: 0.78rem 1.2rem;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.35) 45%, transparent 78%);
  transform: translateX(-120%);
  transition: transform 460ms ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--red-dark), var(--red));
  box-shadow: 0 12px 28px rgba(255, 22, 56, 0.34);
}

.btn-secondary {
  color: #1e3658;
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(34, 62, 108, 0.2);
}

.btn-nav {
  color: #1c3558;
  background: linear-gradient(130deg, #fdfefe, #eaf1fa);
  border-color: rgba(32, 63, 113, 0.24);
}

.section {
  padding: 4.2rem 0;
}

.section-surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(246, 250, 255, 0.6));
}

.hero {
  padding-top: 3.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: #687a93;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0.62rem 0 0;
  max-width: 16ch;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  color: #102543;
}

.hero-copy p {
  margin: 0.95rem 0 0;
  color: #3f526d;
  max-width: 56ch;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
}

.hero-metrics {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.hero-metrics article {
  border-radius: 12px;
  border: 1px solid rgba(28, 62, 112, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.88));
  padding: 0.78rem;
  backdrop-filter: blur(5px);
}

.hero-metrics h3 {
  margin: 0;
  line-height: 1;
  color: var(--gold);
  font-size: 1.45rem;
}

.hero-metrics p {
  margin: 0.24rem 0 0;
  font-size: 0.74rem;
  color: #62748f;
}

.hero-visual {
  position: relative;
  min-height: 22rem;
}

.bike-frame {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(24, 56, 104, 0.15);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(240, 247, 255, 0.86));
  box-shadow: var(--shadow-dark);
}

.bike-frame img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.03);
}

.float-card {
  position: absolute;
  width: min(15rem, 62%);
  border-radius: 12px;
  border: 1px solid rgba(24, 52, 95, 0.22);
  background: rgba(252, 254, 255, 0.92);
  box-shadow: var(--shadow-dark);
  padding: 0.75rem 0.82rem;
  animation: floatCard 4.8s ease-in-out infinite;
}

.float-card p {
  margin: 0;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #62748f;
}

.float-card h4 {
  margin: 0.36rem 0 0;
  line-height: 1.25;
  color: #173354;
  font-size: 0.93rem;
}

.float-a {
  right: -0.7rem;
  top: 1.1rem;
}

.float-b {
  left: -0.8rem;
  bottom: 1.3rem;
  animation-delay: -2.3s;
}

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

.client-band {
  padding: 1rem 0 0.2rem;
}

.band-title {
  margin: 0;
  color: #6a7b94;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.marquee {
  margin-top: 0.8rem;
  border-top: 1px solid rgba(27, 58, 106, 0.2);
  border-bottom: 1px solid rgba(27, 58, 106, 0.2);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(240, 246, 255, 0.86), rgba(255, 255, 255, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(30, 63, 112, 0.08);
  overflow: hidden;
}

.marquee-track {
  display: inline-flex;
  gap: 0.82rem;
  min-width: max-content;
  padding: 0.94rem 0;
  animation: marquee 30s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.logo-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  border: 1px solid rgba(33, 68, 121, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 245, 255, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 18px rgba(34, 60, 103, 0.14);
  min-width: 6.3rem;
  min-height: 2.45rem;
}

.logo-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 62%);
}

.logo-pill img {
  width: auto;
  height: 1.34rem;
  max-width: 6.6rem;
  object-fit: contain;
  display: block;
  filter: saturate(1.07) contrast(1.07) brightness(1.02) drop-shadow(0 3px 8px rgba(20, 36, 62, 0.28));
  position: relative;
  z-index: 1;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.section-head {
  margin-bottom: 1.2rem;
}

.section-head h2 {
  margin: 0.34rem 0 0;
  color: #112845;
  font-size: clamp(1.55rem, 3.2vw, 2.65rem);
  line-height: 1.12;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.solution-card {
  border-radius: var(--radius);
  border: 1px solid rgba(28, 62, 112, 0.17);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 255, 0.88));
  backdrop-filter: blur(6px);
  padding: 1rem;
  box-shadow: var(--shadow-dark);
  transition: transform 240ms ease, border-color 240ms ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 22, 56, 0.52);
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
}

.solution-card h3 {
  margin: 0.72rem 0 0;
  color: #183557;
  font-size: 1.06rem;
}

.solution-card p {
  margin: 0.48rem 0 0;
  color: #4f6079;
}

.clientele-showcase {
  position: relative;
  background:
    radial-gradient(circle at 14% -10%, rgba(255, 22, 56, 0.16), transparent 31%),
    radial-gradient(circle at 88% 0%, rgba(28, 70, 138, 0.13), transparent 30%),
    linear-gradient(160deg, #f7f9fd, #edf3fb 45%, #f8fbff);
}

.clientele-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(transparent 96%, rgba(30, 61, 108, 0.05) 96%),
    linear-gradient(90deg, transparent 96%, rgba(30, 61, 108, 0.05) 96%);
  background-size: 34px 34px;
  opacity: 0.18;
}

.clientele-showcase .container {
  position: relative;
}

.clientele-stage {
  position: relative;
  padding: 1.05rem;
  border-radius: 24px;
  border: 1px solid rgba(31, 66, 116, 0.2);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 22, 56, 0.12), transparent 30%),
    radial-gradient(circle at 85% 14%, rgba(108, 163, 255, 0.11), transparent 35%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(236, 244, 255, 0.9) 55%, rgba(247, 251, 255, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(30, 63, 110, 0.12),
    0 20px 42px rgba(27, 52, 91, 0.16);
  perspective: 1400px;
  overflow: hidden;
}

.clientele-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.54), transparent 34%, transparent 64%, rgba(255, 255, 255, 0.3));
}

.clientele-stage::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -2.8rem;
  height: 5.2rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255, 22, 56, 0.14), rgba(255, 22, 56, 0));
  filter: blur(20px);
}

.clientele-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  transform-style: preserve-3d;
}

.client-card {
  --base-rx: 7deg;
  --base-ry: 0deg;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  --depth: 0px;
  --glow-x: 20%;
  --glow-y: 14%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 66, 114, 0.2);
  border-radius: 18px;
  padding: 1.08rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 255, 0.9) 56%, rgba(247, 251, 255, 0.94)) padding-box,
    linear-gradient(140deg, rgba(221, 83, 101, 0.42), rgba(217, 183, 122, 0.44), rgba(94, 128, 188, 0.34)) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px rgba(30, 57, 97, 0.16);
  transition: transform 340ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 340ms ease, border-color 340ms ease;
  min-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transform: translate3d(0, var(--lift), var(--depth))
    rotateX(calc(var(--base-rx) + var(--tilt-x)))
    rotateY(calc(var(--base-ry) + var(--tilt-y)));
  will-change: transform;
}

.client-card:nth-child(4n + 1),
.client-card:nth-child(4n + 3) {
  --base-ry: -2deg;
}

.client-card:nth-child(4n + 2),
.client-card:nth-child(4n + 4) {
  --base-ry: 2deg;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 52%),
    linear-gradient(125deg, rgba(255, 22, 56, 0.1), rgba(217, 183, 122, 0.08) 52%, rgba(83, 112, 164, 0.12));
}

.client-card::after {
  content: "";
  position: absolute;
  top: -8%;
  left: -140%;
  width: 70%;
  height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.56), transparent);
  transform: skewX(-22deg);
  transition: left 720ms ease;
}

.client-card:hover {
  --lift: -10px;
  --depth: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 24px 40px rgba(28, 54, 93, 0.2);
  border-color: rgba(230, 187, 117, 0.72);
}

.client-card.is-tilting {
  --lift: -10px;
  --depth: 24px;
}

.client-card:hover::after {
  left: 155%;
}

.client-card img {
  width: auto;
  max-width: min(100%, 10.5rem);
  max-height: 3.3rem;
  object-fit: contain;
  display: block;
  background: transparent;
  border-radius: 0;
  padding: 0;
  filter: saturate(1.08) contrast(1.08) brightness(1.03) drop-shadow(0 6px 14px rgba(24, 45, 78, 0.26));
  position: relative;
  z-index: 1;
  transform: translateZ(24px);
  transition: transform 340ms ease, filter 340ms ease;
}

.client-card:hover img {
  transform: translateZ(38px) scale(1.02);
  filter: saturate(1.14) contrast(1.1) brightness(1.06) drop-shadow(0 8px 16px rgba(23, 45, 80, 0.3));
}

.legal-note {
  margin: 0.95rem 0 0;
  color: #9ca7b9;
  font-size: 0.77rem;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.model-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(27, 58, 106, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(238, 245, 255, 0.9));
  box-shadow: var(--shadow-dark);
}

.model-card img {
  width: 100%;
  height: 15.8rem;
  object-fit: cover;
  display: block;
  transition: transform 360ms ease;
}

.model-card:hover img {
  transform: scale(1.06);
}

.model-card div {
  padding: 0.95rem;
}

.model-card h3 {
  margin: 0;
  color: #173354;
  font-size: 1.14rem;
}

.model-card p {
  margin: 0.44rem 0 0;
  color: #4c6079;
}

.service-shell {
  border-radius: var(--radius);
  overflow-x: auto;
  border: 1px solid rgba(28, 61, 111, 0.2);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-dark);
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.service-table th,
.service-table td {
  padding: 0.86rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  vertical-align: top;
}

.service-table th {
  background: rgba(31, 64, 113, 0.08);
  color: #183455;
  font-size: 0.88rem;
}

.service-table td {
  color: #3f526d;
}

.process-list {
  margin: 1.05rem 0 0;
  padding: 1rem 1rem 1rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(28, 62, 112, 0.2);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-dark);
}

.process-list li {
  margin: 0.46rem 0;
  color: #465973;
}

.process-list strong {
  color: #163353;
}

.footer {
  margin-top: 2rem;
  padding: 3rem 0 1rem;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 22, 56, 0.12), transparent 28%),
    linear-gradient(165deg, #edf3fb, #e3ecf8 45%, #edf4fb);
  color: #1b3557;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(31, 63, 111, 0.15);
  padding-bottom: 1rem;
}

.footer h3 {
  margin: 0;
  color: #163353;
  font-size: 1.25rem;
}

.footer p {
  margin: 0.38rem 0 0;
  color: #465a75;
}

.contact-form {
  margin-top: 0.55rem;
}

.contact-form label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #5f728d;
}

.contact-form input,
.contact-form textarea {
  margin-top: 0.22rem;
  width: 100%;
  border: 1px solid rgba(31, 63, 111, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #183557;
  font: inherit;
  padding: 0.66rem 0.73rem;
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.75rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.2rem;
  margin: 0.62rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #556a84;
}

.form-status.is-success {
  color: #8bf0ba;
}

.form-status.is-error {
  color: #ff9fb0;
}

.contact-form.is-loading .btn {
  opacity: 0.78;
  pointer-events: none;
}

.footer-bottom {
  margin-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav-links,
  .btn-nav {
    display: none;
  }

  .nav-phone {
    font-size: 0.77rem;
    padding: 0.45rem 0.72rem;
  }

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

  .solution-grid,
  .clientele-grid,
  .model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clientele-stage {
    padding: 0.9rem;
  }

  .client-card {
    --base-rx: 5deg;
    --base-ry: 0deg;
  }

  .hero-visual {
    margin-top: 0.45rem;
  }

  .float-a {
    right: 0.5rem;
  }

  .float-b {
    left: 0.5rem;
  }
}

@media (max-width: 720px) {
  .nav-phone {
    font-size: 0.74rem;
    padding: 0.43rem 0.62rem;
  }

  .brand-logo {
    width: 7.3rem;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text small {
    font-size: 0.62rem;
  }

  .hero-metrics,
  .solution-grid,
  .clientele-grid,
  .model-grid {
    grid-template-columns: 1fr;
  }

  .clientele-stage {
    padding: 0.72rem;
    border-radius: 18px;
  }

  .client-card,
  .client-card:hover {
    --base-rx: 0deg;
    --base-ry: 0deg;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --lift: 0px;
    --depth: 0px;
    transform: none;
  }

  .client-card img,
  .client-card:hover img {
    transform: none;
  }

  .section {
    padding: 3rem 0;
  }

  .btn {
    width: 100%;
  }

  .float-card {
    position: static;
    width: 100%;
    margin-top: 0.56rem;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

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