:root {
  --red: #bf2821;
  --red-2: #ef3a31;
  --white: #f9f9f9;
  --gray: #6e6e6e;
  --black: #0f0f0f;
  --ink: #181818;
  --line: rgba(15, 15, 15, 0.12);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

.floating-whatsapp-btn {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 3.7vh, 32px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #25d366;
  color: #063b1b;
  border: 1px solid rgba(5, 63, 31, 0.24);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
}

.floating-whatsapp-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.floating-whatsapp-btn:hover,
.floating-whatsapp-btn:focus-visible {
  background: #2ee277;
  outline: none;
}

svg,
img {
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 14px;
  padding: 18px clamp(18px, 6vw, 88px) 0;
  color: var(--white);
  transition:
    background 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.site-header[data-scrolled="true"] {
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.88), rgba(15, 15, 15, 0));
}

.site-header[data-home-active="false"] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 24px));
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.support-line,
.quick-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.support-line {
  font-weight: 950;
}

.support-line svg {
  width: 22px;
  height: 22px;
  fill: var(--red-2);
}

.quick-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(191, 40, 33, 0.24);
  gap: 8px;
}

.quick-actions .quick-whatsapp {
  background: #25d366;
  color: #053f1f;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.32);
}

.quick-actions .quick-whatsapp svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .quick-actions a {
    padding: 9px 14px;
    min-height: 38px;
    font-size: 0.84rem;
  }

  .quick-actions {
    max-width: 100%;
    justify-content: flex-end;
  }
}

.quick-actions a:last-child {
  background: var(--white);
  color: var(--red);
}

#quick-whatsapp-btn {
  background: #25d366 !important;
  color: #053f1f !important;
  border: 1px solid rgba(5, 63, 31, 0.28) !important;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.38) !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

#quick-whatsapp-btn:hover,
#quick-whatsapp-btn:focus-visible {
  color: #052e13 !important;
  background: #2ef177 !important;
  outline: none;
}

.quick-actions a.quick-whatsapp {
  background: #25d366 !important;
  color: #053f1f !important;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.38) !important;
  border: 1px solid rgba(5, 63, 31, 0.25);
}

.nav-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(420px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  width: min(1320px, 100%);
  min-height: 86px;
  margin: 0 auto;
  padding: 12px 14px 12px 18px;
  overflow: hidden;
  border: 1px solid rgba(249, 249, 249, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(249, 249, 249, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(249, 249, 249, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(16, 16, 16, 0.94), rgba(34, 8, 7, 0.9));
  background-size: 34px 34px, 34px 34px, auto;
  color: var(--white);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(249, 249, 249, 0.12);
  backdrop-filter: blur(18px);
}

.nav-card::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 13%;
  top: 50%;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(239, 58, 49, 0.74), rgba(249, 249, 249, 0.2), transparent);
  opacity: 0.44;
  transform: translateY(-50%);
}

.nav-card::after {
  content: "";
  position: absolute;
  right: 19%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow:
    0 0 0 9px rgba(239, 58, 49, 0.12),
    0 0 30px rgba(239, 58, 49, 0.72);
  transform: translateY(-50%);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: min(220px, 22vw);
  min-width: 168px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.nav-links {
  position: relative;
  z-index: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 50px;
  padding: 6px;
  border: 1px solid rgba(249, 249, 249, 0.1);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.52);
  color: rgba(249, 249, 249, 0.68);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(249, 249, 249, 0.08);
}

.nav-links::before {
  content: "";
  position: absolute;
  left: var(--nav-pill-x, 6px);
  top: 6px;
  width: var(--nav-pill-w, 78px);
  height: calc(100% - 12px);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #e2362f);
  box-shadow: 0 12px 30px rgba(191, 40, 33, 0.34);
  transition:
    left 220ms ease,
    width 220ms ease;
}

.nav-links a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

.nav-status {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(249, 249, 249, 0.12);
  border-radius: 999px;
  background: rgba(249, 249, 249, 0.06);
  color: rgba(249, 249, 249, 0.78);
  font-size: 0.78rem;
  white-space: nowrap;
}

.nav-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #31e981;
  box-shadow:
    0 0 0 7px rgba(49, 233, 129, 0.1),
    0 0 18px rgba(49, 233, 129, 0.8);
}

.header-cta {
  position: relative;
  z-index: 2;
  justify-self: end;
  padding: 13px 18px;
  border: 1px solid rgba(249, 249, 249, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #e2362f);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(191, 40, 33, 0.34);
}

.hero {
  position: relative;
  min-height: 930px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 34%, rgba(191, 40, 33, 0.44), transparent 28%),
    linear-gradient(120deg, #050505 0%, #121212 46%, #3a0e0b 100%);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  opacity: 0.2;
  filter: grayscale(0.4) contrast(1.04);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.84) 42%, rgba(5, 5, 5, 0.1) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96), transparent 44%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  width: min(1320px, 100%);
  min-height: 930px;
  margin: 0 auto;
  padding: 235px clamp(20px, 3vw, 36px) 86px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-2);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(3.1rem, 5.2vw, 5.7rem);
  font-weight: 650;
  line-height: 1.02;
  text-transform: none;
}

h1 mark {
  display: block;
  padding: 0;
  background: transparent;
  color: var(--red-2);
  font-weight: 950;
}

.hero-copy p,
.hero-copy > p {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(249, 249, 249, 0.78);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

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

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

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(191, 40, 33, 0.34);
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--red-2);
  font-weight: 950;
}

.proof-avatars {
  display: flex;
}

.proof-avatars span {
  width: 42px;
  height: 42px;
  margin-right: -10px;
  border: 3px solid var(--black);
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 38%, var(--white), rgba(249, 249, 249, 0.1) 36%),
    var(--red);
}

.button-secondary {
  border-color: rgba(249, 249, 249, 0.24);
  background: rgba(249, 249, 249, 0.08);
  color: var(--white);
}

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

.platform-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  width: min(640px, 100%);
  margin-top: 26px;
  padding: 8px;
  border: 1px solid rgba(249, 249, 249, 0.14);
  border-radius: var(--radius);
  background: rgba(15, 15, 15, 0.62);
  backdrop-filter: blur(14px);
}

.platform-switch button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(249, 249, 249, 0.12);
  border-radius: var(--radius);
  background: rgba(249, 249, 249, 0.055);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.platform-switch button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 3px;
  background: var(--red-2);
  transition: right 240ms ease;
}

.platform-switch button.is-active {
  border-color: rgba(239, 58, 49, 0.62);
  background: rgba(191, 40, 33, 0.34);
}

.platform-switch button.is-active::after {
  right: 0;
}

.platform-switch svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 9px;
  border-radius: var(--radius);
  background: var(--white);
  fill: var(--red);
}

.platform-switch strong,
.platform-switch small {
  display: block;
  line-height: 1.1;
}

.platform-switch small {
  margin-top: 4px;
  color: rgba(249, 249, 249, 0.62);
  font-weight: 800;
}

.hero-product {
  position: relative;
  min-height: 520px;
}

.vehicle-stage {
  position: absolute;
  inset: -28px -20px auto auto;
  width: min(720px, 100%);
  height: 500px;
  z-index: 2;
}

.vehicle-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 60%;
  border-radius: 20px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
  opacity: 0.96;
  filter: saturate(1.08) contrast(1.08);
}

.vehicle-stage::before {
  content: "";
  position: absolute;
  inset: 14% 5% 8% 12%;
  border: 1px solid rgba(249, 249, 249, 0.18);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.callout {
  position: absolute;
  display: inline-flex;
  padding: 10px 12px;
  border: 1px solid rgba(249, 249, 249, 0.24);
  border-radius: var(--radius);
  background: rgba(191, 40, 33, 0.78);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 950;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.callout-top {
  left: 8%;
  top: 26%;
}

.callout-bottom {
  left: 10%;
  bottom: 12%;
}

.seal {
  position: absolute;
  right: 5%;
  top: 19%;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 2px solid rgba(249, 249, 249, 0.78);
  border-radius: 50%;
  color: var(--white);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.product-window {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: min(460px, 74%);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(249, 249, 249, 0.16);
  border-radius: var(--radius);
  background: #111;
  opacity: 0.82;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.46);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(249, 249, 249, 0.1);
  background: rgba(249, 249, 249, 0.045);
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(249, 249, 249, 0.22);
}

.window-bar span:first-child {
  background: var(--red-2);
}

.product-map {
  position: absolute;
  left: 18px;
  top: 56px;
  right: 180px;
  bottom: 28px;
  overflow: hidden;
  border: 1px solid rgba(249, 249, 249, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(249, 249, 249, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(249, 249, 249, 0.08) 1px, transparent 1px),
    #171717;
  background-size: 34px 34px;
}

.route {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: var(--red-2);
  box-shadow: 0 0 22px rgba(239, 58, 49, 0.68);
}

.route-a {
  left: 12%;
  top: 66%;
  width: 38%;
  transform: rotate(-28deg);
}

.route-b {
  left: 43%;
  top: 41%;
  width: 34%;
  transform: rotate(22deg);
}

.route-c {
  left: 58%;
  top: 59%;
  width: 24%;
  transform: rotate(-16deg);
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow:
    0 0 0 10px rgba(191, 40, 33, 0.18),
    0 0 26px rgba(239, 58, 49, 0.78);
  animation: pulse 2.3s ease-in-out infinite;
}

.pin-a {
  left: 10%;
  top: 62%;
}

.pin-b {
  left: 48%;
  top: 35%;
  animation-delay: 400ms;
}

.pin-c {
  right: 14%;
  top: 56%;
  animation-delay: 800ms;
}

.vehicle-dot {
  position: absolute;
  left: 12%;
  top: 62%;
  width: 28px;
  height: 15px;
  border-radius: 999px 999px 5px 5px;
  background: var(--white);
  box-shadow: 0 0 26px rgba(249, 249, 249, 0.72);
  animation: moveVehicle 6s ease-in-out infinite;
}

.product-side {
  position: absolute;
  top: 56px;
  right: 18px;
  bottom: 28px;
  width: 136px;
  display: grid;
  gap: 12px;
}

.product-side span {
  border: 1px solid rgba(249, 249, 249, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(239, 58, 49, 0.8), rgba(191, 40, 33, 0.56)) left bottom / 100% 52% no-repeat,
    rgba(249, 249, 249, 0.055);
  animation: stat 3s ease-in-out infinite;
}

.product-side span:nth-child(2) {
  background-size: 100% 76%, auto;
  animation-delay: 300ms;
}

.product-side span:nth-child(3) {
  background-size: 100% 44%, auto;
  animation-delay: 600ms;
}

.phone-preview {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 142px;
  aspect-ratio: 9 / 18;
  border: 9px solid #111;
  border-radius: 30px;
  background:
    radial-gradient(circle at 52% 32%, rgba(239, 58, 49, 0.92) 0 7px, transparent 8px),
    linear-gradient(135deg, transparent 0 43%, var(--red-2) 44% 46%, transparent 47%),
    linear-gradient(90deg, rgba(249, 249, 249, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(249, 249, 249, 0.09) 1px, transparent 1px),
    #171717;
  background-size: auto, auto, 24px 24px, 24px 24px, auto;
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.44);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    opacity 260ms ease;
}

.phone-preview span {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: #0f0f0f;
  transform: translateX(-50%);
}

.phone-preview i {
  position: absolute;
  left: 24%;
  bottom: 18%;
  width: 52%;
  height: 6px;
  border-radius: 999px;
  background: var(--red-2);
  box-shadow: 0 0 18px rgba(239, 58, 49, 0.82);
}

.live-card {
  position: absolute;
  right: 8%;
  bottom: 18px;
  display: grid;
  gap: 4px;
  min-width: 170px;
  padding: 14px 16px;
  border: 1px solid rgba(249, 249, 249, 0.16);
  border-radius: var(--radius);
  background: rgba(15, 15, 15, 0.88);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.live-card strong {
  text-transform: uppercase;
}

.live-card small {
  color: rgba(249, 249, 249, 0.62);
  font-weight: 800;
}

.hero[data-hero="ios"] .phone-preview {
  border-color: #f9f9f9;
  transform: translate(20px, -18px) scale(1.1);
}

.hero[data-hero="web"] .product-window {
  transform: translateY(-8px) scale(1.03);
}

.hero[data-hero="web"] .phone-preview {
  opacity: 0.55;
  transform: translate(-12px, 8px) scale(0.9);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 18px clamp(20px, 6vw, 88px);
  background: #151515;
  color: rgba(249, 249, 249, 0.76);
}

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(249, 249, 249, 0.12);
  border-radius: var(--radius);
  font-weight: 850;
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(32px, 4vw, 56px) clamp(20px, 6vw, 88px);
  background: var(--white);
}

.offer-cards article {
  min-height: 290px;
  padding: 32px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 15, 15, 0.12);
}

.offer-cards .offer-featured {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: var(--white);
}

.offer-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 12px;
  background: rgba(191, 40, 33, 0.1);
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 950;
}

.offer-featured .offer-icon {
  background: rgba(249, 249, 249, 0.18);
  color: var(--white);
}

.offer-cards h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.offer-cards p {
  margin: 0;
  color: var(--gray);
  line-height: 1.65;
}

.offer-featured p {
  color: rgba(249, 249, 249, 0.84);
}

.coverage-section {
  padding: clamp(62px, 8vw, 108px) clamp(20px, 6vw, 88px);
  background: #eeeeee;
}

.coverage-heading {
  max-width: 920px;
  margin: 0 auto 44px;
  text-align: center;
}

.coverage-heading .eyebrow {
  color: var(--red-2);
  text-transform: none;
}

.coverage-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2.3rem, 4.5vw, 4.4rem);
  line-height: 1.05;
  text-transform: none;
}

.coverage-heading mark {
  background: transparent;
  color: var(--red-2);
}

.coverage-heading p {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--gray);
  font-size: 1.12rem;
  line-height: 1.65;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.coverage-grid article {
  position: relative;
  min-height: 300px;
  padding: 78px 30px 30px;
  background: var(--white);
  box-shadow: 0 22px 72px rgba(15, 15, 15, 0.08);
}

.coverage-icon {
  position: absolute;
  left: 30px;
  top: -28px;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(191, 40, 33, 0.24);
}

.coverage-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.coverage-grid h3 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  line-height: 1.15;
}

.coverage-grid p {
  margin: 0;
  color: var(--gray);
  font-size: 1.02rem;
  line-height: 1.68;
}

.coverage-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px !important;
  background: linear-gradient(135deg, var(--red), var(--red-2)) !important;
  color: var(--white);
}

.coverage-cta h3 {
  max-width: 420px;
  color: var(--white);
  font-size: clamp(1.85rem, 2.7vw, 2.7rem);
  font-weight: 650;
  line-height: 1.12;
}

.coverage-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 50px;
  margin-top: 24px;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--white);
  color: var(--red);
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(15, 15, 15, 0.18);
}

.section,
.contact-section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 6vw, 88px);
}

.fleet-tab-banner {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  min-height: clamp(430px, 46vw, 620px);
  overflow: hidden;
  padding: clamp(70px, 8vw, 120px) clamp(20px, 10vw, 180px);
  background:
    radial-gradient(circle at 92% 52%, transparent 0 58px, rgba(249, 249, 249, 0.9) 60px 70px, transparent 72px),
    radial-gradient(circle at 104% 52%, transparent 0 190px, rgba(249, 249, 249, 0.85) 193px 206px, transparent 209px),
    linear-gradient(135deg, #e5352e 0%, #e5352e 48%, #c92924 100%);
  color: var(--white);
}

.fleet-tab-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(229, 53, 46, 0.9) 0 38%, rgba(229, 53, 46, 0.42) 68%, rgba(168, 31, 27, 0.9)),
    url("assets/hero-frotas.png") right center / auto 112% no-repeat;
  opacity: 0.78;
}

.fleet-tab-banner::after {
  content: "";
  position: absolute;
  right: -5%;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 48%;
  border-left: 13px solid rgba(249, 249, 249, 0.92);
  transform: skewX(-12deg);
  transform-origin: bottom left;
}

.fleet-tab-notch {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  display: grid;
  width: clamp(72px, 6vw, 92px);
  height: clamp(32px, 2.8vw, 44px);
  place-items: center;
  border-radius: 0 0 999px 999px;
  background: var(--white);
  transform: translateX(-50%);
}

.fleet-tab-notch::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 3px solid #e5352e;
  border-bottom: 3px solid #e5352e;
  transform: translateY(-3px) rotate(45deg);
}

.fleet-tab-copy {
  max-width: 620px;
}

.fleet-tab-copy h2 {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(2.55rem, 4.5vw, 5rem);
  line-height: 1.08;
  text-transform: none;
}

.fleet-tab-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(249, 249, 249, 0.86);
  font-size: clamp(1.05rem, 1.55vw, 1.55rem);
  line-height: 1.55;
}

.fleet-tab-copy strong {
  color: var(--white);
}

.fleet-tab-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(420px, 100%);
  min-height: 64px;
  margin-top: 34px;
  padding: 17px 30px;
  border-radius: var(--radius);
  background: var(--white);
  color: #e5352e;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(15, 15, 15, 0.22);
}

.fleet-tab-visual {
  position: relative;
  min-height: 420px;
}

.fleet-tab-visual img {
  position: absolute;
  right: max(-180px, -10vw);
  top: 50%;
  width: min(900px, 58vw);
  max-width: none;
  border-radius: 0;
  filter: saturate(0.8) brightness(1.14) contrast(1.04);
  mix-blend-mode: screen;
  transform: translateY(-50%);
}

.profile-section {
  background: var(--white);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.profile-grid,
.resource-grid,
.plans-grid {
  display: grid;
  gap: 16px;
}

.profile-grid,
.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-card,
.resource-grid article,
.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(15, 15, 15, 0.07);
}

.profile-card {
  min-height: 390px;
  padding: 26px;
}

.profile-card-featured,
.plan-card-featured {
  background: var(--black);
  color: var(--white);
}

.profile-card span,
.plan-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--red-2);
  font-weight: 950;
}

.profile-card h3,
.resource-grid h3,
.plan-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.profile-card p,
.resource-grid p,
.plan-card p,
.location-copy p,
.contact-section p,
.faq-list p {
  color: var(--gray);
  line-height: 1.7;
}

.profile-card-featured p,
.profile-card-featured li,
.plan-card-featured p {
  color: rgba(249, 249, 249, 0.72);
}

.profile-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.profile-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 850;
}

.profile-card-featured h3 {
  color: var(--white);
}

.profile-card-featured p {
  color: rgba(249, 249, 249, 0.76);
}

.profile-card-featured li {
  color: rgba(249, 249, 249, 0.9);
}

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

.location-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  background: #f0f0f0;
}

.location-copy p {
  max-width: 620px;
}

.location-copy .eyebrow {
  color: var(--red-2);
}

.location-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.location-points span {
  padding: 9px 12px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-weight: 850;
}

.info-section {
  background: var(--white);
}

.info-heading {
  max-width: 940px;
  margin-bottom: 34px;
}

.info-heading .eyebrow {
  color: var(--red-2);
}

.info-heading p {
  max-width: 720px;
  color: var(--gray);
  line-height: 1.65;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-top: 6px solid var(--red-2);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 15, 15, 0.06);
}

.info-grid span {
  color: var(--red-2);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.info-grid strong {
  color: var(--black);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.22;
}

.info-grid p {
  margin: 0;
  color: var(--gray);
  line-height: 1.55;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.info-actions .button {
  min-height: 52px;
  box-shadow: none;
}

.info-actions .button-secondary {
  border-color: rgba(15, 15, 15, 0.14);
  background: var(--black);
  color: var(--white);
}

.map-demo {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(249, 249, 249, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 24%, rgba(239, 58, 49, 0.3), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(49, 233, 129, 0.16), transparent 24%),
    linear-gradient(135deg, #0c1115, #111 58%, #210907);
  box-shadow: 0 30px 90px rgba(15, 15, 15, 0.24);
}

.map-demo::before,
.map-demo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-demo::before {
  background:
    linear-gradient(90deg, rgba(249, 249, 249, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(249, 249, 249, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 84%, transparent);
}

.map-demo::after {
  background: linear-gradient(180deg, rgba(249, 249, 249, 0.08), transparent 24%, rgba(0, 0, 0, 0.2));
}

.map-toolbar {
  position: absolute;
  z-index: 4;
  left: 22px;
  right: 22px;
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(249, 249, 249, 0.12);
  border-radius: var(--radius);
  background: rgba(8, 8, 8, 0.72);
  color: var(--white);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.map-toolbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.map-toolbar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #31e981;
  box-shadow:
    0 0 0 7px rgba(49, 233, 129, 0.12),
    0 0 18px rgba(49, 233, 129, 0.86);
  animation: liveBlink 1.5s ease-in-out infinite;
}

.map-toolbar strong {
  font-variant-numeric: tabular-nums;
}

.map-grid {
  position: absolute;
  inset: 76px 26px 24px;
  overflow: hidden;
  border: 1px solid rgba(249, 249, 249, 0.11);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 36% 42%, rgba(239, 58, 49, 0.18), transparent 23%),
    linear-gradient(90deg, rgba(249, 249, 249, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(249, 249, 249, 0.055) 1px, transparent 1px),
    #14191d;
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.map-road {
  position: absolute;
  border-radius: 999px;
  background: rgba(82, 105, 119, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(249, 249, 249, 0.08),
    0 0 0 1px rgba(249, 249, 249, 0.035);
}

.map-road::after {
  content: "";
  position: absolute;
  inset: 50% 10px auto;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(249, 249, 249, 0.45) 0 14px, transparent 14px 28px);
  transform: translateY(-50%);
  opacity: 0.5;
}

.map-road-main {
  left: -9%;
  top: 52%;
  width: 118%;
  height: 28px;
  transform: rotate(-18deg);
}

.map-road-cross {
  left: 12%;
  top: 18%;
  width: 88%;
  height: 24px;
  transform: rotate(19deg);
}

.map-road-left {
  left: 15%;
  top: -6%;
  width: 24px;
  height: 118%;
  transform: rotate(4deg);
}

.map-road-right {
  right: 20%;
  top: 4%;
  width: 24px;
  height: 104%;
  transform: rotate(-3deg);
}

.map-road-bottom {
  left: 2%;
  bottom: 13%;
  width: 96%;
  height: 24px;
  transform: rotate(2deg);
}

.map-road-left::after,
.map-road-right::after {
  inset: 10px auto 10px 50%;
  width: 1px;
  height: auto;
  background: repeating-linear-gradient(180deg, rgba(249, 249, 249, 0.45) 0 14px, transparent 14px 28px);
  transform: translateX(-50%);
}

.map-trail {
  position: absolute;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(239, 58, 49, 0.3), var(--red-2));
  box-shadow: 0 0 24px rgba(239, 58, 49, 0.7);
  transform-origin: left center;
  animation: trailSweep 3.8s ease-in-out infinite;
}

.trail-one {
  left: 14%;
  top: 65%;
  width: 36%;
  transform: rotate(-18deg);
}

.trail-two {
  left: 42%;
  top: 37%;
  width: 29%;
  animation-delay: 700ms;
  transform: rotate(19deg);
}

.trail-three {
  left: 57%;
  top: 71%;
  width: 24%;
  animation-delay: 1.4s;
  transform: rotate(2deg);
}

.map-marker,
.map-geofence,
.map-vehicle {
  position: absolute;
  z-index: 3;
}

.map-marker {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--red-2);
  box-shadow:
    0 0 0 12px rgba(191, 40, 33, 0.18),
    0 0 30px rgba(239, 58, 49, 0.82);
  animation: pulse 2.2s ease-in-out infinite;
}

.map-marker span {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  padding: 5px 8px;
  border-radius: var(--radius);
  background: rgba(15, 15, 15, 0.78);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  white-space: nowrap;
  transform: translateX(-50%);
}

.marker-one {
  left: 17%;
  top: 61%;
}

.marker-two {
  right: 16%;
  top: 24%;
  animation-delay: 650ms;
}

.map-geofence {
  right: 17%;
  top: 17%;
  width: 112px;
  aspect-ratio: 1;
  border: 2px solid rgba(49, 233, 129, 0.48);
  border-radius: 50%;
  background: rgba(49, 233, 129, 0.08);
  box-shadow: inset 0 0 34px rgba(49, 233, 129, 0.08);
  animation: geofencePulse 2.8s ease-in-out infinite;
}

.map-vehicle {
  width: 42px;
  height: 23px;
  border-radius: 13px 13px 7px 7px;
  background:
    linear-gradient(90deg, transparent 9px, rgba(15, 15, 15, 0.38) 9px 13px, transparent 13px 29px, rgba(15, 15, 15, 0.38) 29px 33px, transparent 33px),
    linear-gradient(180deg, #f8fbff 0 43%, #b9d8e9 43% 58%, #f8fbff 58%);
  box-shadow:
    0 0 24px rgba(249, 249, 249, 0.48),
    0 10px 20px rgba(0, 0, 0, 0.24);
}

.map-vehicle-image {
  width: 74px;
  height: 44px;
  border-radius: 0;
  background: none;
  box-shadow: none;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34)) drop-shadow(0 0 12px rgba(249, 249, 249, 0.22));
}

.map-vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(0);
}

.map-vehicle::before,
.map-vehicle::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 5px;
  height: 15px;
  border-radius: 999px;
  background: #171717;
}

.map-vehicle::before {
  left: -2px;
}

.map-vehicle::after {
  right: -2px;
}

.map-vehicle-image::before,
.map-vehicle-image::after {
  display: none;
}

.map-vehicle span {
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #31e981;
  box-shadow:
    0 0 0 8px rgba(49, 233, 129, 0.11),
    0 0 18px rgba(49, 233, 129, 0.8);
  transform: translateX(-50%);
}

.vehicle-one {
  left: 12%;
  top: 64%;
  animation: liveVehicleOne 8.4s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.vehicle-two {
  left: 62%;
  top: 30%;
  animation: liveVehicleTwo 7.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.vehicle-moto {
  width: 58px;
  height: 44px;
}

.vehicle-three {
  left: 33%;
  top: 80%;
  background:
    linear-gradient(90deg, transparent 9px, rgba(15, 15, 15, 0.34) 9px 13px, transparent 13px 29px, rgba(15, 15, 15, 0.34) 29px 33px, transparent 33px),
    linear-gradient(180deg, #d9fff0 0 43%, #2ac77b 43% 58%, #d9fff0 58%);
  animation: liveVehicleThree 9.6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.map-card,
.map-speed {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(249, 249, 249, 0.13);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.82);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.map-card {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
}

.map-card small,
.map-card span,
.map-speed small {
  color: rgba(249, 249, 249, 0.66);
  font-weight: 800;
}

.map-card strong {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.15;
}

.map-card-alert {
  right: 36px;
  bottom: 32px;
  width: min(280px, calc(100% - 72px));
  border-color: rgba(239, 58, 49, 0.34);
  animation: cardNotice 3.6s ease-in-out infinite;
}

.map-card-alert small {
  color: #ffb0ab;
}

.map-card-status {
  left: 36px;
  bottom: 32px;
  min-width: 188px;
}

.map-card-status strong {
  color: #31e981;
  font-size: 2.25rem;
  font-variant-numeric: tabular-nums;
  line-height: 0.95;
}

.map-speed {
  top: 94px;
  right: 44px;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(239, 58, 49, 0.28), transparent 62%),
    rgba(10, 10, 10, 0.84);
}

.map-speed span {
  color: var(--red-2);
  font-size: 1.85rem;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.map-speed small {
  margin-top: -20px;
  font-size: 0.72rem;
}

.resources-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(34px, 5vw, 62px);
  padding-bottom: clamp(72px, 8vw, 112px);
  background:
    linear-gradient(180deg, #f7f7f7 0 17%, #fff 17% 100%);
  color: var(--ink);
}

.resources-section::before {
  content: "";
  position: absolute;
  inset: clamp(16px, 2vw, 28px) clamp(10px, 2vw, 28px) auto;
  height: clamp(420px, 42vw, 540px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 42%, rgba(239, 58, 49, 0.2), transparent 30%),
    radial-gradient(circle at 28% 18%, rgba(249, 249, 249, 0.1), transparent 20%),
    linear-gradient(90deg, rgba(249, 249, 249, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(249, 249, 249, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #151515, #26100f 52%, #0f0f0f);
  background-size: auto, auto, 62px 62px, 62px 62px, auto;
  box-shadow: inset 0 1px 0 rgba(249, 249, 249, 0.1);
}

.resources-section .section-heading {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 0 clamp(70px, 10vw, 128px);
  padding: clamp(72px, 8vw, 118px) clamp(22px, 6vw, 80px) 0;
  color: var(--white);
}

.resources-section .eyebrow {
  color: var(--red-2);
}

.resources-section h2 {
  max-width: 920px;
  font-size: clamp(2.65rem, 6.3vw, 6.25rem);
  line-height: 0.98;
}

.resource-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
  margin-top: clamp(-96px, -7vw, -56px);
}

.resource-grid article {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: clamp(28px, 3.2vw, 42px) clamp(22px, 2.7vw, 34px);
  border: 1px solid rgba(15, 15, 15, 0.06);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fff);
  box-shadow:
    0 26px 78px rgba(15, 15, 15, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.resource-grid article:nth-child(3) {
  border-bottom: 10px solid var(--red-2);
}

.resource-icon {
  display: grid;
  width: 106px;
  height: 106px;
  margin: 10px auto clamp(46px, 5vw, 68px);
  place-items: center;
  border-radius: 26px;
  background:
    radial-gradient(circle at 72% 28%, rgba(239, 58, 49, 0.12), transparent 34%),
    #fff;
}

.resource-icon svg {
  width: 92px;
  height: 92px;
  fill: none;
  stroke: var(--red-2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.6;
}

.resource-grid h3 {
  margin-bottom: 56px;
  color: #050505;
  font-size: clamp(1.2rem, 1.55vw, 1.65rem);
  line-height: 1.04;
  text-align: center;
}

.resource-grid p {
  max-width: 260px;
  margin: auto auto 0;
  color: #222;
  font-size: clamp(1rem, 1.06vw, 1.16rem);
  line-height: 1.45;
  text-align: left;
}

.plan-card {
  min-height: 270px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.plan-card a {
  margin-top: auto;
  color: var(--red);
  font-weight: 950;
}

.plan-card-featured a {
  color: var(--red-2);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 950;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 7vw, 86px);
  color: var(--white);
  background: var(--black);
}

.contact-section p {
  max-width: 640px;
  color: rgba(249, 249, 249, 0.72);
}

.whatsapp-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  min-height: clamp(620px, 48vw, 760px);
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) clamp(20px, 10vw, 180px);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, #e5352e, #c92924);
  color: var(--white);
}

.whatsapp-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.22;
}

.whatsapp-section::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -34%;
  z-index: -1;
  width: 52vw;
  height: 52vw;
  border: 18px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.whatsapp-copy {
  max-width: 640px;
}

.whatsapp-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.whatsapp-copy h2 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(2.45rem, 4.5vw, 4.8rem);
  line-height: 1.02;
  text-transform: none;
}

.whatsapp-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  margin-top: 32px;
  padding: 17px 28px;
  border-radius: var(--radius);
  background: var(--white);
  color: #e5352e;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(15, 15, 15, 0.2);
}

.whatsapp-button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.whatsapp-visual {
  position: relative;
  min-height: clamp(560px, 44vw, 700px);
}

.phone-hand {
  position: absolute;
  z-index: 1;
  right: clamp(-90px, -5vw, -42px);
  top: 57%;
  width: clamp(320px, 30vw, 500px);
  pointer-events: none;
  transform: translateY(-50%) rotate(1deg);
  filter: drop-shadow(0 30px 54px rgba(15, 15, 15, 0.24));
}

.phone-hand-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.chat-bubble {
  position: absolute;
  z-index: 2;
  max-width: min(360px, 52%);
  padding: 18px 22px;
  border-radius: 16px;
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  font-weight: 850;
  line-height: 1.32;
  box-shadow: 0 18px 44px rgba(15, 15, 15, 0.16);
}

.chat-bubble-user {
  left: 0;
  top: 74px;
  background: #191919;
  color: var(--white);
}

.chat-bubble-inova {
  left: 0;
  bottom: 86px;
  background: var(--white);
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(249, 249, 249, 0.12);
  border-radius: var(--radius);
  background: rgba(249, 249, 249, 0.06);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(249, 249, 249, 0.78);
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(249, 249, 249, 0.18);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: rgba(15, 15, 15, 0.62);
  color: var(--white);
  font: inherit;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--white);
  font-weight: 850;
}

.admin-panel-section {
  display: grid;
  gap: 16px;
}

.admin-panel-heading p {
  max-width: 700px;
  margin-top: 0;
  color: var(--gray);
}

.admin-toolbar {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}

.admin-stats {
  display: grid;
  gap: 6px;
}

.admin-stats strong {
  font-size: 1.12rem;
}

.admin-stats span {
  color: rgba(24, 24, 24, 0.68);
}

.admin-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.admin-empty {
  margin: 20px;
  color: rgba(24, 24, 24, 0.58);
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--ink);
}

.admin-table th,
.admin-table td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
}

.admin-table th {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(24, 24, 24, 0.72);
}

.admin-table td {
  vertical-align: middle;
}

.admin-access-wrap {
  grid-column: 1 / -1;
  margin-top: 24px;
}

.admin-access-head {
  margin-bottom: 10px;
}

.admin-access-head h2,
.admin-access-head h3 {
  margin: 6px 0 0;
}

.admin-token-label {
  display: inline-block;
  margin: 14px 0 8px;
  color: rgba(249, 249, 249, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.admin-token-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.admin-token-input {
  min-width: 220px;
  min-height: 44px;
  border: 1px solid rgba(249, 249, 249, 0.25);
  border-radius: var(--radius);
  padding: 11px 13px;
  background: rgba(15, 15, 15, 0.82);
  color: var(--white);
  font: inherit;
}

.admin-access-hint {
  margin: 10px 0 18px;
  color: rgba(249, 249, 249, 0.7);
  font-size: 0.9rem;
}

.admin-access-hint code {
  color: var(--white);
}

.admin-login-status {
  min-height: 18px;
  margin: 0 0 14px;
  color: rgba(249, 249, 249, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
}

.admin-panel-section {
  margin-top: 20px;
}

.admin-whatsapp-btn {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 8px;
  background: #25d366;
  color: #003300;
  font-weight: 900;
}

.admin-whatsapp-btn:hover {
  filter: brightness(0.93);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 88px);
  background: var(--white);
  color: var(--gray);
}

.site-footer span:first-child {
  color: var(--black);
  font-weight: 950;
  text-transform: uppercase;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

@keyframes moveVehicle {
  0% {
    transform: translate(0, 0) rotate(-24deg);
  }

  42% {
    transform: translate(170px, -105px) rotate(-14deg);
  }

  78% {
    transform: translate(320px, -22px) rotate(18deg);
  }

  100% {
    transform: translate(410px, -74px) rotate(-10deg);
  }
}

@keyframes stat {
  0%,
  100% {
    filter: brightness(0.82);
  }

  50% {
    filter: brightness(1.2);
  }
}

@keyframes liveBlink {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes trailSweep {
  0%,
  100% {
    opacity: 0.32;
    clip-path: inset(0 86% 0 0);
  }

  48%,
  68% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes geofencePulse {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(0.94);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes cardNotice {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  }

  50% {
    transform: translateY(-5px);
    box-shadow:
      0 18px 48px rgba(0, 0, 0, 0.26),
      0 0 30px rgba(239, 58, 49, 0.22);
  }
}

@keyframes liveVehicleOne {
  0% {
    transform: translate(0, 0) rotate(-18deg);
  }

  34% {
    transform: translate(205px, -66px) rotate(-18deg);
  }

  58% {
    transform: translate(330px, -146px) rotate(19deg);
  }

  82% {
    transform: translate(476px, -95px) rotate(19deg);
  }

  100% {
    transform: translate(616px, -140px) rotate(-18deg);
  }
}

@keyframes liveVehicleTwo {
  0% {
    transform: translate(0, 0) rotate(19deg);
  }

  38% {
    transform: translate(-172px, 72px) rotate(19deg);
  }

  66% {
    transform: translate(-262px, 126px) rotate(92deg);
  }

  100% {
    transform: translate(-262px, 286px) rotate(92deg);
  }
}

@keyframes liveVehicleThree {
  0% {
    transform: translate(0, 0) rotate(2deg);
  }

  34% {
    transform: translate(172px, -6px) rotate(2deg);
  }

  62% {
    transform: translate(306px, -64px) rotate(-18deg);
  }

  100% {
    transform: translate(505px, -128px) rotate(-18deg);
  }
}

@media (max-width: 1080px) {
  .utility-bar,
  .nav-links,
  .nav-status {
    display: none;
  }

  .site-header {
    padding-top: 12px;
  }

  .nav-card {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 72px;
    border-radius: 14px;
  }

  .nav-card::before,
  .nav-card::after {
    display: none;
  }

  .hero-inner,
  .location-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-product {
    min-height: 430px;
    opacity: 0.72;
  }

  .profile-grid,
  .resource-grid,
  .plans-grid,
  .offer-cards,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .fleet-tab-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .fleet-tab-visual {
    position: absolute;
    inset: auto -120px 0 auto;
    z-index: -1;
    width: min(720px, 82vw);
    min-height: 360px;
    opacity: 0.42;
  }

  .fleet-tab-visual img {
    right: 0;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand {
    width: 150px;
    min-width: 132px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 116px 18px 48px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 3rem);
  }

  .hero-actions,
  .platform-switch {
    grid-template-columns: 1fr;
  }

  .button,
  .platform-switch button {
    width: 100%;
  }

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

  .vehicle-stage {
    height: 320px;
  }

  .vehicle-stage img {
    object-position: 72% center;
  }

  .callout,
  .seal {
    display: none;
  }

  .product-side,
  .live-card {
    display: none;
  }

  .product-map {
    right: 18px;
  }

  .phone-preview {
    width: 112px;
  }

  .section,
  .contact-section,
  .offer-cards,
  .coverage-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .coverage-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .coverage-grid {
    gap: 36px;
  }

  .coverage-grid article {
    min-height: auto;
    padding: 66px 24px 26px;
  }

  .coverage-cta {
    padding: 30px 24px !important;
  }

  .fleet-tab-banner {
    padding: 70px 18px 62px;
  }

  .fleet-tab-banner::after {
    display: none;
  }

  .fleet-tab-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .fleet-tab-copy p {
    font-size: 1rem;
  }

  .fleet-tab-copy a {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 15px 18px;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

/* Final polish: compact hero copy and a proper lower slider rail. */
.hero-carousel {
  min-height: 100svh;
}

.home-slide-inner {
  grid-template-columns: 1fr;
  place-items: center;
  width: min(1180px, 100%);
  min-height: 100svh;
  padding: clamp(150px, 18vh, 215px) clamp(20px, 5vw, 72px) 118px;
  text-align: center;
}

.home-slide-copy {
  max-width: 860px;
  margin-inline: auto;
}

.home-slide-copy h1,
.home-slide-copy h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2.75rem, 5vw, 5.2rem);
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
}

.home-slide-copy p {
  max-width: 690px;
  margin: 18px auto 0;
  font-size: clamp(0.98rem, 1.2vw, 1.14rem);
  line-height: 1.55;
  text-align: center;
  text-wrap: balance;
}

.hero-actions,
.social-proof,
.store-row {
  justify-content: center;
}

.slide-badges,
.fleet-highlight {
  display: none;
}

.home-slider-controls {
  bottom: clamp(14px, 2.8vh, 28px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: min(620px, calc(100% - 36px));
  padding: 6px;
  border: 1px solid rgba(249, 249, 249, 0.18);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.66);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(249, 249, 249, 0.1);
  backdrop-filter: blur(18px);
}

.home-slider-controls button {
  min-height: 42px;
  gap: 7px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  font-size: 0.86rem;
}

.home-slider-controls button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(249, 249, 249, 0.08);
  color: rgba(249, 249, 249, 0.72);
  font-size: 0.72rem;
}

.home-slider-controls button strong {
  overflow: hidden;
  font-size: 0.84rem;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-slider-controls button i {
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  width: auto;
  transform: scaleX(0);
  transform-origin: left center;
}

.home-slider-controls button.is-active {
  background: linear-gradient(135deg, var(--red), #e1332b);
  box-shadow: 0 12px 30px rgba(191, 40, 33, 0.32);
}

.home-slider-controls button.is-active span {
  background: rgba(249, 249, 249, 0.2);
  color: var(--white);
}

.home-slider-controls button.is-active i {
  animation: sliderRailProgress var(--slide-duration, 7600ms) linear forwards;
}

@keyframes sliderRailProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-height: 760px) and (min-width: 681px) {
  .home-slide-inner {
    padding-top: 118px;
    padding-bottom: 82px;
  }

  .home-slide-copy {
    transform: translateY(-34px);
  }

  .home-slide-copy h1,
  .home-slide-copy h2 {
    font-size: clamp(2.35rem, 4.05vw, 3.75rem);
  }

  .home-slide-copy p {
    max-width: 630px;
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 11px 16px;
    font-size: 0.9rem;
  }

  .home-slider-controls {
    bottom: 8px;
    width: min(560px, calc(100% - 28px));
  }

  .home-slider-controls button {
    min-height: 38px;
    padding: 7px 10px;
  }

  .home-slider-controls button span {
    width: 24px;
    height: 24px;
  }

  .home-slider-controls button strong {
    font-size: 0.78rem;
  }
}

@media (max-width: 680px) {
  .hero-carousel,
  .home-slide-inner {
    min-height: 100svh;
  }

  .home-slide-inner {
    padding: 104px 18px 104px;
  }

  .home-slide-copy h1,
  .home-slide-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .home-slide-copy p {
    font-size: 0.95rem;
  }

  .home-slider-controls {
    display: flex;
    gap: 6px;
    width: calc(100% - 24px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-slider-controls::-webkit-scrollbar {
    display: none;
  }

  .home-slider-controls button {
    grid-template-columns: auto 1fr;
    min-width: 150px;
    scroll-snap-align: center;
  }
}

/* LAST: centered clean hero override */
.hero-carousel {
  min-height: 880px !important;
}

.hero-carousel .home-slide-image {
  object-position: center center !important;
  opacity: 0.72 !important;
  filter: saturate(1.05) contrast(1.08) brightness(0.72) !important;
}

.hero-carousel .home-slide-overlay {
  background:
    radial-gradient(circle at 50% 42%, rgba(191, 40, 33, 0.26), transparent 32%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.9)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98), transparent 58%) !important;
}

.hero-carousel .home-slide-inner {
  grid-template-columns: 1fr !important;
  place-items: center !important;
  width: min(1120px, 100%) !important;
  min-height: 880px !important;
  padding: 218px clamp(20px, 5vw, 72px) 150px !important;
  text-align: center !important;
}

.hero-carousel .home-slide-copy {
  max-width: 920px !important;
  margin: 0 auto !important;
}

.hero-carousel .home-slide-copy h1,
.hero-carousel .home-slide-copy h2 {
  max-width: 960px !important;
  margin: 0 auto !important;
  font-size: clamp(3.05rem, 6vw, 6.4rem) !important;
  line-height: 0.98 !important;
  text-align: center !important;
  text-wrap: balance;
}

.hero-carousel .home-slide-copy p {
  max-width: 760px !important;
  margin: 24px auto 0 !important;
  text-align: center !important;
  text-wrap: balance;
}

.hero-carousel .hero-actions,
.hero-carousel .social-proof,
.hero-carousel .store-row {
  justify-content: center !important;
}

.hero-carousel .slide-badges,
.hero-carousel .fleet-highlight {
  display: none !important;
}

.hero-carousel .home-slider-controls {
  width: min(780px, calc(100% - 40px)) !important;
}

@media (max-width: 680px) {
  .hero-carousel,
  .hero-carousel .home-slide-inner {
    min-height: 760px !important;
  }

  .hero-carousel .home-slide-inner {
    padding: 128px 18px 154px !important;
  }

  .hero-carousel .home-slide-copy h1,
  .hero-carousel .home-slide-copy h2 {
    font-size: clamp(2.3rem, 11vw, 3.65rem) !important;
  }
}

/* Definitive hero slider polish: keep this as the last hero override. */
.hero-carousel {
  min-height: 100svh !important;
}

.hero-carousel .home-slide-inner {
  grid-template-columns: 1fr !important;
  place-items: center !important;
  width: min(1180px, 100%) !important;
  min-height: 100svh !important;
  padding: clamp(150px, 18vh, 215px) clamp(20px, 5vw, 72px) 118px !important;
  text-align: center !important;
}

.hero-carousel .home-slide-copy {
  max-width: 860px !important;
  margin-inline: auto !important;
}

.hero-carousel .home-slide-copy h1,
.hero-carousel .home-slide-copy h2 {
  max-width: 900px !important;
  font-size: clamp(2.75rem, 5vw, 5.2rem) !important;
}

.hero-carousel .home-slide-copy p {
  max-width: 690px !important;
  margin-top: 18px !important;
  font-size: clamp(0.98rem, 1.2vw, 1.14rem) !important;
  line-height: 1.55 !important;
}

.hero-carousel .hero-actions,
.hero-carousel .social-proof,
.hero-carousel .store-row {
  justify-content: center !important;
}

.hero-carousel .slide-badges,
.hero-carousel .fleet-highlight {
  display: none !important;
}

.hero-carousel .home-slider-controls {
  bottom: clamp(14px, 2.8vh, 28px) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 6px !important;
  width: min(620px, calc(100% - 36px)) !important;
  padding: 6px !important;
  border: 1px solid rgba(249, 249, 249, 0.18) !important;
  border-radius: 999px !important;
  background: rgba(8, 8, 8, 0.66) !important;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(249, 249, 249, 0.1) !important;
  backdrop-filter: blur(18px) !important;
}

.hero-carousel .home-slider-controls button {
  min-height: 42px !important;
  gap: 7px !important;
  padding: 8px 12px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.86rem !important;
}

.hero-carousel .home-slider-controls button span {
  display: grid !important;
  width: 28px !important;
  height: 28px !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: rgba(249, 249, 249, 0.08) !important;
  color: rgba(249, 249, 249, 0.72) !important;
  font-size: 0.72rem !important;
}

.hero-carousel .home-slider-controls button strong {
  overflow: hidden !important;
  font-size: 0.84rem !important;
  line-height: 1 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.hero-carousel .home-slider-controls button i {
  left: 12px !important;
  right: 12px !important;
  bottom: 5px !important;
  width: auto !important;
  height: 2px !important;
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-carousel .home-slider-controls button.is-active {
  background: linear-gradient(135deg, var(--red), #e1332b) !important;
  box-shadow: 0 12px 30px rgba(191, 40, 33, 0.32) !important;
}

.hero-carousel .home-slider-controls button.is-active span {
  background: rgba(249, 249, 249, 0.2) !important;
  color: var(--white) !important;
}

.hero-carousel .home-slider-controls button.is-active i {
  animation: sliderRailProgress var(--slide-duration, 7600ms) linear forwards !important;
}

.hero-carousel .home-slider-toolbar {
  position: absolute !important;
  left: 0 !important;
  top: clamp(280px, 44vh, 360px) !important;
  bottom: auto !important;
  right: 0 !important;
  transform: none !important;
  z-index: 6 !important;
  width: 100% !important;
  padding: 0 clamp(12px, 2vw, 24px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
}

.hero-carousel .home-slider-toolbar .home-slider-controls {
  position: static !important;
  bottom: auto !important;
  transform: none !important;
  width: 100% !important;
  margin: 0 !important;
  flex: 1 !important;
  max-width: 760px !important;
}

.hero-carousel .home-slider-controls small {
  display: block !important;
  margin-top: 1px !important;
  color: rgba(249, 249, 249, 0.62) !important;
  font-size: 0.68rem !important;
}

.hero-carousel .slider-arrow {
  min-width: 42px !important;
  flex: 0 0 auto !important;
  height: 42px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  border: 1px solid rgba(249, 249, 249, 0.26) !important;
  background: rgba(8, 8, 8, 0.75) !important;
  color: var(--white) !important;
  font-size: 1.1rem !important;
  line-height: 1 !important;
  cursor: pointer !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34) !important;
}

@media (max-height: 760px) and (min-width: 681px) {
  .hero-carousel {
    height: 100svh !important;
    max-height: 100svh !important;
  }

  .hero-carousel .home-slide-inner {
    align-items: start !important;
    padding-top: 155px !important;
    padding-bottom: 78px !important;
  }

  .hero-carousel .home-slide-copy h1,
  .hero-carousel .home-slide-copy h2 {
    font-size: clamp(2.35rem, 4.05vw, 3.75rem) !important;
  }

  .hero-carousel .home-slide-copy p {
    max-width: 630px !important;
    margin-top: 14px !important;
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
  }

  .hero-carousel .social-proof {
    display: none !important;
  }

  .hero-carousel .hero-actions {
    margin-top: 18px !important;
  }

  .hero-carousel .hero-actions .button {
    min-height: 44px !important;
    padding: 11px 16px !important;
    font-size: 0.9rem !important;
  }

  .hero-carousel .home-slider-controls {
    bottom: 8px !important;
    width: min(560px, calc(100% - 28px)) !important;
  }

  .hero-carousel .home-slider-toolbar {
    top: clamp(210px, 28vh, 250px) !important;
    bottom: auto !important;
  }

  .hero-carousel .home-slider-controls button {
    min-height: 38px !important;
    padding: 7px 10px !important;
  }

  .hero-carousel .slider-arrow {
    min-width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
  }

  .hero-carousel .home-slider-controls button span {
    width: 24px !important;
    height: 24px !important;
  }

  .hero-carousel .home-slider-controls button strong {
    font-size: 0.78rem !important;
  }
}

@media (max-width: 680px) {
  .hero-carousel,
  .hero-carousel .home-slide-inner {
    min-height: 100svh !important;
  }

  .hero-carousel .home-slide-inner {
    padding: 104px 18px 104px !important;
  }

  .hero-carousel .home-slide-copy h1,
  .hero-carousel .home-slide-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3rem) !important;
  }

  .hero-carousel .home-slide-copy p {
    font-size: 0.95rem !important;
  }

  .hero-carousel .home-slider-toolbar {
    top: clamp(240px, 44vh, 250px) !important;
    bottom: auto !important;
  }

  .hero-carousel .home-slider-controls {
    display: flex !important;
    gap: 6px !important;
    width: calc(100% - 24px) !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-carousel .home-slider-controls::-webkit-scrollbar {
    display: none;
  }

  .hero-carousel .home-slider-controls button {
    grid-template-columns: auto 1fr !important;
    min-width: 150px !important;
    scroll-snap-align: center;
  }
}

/* LAST App/Web repair: final rule set after every generic hero override. */
.hero-carousel .app-web-slide .home-slide-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 43%, rgba(5, 5, 5, 0.5) 72%, rgba(5, 5, 5, 0.9) 100%),
    radial-gradient(circle at 76% 42%, rgba(191, 40, 33, 0.26), transparent 34%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98), transparent 58%) !important;
}

.hero-carousel .app-web-slide .home-slide-inner {
  grid-template-columns: minmax(620px, 0.92fr) minmax(420px, 1.08fr) !important;
  gap: clamp(30px, 4.8vw, 76px) !important;
  place-items: center start !important;
  width: min(1680px, 100%) !important;
  padding: clamp(165px, 18vh, 220px) clamp(28px, 5vw, 72px) 116px !important;
  text-align: left !important;
}

.hero-carousel .app-web-slide .home-slide-copy {
  position: relative !important;
  z-index: 3 !important;
  max-width: 720px !important;
  margin: 0 !important;
}

.hero-carousel .app-web-slide .eyebrow {
  margin-bottom: 12px !important;
}

.hero-carousel .app-web-slide .home-slide-copy h2 {
  max-width: 720px !important;
  margin: 0 !important;
  font-size: clamp(2.45rem, 4vw, 4.35rem) !important;
  line-height: 0.98 !important;
  text-align: left !important;
}

.hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
  max-width: 680px !important;
  margin: 20px 0 0 !important;
  font-size: clamp(1rem, 1.08vw, 1.12rem) !important;
  line-height: 1.62 !important;
  text-align: left !important;
}

.hero-carousel .app-web-slide .store-row {
  justify-content: flex-start !important;
  margin-top: 20px !important;
}

.hero-carousel .app-web-slide .store-row a {
  min-height: 52px !important;
  padding: 10px 15px !important;
  border: 1px solid rgba(249, 249, 249, 0.16) !important;
  border-radius: var(--radius) !important;
  background: rgba(15, 15, 15, 0.72) !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(14px) !important;
}

.hero-carousel .app-web-slide .app-visuals {
  z-index: 2 !important;
}

.hero-carousel .app-web-slide .app-visual-panel {
  right: clamp(22px, 5vw, 96px) !important;
  top: 22% !important;
  width: min(650px, 39vw) !important;
  height: min(440px, 42vh) !important;
  border-radius: 20px !important;
  opacity: 0.48 !important;
  transform: perspective(900px) rotateY(-14deg) rotateZ(1deg) !important;
}

.hero-carousel .app-web-slide .app-visual-phone {
  left: auto !important;
  right: clamp(300px, 31vw, 500px) !important;
  bottom: 15% !important;
  width: min(210px, 12vw) !important;
  height: min(410px, 42vh) !important;
  opacity: 0.38 !important;
  transform: rotate(-7deg) !important;
}

.hero-carousel .app-web-slide .app-metric-one {
  right: clamp(120px, 17vw, 300px) !important;
  top: 36% !important;
}

.hero-carousel .app-web-slide .app-metric-two {
  left: auto !important;
  right: clamp(400px, 40vw, 640px) !important;
  bottom: 23% !important;
}

@media (max-width: 1180px) {
  .hero-carousel .app-web-slide .home-slide-inner {
    grid-template-columns: 1fr !important;
    place-items: start center !important;
    padding-top: 138px !important;
    text-align: center !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy {
    max-width: 820px !important;
    margin-inline: auto !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy h2,
  .hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
    max-width: 820px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy h2 {
    font-size: clamp(2.25rem, 4.2vw, 3.9rem) !important;
  }

  .hero-carousel .app-web-slide .store-row {
    justify-content: center !important;
  }

  .hero-carousel .app-web-slide .app-visual-panel {
    right: -10% !important;
    top: 16% !important;
    width: 470px !important;
    height: 320px !important;
    opacity: 0.22 !important;
  }

  .hero-carousel .app-web-slide .app-visual-phone {
    left: -2% !important;
    right: auto !important;
    bottom: 14% !important;
    width: 160px !important;
    height: 320px !important;
    opacity: 0.2 !important;
  }

  .hero-carousel .app-web-slide .app-metric {
    display: none !important;
  }
}

@media (max-height: 760px) and (min-width: 681px) {
  .hero-carousel .app-web-slide .home-slide-inner {
    padding-top: 125px !important;
    padding-bottom: 82px !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy h2 {
    font-size: clamp(2rem, 3.45vw, 3.15rem) !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
    max-width: 710px !important;
    margin-top: 14px !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  .hero-carousel .app-web-slide .store-row {
    margin-top: 14px !important;
  }

  .hero-carousel .app-web-slide .store-row a {
    min-height: 42px !important;
    padding: 7px 12px !important;
  }
}

@media (max-width: 680px) {
  .hero-carousel .home-slider-controls {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    transform: none !important;
  }

  .hero-carousel .app-web-slide .home-slide-inner {
    padding: 104px 18px 118px !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy {
    max-width: 100% !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy h2 {
    font-size: clamp(1.95rem, 8.6vw, 2.65rem) !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
    margin-top: 16px !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  .hero-carousel .app-web-slide .store-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .hero-carousel .app-web-slide .store-row a {
    width: 100% !important;
    min-height: 44px !important;
    justify-content: center !important;
  }

  .hero-carousel .app-web-slide .app-visual-panel {
    right: -54% !important;
    top: 15% !important;
    width: 360px !important;
    height: 300px !important;
    opacity: 0.18 !important;
  }

  .hero-carousel .app-web-slide .app-visual-phone {
    left: -20% !important;
    bottom: 11% !important;
    width: 140px !important;
    height: 280px !important;
    opacity: 0.14 !important;
  }
}

@media (max-width: 760px) {
  .map-demo {
    min-height: 560px;
  }

  .map-toolbar {
    left: 14px;
    right: 14px;
    top: 14px;
    font-size: 0.78rem;
  }

  .map-grid {
    inset: 68px 14px 132px;
  }

  .map-road-main {
    width: 136%;
  }

  .map-geofence {
    right: 5%;
    width: 86px;
  }

  .marker-one {
    left: 13%;
  }

  .marker-two {
    right: 12%;
  }

  .map-marker span {
    display: none;
  }

  .map-card-alert {
    right: 14px;
    bottom: 18px;
    width: calc(100% - 128px);
    min-height: 96px;
  }

  .map-card-status {
    left: 14px;
    bottom: 18px;
    min-width: 112px;
    min-height: 96px;
    padding: 12px;
  }

  .map-card-status strong {
    font-size: 1.45rem;
  }

  .map-speed {
    top: 82px;
    right: 24px;
    width: 72px;
    height: 72px;
  }

  .map-speed span {
    font-size: 1.45rem;
  }

  .map-speed small {
    margin-top: -16px;
  }

  .vehicle-one {
    animation-name: liveVehicleOneMobile;
  }

  .vehicle-two {
    animation-name: liveVehicleTwoMobile;
  }

  .vehicle-three {
    animation-name: liveVehicleThreeMobile;
  }

  @keyframes liveVehicleOneMobile {
    0% {
      transform: translate(0, 0) rotate(-18deg);
    }

    44% {
      transform: translate(112px, -42px) rotate(-18deg);
    }

    72% {
      transform: translate(182px, -86px) rotate(19deg);
    }

    100% {
      transform: translate(266px, -54px) rotate(19deg);
    }
  }

  @keyframes liveVehicleTwoMobile {
    0% {
      transform: translate(0, 0) rotate(19deg);
    }

    52% {
      transform: translate(-106px, 44px) rotate(19deg);
    }

    100% {
      transform: translate(-118px, 172px) rotate(92deg);
    }
  }

  @keyframes liveVehicleThreeMobile {
    0% {
      transform: translate(0, 0) rotate(2deg);
    }

    46% {
      transform: translate(116px, -6px) rotate(2deg);
    }

    100% {
      transform: translate(206px, -52px) rotate(-18deg);
    }
  }
}

/* REAL LAST hero impact override: imagery and preview slider. */
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-inner {
  grid-template-columns: minmax(560px, 0.82fr) minmax(580px, 1.18fr) !important;
  width: min(1640px, 100%) !important;
  gap: clamp(36px, 4.2vw, 72px) !important;
  padding: clamp(172px, 18vh, 220px) clamp(32px, 5vw, 78px) 130px !important;
}

.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy {
  max-width: 760px !important;
}

.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h1,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h2 {
  max-width: 760px !important;
  font-size: clamp(3.1rem, 4.15vw, 5rem) !important;
}

.hero-showcase {
  display: block !important;
  width: min(760px, 100%) !important;
  opacity: 1 !important;
}

.hero-carousel .home-slider-controls {
  width: min(900px, calc(100% - 48px)) !important;
  gap: 10px !important;
  padding: 8px !important;
  border-radius: 28px !important;
}

.hero-carousel .home-slider-controls button {
  min-height: 68px !important;
  padding: 10px 16px 10px 60px !important;
  border-radius: 22px !important;
}

.hero-carousel .home-slider-controls button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.36)),
    var(--slide-thumb);
  background-position: center;
  background-size: cover;
  opacity: 0.28;
}

.hero-carousel .home-slider-controls button:nth-child(1) {
  --slide-thumb: url("assets/hero-rastreamento.png");
}

.hero-carousel .home-slider-controls button:nth-child(2) {
  --slide-thumb: url("assets/hero-frotas.png");
}

.hero-carousel .home-slider-controls button:nth-child(3) {
  --slide-thumb: url("assets/hero-app-web.png");
}

.hero-carousel .home-slider-controls button span {
  position: absolute !important;
  left: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.hero-carousel .home-slider-controls button strong {
  font-size: 0.98rem !important;
}

.hero-carousel .home-slider-controls button.is-active::before {
  opacity: 0.58;
}

.hero-carousel .home-slider-controls button.is-active {
  background: linear-gradient(90deg, rgba(191, 40, 33, 0.94), rgba(226, 54, 47, 0.78)) !important;
}

@media (max-width: 1180px) {
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-inner {
    grid-template-columns: 1fr !important;
  }

  .hero-showcase {
    position: absolute !important;
    right: -10% !important;
    top: 19% !important;
    width: 520px !important;
    opacity: 0.3 !important;
  }
}

@media (max-height: 760px) and (min-width: 681px) {
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h1,
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h2 {
    font-size: clamp(2.25rem, 3.65vw, 3.55rem) !important;
  }

  .hero-carousel .home-slider-controls button {
    min-height: 56px !important;
  }
}

@media (max-width: 680px) {
  .hero-showcase {
    display: none !important;
  }

  .hero-carousel .home-slider-controls button {
    min-width: 164px !important;
    min-height: 58px !important;
  }
}

/* Clean home override - must stay last. */
.site-header {
  gap: 0 !important;
  padding: 22px clamp(18px, 5vw, 72px) 0 !important;
}

.utility-bar,
.nav-card::before,
.nav-card::after,
.nav-status,
.hero-showcase,
.showcase-card,
.fleet-panel,
.app-visuals,
.slide-badges,
.fleet-highlight,
.social-proof {
  display: none !important;
}

.nav-card {
  grid-template-columns: auto 1fr auto !important;
  min-height: 68px !important;
  width: min(1180px, 100%) !important;
  padding: 10px 12px 10px 18px !important;
  border-color: rgba(249, 249, 249, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(8, 8, 8, 0.58) !important;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26) !important;
  backdrop-filter: blur(18px) !important;
}

.brand {
  width: 170px !important;
  min-width: 150px !important;
}

.brand-logo {
  max-height: 46px !important;
}

.nav-links {
  justify-self: center !important;
  min-height: 44px !important;
  padding: 4px !important;
  border-color: rgba(249, 249, 249, 0.08) !important;
  background: rgba(249, 249, 249, 0.06) !important;
  box-shadow: none !important;
  font-size: 0.92rem !important;
}

.nav-links::before {
  top: 4px !important;
  height: calc(100% - 8px) !important;
  background: rgba(239, 58, 49, 0.96) !important;
  box-shadow: none !important;
}

.nav-links a {
  min-height: 36px !important;
  padding: 0 13px !important;
}

.header-cta {
  min-height: 44px !important;
  padding: 11px 18px !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  font-size: 0.92rem !important;
}

.hero-carousel {
  min-height: 100svh !important;
  background: #080808 !important;
}

.hero-carousel .home-slide-image,
.hero-carousel .home-slide.is-active .home-slide-image {
  opacity: 0.62 !important;
  filter: saturate(0.9) contrast(1.04) brightness(0.82) !important;
  object-position: center center !important;
  transform: none !important;
}

.hero-carousel .home-slide-overlay,
.hero-carousel .app-web-slide .home-slide-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.66) 52%, rgba(5, 5, 5, 0.36) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.04) 54%, rgba(5, 5, 5, 0.48)) !important;
}

.hero-carousel .home-slide-inner,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-inner,
.hero-carousel .app-web-slide .home-slide-inner {
  grid-template-columns: 1fr !important;
  place-items: center start !important;
  width: min(1180px, 100%) !important;
  min-height: 100svh !important;
  padding: clamp(128px, 17vh, 170px) clamp(20px, 5vw, 72px) clamp(70px, 9vh, 100px) !important;
  text-align: left !important;
}

.hero-carousel .home-slide-copy,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy,
.hero-carousel .app-web-slide .home-slide-copy {
  width: min(760px, 100%) !important;
  max-width: 760px !important;
  margin: 0 !important;
}

.hero-carousel .eyebrow {
  max-width: 760px !important;
  margin: 0 0 14px !important;
  color: var(--red-2) !important;
  font-size: 0.92rem !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

.hero-carousel .home-slide-copy h1,
.hero-carousel .home-slide-copy h2,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h1,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h2,
.hero-carousel .app-web-slide .home-slide-copy h2 {
  max-width: 760px !important;
  margin: 0 !important;
  color: var(--white) !important;
  font-size: clamp(2.85rem, 5vw, 5.4rem) !important;
  line-height: 0.98 !important;
  text-align: left !important;
  text-wrap: balance !important;
}

.hero-carousel .home-slide-copy p:not(.eyebrow),
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy p:not(.eyebrow),
.hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
  max-width: 610px !important;
  margin: 22px 0 0 !important;
  color: rgba(249, 249, 249, 0.78) !important;
  font-size: clamp(1rem, 1.2vw, 1.14rem) !important;
  line-height: 1.65 !important;
  text-align: left !important;
}

.hero-carousel .hero-actions,
.hero-carousel .home-slide:not(.app-web-slide) .hero-actions,
.hero-carousel .store-row,
.hero-carousel .app-web-slide .store-row {
  justify-content: flex-start !important;
}

.hero-carousel .hero-actions {
  gap: 12px !important;
  margin-top: 32px !important;
}

.button,
.hero-carousel .store-row a {
  min-height: 52px !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
}

.button-primary {
  background: var(--red-2) !important;
}

.button-secondary {
  background: rgba(249, 249, 249, 0.08) !important;
  border-color: rgba(249, 249, 249, 0.22) !important;
  color: var(--white) !important;
}

.hero-carousel .home-slider-controls {
  left: clamp(20px, 5vw, 72px) !important;
  right: auto !important;
  bottom: 30px !important;
  display: inline-flex !important;
  width: auto !important;
  max-width: calc(100% - 40px) !important;
  gap: 8px !important;
  padding: 6px !important;
  border: 1px solid rgba(249, 249, 249, 0.1) !important;
  border-radius: 999px !important;
  background: rgba(8, 8, 8, 0.5) !important;
  box-shadow: none !important;
  transform: none !important;
}

.hero-carousel .home-slider-controls button {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important;
  min-height: 38px !important;
  padding: 8px 14px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-carousel .home-slider-controls button::before,
.hero-carousel .home-slider-controls button i {
  display: none !important;
}

.hero-carousel .home-slider-controls button span {
  position: static !important;
  display: inline-grid !important;
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 auto !important;
  place-items: center !important;
  background: rgba(249, 249, 249, 0.1) !important;
  color: rgba(249, 249, 249, 0.74) !important;
  font-size: 0.7rem !important;
  transform: none !important;
}

.hero-carousel .home-slider-controls button strong {
  max-width: none !important;
  color: rgba(249, 249, 249, 0.78) !important;
  font-size: 0.84rem !important;
}

.hero-carousel .home-slider-controls button.is-active {
  background: rgba(239, 58, 49, 0.94) !important;
  box-shadow: none !important;
}

.hero-carousel .home-slider-controls button.is-active span {
  background: rgba(249, 249, 249, 0.22) !important;
  color: var(--white) !important;
}

.hero-carousel .home-slider-controls button.is-active strong {
  color: var(--white) !important;
}

@media (max-width: 1080px) {
  .nav-card {
    grid-template-columns: auto auto !important;
    min-height: 62px !important;
    border-radius: 18px !important;
  }

  .header-cta {
    display: inline-flex !important;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 14px 0 !important;
  }

  .nav-card {
    min-height: 58px !important;
    padding: 9px 10px 9px 14px !important;
  }

  .brand {
    width: 136px !important;
    min-width: 120px !important;
  }

  .header-cta {
    min-height: 38px !important;
    padding: 9px 11px !important;
    font-size: 0.78rem !important;
  }

  .hero-carousel .home-slide-inner,
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-inner,
  .hero-carousel .app-web-slide .home-slide-inner {
    padding: 112px 18px 116px !important;
  }

  .hero-carousel .home-slide-copy h1,
  .hero-carousel .home-slide-copy h2,
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h1,
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h2,
  .hero-carousel .app-web-slide .home-slide-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.15rem) !important;
  }

  .hero-carousel .hero-actions,
  .hero-carousel .store-row,
  .hero-carousel .app-web-slide .store-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .hero-carousel .home-slider-controls {
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
    overflow-x: auto !important;
  }

  .hero-carousel .home-slider-controls button {
    flex: 0 0 auto !important;
  }
}

/* Clean home override. */
.site-header {
  gap: 0 !important;
  padding: 22px clamp(18px, 5vw, 72px) 0 !important;
}

.utility-bar {
  display: none !important;
}

.nav-card {
  grid-template-columns: auto 1fr auto !important;
  min-height: 68px !important;
  width: min(1180px, 100%) !important;
  padding: 10px 12px 10px 18px !important;
  border-color: rgba(249, 249, 249, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(8, 8, 8, 0.58) !important;
  background-size: auto !important;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26) !important;
  backdrop-filter: blur(18px) !important;
}

.nav-card::before,
.nav-card::after,
.nav-status {
  display: none !important;
}

.brand {
  width: 170px !important;
  min-width: 150px !important;
}

.brand-logo {
  max-height: 46px !important;
}

.nav-links {
  justify-self: center !important;
  min-height: 44px !important;
  padding: 4px !important;
  border-color: rgba(249, 249, 249, 0.08) !important;
  background: rgba(249, 249, 249, 0.06) !important;
  box-shadow: none !important;
  font-size: 0.92rem !important;
}

.nav-links::before {
  top: 4px !important;
  height: calc(100% - 8px) !important;
  background: rgba(239, 58, 49, 0.96) !important;
  box-shadow: none !important;
}

.nav-links a {
  min-height: 36px !important;
  padding: 0 13px !important;
}

.header-cta {
  min-height: 44px !important;
  padding: 11px 18px !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  font-size: 0.92rem !important;
}

.hero-carousel {
  min-height: 100svh !important;
  background: #080808 !important;
}

.hero-carousel .home-slide-image {
  opacity: 0.34 !important;
  filter: saturate(0.7) contrast(1.02) brightness(0.82) !important;
  transform: none !important;
}

.hero-carousel .home-slide.is-active .home-slide-image {
  transform: none !important;
}

.hero-carousel .home-slide-overlay,
.hero-carousel .app-web-slide .home-slide-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.82) 46%, rgba(5, 5, 5, 0.44) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.08) 52%, rgba(5, 5, 5, 0.64)) !important;
}

.hero-carousel .home-slide-inner,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-inner,
.hero-carousel .app-web-slide .home-slide-inner {
  grid-template-columns: 1fr !important;
  place-items: center start !important;
  width: min(1180px, 100%) !important;
  min-height: 100svh !important;
  padding: clamp(132px, 17vh, 178px) clamp(20px, 5vw, 72px) 108px !important;
  text-align: left !important;
}

.hero-carousel .home-slide-copy,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy,
.hero-carousel .app-web-slide .home-slide-copy {
  max-width: 720px !important;
  margin: 0 !important;
}

.hero-carousel .eyebrow {
  margin-bottom: 14px !important;
  color: var(--red-2) !important;
  font-size: 0.92rem !important;
  letter-spacing: 0 !important;
}

.hero-carousel .home-slide-copy h1,
.hero-carousel .home-slide-copy h2,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h1,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h2,
.hero-carousel .app-web-slide .home-slide-copy h2 {
  max-width: 760px !important;
  margin: 0 !important;
  color: var(--white) !important;
  font-size: clamp(2.85rem, 5vw, 5.4rem) !important;
  line-height: 0.98 !important;
  text-align: left !important;
  text-wrap: balance !important;
}

.hero-carousel .home-slide-copy p:not(.eyebrow),
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy p:not(.eyebrow),
.hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
  max-width: 610px !important;
  margin: 22px 0 0 !important;
  color: rgba(249, 249, 249, 0.78) !important;
  font-size: clamp(1rem, 1.2vw, 1.14rem) !important;
  line-height: 1.65 !important;
  text-align: left !important;
}

.hero-carousel .hero-actions,
.hero-carousel .home-slide:not(.app-web-slide) .hero-actions,
.hero-carousel .home-slide:not(.app-web-slide) .social-proof,
.hero-carousel .store-row,
.hero-carousel .app-web-slide .store-row {
  justify-content: flex-start !important;
}

.hero-carousel .hero-actions {
  gap: 12px !important;
  margin-top: 32px !important;
}

.button,
.hero-carousel .store-row a {
  min-height: 52px !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
}

.button-primary {
  background: var(--red-2) !important;
}

.button-secondary {
  background: rgba(249, 249, 249, 0.08) !important;
  border-color: rgba(249, 249, 249, 0.22) !important;
  color: var(--white) !important;
}

.hero-showcase,
.showcase-card,
.fleet-panel,
.app-visuals,
.slide-badges,
.fleet-highlight,
.social-proof {
  display: none !important;
}

.hero-carousel .home-slider-controls {
  left: clamp(20px, 5vw, 72px) !important;
  right: auto !important;
  bottom: 30px !important;
  display: inline-flex !important;
  width: auto !important;
  max-width: calc(100% - 40px) !important;
  gap: 8px !important;
  padding: 6px !important;
  border: 1px solid rgba(249, 249, 249, 0.1) !important;
  border-radius: 999px !important;
  background: rgba(8, 8, 8, 0.5) !important;
  box-shadow: none !important;
  transform: none !important;
}

.hero-carousel .home-slider-controls button {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important;
  min-height: 38px !important;
  padding: 8px 14px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-carousel .home-slider-controls button::before,
.hero-carousel .home-slider-controls button i {
  display: none !important;
}

.hero-carousel .home-slider-controls button span {
  position: static !important;
  display: inline-grid !important;
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 auto !important;
  place-items: center !important;
  background: rgba(249, 249, 249, 0.1) !important;
  color: rgba(249, 249, 249, 0.74) !important;
  font-size: 0.7rem !important;
  transform: none !important;
}

.hero-carousel .home-slider-controls button strong {
  max-width: none !important;
  color: rgba(249, 249, 249, 0.78) !important;
  font-size: 0.84rem !important;
}

.hero-carousel .home-slider-controls button.is-active {
  background: rgba(239, 58, 49, 0.94) !important;
  box-shadow: none !important;
}

.hero-carousel .home-slider-controls button.is-active span {
  background: rgba(249, 249, 249, 0.22) !important;
  color: var(--white) !important;
}

.hero-carousel .home-slider-controls button.is-active strong {
  color: var(--white) !important;
}

@media (max-width: 1080px) {
  .nav-card {
    grid-template-columns: auto auto !important;
    min-height: 62px !important;
    border-radius: 18px !important;
  }

  .header-cta {
    display: inline-flex !important;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 14px 0 !important;
  }

  .nav-card {
    min-height: 58px !important;
    padding: 9px 10px 9px 14px !important;
  }

  .brand {
    width: 136px !important;
    min-width: 120px !important;
  }

  .header-cta {
    min-height: 38px !important;
    padding: 9px 11px !important;
    font-size: 0.78rem !important;
  }

  .hero-carousel .home-slide-inner,
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-inner,
  .hero-carousel .app-web-slide .home-slide-inner {
    padding: 112px 18px 116px !important;
  }

  .hero-carousel .home-slide-copy h1,
  .hero-carousel .home-slide-copy h2,
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h1,
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h2,
  .hero-carousel .app-web-slide .home-slide-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.15rem) !important;
  }

  .hero-carousel .hero-actions,
  .hero-carousel .store-row,
  .hero-carousel .app-web-slide .store-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .hero-carousel .home-slider-controls {
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
    overflow-x: auto !important;
  }

  .hero-carousel .home-slider-controls button {
    flex: 0 0 auto !important;
  }
}

/* Resource section final responsive layer. */
@media (max-width: 1180px) {
  .resources-section::before {
    height: 560px;
  }

  .resources-section .section-heading {
    max-width: 880px;
    margin-bottom: 92px;
  }

  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -72px;
  }

  .resource-grid article {
    min-height: 330px;
  }

  .resource-icon {
    margin-bottom: 34px;
  }

  .resource-grid h3 {
    margin-bottom: 28px;
  }

  .resource-grid p {
    max-width: 360px;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .resources-section {
    padding-top: 30px;
    padding-bottom: 66px;
  }

  .resources-section::before {
    inset: 10px 8px auto;
    height: 500px;
    border-radius: 22px;
  }

  .resources-section .section-heading {
    margin-bottom: 60px;
    padding: 64px 10px 0;
  }

  .resources-section h2 {
    font-size: clamp(2.05rem, 10vw, 3.3rem);
  }

  .resource-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: -42px;
  }

  .resource-grid article {
    min-height: 280px;
    padding: 28px 24px;
    border-radius: 18px;
  }

  .resource-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 24px;
    border-radius: 22px;
  }

  .resource-icon svg {
    width: 74px;
    height: 74px;
  }

  .resource-grid h3 {
    margin-bottom: 18px;
  }
}

/* HERO IMPACT PASS: visible imagery, product-style slider previews. */
.hero-carousel .home-slide-image {
  opacity: 0.95 !important;
  filter: saturate(1.16) contrast(1.12) brightness(0.86) !important;
}

.hero-carousel .home-slide-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.76) 42%, rgba(5, 5, 5, 0.42) 74%, rgba(5, 5, 5, 0.82) 100%),
    radial-gradient(circle at 72% 42%, rgba(239, 58, 49, 0.28), transparent 32%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98), transparent 58%) !important;
}

.hero-carousel .home-slide:not(.app-web-slide) .home-slide-inner {
  grid-template-columns: minmax(480px, 0.88fr) minmax(420px, 1.12fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  place-items: center !important;
  width: min(1540px, 100%) !important;
  padding: clamp(180px, 20vh, 230px) clamp(28px, 5vw, 74px) 126px !important;
  text-align: left !important;
}

.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy {
  max-width: 690px !important;
  margin: 0 !important;
}

.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h1,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h2 {
  max-width: 720px !important;
  margin: 0 !important;
  font-size: clamp(2.8rem, 4.65vw, 5.45rem) !important;
  line-height: 0.96 !important;
  text-align: left !important;
}

.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy p:not(.eyebrow) {
  max-width: 620px !important;
  margin: 22px 0 0 !important;
  text-align: left !important;
}

.hero-carousel .home-slide:not(.app-web-slide) .hero-actions,
.hero-carousel .home-slide:not(.app-web-slide) .social-proof {
  justify-content: flex-start !important;
}

.hero-showcase {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(249, 249, 249, 0.16);
  border-radius: 26px;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.62),
    0 0 80px rgba(191, 40, 33, 0.18),
    inset 0 1px 0 rgba(249, 249, 249, 0.12);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.44)),
    radial-gradient(circle at 74% 26%, rgba(239, 58, 49, 0.26), transparent 32%);
}

.hero-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.16) contrast(1.1) brightness(0.9);
  transform: scale(1.05);
}

.showcase-route {
  position: absolute;
  z-index: 2;
  left: 14%;
  top: 57%;
  width: 55%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--red-2), #fff, var(--red-2));
  box-shadow: 0 0 24px rgba(239, 58, 49, 0.72);
  transform: rotate(-18deg);
}

.showcase-pin {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red-2);
  box-shadow:
    0 0 0 12px rgba(239, 58, 49, 0.16),
    0 0 28px rgba(239, 58, 49, 0.82);
}

.pin-one {
  left: 18%;
  top: 61%;
}

.pin-two {
  right: 22%;
  top: 41%;
}

.showcase-card,
.fleet-panel {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(249, 249, 249, 0.16);
  border-radius: 14px;
  background: rgba(9, 9, 9, 0.74);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.showcase-card {
  display: grid;
  gap: 4px;
  padding: 13px 15px;
}

.showcase-card strong,
.fleet-panel strong {
  color: var(--red-2);
  line-height: 1;
}

.showcase-card small,
.fleet-panel small {
  color: rgba(249, 249, 249, 0.72);
  font-weight: 800;
}

.card-live {
  left: 24px;
  top: 24px;
}

.card-alert {
  right: 24px;
  bottom: 24px;
}

.fleet-panel {
  right: 22px;
  top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(88px, 1fr));
  gap: 8px;
  padding: 10px;
}

.fleet-panel span {
  display: grid;
  gap: 5px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(249, 249, 249, 0.06);
}

.fleet-panel strong {
  font-size: 1.55rem;
}

.fleet-card {
  left: 24px;
  bottom: 24px;
}

.slide-badges,
.fleet-highlight {
  display: none !important;
}

.hero-carousel .home-slider-controls {
  width: min(900px, calc(100% - 48px)) !important;
  gap: 10px !important;
  padding: 8px !important;
  border-radius: 28px !important;
  background: rgba(6, 6, 6, 0.78) !important;
}

.hero-carousel .home-slider-controls button {
  isolation: isolate;
  min-height: 68px !important;
  padding: 10px 16px 10px 58px !important;
  border-radius: 22px !important;
  overflow: hidden !important;
}

.hero-carousel .home-slider-controls button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.42)),
    var(--slide-thumb);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transition: opacity 180ms ease, transform 220ms ease;
}

.hero-carousel .home-slider-controls button:nth-child(1) {
  --slide-thumb: url("assets/hero-rastreamento.png");
}

.hero-carousel .home-slider-controls button:nth-child(2) {
  --slide-thumb: url("assets/hero-frotas.png");
}

.hero-carousel .home-slider-controls button:nth-child(3) {
  --slide-thumb: url("assets/hero-app-web.png");
}

.hero-carousel .home-slider-controls button span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-carousel .home-slider-controls button strong {
  font-size: 0.98rem !important;
}

.hero-carousel .home-slider-controls button.is-active::before {
  opacity: 0.5;
  transform: scale(1.06);
}

.hero-carousel .home-slider-controls button.is-active {
  background:
    linear-gradient(90deg, rgba(191, 40, 33, 0.92), rgba(226, 54, 47, 0.78)) !important;
}

@media (max-width: 1180px) {
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-inner {
    grid-template-columns: 1fr !important;
    padding-top: 138px !important;
    text-align: center !important;
  }

  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy {
    max-width: 860px !important;
    margin-inline: auto !important;
  }

  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h1,
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h2,
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy p:not(.eyebrow) {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-carousel .home-slide:not(.app-web-slide) .hero-actions,
  .hero-carousel .home-slide:not(.app-web-slide) .social-proof {
    justify-content: center !important;
  }

  .hero-showcase {
    position: absolute;
    right: -10%;
    top: 20%;
    width: 520px;
    opacity: 0.28;
  }
}

@media (max-height: 760px) and (min-width: 681px) {
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-inner {
    padding-top: 126px !important;
  }

  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h1,
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h2 {
    font-size: clamp(2.25rem, 3.7vw, 3.65rem) !important;
  }

  .hero-showcase {
    width: 430px;
    top: 18%;
  }

  .hero-carousel .home-slider-controls button {
    min-height: 54px !important;
  }
}

@media (max-width: 680px) {
  .hero-showcase {
    display: none;
  }

  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-inner {
    padding: 104px 18px 118px !important;
  }

  .hero-carousel .home-slider-controls {
    width: auto !important;
    gap: 7px !important;
  }

  .hero-carousel .home-slider-controls button {
    min-width: 164px !important;
    min-height: 58px !important;
    padding-left: 52px !important;
  }
}

/* Final App/Web repair: this must be after the generic hero rules. */
.hero-carousel .app-web-slide .home-slide-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 43%, rgba(5, 5, 5, 0.5) 72%, rgba(5, 5, 5, 0.9) 100%),
    radial-gradient(circle at 76% 42%, rgba(191, 40, 33, 0.26), transparent 34%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98), transparent 58%) !important;
}

.hero-carousel .app-web-slide .home-slide-inner {
  grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1.1fr) !important;
  gap: clamp(30px, 6vw, 96px) !important;
  place-items: center start !important;
  width: min(1280px, 100%) !important;
  padding: clamp(170px, 20vh, 245px) clamp(24px, 6vw, 78px) 116px !important;
  text-align: left !important;
}

.hero-carousel .app-web-slide .home-slide-copy {
  position: relative !important;
  z-index: 3 !important;
  max-width: 660px !important;
  margin: 0 !important;
}

.hero-carousel .app-web-slide .eyebrow {
  margin-bottom: 12px !important;
}

.hero-carousel .app-web-slide .home-slide-copy h2 {
  max-width: 660px !important;
  margin: 0 !important;
  font-size: clamp(2.45rem, 4.35vw, 4.95rem) !important;
  line-height: 0.98 !important;
  text-align: left !important;
}

.hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
  max-width: 620px !important;
  margin: 22px 0 0 !important;
  font-size: clamp(1rem, 1.08vw, 1.12rem) !important;
  line-height: 1.62 !important;
  text-align: left !important;
}

.hero-carousel .app-web-slide .store-row {
  justify-content: flex-start !important;
  margin-top: 24px !important;
}

.hero-carousel .app-web-slide .store-row a {
  min-height: 52px !important;
  padding: 10px 15px !important;
  border: 1px solid rgba(249, 249, 249, 0.16) !important;
  border-radius: var(--radius) !important;
  background: rgba(15, 15, 15, 0.72) !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(14px) !important;
}

.hero-carousel .app-web-slide .app-visuals {
  z-index: 2 !important;
}

.hero-carousel .app-web-slide .app-visual-panel {
  right: clamp(22px, 5vw, 96px) !important;
  top: 22% !important;
  width: min(680px, 42vw) !important;
  height: min(440px, 42vh) !important;
  border-radius: 20px !important;
  opacity: 0.48 !important;
  transform: perspective(900px) rotateY(-14deg) rotateZ(1deg) !important;
}

.hero-carousel .app-web-slide .app-visual-phone {
  left: auto !important;
  right: clamp(310px, 32vw, 520px) !important;
  bottom: 15% !important;
  width: min(210px, 12vw) !important;
  height: min(410px, 42vh) !important;
  opacity: 0.38 !important;
  transform: rotate(-7deg) !important;
}

.hero-carousel .app-web-slide .app-metric-one {
  right: clamp(120px, 17vw, 300px) !important;
  top: 36% !important;
}

.hero-carousel .app-web-slide .app-metric-two {
  left: auto !important;
  right: clamp(400px, 40vw, 640px) !important;
  bottom: 23% !important;
}

@media (max-width: 1180px) {
  .hero-carousel .app-web-slide .home-slide-inner {
    grid-template-columns: 1fr !important;
    place-items: start center !important;
    padding-top: 138px !important;
    text-align: center !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy {
    max-width: 820px !important;
    margin-inline: auto !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy h2,
  .hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
    max-width: 820px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy h2 {
    font-size: clamp(2.25rem, 4.2vw, 3.9rem) !important;
  }

  .hero-carousel .app-web-slide .store-row {
    justify-content: center !important;
  }

  .hero-carousel .app-web-slide .app-visual-panel {
    right: -10% !important;
    top: 16% !important;
    width: 470px !important;
    height: 320px !important;
    opacity: 0.22 !important;
  }

  .hero-carousel .app-web-slide .app-visual-phone {
    left: -2% !important;
    right: auto !important;
    bottom: 14% !important;
    width: 160px !important;
    height: 320px !important;
    opacity: 0.2 !important;
  }

  .hero-carousel .app-web-slide .app-metric {
    display: none !important;
  }
}

@media (max-height: 760px) and (min-width: 681px) {
  .hero-carousel .app-web-slide .home-slide-inner {
    padding-top: 125px !important;
    padding-bottom: 82px !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy h2 {
    font-size: clamp(2rem, 3.45vw, 3.15rem) !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
    max-width: 710px !important;
    margin-top: 14px !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  .hero-carousel .app-web-slide .store-row {
    margin-top: 14px !important;
  }

  .hero-carousel .app-web-slide .store-row a {
    min-height: 42px !important;
    padding: 7px 12px !important;
  }
}

@media (max-width: 680px) {
  .hero-carousel .app-web-slide .home-slide-inner {
    padding: 104px 18px 118px !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy {
    max-width: 100% !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy h2 {
    font-size: clamp(1.95rem, 8.6vw, 2.65rem) !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
    margin-top: 16px !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  .hero-carousel .app-web-slide .store-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .hero-carousel .app-web-slide .store-row a {
    width: 100% !important;
    min-height: 44px !important;
    justify-content: center !important;
  }

  .hero-carousel .app-web-slide .app-visual-panel {
    right: -54% !important;
    top: 15% !important;
    width: 360px !important;
    height: 300px !important;
    opacity: 0.18 !important;
  }

  .hero-carousel .app-web-slide .app-visual-phone {
    left: -20% !important;
    bottom: 11% !important;
    width: 140px !important;
    height: 280px !important;
    opacity: 0.14 !important;
  }
}

/* App/Web slide: richer background and calmer copy scale. */
.hero-carousel .app-web-slide .home-slide-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.66) 48%, rgba(5, 5, 5, 0.9) 100%),
    radial-gradient(circle at 48% 42%, rgba(191, 40, 33, 0.34), transparent 34%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98), transparent 58%) !important;
}

.hero-carousel .app-web-slide .home-slide-copy {
  max-width: 940px !important;
}

.hero-carousel .app-web-slide .home-slide-copy h2 {
  max-width: 920px !important;
  font-size: clamp(2.65rem, 4.35vw, 4.65rem) !important;
}

.hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
  max-width: 790px !important;
  font-size: clamp(1rem, 1.08vw, 1.16rem) !important;
}

.app-visuals {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.app-visual {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgba(249, 249, 249, 0.12);
  background: #111;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.54);
  filter: saturate(1.08) contrast(1.08);
}

.app-visual-panel {
  right: -7%;
  top: 18%;
  width: min(560px, 34vw);
  height: 360px;
  border-radius: 18px;
  opacity: 0.34;
  transform: perspective(900px) rotateY(-18deg) rotateZ(1deg);
}

.app-visual-phone {
  left: 8%;
  bottom: 10%;
  width: min(240px, 16vw);
  height: 460px;
  border: 10px solid rgba(12, 12, 12, 0.92);
  border-radius: 34px;
  opacity: 0.32;
  transform: rotate(-9deg);
}

.app-metric {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 170px;
  padding: 13px 15px;
  border: 1px solid rgba(249, 249, 249, 0.14);
  border-radius: var(--radius);
  background: rgba(15, 15, 15, 0.62);
  color: var(--white);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.app-metric strong {
  color: var(--red-2);
  font-size: 0.92rem;
  line-height: 1;
}

.app-metric span {
  color: rgba(249, 249, 249, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.app-metric-one {
  right: 15%;
  top: 34%;
}

.app-metric-two {
  left: 17%;
  bottom: 24%;
}

.hero-carousel .app-web-slide .store-row {
  margin-top: 24px !important;
}

.hero-carousel .app-web-slide .store-row a {
  min-height: 54px;
  padding: 10px 16px;
  border: 1px solid rgba(249, 249, 249, 0.12);
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(14px);
}

@media (max-height: 760px) and (min-width: 681px) {
  .hero-carousel .app-web-slide .home-slide-inner {
    padding-top: 132px !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy h2 {
    font-size: clamp(2.2rem, 3.6vw, 3.35rem) !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
    max-width: 720px !important;
    font-size: 0.9rem !important;
    line-height: 1.42 !important;
  }

  .hero-carousel .app-web-slide .store-row {
    margin-top: 16px !important;
  }

  .hero-carousel .app-web-slide .store-row a {
    min-height: 46px;
    padding: 8px 13px;
  }

  .app-visual-panel {
    top: 16%;
    height: 300px;
    opacity: 0.25;
  }

  .app-visual-phone {
    bottom: 5%;
    height: 350px;
    opacity: 0.22;
  }

  .app-metric {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero-carousel .app-web-slide .home-slide-inner {
    padding-top: 98px !important;
    padding-bottom: 116px !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy h2 {
    font-size: clamp(1.95rem, 9vw, 2.8rem) !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
    font-size: 0.9rem !important;
    line-height: 1.42 !important;
  }

  .hero-carousel .app-web-slide .store-row {
    gap: 8px;
    margin-top: 14px !important;
  }

  .hero-carousel .app-web-slide .store-row a {
    width: 100%;
    min-height: 44px;
  }

  .app-visual-panel {
    right: -46%;
    top: 16%;
    width: 360px;
    height: 310px;
    opacity: 0.22;
  }

  .app-visual-phone {
    left: -18%;
    bottom: 12%;
    width: 150px;
    height: 300px;
    opacity: 0.18;
  }

  .app-metric {
    display: none;
  }
}

/* Slider structure restored after removing duplicated legacy overrides. */
.hero-carousel .home-slides,
.hero-carousel .home-slide,
.hero-carousel .home-slide-image,
.hero-carousel .home-slide-overlay {
  position: absolute !important;
  inset: 0 !important;
}

.hero-carousel .home-slide {
  z-index: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 360ms ease !important;
}

.hero-carousel .home-slide.is-active {
  z-index: 1 !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.hero-carousel .home-slide-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.04);
  transition: transform 7600ms ease;
}

.hero-carousel .home-slide.is-active .home-slide-image {
  transform: scale(1.1);
}

.hero-carousel .home-slide-inner {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  margin: 0 auto !important;
}

.hero-carousel .home-slider-controls {
  position: absolute !important;
  z-index: 5 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.hero-carousel .home-slider-controls button {
  position: relative !important;
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: center !important;
  overflow: hidden !important;
  color: var(--white) !important;
  cursor: pointer !important;
  text-align: left !important;
  backdrop-filter: blur(12px) !important;
}

.hero-carousel .store-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  justify-content: center !important;
}

.hero-carousel .store-row a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: var(--white) !important;
}

.hero-carousel .store-row svg {
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 auto !important;
  fill: currentColor !important;
}

.hero-carousel .store-row small,
.hero-carousel .store-row strong {
  display: block !important;
  line-height: 1.05 !important;
}

.hero-carousel .store-row small {
  color: rgba(249, 249, 249, 0.66) !important;
  font-size: 0.72rem !important;
}

/* Definitive hero slider polish: keep this block last. */
.hero-carousel {
  min-height: 100svh !important;
}

.hero-carousel .home-slide-inner {
  grid-template-columns: 1fr !important;
  place-items: center !important;
  width: min(1180px, 100%) !important;
  min-height: 100svh !important;
  padding: clamp(150px, 18vh, 215px) clamp(20px, 5vw, 72px) 118px !important;
  text-align: center !important;
}

.hero-carousel .home-slide-copy {
  max-width: 860px !important;
  margin-inline: auto !important;
}

.hero-carousel .home-slide-copy h1,
.hero-carousel .home-slide-copy h2 {
  max-width: 900px !important;
  font-size: clamp(2.75rem, 5vw, 5.2rem) !important;
}

.hero-carousel .home-slide-copy p {
  max-width: 690px !important;
  margin-top: 18px !important;
  font-size: clamp(0.98rem, 1.2vw, 1.14rem) !important;
  line-height: 1.55 !important;
}

.hero-carousel .home-slider-controls {
  bottom: clamp(14px, 2.8vh, 28px) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 6px !important;
  width: min(620px, calc(100% - 36px)) !important;
  padding: 6px !important;
  border: 1px solid rgba(249, 249, 249, 0.18) !important;
  border-radius: 999px !important;
  background: rgba(8, 8, 8, 0.66) !important;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(249, 249, 249, 0.1) !important;
  backdrop-filter: blur(18px) !important;
}

.hero-carousel .home-slider-controls button {
  min-height: 42px !important;
  gap: 7px !important;
  padding: 8px 12px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.86rem !important;
}

.hero-carousel .home-slider-controls button span {
  display: grid !important;
  width: 28px !important;
  height: 28px !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: rgba(249, 249, 249, 0.08) !important;
  color: rgba(249, 249, 249, 0.72) !important;
  font-size: 0.72rem !important;
}

.hero-carousel .home-slider-controls button strong {
  overflow: hidden !important;
  font-size: 0.84rem !important;
  line-height: 1 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.hero-carousel .home-slider-controls button i {
  left: 12px !important;
  right: 12px !important;
  bottom: 5px !important;
  width: auto !important;
  height: 2px !important;
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-carousel .home-slider-controls button.is-active {
  background: linear-gradient(135deg, var(--red), #e1332b) !important;
  box-shadow: 0 12px 30px rgba(191, 40, 33, 0.32) !important;
}

.hero-carousel .home-slider-controls button.is-active span {
  background: rgba(249, 249, 249, 0.2) !important;
  color: var(--white) !important;
}

.hero-carousel .home-slider-controls button.is-active i {
  animation: sliderRailProgress var(--slide-duration, 7600ms) linear forwards !important;
}

@media (max-height: 760px) and (min-width: 681px) {
  .hero-carousel {
    height: 100svh !important;
    max-height: 100svh !important;
  }

  .hero-carousel .home-slide-inner {
    align-items: start !important;
    padding-top: 155px !important;
    padding-bottom: 78px !important;
  }

  .hero-carousel .home-slide-copy {
    transform: translateY(0);
  }

  .hero-carousel .home-slide-copy h1,
  .hero-carousel .home-slide-copy h2 {
    font-size: clamp(2.35rem, 4.05vw, 3.75rem) !important;
  }

  .hero-carousel .home-slide-copy p {
    max-width: 630px !important;
    margin-top: 14px !important;
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
  }

  .hero-carousel .social-proof {
    display: none !important;
  }

  .hero-carousel .hero-actions {
    margin-top: 18px !important;
  }

  .hero-carousel .hero-actions .button {
    min-height: 44px !important;
    padding: 11px 16px !important;
    font-size: 0.9rem !important;
  }

  .hero-carousel .home-slider-controls {
    bottom: 8px !important;
    width: min(560px, calc(100% - 28px)) !important;
  }

  .hero-carousel .home-slider-controls button {
    min-height: 38px !important;
    padding: 7px 10px !important;
  }

  .hero-carousel .home-slider-controls button span {
    width: 24px !important;
    height: 24px !important;
  }

  .hero-carousel .home-slider-controls button strong {
    font-size: 0.78rem !important;
  }
}

@media (max-width: 680px) {
  .hero-carousel,
  .hero-carousel .home-slide-inner {
    min-height: 100svh !important;
  }

  .hero-carousel .home-slide-inner {
    padding: 104px 18px 104px !important;
  }

  .hero-carousel .home-slide-copy h1,
  .hero-carousel .home-slide-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3rem) !important;
  }

  .hero-carousel .home-slide-copy p {
    font-size: 0.95rem !important;
  }

  .hero-carousel .home-slider-controls {
    display: flex !important;
    gap: 6px !important;
    width: calc(100% - 24px) !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-carousel .home-slider-controls::-webkit-scrollbar {
    display: none;
  }

  .hero-carousel .home-slider-controls button {
    grid-template-columns: auto 1fr !important;
    min-width: 150px !important;
    scroll-snap-align: center;
  }
}

/* REAL LAST App/Web repair. */
.hero-carousel .app-web-slide .home-slide-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 43%, rgba(5, 5, 5, 0.5) 72%, rgba(5, 5, 5, 0.9) 100%),
    radial-gradient(circle at 76% 42%, rgba(191, 40, 33, 0.26), transparent 34%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98), transparent 58%) !important;
}

.hero-carousel .app-web-slide .home-slide-inner {
  grid-template-columns: minmax(620px, 0.92fr) minmax(420px, 1.08fr) !important;
  gap: clamp(30px, 4.8vw, 76px) !important;
  place-items: center start !important;
  width: min(1680px, 100%) !important;
  padding: clamp(165px, 18vh, 220px) clamp(28px, 5vw, 72px) 116px !important;
  text-align: left !important;
}

.hero-carousel .app-web-slide .home-slide-copy {
  position: relative !important;
  z-index: 3 !important;
  max-width: 720px !important;
  margin: 0 !important;
}

.hero-carousel .app-web-slide .eyebrow {
  margin-bottom: 12px !important;
}

.hero-carousel .app-web-slide .home-slide-copy h2 {
  max-width: 720px !important;
  margin: 0 !important;
  font-size: clamp(2.45rem, 4vw, 4.35rem) !important;
  line-height: 0.98 !important;
  text-align: left !important;
}

.hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
  max-width: 680px !important;
  margin: 20px 0 0 !important;
  font-size: clamp(1rem, 1.08vw, 1.12rem) !important;
  line-height: 1.62 !important;
  text-align: left !important;
}

.hero-carousel .app-web-slide .store-row {
  justify-content: flex-start !important;
  margin-top: 20px !important;
}

.hero-carousel .app-web-slide .store-row a {
  min-height: 52px !important;
  padding: 10px 15px !important;
  border: 1px solid rgba(249, 249, 249, 0.16) !important;
  border-radius: var(--radius) !important;
  background: rgba(15, 15, 15, 0.72) !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(14px) !important;
}

.hero-carousel .app-web-slide .app-visuals {
  z-index: 2 !important;
}

.hero-carousel .app-web-slide .app-visual-panel {
  right: clamp(22px, 5vw, 96px) !important;
  top: 22% !important;
  width: min(650px, 39vw) !important;
  height: min(440px, 42vh) !important;
  border-radius: 20px !important;
  opacity: 0.48 !important;
  transform: perspective(900px) rotateY(-14deg) rotateZ(1deg) !important;
}

.hero-carousel .app-web-slide .app-visual-phone {
  left: auto !important;
  right: clamp(300px, 31vw, 500px) !important;
  bottom: 15% !important;
  width: min(210px, 12vw) !important;
  height: min(410px, 42vh) !important;
  opacity: 0.38 !important;
  transform: rotate(-7deg) !important;
}

.hero-carousel .app-web-slide .app-metric-one {
  right: clamp(120px, 17vw, 300px) !important;
  top: 36% !important;
}

.hero-carousel .app-web-slide .app-metric-two {
  left: auto !important;
  right: clamp(400px, 40vw, 640px) !important;
  bottom: 23% !important;
}

@media (max-width: 1180px) {
  .hero-carousel .app-web-slide .home-slide-inner {
    grid-template-columns: 1fr !important;
    place-items: start center !important;
    padding-top: 138px !important;
    text-align: center !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy {
    max-width: 820px !important;
    margin-inline: auto !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy h2,
  .hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
    max-width: 820px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy h2 {
    font-size: clamp(2.25rem, 4.2vw, 3.9rem) !important;
  }

  .hero-carousel .app-web-slide .store-row {
    justify-content: center !important;
  }

  .hero-carousel .app-web-slide .app-visual-panel {
    right: -10% !important;
    top: 16% !important;
    width: 470px !important;
    height: 320px !important;
    opacity: 0.22 !important;
  }

  .hero-carousel .app-web-slide .app-visual-phone {
    left: -2% !important;
    right: auto !important;
    bottom: 14% !important;
    width: 160px !important;
    height: 320px !important;
    opacity: 0.2 !important;
  }

  .hero-carousel .app-web-slide .app-metric {
    display: none !important;
  }
}

@media (max-height: 760px) and (min-width: 681px) {
  .hero-carousel .app-web-slide .home-slide-inner {
    padding-top: 125px !important;
    padding-bottom: 82px !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy h2 {
    font-size: clamp(2rem, 3.45vw, 3.15rem) !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
    max-width: 710px !important;
    margin-top: 14px !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  .hero-carousel .app-web-slide .store-row {
    margin-top: 14px !important;
  }

  .hero-carousel .app-web-slide .store-row a {
    min-height: 42px !important;
    padding: 7px 12px !important;
  }
}

@media (max-width: 680px) {
  .hero-carousel .home-slider-controls {
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    transform: none !important;
  }

  .hero-carousel .app-web-slide .home-slide-inner {
    padding: 104px 18px 118px !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy {
    max-width: 100% !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy h2 {
    font-size: clamp(1.95rem, 8.6vw, 2.65rem) !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
    margin-top: 16px !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  .hero-carousel .app-web-slide .store-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .hero-carousel .app-web-slide .store-row a {
    width: 100% !important;
    min-height: 44px !important;
    justify-content: center !important;
  }

  .hero-carousel .app-web-slide .app-visual-panel {
    right: -54% !important;
    top: 15% !important;
    width: 360px !important;
    height: 300px !important;
    opacity: 0.18 !important;
  }

  .hero-carousel .app-web-slide .app-visual-phone {
    left: -20% !important;
    bottom: 11% !important;
    width: 140px !important;
    height: 280px !important;
    opacity: 0.14 !important;
  }
}

/* Final clean hero lock. */
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-inner {
  grid-template-columns: 1fr !important;
  width: min(1180px, 100%) !important;
  gap: 0 !important;
}

.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h1,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h2 {
  max-width: 760px !important;
  font-size: clamp(2.85rem, 5vw, 5.4rem) !important;
}

.hero-showcase {
  display: none !important;
}

.hero-carousel .home-slider-controls {
  display: none !important;
}

.hero-carousel .home-slider-controls button {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  min-width: 0 !important;
  min-height: 38px !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
}

.hero-carousel .home-slider-controls button::before {
  display: none !important;
}

.hero-carousel .home-slider-controls button span {
  position: static !important;
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 auto !important;
  transform: none !important;
}

.hero-carousel .home-slider-controls button strong {
  font-size: 0.84rem !important;
}

@media (max-width: 680px) {
  .hero-carousel .home-slider-controls {
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
    max-width: none !important;
    overflow-x: auto !important;
    transform: none !important;
  }
}

/* Definitive home text alignment. */
.hero-carousel .home-slider-controls {
  display: none !important;
}

.hero-carousel .home-slide-inner,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-inner,
.hero-carousel .app-web-slide .home-slide-inner {
  display: grid !important;
  grid-template-columns: 1fr !important;
  place-items: center !important;
  width: min(1180px, 100%) !important;
  min-height: 100svh !important;
  margin: 0 auto !important;
  padding: clamp(128px, 17vh, 170px) clamp(20px, 5vw, 72px) clamp(70px, 9vh, 100px) !important;
  text-align: center !important;
}

.hero-carousel .home-slide-copy,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy,
.hero-carousel .app-web-slide .home-slide-copy {
  width: min(760px, 100%) !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.hero-carousel .home-slide-copy h1,
.hero-carousel .home-slide-copy h2,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h1,
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy h2,
.hero-carousel .app-web-slide .home-slide-copy h2 {
  max-width: 760px !important;
  margin: 0 !important;
  font-size: clamp(2.85rem, 5vw, 5.4rem) !important;
  line-height: 0.98 !important;
  text-align: center !important;
}

.hero-carousel .eyebrow,
.hero-carousel .home-slide-copy p:not(.eyebrow),
.hero-carousel .home-slide:not(.app-web-slide) .home-slide-copy p:not(.eyebrow),
.hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.hero-carousel .hero-actions,
.hero-carousel .home-slide:not(.app-web-slide) .hero-actions,
.hero-carousel .store-row,
.hero-carousel .app-web-slide .store-row {
  justify-content: center !important;
}

@media (max-width: 680px) {
  .hero-carousel .home-slide-inner,
  .hero-carousel .home-slide:not(.app-web-slide) .home-slide-inner,
  .hero-carousel .app-web-slide .home-slide-inner {
    padding: 112px 18px 76px !important;
  }
}

@media (max-width: 1080px) {
  .whatsapp-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-left: clamp(18px, 6vw, 72px);
    padding-right: clamp(18px, 6vw, 72px);
  }

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

  .whatsapp-visual {
    min-height: 640px;
  }

  .phone-hand {
    right: clamp(-70px, -7vw, -26px);
    top: 56%;
    width: clamp(330px, 48vw, 460px);
    transform: translateY(-50%) rotate(1deg);
  }

  .chat-bubble-user {
    left: 6%;
    right: auto;
  }

  .chat-bubble-inova {
    left: 6%;
  }
}

@media (max-width: 680px) {
  .whatsapp-section {
    padding: 62px 18px;
  }

  .info-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .whatsapp-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .whatsapp-button {
    width: 100%;
    min-height: 56px;
    padding: 15px 18px;
    text-align: center;
  }

  .whatsapp-visual {
    display: grid;
    grid-template-areas:
      "phone"
      "user"
      "inova";
    gap: 14px;
    min-height: 0;
    margin: 26px 0 0;
  }

  .phone-hand {
    position: relative;
    top: auto;
    right: auto;
    grid-area: phone;
    justify-self: center;
    width: min(96vw, 360px);
    max-width: 100%;
    transform: rotate(1deg);
  }

  .chat-bubble {
    position: relative;
    inset: auto;
    width: min(100%, 330px);
    max-width: 100%;
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  .chat-bubble-user {
    grid-area: user;
    justify-self: end;
    right: auto;
    top: auto;
  }

  .chat-bubble-inova {
    grid-area: inova;
    justify-self: start;
    left: auto;
    bottom: auto;
  }
}

/* Home last slide: use the real rastreiocell artwork as the main phone. */
.hero-carousel .app-web-slide .home-slide-inner {
  grid-template-columns: minmax(580px, 0.98fr) minmax(360px, 1.02fr) !important;
  place-items: center start !important;
  width: min(1280px, 100%) !important;
  text-align: left !important;
}

.hero-carousel .app-web-slide .home-slide-copy {
  max-width: 700px !important;
  margin: 0 !important;
  text-align: left !important;
}

.hero-carousel .app-web-slide .home-slide-copy h2,
.hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
}

.hero-carousel .app-web-slide .home-slide-copy h2 {
  max-width: 700px !important;
  font-size: clamp(2.65rem, 4.3vw, 4.65rem) !important;
  line-height: 0.98 !important;
}

.hero-carousel .app-web-slide .store-row {
  justify-content: flex-start !important;
}

.hero-carousel .app-web-slide .app-visuals {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.hero-carousel .app-web-slide .app-visual-phone {
  position: absolute !important;
  left: auto !important;
  right: clamp(24px, 6vw, 110px) !important;
  bottom: clamp(-70px, -6vh, -34px) !important;
  width: clamp(250px, 21vw, 390px) !important;
  height: auto !important;
  max-height: min(82vh, 740px) !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  filter: drop-shadow(0 32px 48px rgba(0, 0, 0, 0.42)) !important;
  transform: rotate(2deg) !important;
}

.hero-carousel .app-web-slide .app-visual-panel {
  position: absolute !important;
  right: clamp(170px, 24vw, 460px) !important;
  top: 22% !important;
  opacity: 0.2 !important;
}

.hero-carousel .app-web-slide .app-metric-one {
  right: clamp(250px, 29vw, 520px) !important;
  top: 32% !important;
}

.hero-carousel .app-web-slide .app-metric-two {
  right: clamp(240px, 28vw, 500px) !important;
  bottom: 22% !important;
}

@media (max-width: 1180px) {
  .hero-carousel .app-web-slide .home-slide-inner {
    grid-template-columns: 1fr !important;
    place-items: center !important;
    text-align: center !important;
  }

  .hero-carousel .app-web-slide .home-slide-copy,
  .hero-carousel .app-web-slide .home-slide-copy h2,
  .hero-carousel .app-web-slide .home-slide-copy p:not(.eyebrow) {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-carousel .app-web-slide .store-row {
    justify-content: center !important;
  }

  .hero-carousel .app-web-slide .app-visual-phone {
    right: -24px !important;
    bottom: -62px !important;
    width: clamp(220px, 34vw, 340px) !important;
    max-height: min(70vh, 620px) !important;
    opacity: 0.62 !important;
  }
}

@media (max-width: 680px) {
.hero-carousel .app-web-slide .app-visual-phone {
  right: -54px !important;
  bottom: 82px !important;
  width: min(54vw, 210px) !important;
  max-height: 48vh !important;
  opacity: 0.28 !important;
  transform: rotate(2deg) !important;
}

/* Home visual balance: reduce extreme dark contrast in the hero background. */
.hero-carousel .home-slide-overlay {
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.72) 0%, rgba(15, 15, 15, 0.52) 42%, rgba(15, 15, 15, 0.28) 74%, rgba(15, 15, 15, 0.6) 100%),
    radial-gradient(circle at 72% 42%, rgba(239, 58, 49, 0.18), transparent 32%),
    linear-gradient(0deg, rgba(15, 15, 15, 0.76), transparent 58%) !important;
}

.hero-carousel .app-web-slide .home-slide-overlay {
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.76) 0%, rgba(15, 15, 15, 0.58) 43%, rgba(15, 15, 15, 0.38) 72%, rgba(15, 15, 15, 0.7) 100%),
    radial-gradient(circle at 76% 42%, rgba(191, 40, 33, 0.22), transparent 34%),
    linear-gradient(0deg, rgba(15, 15, 15, 0.8), transparent 58%) !important;
}

.hero-carousel .home-slide-image {
  filter: saturate(1.08) contrast(1.08) brightness(1.01) !important;
}
}

/* Ajuste do botão flutuante de WhatsApp no site */
@media (max-width: 1100px) {
  .floating-whatsapp-btn {
    padding: 11px 16px;
  }
}
