: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;
  --scroll-progress: 0;
}

*,
*::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);
  transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 22, 56, 0), rgba(255, 22, 56, 0.3), rgba(255, 22, 56, 0));
  opacity: 0;
  transition: opacity 260ms ease;
}

.navbar.is-scrolled {
  border-bottom-color: rgba(24, 49, 85, 0.22);
  background: linear-gradient(145deg, rgba(250, 253, 255, 0.98), rgba(232, 240, 251, 0.97));
  box-shadow:
    0 12px 28px rgba(18, 36, 66, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.navbar.is-scrolled::after {
  opacity: 1;
}

.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;
  min-height: 2.72rem;
  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);
  min-height: 2.72rem;
  padding: 0.72rem 1.34rem;
  line-height: 1;
  white-space: nowrap;
}

.btn-call-mobile {
  display: none;
}

.section {
  padding: 4.2rem 0;
}

#solutions,
#clientele,
#models,
#service,
#contact {
  scroll-margin-top: 6.2rem;
}

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

.servicing-department {
  margin-top: 1.3rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(27, 60, 108, 0.18);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 22, 56, 0.08), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(236, 244, 255, 0.9));
  box-shadow: var(--shadow-dark);
}

.servicing-department .section-head {
  margin-bottom: 0.68rem;
}

.servicing-intro {
  margin: 0;
  color: #405674;
}

.servicing-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
}

.servicing-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(28, 59, 106, 0.18);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(234, 243, 255, 0.92));
  box-shadow: 0 16px 28px rgba(28, 52, 92, 0.16);
}

.servicing-photo img {
  width: 100%;
  height: 100%;
  max-height: 19rem;
  object-fit: cover;
  display: block;
}

.servicing-photo figcaption {
  display: none;
}

.servicing-photo.is-missing {
  display: grid;
  place-items: center;
  min-height: 13.2rem;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 22, 56, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(228, 238, 252, 0.93));
}

.servicing-photo.is-missing figcaption {
  display: block;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #5b7090;
}

.servicing-trust {
  margin-top: 0.9rem;
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(28, 62, 112, 0.18);
  background: rgba(255, 255, 255, 0.75);
}

.servicing-trust h3 {
  margin: 0;
  color: #173556;
  font-size: 1.06rem;
}

.servicing-points {
  margin: 0.58rem 0 0;
  padding-left: 1.1rem;
  color: #455a76;
}

.servicing-points li + li {
  margin-top: 0.38rem;
}

.footer {
  margin-top: 2rem;
  padding: 3rem 0 1rem;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 22, 56, 0.1), transparent 30%),
    linear-gradient(165deg, #e9eff8, #dde7f4 45%, #e8f0f8);
  color: #173457;
}

.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: #153252;
  font-size: 1.25rem;
  line-height: 1.2;
}

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

/* Keep footer content instantly readable on all devices. */
.footer .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

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

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

.proposal-mail-shell {
  border: 1px solid rgba(27, 58, 103, 0.24);
  border-radius: 14px;
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 253, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(24, 48, 84, 0.12);
  padding: 0.95rem 0.9rem;
}

.proposal-help {
  margin: 0;
  color: #35506f;
  font-size: 0.88rem;
  line-height: 1.55;
}

.proposal-note {
  margin: 0.65rem 0 0;
  color: #4f6380;
  font-size: 0.78rem;
}

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

.mobile-fab-stack {
  position: fixed;
  right: 0.78rem;
  bottom: 0.82rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
}

.mobile-call-fab,
.mobile-quote-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.68rem 1.02rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 30px rgba(22, 42, 76, 0.18);
  opacity: calc(0.78 + (var(--scroll-progress) * 0.22));
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.mobile-call-fab {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #fff;
  background: linear-gradient(140deg, #b90724, #ff1638);
  box-shadow: 0 14px 30px rgba(255, 22, 56, 0.35);
}

.mobile-quote-fab {
  border: 1px solid rgba(31, 63, 111, 0.22);
  color: #193456;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(236, 244, 255, 0.94));
}

@media (min-width: 721px) {
  .mobile-fab-stack {
    display: none;
  }
}

.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) {
  .navbar {
    background: transparent;
    overflow: hidden;
  }

  .navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(145deg, rgba(251, 253, 255, 0.96), rgba(238, 244, 252, 0.94));
    opacity: calc(0.56 + (var(--scroll-progress) * 0.4));
    transition: opacity 180ms ease;
  }

  .navbar.is-scrolled {
    background: transparent;
  }

  .nav-inner {
    position: relative;
    z-index: 1;
  }

  #solutions,
  #clientele,
  #models,
  #service,
  #contact {
    scroll-margin-top: 7rem;
  }

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

  .nav-inner {
    min-height: auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.34rem;
    padding: 0.36rem 0 0.44rem;
  }

  .brand {
    width: 100%;
    gap: 0.52rem;
    align-items: center;
    justify-content: center;
    flex: 1 1 100%;
    min-width: 0;
    margin: 0;
  }

  .nav-phone {
    font-size: 0.69rem;
    padding: 0.36rem 0.52rem;
  }

  .nav-cta {
    display: none;
  }

  .brand-logo {
    width: 5.3rem;
    animation: mobileLogoBreathe 4.6s ease-in-out infinite;
  }

  .brand-text {
    display: flex;
    min-width: 0;
    padding-left: 0.52rem;
    border-left-color: rgba(27, 57, 103, 0.22);
    text-align: left;
  }

  .brand-text strong {
    font-size: 0.96rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 12rem;
  }

  .brand-text small {
    display: none;
  }

  .nav-phone {
    font-size: 0.72rem;
    padding: 0.4rem 0.82rem;
    border-color: rgba(28, 61, 110, 0.32);
    box-shadow: 0 8px 16px rgba(31, 60, 103, 0.16);
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-grid {
    gap: 1.2rem;
  }

  .hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(2rem, 10.2vw, 2.7rem);
  }

  .hero-copy p {
    margin-top: 0.8rem;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 0.54rem;
    margin-top: 1rem;
  }

  .hero-metrics {
    margin-top: 1.1rem;
    gap: 0.82rem;
  }

  .hero-metrics article {
    padding: 0.86rem 0.82rem;
  }

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

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

  .clientele-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
  }

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

  .client-band {
    display: none;
  }

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

  .client-card {
    min-height: 5.35rem;
    padding: 0.82rem;
    border-radius: 15px;
  }

  .client-card img {
    max-height: 2.45rem;
  }

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

  .section-head h2 {
    font-size: clamp(1.45rem, 7.6vw, 2rem);
    line-height: 1.15;
  }

  .section-head .eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.12em;
  }

  .section {
    padding: 3.3rem 0;
  }

  .section + .section {
    border-top: 1px solid rgba(28, 61, 109, 0.12);
  }

  .btn {
    width: 100%;
  }

  .btn-call-mobile {
    display: inline-flex;
    color: #1f3758;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.92));
    border: 1px solid rgba(30, 63, 113, 0.24);
    box-shadow: 0 8px 18px rgba(28, 54, 96, 0.14);
  }

  .service-shell {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .service-table {
    min-width: 0;
  }

  .service-table,
  .service-table tbody,
  .service-table tr,
  .service-table td {
    display: block;
    width: 100%;
  }

  .service-table thead {
    display: none;
  }

  .service-table tr {
    margin-bottom: 0.78rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(29, 63, 112, 0.18);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(237, 245, 255, 0.92));
    box-shadow: 0 12px 24px rgba(28, 53, 93, 0.12);
  }

  .service-table td {
    border-bottom: 0;
    padding: 0.82rem 0.9rem;
  }

  .service-table td:first-child {
    padding-bottom: 0.3rem;
    font-weight: 700;
    color: #163454;
  }

  .service-table td:last-child {
    padding-top: 0.28rem;
    color: #4b607b;
  }

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

  .model-card img {
    height: 13.2rem;
  }

  .servicing-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .servicing-photo img {
    max-height: 14rem;
  }

  .footer {
    padding-top: 2.6rem;
  }

  .footer-grid {
    gap: 1.15rem;
  }

  .proposal-mail-shell {
    padding: 0.9rem 0.8rem;
  }

  .navbar.is-scrolled .brand-logo {
    transform: translateY(-1px) scale(0.97);
  }
}

@media (max-width: 520px) {
  .nav-phone {
    font-size: 0.69rem;
    padding: 0.36rem 0.74rem;
  }

  .brand-logo {
    width: 5rem;
  }

  .brand-text strong {
    font-size: 0.88rem;
    max-width: 10rem;
  }

  .mobile-fab-stack {
    right: 0.68rem;
    bottom: 0.72rem;
    gap: 0.48rem;
  }

  .mobile-call-fab,
  .mobile-quote-fab {
    padding: 0.62rem 0.92rem;
    font-size: 0.76rem;
  }

  .hero-copy h1 {
    max-width: 13.2ch;
    font-size: clamp(1.86rem, 9.6vw, 2.45rem);
  }
}

@media (max-width: 380px) {
  .brand-text {
    display: flex;
  }

  .brand-logo {
    width: 4.8rem;
  }

  .brand-text strong {
    font-size: 0.8rem;
    max-width: 8.4rem;
  }

  .nav-phone {
    font-size: 0.64rem;
    padding: 0.33rem 0.62rem;
  }

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

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

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

@keyframes mobileLogoBreathe {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -1px, 0) scale(1.02);
  }
}
