:root {
  --bg: #050505;
  --bg-soft: #101010;
  --surface: #161616;
  --surface-2: #1f1f1f;
  --text: #f4f4f4;
  --muted: #b8b8b8;
  --line: #2f2f2f;
  --brand: #ff7a00;
  --brand-strong: #ff5200;
  --brand-soft: #ffb066;
  --ok: #2ccf85;
  --danger: #ff6262;
  --container: 1200px;
  --radius-xl: 1.45rem;
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --shadow-lg: 0 24px 52px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 12px 26px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 122, 0, 0.16), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(255, 82, 0, 0.16), transparent 26%),
    linear-gradient(180deg, #040404 0%, #090909 45%, #040404 100%);
  text-rendering: optimizeLegibility;
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  z-index: 2000;
  padding: 0.72rem 0.95rem;
  border-radius: 0.55rem;
  background: #fff;
  color: #111;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1400;
  backdrop-filter: blur(10px);
  background: rgba(5, 5, 5, 0.84);
  border-bottom: 1px solid rgba(255, 122, 0, 0.3);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(255, 122, 0, 0.45);
}

.logo-text-wrap {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text-wrap strong {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.logo-text-wrap small {
  margin-top: 0.18rem;
  color: #f2a969;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.main-nav a {
  color: #d4d4d4;
  font-size: 0.93rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid #343434;
  border-radius: 0.65rem;
  background: #161616;
  color: #eee;
  padding: 0.52rem 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.eyebrow {
  display: inline-block;
  color: var(--brand-soft);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.88rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  line-height: 1.14;
}

.hero {
  padding: clamp(2.8rem, 6vw, 5rem) 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 560px);
  gap: clamp(1.4rem, 2.7vw, 2.8rem);
  align-items: center;
}

.hero-copy h1 {
  max-width: 19ch;
  font-size: clamp(2rem, 5.3vw, 3.5rem);
}

.hero-copy p {
  margin: 1.08rem 0 0;
  color: #c2c2c2;
  line-height: 1.72;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.55rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 0.8rem;
  padding: 0.8rem 1.14rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.89rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(140deg, var(--brand), var(--brand-strong));
  box-shadow: 0 14px 28px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid #474747;
  background: #171717;
  color: #ececec;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--brand);
}

.hero-stats {
  list-style: none;
  margin: 1.55rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-stats li {
  border: 1px solid #353535;
  background: #151515;
  border-radius: 0.9rem;
  padding: 0.72rem 0.8rem;
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}

.hero-stats span {
  display: block;
  margin-top: 0.18rem;
  color: #c3c3c3;
  font-size: 0.81rem;
}

.hero-media {
  position: relative;
}

.hero-media > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid #343434;
  box-shadow: var(--shadow-lg);
}

.hero-chip {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  display: flex;
  gap: 0.52rem;
  align-items: flex-start;
  border: 1px solid rgba(255, 122, 0, 0.5);
  border-radius: 0.95rem;
  background: rgba(13, 13, 13, 0.9);
  padding: 0.66rem 0.72rem;
  max-width: 265px;
}

.hero-chip .material-symbols-rounded {
  color: var(--brand);
  font-size: 1.1rem;
  margin-top: 0.05rem;
}

.hero-chip p {
  margin: 0;
  color: #f3f3f3;
  font-size: 0.84rem;
  line-height: 1.45;
}

.contact-strip,
.about,
.fleet,
.process,
.investors,
.coverage,
.contact {
  padding: clamp(2.7rem, 6vw, 5.2rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}

.contact-strip {
  padding-top: 1.1rem;
  padding-bottom: 0.9rem;
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-strip-grid article {
  border: 1px solid #343434;
  background: #131313;
  border-radius: 0.95rem;
  padding: 0.88rem;
}

.contact-strip-grid .material-symbols-rounded {
  font-size: 1.1rem;
  color: var(--brand);
}

.contact-strip-grid h3 {
  margin-top: 0.5rem;
  font-size: 0.89rem;
}

.contact-strip-grid a {
  margin-top: 0.35rem;
  display: inline-block;
  color: #ffb475;
  font-size: 0.85rem;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 1rem;
  align-items: start;
}

.about h2 {
  max-width: 18ch;
  font-size: clamp(1.56rem, 4.1vw, 2.7rem);
}

.about p {
  margin: 1rem 0 0;
  color: #c2c2c2;
  line-height: 1.72;
}

.values-card {
  border: 1px solid #343434;
  background: #151515;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.values-card h3 {
  font-size: 1.02rem;
}

.values-card ul {
  margin: 0.72rem 0 0;
  padding-left: 1.05rem;
  color: #ddd;
  display: grid;
  gap: 0.36rem;
}

.values-card p {
  margin-top: 0.9rem;
  color: #bdbdbd;
  font-size: 0.9rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-head.section-center {
  justify-content: center;
  text-align: center;
}

.section-head h2 {
  max-width: 24ch;
  font-size: clamp(1.5rem, 3.8vw, 2.45rem);
}

.section-head p {
  margin: 0.7rem 0 0;
  color: #bfbfbf;
}

.fleet-search-inline {
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(190px, 0.6fr) auto auto;
  gap: 0.56rem;
  align-items: center;
}

.fleet-search-inline input,
.fleet-search-inline select {
  min-height: 2.95rem;
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #444;
  background: #1a1a1a;
  color: #f3f3f3;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  border-color: var(--brand);
  transform: translateY(-1px);
}

.carousel-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.carousel {
  border: 1px solid #343434;
  background: #111;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
}

.carousel-track {
  --slide-width: clamp(294px, 31vw, 380px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--slide-width);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 0.4rem;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.car-slide {
  position: relative;
  scroll-snap-align: start;
  border: 1px solid #353535;
  border-radius: 1rem;
  overflow: hidden;
  background: #1a1a1a;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.car-slide.is-active {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 0, 0.7);
  box-shadow: 0 18px 34px rgba(255, 102, 0, 0.22);
}

.car-ribbon {
  position: absolute;
  top: 0.72rem;
  left: 0.72rem;
  z-index: 2;
  border-radius: 999px;
  background: linear-gradient(145deg, #ff8d1f, #ff5800);
  color: #fff;
  padding: 0.33rem 0.6rem;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.car-media-btn {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
  cursor: pointer;
  background: transparent;
}

.car-media-btn img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.car-slide:hover .car-media-btn img {
  transform: scale(1.03);
}

.media-open-chip {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  border: 1px solid rgba(255, 122, 0, 0.55);
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.82);
  color: #fff;
  padding: 0.3rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.slide-content {
  padding: 0.9rem;
}

.slide-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.tag {
  border-radius: 999px;
  border: 1px solid #4a4a4a;
  background: #262626;
  color: #f6b276;
  padding: 0.24rem 0.52rem;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.stock {
  border-radius: 999px;
  border: 1px solid #3e3e3e;
  background: #1f1f1f;
  color: #e2e2e2;
  padding: 0.22rem 0.5rem;
  font-size: 0.66rem;
  font-weight: 700;
  white-space: nowrap;
}

.slide-content h3 {
  margin-top: 0.56rem;
  font-size: 1.16rem;
}

.model-line {
  margin: 0.32rem 0 0;
  color: #bbbbbb;
  font-size: 0.79rem;
}

.price-row {
  margin-top: 0.46rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.price {
  margin: 0;
  color: #ffb066;
  font-weight: 800;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  border-radius: 999px;
  border: 1px solid #3f3f3f;
  background: #222;
  color: #ffe5cc;
  padding: 0.2rem 0.42rem;
  font-size: 0.74rem;
  font-weight: 800;
}

.rating .material-symbols-rounded {
  font-size: 0.86rem;
  color: #ffb24a;
}

.slide-description {
  margin: 0.58rem 0 0;
  color: #c9c9c9;
  font-size: 0.9rem;
  line-height: 1.55;
}

.spec-grid {
  margin: 0.76rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem;
}

.spec-grid li {
  border: 1px solid #3a3a3a;
  border-radius: 0.68rem;
  background: #212121;
  padding: 0.42rem 0.5rem;
  display: flex;
  gap: 0.42rem;
  align-items: center;
}

.spec-grid .material-symbols-rounded {
  color: #ff8d2b;
  font-size: 1rem;
}

.spec-grid small {
  display: block;
  color: #9d9d9d;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.spec-grid strong {
  display: block;
  color: #f2f2f2;
  font-size: 0.79rem;
}

.benefit-list {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
}

.benefit-list li {
  display: flex;
  gap: 0.4rem;
  color: #c6c6c6;
  font-size: 0.84rem;
}

.benefit-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.34rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff8d21, #ff5c00);
  flex: 0 0 auto;
}

.slide-actions {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.slide-actions .btn {
  width: 100%;
}

.carousel-meta {
  margin-top: 0.78rem;
}

.carousel-dots {
  display: flex;
  gap: 0.38rem;
  align-items: center;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  border: 0;
  background: #4a4a4a;
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.carousel-dot.is-active {
  width: 1.6rem;
  background: linear-gradient(145deg, #ff8d21, #ff5c00);
}

.carousel-progress {
  margin-top: 0.6rem;
  width: 100%;
  height: 0.24rem;
  border-radius: 999px;
  background: #373737;
  overflow: hidden;
}

.carousel-progress span {
  display: block;
  height: 100%;
  width: 10%;
  border-radius: inherit;
  background: linear-gradient(145deg, #ff8d21, #ff5c00);
  transition: width 0.22s ease;
}

.fleet-footer-actions {
  margin-top: 0.88rem;
  display: flex;
  justify-content: flex-end;
}

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

.process-grid article {
  border: 1px solid #333;
  border-radius: 0.95rem;
  background: #151515;
  box-shadow: var(--shadow-md);
  padding: 0.95rem;
}

.process-grid h3 {
  font-size: 0.96rem;
}

.process-grid p {
  margin: 0.62rem 0 0;
  color: #c1c1c1;
  line-height: 1.6;
  font-size: 0.88rem;
}

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

.invest-grid article {
  border: 1px solid #333;
  border-radius: 1rem;
  background: #151515;
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.invest-tag {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 0, 0.45);
  background: rgba(255, 122, 0, 0.14);
  color: #ffb87f;
  padding: 0.25rem 0.54rem;
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.invest-grid h3 {
  margin-top: 0.62rem;
  font-size: 1.1rem;
}

.invest-grid p {
  margin: 0.62rem 0 0;
  color: #c4c4c4;
  line-height: 1.62;
}

.invest-grid ul {
  margin: 0.76rem 0 0;
  padding-left: 1.08rem;
  color: #ddd;
  display: grid;
  gap: 0.34rem;
}

.invest-note {
  margin-top: 0.95rem;
  border: 1px solid #343434;
  border-radius: 0.95rem;
  background: #131313;
  padding: 0.95rem;
}

.invest-note p {
  margin: 0.65rem 0 0;
  color: #c3c3c3;
  line-height: 1.64;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 500px);
  gap: 1.2rem;
  align-items: center;
}

.coverage h2 {
  max-width: 21ch;
  font-size: clamp(1.5rem, 3.9vw, 2.4rem);
}

.coverage p {
  margin: 0.98rem 0 0;
  color: #c2c2c2;
  line-height: 1.68;
}

.coverage-list {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.coverage-list li {
  display: flex;
  gap: 0.45rem;
  color: #cecece;
  font-size: 0.9rem;
}

.coverage-list li::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff8d21, #ff5c00);
  flex: 0 0 auto;
}

.coverage-actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.map-card {
  margin: 0;
  border: 1px solid #353535;
  border-radius: 1rem;
  overflow: hidden;
  background: #141414;
  box-shadow: var(--shadow-lg);
}

.map-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.map-card iframe {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  display: block;
}

.map-card figcaption {
  padding: 0.76rem 0.85rem 0.9rem;
  color: #c1c1c1;
  font-size: 0.82rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-copy h2 {
  max-width: 20ch;
  font-size: clamp(1.5rem, 3.8vw, 2.4rem);
}

.contact-copy p {
  margin-top: 0.95rem;
  color: #c1c1c1;
  line-height: 1.68;
}

.contact-cards {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.contact-cards article {
  border: 1px solid #343434;
  border-radius: 0.9rem;
  background: #141414;
  padding: 0.78rem;
}

.contact-cards strong {
  display: block;
  font-size: 0.9rem;
}

.contact-cards span {
  display: block;
  margin-top: 0.2rem;
  color: #bcbcbc;
  font-size: 0.84rem;
}

.contact-form {
  border: 1px solid #353535;
  border-radius: 1rem;
  background: #141414;
  box-shadow: var(--shadow-lg);
  padding: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem 0.82rem;
}

.field {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.3rem;
  color: #d1d1d1;
  font-size: 0.78rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #404040;
  border-radius: 0.7rem;
  background: #1f1f1f;
  color: #f2f2f2;
  padding: 0.72rem 0.82rem;
}

input::placeholder,
textarea::placeholder {
  color: #a9a9a9;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 122, 0, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.16);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.field-full,
.contact-form .btn {
  grid-column: 1 / -1;
}

.fleet-page-hero {
  padding: clamp(2.3rem, 5vw, 4rem) 0 1.2rem;
}

.fleet-page-hero h1 {
  font-size: clamp(1.9rem, 4.8vw, 3.1rem);
  max-width: 18ch;
}

.fleet-page-hero p {
  margin: 0.9rem 0 0;
  color: #c2c2c2;
  max-width: 62ch;
  line-height: 1.68;
}

.fleet-filter-form {
  margin-top: 1.2rem;
  border: 1px solid #343434;
  border-radius: 1rem;
  background: #121212;
  box-shadow: var(--shadow-md);
  padding: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.68rem;
}

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.filter-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.54rem;
}

.fleet-page-list {
  padding-top: 1.2rem;
}

.fleet-page-head h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.fleet-page-head p {
  margin: 0.6rem 0 0;
  color: #c5c5c5;
}

.empty-state {
  margin-top: 1rem;
  border: 1px dashed #535353;
  border-radius: 0.9rem;
  background: #141414;
  color: #c9c9c9;
  text-align: center;
  padding: 1.05rem;
}

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

.fleet-card {
  position: relative;
  border: 1px solid #353535;
  border-radius: 1rem;
  overflow: hidden;
  background: #171717;
  box-shadow: var(--shadow-md);
}

.fleet-card-content {
  padding: 0.9rem;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
}

.media-modal.is-open {
  display: block;
}

.media-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(2px);
}

.media-modal-content {
  position: relative;
  width: min(100% - 2rem, 1020px);
  margin: 2.2rem auto;
  border: 1px solid #3b3b3b;
  border-radius: 1rem;
  background: #0f0f0f;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.52);
  overflow: hidden;
}

.media-modal-stage {
  min-height: min(76vh, 630px);
  background: #090909;
  display: grid;
  place-items: center;
}

.media-modal-stage img,
.media-modal-stage video {
  width: 100%;
  max-height: min(76vh, 630px);
  object-fit: contain;
  display: block;
}

.media-modal-nav,
.media-modal-close {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.66);
  color: #fff;
  cursor: pointer;
}

.media-modal-close {
  top: 0.65rem;
  right: 0.65rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
}

.media-modal-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
}

.media-modal-prev {
  left: 0.6rem;
}

.media-modal-next {
  right: 0.6rem;
}

.media-modal-meta {
  border-top: 1px solid #333;
  padding: 0.68rem 0.82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.media-modal-meta strong {
  color: #f4f4f4;
  font-size: 0.9rem;
}

.media-modal-meta span {
  color: #d2d2d2;
  font-size: 0.82rem;
}

.site-footer {
  border-top: 1px solid #333;
  background: #0b0b0b;
}

.footer-inner {
  min-height: 4.8rem;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
  gap: 1rem 1.2rem;
  padding-block: 1.05rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.68rem;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  font-size: 0.93rem;
}

.footer-brand p {
  margin: 0.2rem 0 0;
  color: #b5b5b5;
  font-size: 0.8rem;
  max-width: 44ch;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 0.58rem 0.72rem;
}

.footer-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border: 1px solid #333;
  border-radius: 0.68rem;
  background: #141414;
  padding: 0.46rem 0.56rem;
  color: #ffb77d;
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.35;
  min-height: 2.2rem;
  overflow-wrap: anywhere;
}

.footer-link-item .material-symbols-rounded {
  font-size: 0.95rem;
  color: #ff8b23;
  flex: 0 0 auto;
}

.footer-admin-link {
  color: #f7f7f7;
  border-color: rgba(255, 122, 0, 0.45);
}

.footer-admin-link .material-symbols-rounded {
  color: #ffb066;
}

.dev-credit {
  grid-column: 1 / -1;
  margin-top: 0.16rem;
  color: #b7b7b7;
  font-size: 0.79rem;
}

.dev-credit a {
  color: #ffb77d;
  font-weight: 700;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1600;
  border-radius: 999px;
  padding: 0.74rem 1.05rem;
  background: linear-gradient(145deg, #ff8d21, #ff5c00);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(255, 92, 0, 0.35);
  transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.22s ease;
}

.floating-wa:hover,
.floating-wa:focus-visible {
  transform: translateY(-2px);
}

.floating-wa.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.56s ease, transform 0.56s ease;
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .about-grid,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .fleet-filter-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 1rem;
    right: 1rem;
    border: 1px solid #383838;
    border-radius: 0.9rem;
    background: #111;
    box-shadow: var(--shadow-md);
    padding: 0.86rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.82rem;
  }

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

  .topbar-inner > .btn-primary {
    display: none;
  }

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

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

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

  .fleet-search-inline {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-search-inline .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

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

  .hero-chip {
    position: static;
    margin-top: 0.7rem;
    max-width: none;
  }

  .contact-strip-grid {
    grid-template-columns: 1fr;
  }

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

  .carousel-track {
    --slide-width: min(87vw, 348px);
  }

  .slide-actions {
    grid-template-columns: 1fr;
  }

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

  .field-full,
  .contact-form .btn {
    grid-column: 1;
  }

  .fleet-search-inline {
    grid-template-columns: 1fr;
  }

  .fleet-filter-form {
    grid-template-columns: 1fr;
  }

  .filter-actions .btn {
    width: 100%;
  }

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

  .fleet-footer-actions {
    justify-content: stretch;
  }

  .fleet-footer-actions .btn {
    width: 100%;
  }

  .media-modal-content {
    width: min(100% - 0.8rem, 1020px);
    margin: 0.6rem auto;
  }

  .media-modal-stage {
    min-height: 58vh;
  }
}

@media (max-width: 520px) {
  .logo img {
    width: 48px;
    height: 48px;
  }

  .logo-text-wrap strong {
    font-size: 0.88rem;
  }

  .logo-text-wrap small {
    font-size: 0.6rem;
  }

  .floating-wa {
    right: 0.72rem;
    bottom: 0.72rem;
    padding: 0.66rem 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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