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

.mobile-nav-toggle,
.mobile-nav-panel {
  display: none;
}

.mobile-nav-toggle {
  position: relative;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(29, 59, 108, 0.24);
  border-radius: 999px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 252, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 8px 18px rgba(23, 45, 80, 0.12);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.mobile-nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 22, 56, 0.34);
}

.mobile-nav-toggle span {
  position: absolute;
  left: 50%;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: #163354;
  transform: translateX(-50%);
  transition: transform 220ms ease, opacity 220ms ease, top 220ms ease;
}

.mobile-nav-toggle span:nth-child(1) {
  top: 1rem;
}

.mobile-nav-toggle span:nth-child(2) {
  top: 1.44rem;
}

.mobile-nav-toggle span:nth-child(3) {
  top: 1.88rem;
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open .mobile-nav-toggle span:nth-child(1) {
  top: 1.44rem;
  transform: translateX(-50%) rotate(45deg);
}

body.mobile-nav-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.mobile-nav-open .mobile-nav-toggle span:nth-child(3) {
  top: 1.44rem;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 95;
}

.mobile-nav-panel[hidden] {
  display: none !important;
}

.mobile-nav-panel__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(13, 24, 41, 0.52);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.mobile-nav-panel__sheet {
  position: absolute;
  top: 1rem;
  left: 50%;
  width: min(32rem, calc(100% - 1.2rem));
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  transform: translateX(-50%);
  border-radius: 26px;
  border: 1px solid rgba(27, 58, 103, 0.18);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(235, 243, 253, 0.96));
  box-shadow:
    0 24px 64px rgba(15, 30, 56, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 1rem;
}

.mobile-nav-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.mobile-nav-panel__head h3 {
  margin: 0.34rem 0 0;
  color: #143150;
  font-size: 1.25rem;
  line-height: 1.15;
}

.mobile-nav-panel__close {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 61, 109, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: #173354;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(23, 50, 92, 0.1);
}

.mobile-nav-links {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
}

.nav-links li[hidden],
.mobile-nav-links li[hidden] {
  display: none !important;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3rem;
  padding: 0.82rem 0.92rem;
  border-radius: 16px;
  border: 1px solid rgba(30, 60, 108, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: #183557;
  text-decoration: none;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 10px 20px rgba(24, 47, 84, 0.08);
}

.mobile-nav-links a::after {
  content: "›";
  font-size: 1rem;
  color: #7d8ea5;
}

.mobile-nav-panel__actions {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.68rem;
}

.mobile-nav-panel__actions .btn,
.mobile-nav-panel__actions .nav-phone {
  width: 100%;
}

.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-whatsapp {
  color: #fff;
  background: linear-gradient(130deg, #0e8f50, #25d366);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-business {
  color: #fff;
  background: linear-gradient(130deg, #0f5d48, #1f9f71);
  box-shadow: 0 12px 28px rgba(31, 159, 113, 0.26);
}

#proposal-whatsapp-btn,
#proposal-whatsapp-btn:link,
#proposal-whatsapp-btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(16, 118, 69, 0.18);
  text-decoration: none !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  background: linear-gradient(130deg, #0e8f50, #25d366) !important;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
  appearance: none;
  -webkit-appearance: none;
}

#proposal-whatsapp-btn:hover,
#proposal-whatsapp-btn:focus-visible,
#proposal-whatsapp-btn:active {
  text-decoration: none !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.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,
#gallery,
#press,
#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;
}

.hero-slider {
  position: relative;
  min-height: 31rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(24, 56, 104, 0.15);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(240, 247, 255, 0.88));
  box-shadow: var(--shadow-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 380ms ease, visibility 380ms ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(10, 18, 31, 0.08), rgba(10, 18, 31, 0)),
    var(--hero-slide-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-slide.is-active::before {
  transform: scale(1);
}

.hero-slide__content {
  position: relative;
  z-index: 1;
  width: min(18.5rem, 100%);
  border-radius: 18px;
  padding: 1rem 1rem 1.02rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(22px) saturate(1.14);
  -webkit-backdrop-filter: blur(22px) saturate(1.14);
  box-shadow: 0 16px 30px rgba(10, 18, 31, 0.2);
  overflow: hidden;
}

.hero-slide--dark .hero-slide__content {
  color: #fff;
  background: linear-gradient(180deg, rgba(24, 38, 56, 0.64), rgba(16, 27, 42, 0.56));
}

.hero-slide--light .hero-slide__content {
  color: #162640;
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.7), rgba(231, 239, 248, 0.6));
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-slide__label {
  display: block;
  max-width: 11.2rem;
  width: 100%;
  height: auto;
}

.hero-slide__label--text {
  width: auto;
  max-width: none;
  margin-left: auto;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: inherit;
}

.hero-slide__eyebrow {
  margin: 0.7rem 0 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  opacity: 0.82;
}

.hero-slide h3 {
  margin: 0.12rem 0 0;
  font-size: 1.56rem;
  line-height: 1;
}

.hero-slide p:last-of-type {
  margin: 0.56rem 0 0;
  font-size: 0.88rem;
  line-height: 1.46;
  max-width: 28ch;
  color: inherit;
}

.hero-slide__actions {
  margin-top: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.52rem;
}

.hero-slide__actions .btn {
  min-height: 2.72rem;
  padding-inline: 1rem;
}

.hero-slide__link {
  display: inline-flex;
  align-items: center;
  min-height: 2.72rem;
  padding: 0 0.86rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: inherit;
  background: transparent;
}

.hero-slide--light .hero-slide__link {
  background: rgba(255, 255, 255, 0.28);
}

.hero-slide--electric::before {
  background-image:
    radial-gradient(circle at 76% 24%, rgba(92, 210, 255, 0.18), transparent 26%),
    url("assets/models/images/icon-e.webp"),
    linear-gradient(180deg, #ecf3f8, #d7e5ee);
  background-position: center, 8% 72%, center;
  background-repeat: no-repeat;
  background-size: cover, auto 88%, cover;
}

.hero-slider__hud {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  pointer-events: none;
}

.hero-slider__dots,
.hero-slider__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  pointer-events: auto;
}

.hero-slider__dot,
.hero-slider__control {
  border: 0;
  cursor: pointer;
}

.hero-slider__dot {
  width: 0.72rem;
  height: 0.72rem;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 1px rgba(16, 31, 56, 0.16);
  transition: transform 180ms ease, background 180ms ease;
}

.hero-slider__dot.is-active {
  transform: scale(1.14);
  background: var(--red);
}

.hero-slider__control {
  display: inline-grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #183355;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(20, 38, 67, 0.18);
}

.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 {
  position: relative;
  overflow: hidden;
  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::before {
  content: "";
  position: absolute;
  inset: auto -1.4rem -1.6rem auto;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
  filter: blur(1px);
  background: radial-gradient(circle at center, rgba(217, 183, 122, 0.18), rgba(217, 183, 122, 0));
}

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

.solution-card__top {
  display: flex;
  align-items: center;
  gap: 0.56rem;
}

.solution-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 54, 97, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #5a6d87;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.solution-card--procurement::before {
  background: radial-gradient(circle at center, rgba(255, 22, 56, 0.18), rgba(255, 22, 56, 0));
}

.solution-card--parts::before {
  background: radial-gradient(circle at center, rgba(217, 183, 122, 0.2), rgba(217, 183, 122, 0));
}

.solution-card--maintenance::before {
  background: radial-gradient(circle at center, rgba(91, 152, 255, 0.18), rgba(91, 152, 255, 0));
}

.solution-card--lubricants::before {
  background: radial-gradient(circle at center, rgba(82, 165, 136, 0.2), rgba(82, 165, 136, 0));
}

.solution-card--documentation::before {
  background: radial-gradient(circle at center, rgba(134, 154, 184, 0.18), rgba(134, 154, 184, 0));
}

.solution-card--support::before {
  background: radial-gradient(circle at center, rgba(255, 128, 76, 0.18), rgba(255, 128, 76, 0));
}

.leadership-note {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 22, 56, 0.1), transparent 26%),
    radial-gradient(circle at 86% 10%, rgba(35, 79, 147, 0.12), transparent 28%),
    linear-gradient(165deg, rgba(248, 251, 255, 0.95), rgba(237, 243, 251, 0.94) 52%, rgba(248, 251, 255, 0.98));
}

.leadership-note::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at center, rgba(217, 183, 122, 0.08), rgba(217, 183, 122, 0) 54%);
}

.leadership-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1.1rem;
  align-items: center;
}

.leadership-photo {
  margin: 0;
}

.leadership-photo-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(31, 66, 116, 0.18);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(235, 243, 253, 0.9)) padding-box,
    linear-gradient(140deg, rgba(255, 22, 56, 0.22), rgba(217, 183, 122, 0.32), rgba(82, 121, 189, 0.2)) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 26px 56px rgba(21, 43, 77, 0.18);
}

.leadership-photo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(9, 19, 36, 0.08)),
    linear-gradient(125deg, rgba(255, 255, 255, 0.12), transparent 34%, transparent 68%, rgba(255, 255, 255, 0.08));
}

.leadership-photo-shell img {
  display: block;
  width: 100%;
  height: auto;
}

.leadership-photo figcaption {
  display: grid;
  gap: 0.16rem;
  margin-top: 0.88rem;
  padding-left: 0.2rem;
}

.leadership-photo figcaption strong,
.leadership-signoff strong {
  color: #112845;
  font-size: 1rem;
}

.leadership-photo figcaption span,
.leadership-signoff span {
  color: #667a94;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leadership-copy {
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 1.3rem;
  border-radius: 28px;
  border: 1px solid rgba(31, 66, 116, 0.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 22, 56, 0.06), transparent 24%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 252, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 22px 46px rgba(24, 47, 84, 0.14);
}

.leadership-copy h2 {
  margin: 0.34rem 0 0;
  color: #112845;
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  line-height: 1.12;
}

.leadership-byline {
  margin: 0.18rem 0 0;
  color: #b67e17;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.leadership-copy p {
  margin: 0.82rem 0 0;
  color: #435873;
}

.leadership-kicker {
  font-size: 1rem;
  color: #274263;
}

.leadership-quote {
  margin: 1rem 0 0;
  padding: 1rem 1rem 1rem 1.1rem;
  border-left: 4px solid rgba(255, 22, 56, 0.84);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(135deg, rgba(255, 244, 246, 0.92), rgba(248, 251, 255, 0.9));
  color: #163354;
  font-size: 1rem;
  line-height: 1.7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.leadership-signoff {
  display: grid;
  gap: 0.18rem;
  margin-top: 1.05rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 66, 116, 0.14);
}

.press-hall {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% -2%, rgba(255, 22, 56, 0.08), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(45, 83, 147, 0.1), transparent 30%),
    linear-gradient(165deg, #f9fbfe, #edf3fb 48%, #f8fbff);
}

.press-hall::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.34), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at center, rgba(217, 183, 122, 0.08), rgba(217, 183, 122, 0) 56%);
}

.press-hall .container {
  position: relative;
}

.press-intro {
  max-width: 60rem;
  margin: 0.82rem 0 0;
  color: #49627f;
}

.press-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1rem;
  align-items: stretch;
}

.press-stack {
  display: grid;
  gap: 1rem;
  grid-template-rows: minmax(0, 1fr) auto;
}

.press-feature,
.press-card {
  position: relative;
  display: grid;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(31, 66, 116, 0.18);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(236, 243, 252, 0.92)) padding-box,
    linear-gradient(140deg, rgba(255, 22, 56, 0.18), rgba(217, 183, 122, 0.28), rgba(82, 121, 189, 0.22)) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 22px 48px rgba(25, 47, 84, 0.16);
  cursor: pointer;
  text-align: left;
  appearance: none;
  font: inherit;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.press-feature:hover,
.press-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 22, 56, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 28px 56px rgba(22, 44, 80, 0.2);
}

.press-sheet {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 25rem;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(249, 251, 255, 0.96), rgba(232, 239, 248, 0.86)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.press-sheet::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%, transparent 68%, rgba(255, 255, 255, 0.08));
}

.press-sheet-wide {
  min-height: 19rem;
}

.press-sheet img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  max-height: 31rem;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow:
    0 10px 22px rgba(15, 30, 53, 0.18),
    0 0 0 1px rgba(25, 46, 79, 0.08);
  background: #fff;
}

.press-copy {
  display: grid;
  gap: 0.42rem;
  padding: 1rem 1rem 1.1rem;
}

.press-kicker,
.press-note__eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 66, 116, 0.12);
  background: rgba(248, 251, 255, 0.9);
  color: #af7b1c;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.67rem;
  font-weight: 800;
}

.press-copy strong {
  display: block;
  color: #153251;
  font-size: clamp(1.06rem, 1.8vw, 1.46rem);
  line-height: 1.12;
}

.press-copy small {
  color: #50647e;
  font-size: 0.9rem;
  line-height: 1.62;
}

.press-note {
  padding: 1.05rem;
  border-radius: 24px;
  border: 1px solid rgba(31, 66, 116, 0.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 22, 56, 0.08), transparent 25%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(236, 244, 254, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 38px rgba(24, 47, 84, 0.14);
}

.press-note h3 {
  margin: 0.7rem 0 0;
  color: #153251;
  font-size: 1.22rem;
  line-height: 1.2;
}

.press-note p:last-of-type {
  margin: 0.58rem 0 0;
  color: #4b627d;
}

.press-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.82rem;
}

.press-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.34rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 66, 116, 0.14);
  background: rgba(248, 251, 255, 0.92);
  color: #234163;
  font-size: 0.76rem;
  font-weight: 700;
}

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

.press-ledger__card {
  padding: 0.92rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 66, 116, 0.16);
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 28px rgba(28, 52, 92, 0.12);
}

.press-ledger__card p {
  margin: 0;
  color: #6d7f99;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 800;
}

.press-ledger__card strong {
  display: block;
  margin-top: 0.44rem;
  color: #153251;
  line-height: 1.45;
}

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

.gallery-showcase {
  position: relative;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 22, 56, 0.12), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(27, 78, 156, 0.11), transparent 31%),
    linear-gradient(160deg, #f5f8fd, #eaf1fa 46%, #f8fbff);
}

.gallery-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.24)),
    radial-gradient(circle at center, rgba(217, 183, 122, 0.08), rgba(217, 183, 122, 0) 56%);
}

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

.gallery-intro {
  max-width: 56rem;
  margin: 0.82rem 0 0;
  color: #48607d;
}

.gallery-stage {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.gallery-card {
  position: relative;
  display: grid;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(32, 66, 114, 0.2);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(237, 245, 255, 0.9)) padding-box,
    linear-gradient(145deg, rgba(255, 22, 56, 0.28), rgba(217, 183, 122, 0.32), rgba(82, 121, 189, 0.24)) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 22px 48px rgba(25, 47, 84, 0.18);
  cursor: pointer;
  text-align: left;
  appearance: none;
  font: inherit;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.gallery-card:hover,
.gallery-thumb-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 22, 56, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 28px 58px rgba(22, 44, 80, 0.22);
}

.gallery-card__media,
.gallery-thumb-card__media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(234, 241, 250, 0.96), rgba(214, 226, 243, 0.84));
}

.gallery-card__media {
  aspect-ratio: 4 / 3;
}

.gallery-card-feature .gallery-card__media {
  aspect-ratio: 0.88 / 1.02;
}

.gallery-thumb-card__media {
  aspect-ratio: 4 / 3;
}

.gallery-card__media::after,
.gallery-thumb-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(15, 28, 49, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 32%, transparent 68%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.gallery-card img,
.gallery-thumb-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-card:hover img,
.gallery-thumb-card:hover img {
  transform: scale(1.04);
}

.gallery-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
}

.gallery-card__body,
.gallery-thumb-card__body {
  display: grid;
  gap: 0.42rem;
  padding: 1rem 1rem 1.08rem;
  color: #163252;
}

.gallery-card__eyebrow {
  display: block;
  color: #c18e2e;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 800;
}

.gallery-card__body strong,
.gallery-thumb-card__body strong {
  display: block;
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  line-height: 1.08;
  color: #163252;
}

.gallery-card__body small,
.gallery-thumb-card__body small {
  color: #50657f;
  font-size: 0.9rem;
  line-height: 1.62;
}

.gallery-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.67rem;
  font-weight: 800;
}

.gallery-support-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.gallery-thumb-card {
  position: relative;
  display: grid;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(31, 66, 116, 0.18);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 22, 56, 0.08), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(235, 243, 253, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 16px 34px rgba(24, 48, 84, 0.14);
  cursor: pointer;
  text-align: left;
  appearance: none;
  font: inherit;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

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

.gallery-ledger__card {
  padding: 0.92rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 66, 116, 0.16);
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 28px rgba(28, 52, 92, 0.12);
}

.gallery-ledger__card p {
  margin: 0;
  color: #6d7f99;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  font-weight: 800;
}

.gallery-ledger__card strong {
  display: block;
  margin-top: 0.44rem;
  color: #153251;
  line-height: 1.45;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 31, 0.68);
  backdrop-filter: blur(10px);
}

.gallery-lightbox__figure {
  position: relative;
  z-index: 1;
  width: min(70rem, 100%);
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(165deg, rgba(13, 22, 38, 0.98), rgba(18, 34, 59, 0.96));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38);
}

.gallery-lightbox__figure img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(68vh, 46rem);
  margin: 0 auto;
  object-fit: contain;
  background: #0a1424;
}

.gallery-lightbox__caption {
  padding: 1.05rem 1.1rem 1.18rem;
  color: rgba(241, 246, 255, 0.9);
}

.gallery-lightbox__caption h3 {
  margin: 0.36rem 0 0;
  color: #fff;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.14;
}

.gallery-lightbox__caption p:last-child {
  margin: 0.56rem 0 0;
  color: rgba(231, 239, 251, 0.82);
}

.gallery-lightbox__close {
  position: absolute;
  top: 0.88rem;
  right: 0.88rem;
  z-index: 2;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(14, 24, 41, 0.62);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

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

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

.mrp-circular-card {
  padding: 0;
  border: 1px solid rgba(27, 58, 103, 0.18);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 28px rgba(24, 48, 84, 0.11);
  cursor: pointer;
  text-align: left;
}

.mrp-circular-card__media {
  display: block;
  background: #f3f7fc;
}

.mrp-circular-card__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.mrp-circular-card__body {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem;
}

.mrp-circular-card__body strong {
  color: #153252;
  font-size: 1rem;
  line-height: 1.24;
}

.mrp-circular-card__body small,
.mrp-circular-card__date {
  color: #50647f;
}

.mrp-circular-card__date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.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-actions {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.68rem;
}

.proposal-actions .btn {
  margin-top: 0;
  min-height: 3rem;
  padding: 0.86rem 1.08rem;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.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;
  left: max(0.72rem, env(safe-area-inset-left));
  right: max(0.72rem, env(safe-area-inset-right));
  bottom: calc(env(safe-area-inset-bottom, 0px) + 0.72rem);
  z-index: 80;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 22px;
  border: 1px solid rgba(24, 54, 96, 0.14);
  background: rgba(246, 250, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 42px rgba(16, 30, 56, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

body.show-mobile-fab .mobile-fab-stack {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.mobile-nav-open .mobile-fab-stack {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.mobile-call-fab,
.mobile-quote-fab,
.mobile-whatsapp-fab {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  min-height: 3.1rem;
  padding: 0.72rem 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(22, 42, 76, 0.14);
  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));
}

.mobile-whatsapp-fab {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: #fff;
  background: linear-gradient(140deg, #0e8f50, #25d366);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.3);
}

#mobile-whatsapp-fab,
#mobile-whatsapp-fab:link,
#mobile-whatsapp-fab:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  text-decoration: none !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  background: linear-gradient(140deg, #0e8f50, #25d366) !important;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.3);
  appearance: none;
  -webkit-appearance: none;
}

#mobile-whatsapp-fab:hover,
#mobile-whatsapp-fab:focus-visible,
#mobile-whatsapp-fab:active {
  text-decoration: none !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

body.whatsapp-launcher-open {
  overflow: hidden;
}

.whatsapp-launcher[hidden] {
  display: none;
}

.whatsapp-launcher {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 1rem;
}

.whatsapp-launcher__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 44, 0.5);
  backdrop-filter: blur(8px);
}

.whatsapp-launcher__card {
  position: relative;
  width: min(32rem, 100%);
  border-radius: 24px;
  border: 1px solid rgba(27, 58, 103, 0.18);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(235, 243, 253, 0.96));
  box-shadow:
    0 24px 64px rgba(15, 30, 56, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 1rem 1rem 1.05rem;
}

.whatsapp-launcher__card .eyebrow {
  margin: 0;
}

.whatsapp-launcher__card h3 {
  margin: 0.35rem 0 0;
  color: #143150;
  font-size: 1.4rem;
  line-height: 1.15;
}

.whatsapp-launcher__copy {
  margin: 0.7rem 0 0;
  color: #45607f;
  font-size: 0.92rem;
  line-height: 1.55;
}

.whatsapp-launcher__actions {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.whatsapp-launcher__actions .btn {
  width: 100%;
  min-height: 3rem;
}

.whatsapp-launcher__close {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 61, 109, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: #173354;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(23, 50, 92, 0.1);
}

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

  .whatsapp-launcher {
    align-items: center;
  }
}

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

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .mobile-nav-panel {
    display: block;
  }

  .mobile-nav-panel__actions .btn-nav {
    display: inline-flex;
  }

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

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

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

  .gallery-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-card-feature {
    grid-column: 1 / -1;
  }

  .press-ledger,
  .gallery-support-grid,
  .gallery-ledger {
    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;
  }

  .hero-slider {
    min-height: 27rem;
  }

  .float-a {
    right: 0.5rem;
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: calc(5.35rem + env(safe-area-inset-bottom, 0px));
  }

  .navbar {
    background: transparent;
    overflow: visible;
  }

  .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,
  #gallery,
  #press,
  #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.28rem;
    padding: 0.28rem 0 0.36rem;
  }

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

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

  .mobile-nav-toggle {
    position: absolute;
    top: 0.42rem;
    right: 0;
    width: 2.82rem;
    height: 2.82rem;
  }

  .mobile-nav-panel__sheet {
    top: 0.72rem;
    width: min(29rem, calc(100% - 1rem));
    border-radius: 22px;
    padding: 0.9rem;
  }

  .nav-cta {
    display: none;
  }

  .brand-logo {
    width: 5rem;
    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.86rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: 12.8rem;
    line-height: 1.08;
  }

  .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: 1.75rem;
  }

  .hero-grid {
    gap: 0.95rem;
  }

  .hero-copy h1 {
    max-width: 12.2ch;
    font-size: clamp(1.82rem, 9vw, 2.42rem);
    letter-spacing: -0.025em;
  }

  .hero-copy p {
    margin-top: 0.68rem;
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .hero-actions {
    gap: 0.46rem;
    margin-top: 0.88rem;
  }

  .hero-actions .btn {
    min-height: 2.95rem;
    padding: 0.68rem 0.86rem;
    font-size: 0.79rem;
  }

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

  .hero-metrics {
    margin-top: 0.95rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.38rem;
    align-items: stretch;
  }

  .hero-metrics article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    min-height: 4.4rem;
    padding: 0.62rem 0.48rem 0.58rem;
    border-radius: 14px;
    border: 1px solid rgba(217, 183, 122, 0.24);
    background:
      linear-gradient(180deg, rgba(20, 30, 47, 0.94), rgba(14, 22, 36, 0.9)),
      linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 10px 20px rgba(12, 21, 35, 0.16);
  }

  .hero-metrics h3 {
    font-size: 1.12rem;
    color: #e2c184;
    letter-spacing: -0.02em;
  }

  .hero-metrics p {
    margin-top: 0.14rem;
    font-size: 0.58rem;
    line-height: 1.18;
    color: rgba(237, 241, 248, 0.78);
  }

  .hero-visual {
    margin-top: 0.3rem;
    display: block;
  }

  .hero-slider {
    min-height: 24.8rem;
    border-radius: 20px;
  }

  .hero-slide {
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0.58rem;
  }

  .hero-slide::before {
    background-position: 24% center;
    background-size: cover;
  }

  .hero-slide__content {
    width: min(11.1rem, calc(47% - 0.12rem));
    min-width: 10rem;
    max-width: 11.1rem;
    align-self: flex-end;
    margin: 0 0 3.45rem auto;
    padding: 0.66rem 0.66rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(20px) saturate(1.12);
    -webkit-backdrop-filter: blur(20px) saturate(1.12);
    box-shadow: 0 16px 28px rgba(10, 18, 31, 0.18);
    background: linear-gradient(180deg, rgba(24, 38, 56, 0.62), rgba(16, 27, 42, 0.54));
    color: #fff;
    text-align: right;
  }

  .hero-slide--dark .hero-slide__content,
  .hero-slide--light .hero-slide__content {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(180deg, rgba(24, 38, 56, 0.62), rgba(16, 27, 42, 0.54));
  }

  .hero-slide__label {
    max-width: 6.35rem;
    margin-left: auto;
  }

  .hero-slide__label--text {
    max-width: none;
    font-size: 1rem;
  }

  .hero-slide__eyebrow {
    margin-top: 0.3rem;
    font-size: 0.5rem;
  }

  .hero-slide h3 {
    font-size: 0.94rem;
  }

  .hero-slide p:last-of-type {
    font-size: 0.64rem;
    line-height: 1.24;
    max-width: 17ch;
    margin-top: 0.34rem;
    margin-left: auto;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-slide__actions {
    margin-top: 0.42rem;
    gap: 0.28rem;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-slide__actions .btn,
  .hero-slide__link {
    min-height: 1.92rem;
    font-size: 0.62rem;
    width: 100%;
    padding-inline: 0.5rem;
  }

  .hero-slide--light .hero-slide__link {
    background: transparent;
    color: #fff;
  }

  .hero-slide--electric::before {
    background-position: center, 6% 76%, center;
    background-size: cover, auto 68%, cover;
  }

  .hero-slider__hud {
    left: 0.58rem;
    right: 0.58rem;
    bottom: 0.56rem;
  }

  .hero-slider__control {
    width: 2.12rem;
    height: 2.12rem;
    font-size: 1rem;
  }

  .leadership-copy {
    padding: 0.92rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.34rem;
  }

  .hero-metrics article {
    min-height: 3.38rem;
    padding: 0.48rem 0.4rem 0.44rem;
    border-radius: 12px;
  }

  .hero-metrics h3 {
    font-size: 0.96rem;
  }

  .hero-metrics p {
    margin-top: 0.1rem;
    font-size: 0.49rem;
    line-height: 1.12;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

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

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

  .solution-card {
    min-height: 10rem;
    padding: 0.86rem 0.78rem 0.82rem;
    border-color: rgba(217, 183, 122, 0.16);
    background:
      linear-gradient(180deg, rgba(19, 30, 47, 0.95), rgba(14, 22, 36, 0.9)),
      linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 16px 26px rgba(12, 21, 35, 0.18);
  }

  .solution-card::before {
    inset: auto -1rem -1rem auto;
    width: 4.8rem;
    height: 4.8rem;
    opacity: 0.84;
  }

  .solution-card__top {
    gap: 0.42rem;
  }

  .solution-chip {
    min-height: 1.55rem;
    padding: 0.2rem 0.48rem;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(226, 193, 132, 0.9);
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }

  .solution-card h3 {
    margin-top: 0.6rem;
    font-size: 0.86rem;
    line-height: 1.18;
    color: #f4f7fb;
  }

  .solution-card p {
    margin-top: 0.34rem;
    font-size: 0.62rem;
    line-height: 1.32;
    color: rgba(230, 237, 246, 0.76);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

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

  .gallery-stage,
  .press-grid,
  .gallery-support-grid,
  .gallery-ledger,
  .press-ledger,
  .mrp-circular-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card-feature {
    grid-column: auto;
  }

  .press-sheet,
  .press-sheet-wide {
    min-height: 14rem;
    padding: 0.82rem;
  }

  .gallery-card__body,
  .gallery-thumb-card__body {
    padding: 0.82rem 0.82rem 0.9rem;
  }

  .press-copy,
  .press-note {
    padding: 0.88rem;
  }

  .gallery-ledger__card {
    padding: 0.82rem;
  }

  .clientele-stage {
    padding: 0.62rem;
    border-radius: 16px;
  }

  .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: 4.85rem;
    padding: 0.74rem;
    border-radius: 14px;
  }

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

  .leadership-photo-shell {
    max-width: 18.5rem;
    margin: 0 auto;
    border-radius: 22px;
  }

  .leadership-photo figcaption {
    margin-top: 0.64rem;
    padding-left: 0;
    text-align: center;
  }

  .leadership-copy h2 {
    font-size: clamp(1.3rem, 6.8vw, 1.82rem);
  }

  .leadership-kicker {
    font-size: 0.92rem;
  }

  .leadership-quote {
    margin-top: 0.82rem;
    padding: 0.82rem 0.9rem;
    font-size: 0.92rem;
    line-height: 1.6;
    border-radius: 0 16px 16px 0;
  }

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

  .section-head h2 {
    font-size: clamp(1.34rem, 7.2vw, 1.86rem);
    line-height: 1.15;
  }

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

  .section {
    padding: 2.65rem 0;
  }

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

  .btn {
    width: 100%;
  }

  .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.68rem;
    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.74rem 0.82rem;
  }

  .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: auto;
    margin-top: 0;
    padding: 0.62rem 0.66rem;
    animation: none;
    height: 100%;
  }

  .float-card p {
    font-size: 0.6rem;
  }

  .float-card h4 {
    margin-top: 0.28rem;
    font-size: 0.8rem;
  }

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

  .process-list {
    margin-top: 0.9rem;
    padding: 0.9rem 0.9rem 0.9rem 1.5rem;
  }

  .process-list li {
    margin: 0.34rem 0;
    font-size: 0.89rem;
  }

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

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

  .servicing-department {
    margin-top: 1rem;
    padding: 0.88rem;
    border-radius: 18px;
  }

  .servicing-trust {
    margin-top: 0.74rem;
    padding: 0.78rem;
  }

  .servicing-trust h3 {
    font-size: 0.96rem;
  }

  .servicing-points {
    margin-top: 0.46rem;
    font-size: 0.88rem;
  }

  .footer {
    margin-top: 1.4rem;
    padding: 2.2rem 0 0.9rem;
  }

  .footer-grid {
    gap: 0.92rem;
    padding-bottom: 0.82rem;
  }

  .footer h3 {
    font-size: 1.1rem;
  }

  .footer p {
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .footer-bottom {
    margin-top: 0.72rem;
    gap: 0.56rem;
    font-size: 0.82rem;
  }

  .proposal-mail-shell {
    padding: 0.76rem;
    border-radius: 12px;
  }

  .proposal-help {
    font-size: 0.82rem;
  }

  .gallery-lightbox {
    padding: 0.8rem;
  }

  .gallery-lightbox__figure {
    border-radius: 20px;
  }

  .gallery-lightbox__caption {
    padding: 0.9rem;
  }

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

  .whatsapp-launcher {
    padding: 0.8rem;
  }

  .whatsapp-launcher__card {
    border-radius: 20px;
    padding: 0.92rem 0.88rem 0.96rem;
  }

  .whatsapp-launcher__card h3 {
    font-size: 1.2rem;
    padding-right: 2.2rem;
  }

  .mobile-fab-stack {
    left: max(0.5rem, env(safe-area-inset-left));
    right: max(0.5rem, env(safe-area-inset-right));
    bottom: calc(env(safe-area-inset-bottom, 0px) + 0.5rem);
    gap: 0.36rem;
    padding: 0.36rem;
    border-radius: 18px;
    box-shadow:
      0 12px 28px rgba(16, 30, 56, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.84);
  }

  .mobile-call-fab,
  .mobile-quote-fab,
  .mobile-whatsapp-fab {
    min-height: 2.72rem;
    padding: 0.58rem 0.62rem;
    font-size: 0.72rem;
    box-shadow: 0 8px 18px rgba(22, 42, 76, 0.12);
  }
}

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

  .brand-logo {
    width: 4.7rem;
  }

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

  .mobile-fab-stack {
    left: max(0.46rem, env(safe-area-inset-left));
    right: max(0.46rem, env(safe-area-inset-right));
    gap: 0.32rem;
    padding: 0.34rem;
  }

  .mobile-call-fab,
  .mobile-quote-fab,
  .mobile-whatsapp-fab {
    min-height: 2.58rem;
    padding: 0.54rem 0.58rem;
    font-size: 0.68rem;
  }

  .gallery-card__body small,
  .gallery-thumb-card__body small,
  .press-copy small {
    font-size: 0.8rem;
  }

  .hero-copy h1 {
    max-width: 11.8ch;
    font-size: clamp(1.72rem, 9.2vw, 2.18rem);
  }

  .solution-grid {
    gap: 0.5rem;
  }

  .solution-card {
    min-height: 9.2rem;
    padding: 0.78rem 0.68rem 0.74rem;
  }

  .solution-card h3 {
    font-size: 0.8rem;
  }

  .solution-card p {
    font-size: 0.58rem;
  }

  .hero-metrics {
    gap: 0.28rem;
  }

  .hero-metrics article {
    min-height: 3.18rem;
    padding: 0.44rem 0.34rem 0.4rem;
  }

  .hero-metrics h3 {
    font-size: 0.9rem;
  }

  .hero-metrics p {
    font-size: 0.44rem;
    letter-spacing: 0.01em;
  }

  .float-card h4 {
    font-size: 0.74rem;
  }
}

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

  .brand-logo {
    width: 4.8rem;
  }

  .brand-text strong {
    font-size: 0.74rem;
    max-width: 9.4rem;
  }

  .solution-grid {
    gap: 0.4rem;
  }

  .solution-card {
    min-height: 8.5rem;
    padding: 0.7rem 0.6rem;
  }

  .solution-chip {
    font-size: 0.46rem;
    padding: 0.18rem 0.42rem;
  }

  .solution-card h3 {
    font-size: 0.74rem;
  }

  .solution-card p {
    font-size: 0.54rem;
  }

  .hero-metrics {
    gap: 0.22rem;
  }

  .hero-metrics article {
    min-height: 2.98rem;
    padding: 0.4rem 0.3rem 0.36rem;
  }

  .hero-metrics h3 {
    font-size: 0.84rem;
  }

  .hero-metrics p {
    font-size: 0.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);
  }
}
