:root {
  --black: #050505;
  --ink: #111111;
  --charcoal: #191919;
  --muted: #6d7280;
  --line: #e5e7eb;
  --white: #ffffff;
  --soft: #f6f7f5;
  --lime: #84ff00;
  --lime-dark: #63c700;
  --lime-soft: #e7ffd0;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(5, 5, 5, 0.16);
  --font-title: "Poppins", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

body.is-lightbox-open {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
  touch-action: none;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translate3d(-34px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(34px, 0, 0);
}

[data-reveal="zoom"] {
  transform: scale(0.96);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1439px) {
  [data-reveal="left"],
  [data-reveal="right"] {
    transform: translate3d(0, 24px, 0);
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reviews-track {
    animation: none;
  }

  .hero::before,
  .hero::after {
    animation: none;
  }

}

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

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

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.section-inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.section-dark {
  background:
    radial-gradient(circle at 78% 18%, rgba(132, 255, 0, 0.2), transparent 25rem),
    radial-gradient(circle at 16% 76%, rgba(132, 255, 0, 0.08), transparent 20rem),
    linear-gradient(115deg, #080908 0%, #151515 58%, #1d310d 100%);
  color: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding-inline: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(132, 255, 0, 0.12), transparent 26rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(5, 8, 5, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px) saturate(148%);
  -webkit-backdrop-filter: blur(24px) saturate(148%);
}

.nav-shell {
  width: min(1320px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  min-height: 76px;
  padding-right: 26px;
}

.brand img {
  width: clamp(176px, 12vw, 214px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(132, 255, 0, 0.14));
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 3vw, 44px);
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 38px);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links a {
  position: relative;
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  text-transform: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

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

.nav-quote {
  position: relative;
  overflow: hidden;
  min-width: 170px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  background:
    linear-gradient(135deg, #98ff1c 0%, var(--lime) 54%, #66e700 100%);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow:
    0 14px 32px rgba(132, 255, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.nav-quote::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-70%);
  transition:
    opacity 180ms ease,
    transform 480ms ease;
}

.nav-quote:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(135deg, #b0ff42 0%, #91ff16 54%, #6df000 100%);
  box-shadow:
    0 18px 40px rgba(132, 255, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.nav-quote:hover::before {
  opacity: 1;
  transform: translateX(70%);
}

.nav-quote .whatsapp-icon,
.nav-quote {
  position: relative;
}

.whatsapp-icon {
  display: block;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(132, 255, 0, 0.36);
  border-radius: 999px;
  background: rgba(132, 255, 0, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--lime);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: 0;
}

.nav-shell.is-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-shell.is-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.btn {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.btn-primary {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 18px 44px rgba(132, 255, 0, 0.24);
}

.btn-primary:hover {
  background: #a4ff30;
}

.nav-quote {
  min-width: 150px;
  min-height: 40px;
  padding: 0 12px 0 18px;
  border: 1px solid rgba(132, 255, 0, 0.28);
  border-radius: 999px;
  background: rgba(132, 255, 0, 0.88);
  box-shadow: 0 10px 22px rgba(132, 255, 0, 0.14);
}

.nav-quote:hover {
  background: rgba(146, 255, 28, 0.94);
  box-shadow: 0 12px 24px rgba(132, 255, 0, 0.2);
}

.nav-quote span {
  width: 26px;
  height: 26px;
}

.nav-quote span::before {
  width: 22px;
  height: 22px;
}

.btn-dark {
  width: 100%;
  background: var(--black);
  color: var(--white);
}

.btn-large {
  min-height: 56px;
  padding-inline: 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(96px, 11vh, 118px) 0 clamp(22px, 4vh, 38px);
  display: grid;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -12%;
  background-image:
    radial-gradient(circle at 74% 24%, rgba(132, 255, 0, 0.12), transparent 24rem),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-position:
    0 0,
    0 0,
    0 0;
  background-size:
    100% 100%,
    86px 86px,
    86px 86px;
  mask-image:
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.72) 18%, rgba(0, 0, 0, 0.64) 72%, transparent),
    radial-gradient(circle at 54% 42%, rgba(0, 0, 0, 0.82), transparent 70%);
  -webkit-mask-image:
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.72) 18%, rgba(0, 0, 0, 0.64) 72%, transparent),
    radial-gradient(circle at 54% 42%, rgba(0, 0, 0, 0.82), transparent 70%);
  opacity: 0.9;
  animation: heroGridDrift 18s linear infinite;
  pointer-events: none;
}

.hero::after {
  content: none;
}

@keyframes heroGridDrift {
  from {
    background-position:
      0 0,
      0 0,
      0 0;
  }

  to {
    background-position:
      0 0,
      86px 86px,
      86px 86px;
  }
}

@keyframes heroTopLine {
  0%,
  100% {
    background-position: 0% 0;
    opacity: 0.55;
  }

  50% {
    background-position: 100% 0;
    opacity: 1;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(500px, 0.97fr);
  gap: clamp(46px, 5vw, 74px);
  align-items: center;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 26px;
  padding: 8px 14px;
  border: 1px solid rgba(132, 255, 0, 0.3);
  border-radius: 999px;
  background: rgba(132, 255, 0, 0.1);
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.light {
  background: var(--lime-soft);
  border-color: var(--lime-soft);
  color: #356b00;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.eyebrow,
.btn,
.nav-links,
.model-badge {
  font-family: var(--font-title);
}

p,
li,
label,
input,
textarea,
.lead {
  font-family: var(--font-body);
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 3.45vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.12;
  font-weight: 800;
}

.lead {
  max-width: 700px;
  color: #d6d9d2;
  font-size: 1.08rem;
  line-height: 1.62;
}

.hero-stats {
  margin: 18px 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 210px));
  gap: 14px;
}

.hero-stats article,
.steps-grid article,
.quote-benefits article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.hero-stats article {
  padding: 20px;
}

.hero-stats strong {
  display: block;
  color: var(--lime);
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
}

.hero-stats span {
  color: #c7ccc3;
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.link-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e8eee3;
  font-weight: 700;
}

.link-action span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.hero-media {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #050505;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(132, 255, 0, 0.04);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.media-badge {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(13, 13, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.media-badge strong,
.media-badge span {
  display: block;
}

.media-badge strong {
  font-family: var(--font-title);
  color: var(--lime);
}

.media-badge span {
  color: #d4d8cf;
  font-size: 0.82rem;
}

.media-badge.top {
  top: 22px;
  right: 22px;
}

.hero-media-panel {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-media-panel article {
  min-height: 74px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(8, 8, 8, 0.72);
  color: var(--white);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-media-panel strong {
  color: var(--lime);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.hero-media-panel span {
  margin-top: 7px;
  color: #d4d8cf;
  font-size: 0.76rem;
  line-height: 1.25;
}

.product-lines,
.about,
.quote-section {
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading .eyebrow {
  margin-inline: auto;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.models-carousel {
  position: relative;
  padding: 0 44px;
}

.models-track {
  --cards-per-view: 4;
  --carousel-gap: 18px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--carousel-gap) * (var(--cards-per-view) - 1))) / var(--cards-per-view));
  gap: var(--carousel-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  padding: 10px 0 24px;
  cursor: grab;
  scrollbar-width: none;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}

.models-carousel.is-swiper-ready {
  width: 100%;
  margin-inline: 0;
  padding-inline: 44px;
  overflow: visible;
}

.models-carousel.is-swiper-ready .models-viewport {
  overflow: hidden;
}

.models-carousel.is-swiper-ready .carousel-arrow.prev {
  left: 0;
}

.models-carousel.is-swiper-ready .carousel-arrow.next {
  right: 0;
}

.models-carousel.is-swiper-ready .carousel-arrow {
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #111111;
  box-shadow: none;
}

.models-carousel.is-swiper-ready .carousel-arrow:hover {
  background: transparent;
  color: var(--lime-dark);
}

.models-carousel.is-swiper-ready .models-track {
  display: flex;
  grid-auto-flow: unset;
  grid-auto-columns: unset;
  gap: 0;
  overflow: visible;
  overscroll-behavior-x: auto;
  scroll-behavior: auto;
  scroll-snap-type: none;
  touch-action: pan-y;
  will-change: transform;
}

.models-carousel.is-swiper-ready .model-card {
  height: auto;
  flex-shrink: 0;
  scroll-snap-align: unset;
}

.models-carousel.is-swiper-ready .model-card img {
  -webkit-user-drag: none;
  user-select: none;
}

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

.models-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.model-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.07);
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.model-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.11);
}

.model-card.is-featured {
  border-color: var(--lime);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.07);
}

.model-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.model-card img {
  width: 100%;
  height: clamp(220px, 18vw, 280px);
  flex: 0 0 auto;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
  background: #0f0f0f;
}

.model-card-image {
  cursor: zoom-in;
}

.model-card-image:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: -5px;
}

.model-card-body {
  padding: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.model-card-title {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 16px;
}

.model-card-title h3 {
  margin-bottom: 0;
  font-size: 1.12rem;
}

.model-card ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.model-card li {
  display: flex;
  gap: 9px;
  margin-top: 9px;
  color: #3f4652;
  font-size: 0.88rem;
  line-height: 1.4;
}

.model-card li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--lime-dark);
  font-weight: 800;
}

.model-btn {
  position: relative;
  width: 100%;
  margin-top: auto;
  min-height: 46px;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(17, 17, 17, 0.2), rgba(99, 199, 0, 0.45)) border-box;
  color: var(--black);
  font-size: 0.76rem;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.model-btn:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.16);
  transform: translateY(-1px);
}

.model-btn::after {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='11' fill='%2384ff00'/%3E%3Cpath d='M9 7.5L12.5 11L9 14.5' stroke='%23050505' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition:
    transform 160ms ease,
    filter 160ms ease;
}

.model-btn:hover::after {
  transform: translateX(3px);
  filter: saturate(1.12);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--black);
  box-shadow: none;
  cursor: pointer;
  font-size: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.12);
  background: transparent;
  color: var(--lime-dark);
}

.carousel-arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  margin-left: 0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.carousel-arrow.prev {
  left: 0;
  transform: translateY(-50%);
}

.carousel-arrow.prev::before {
  margin-left: 0;
  transform: rotate(-135deg);
}

.carousel-arrow.next {
  right: 0;
  transform: translateY(-50%);
}

.carousel-arrow:disabled {
  opacity: 1;
  cursor: pointer;
}

.carousel-dots {
  width: fit-content;
  min-height: 18px;
  margin: 10px auto 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.models-carousel .carousel-dots.swiper-pagination {
  position: static;
  transform: none;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cfd5ca;
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.models-carousel .carousel-dot.swiper-pagination-bullet {
  opacity: 1;
  margin: 0;
}

.carousel-dot.is-active {
  width: 30px;
  background: var(--lime);
}

.carousel-mobile-hint {
  display: none;
  margin: 4px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.model-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  overscroll-behavior: contain;
  touch-action: pan-x;
}

.model-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.model-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 8, 0.84);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.model-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  height: min(86vh, 760px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.model-lightbox-figure {
  min-width: 0;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.model-lightbox-figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(86vh - 72px);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.model-lightbox-figure figcaption {
  width: fit-content;
  max-width: min(100%, 560px);
  margin: 0 auto;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.model-lightbox-close,
.model-lightbox-arrow {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 10, 8, 0.62);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.model-lightbox-close:hover,
.model-lightbox-arrow:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.16);
}

.model-lightbox-close:hover {
  transform: scale(1.04);
}

.model-lightbox-arrow:hover {
  transform: translateY(-50%);
}

.model-lightbox-close:focus-visible,
.model-lightbox-arrow:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.model-lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.model-lightbox-close::before,
.model-lightbox-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.model-lightbox-close::before {
  transform: rotate(45deg);
}

.model-lightbox-close::after {
  transform: rotate(-45deg);
}

.model-lightbox-arrow {
  position: fixed;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 64px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.model-lightbox-arrow.prev {
  left: 24px;
}

.model-lightbox-arrow.next {
  right: 24px;
}

.model-lightbox-arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.model-lightbox-arrow.prev::before {
  transform: rotate(-135deg);
}

.model-lightbox-arrow.next::before {
  transform: rotate(45deg);
}

.proof-strip {
  padding: 46px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.42), transparent 18rem),
    radial-gradient(circle at 86% 82%, rgba(5, 5, 5, 0.14), transparent 22rem),
    linear-gradient(135deg, var(--lime), #69ed00 64%, #55d800);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.proof-grid article {
  position: relative;
  min-height: 156px;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(236, 255, 219, 0.86));
  box-shadow:
    0 18px 42px rgba(5, 5, 5, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.proof-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--black), rgba(5, 5, 5, 0.18));
  opacity: 0.9;
}

.proof-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(132, 255, 0, 0.28);
  pointer-events: none;
}

.proof-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(5, 5, 5, 0.16);
  box-shadow:
    0 26px 52px rgba(5, 5, 5, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.proof-icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(132, 255, 0, 0.34);
  border-radius: 11px;
  background:
    linear-gradient(145deg, #111111, #050505);
  color: var(--lime);
  box-shadow: 0 12px 24px rgba(5, 5, 5, 0.18);
}

.proof-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.proof-grid strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-title);
  font-size: 1.14rem;
  font-weight: 900;
  color: var(--black);
}

.proof-grid article > span:not(.proof-icon) {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  max-width: 24ch;
  color: #3a4434;
  line-height: 1.5;
}

.process {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(132, 255, 0, 0.16), transparent 22rem),
    radial-gradient(circle at 10% 80%, rgba(132, 255, 0, 0.08), transparent 18rem),
    linear-gradient(135deg, #111111, #191919 62%, #1d320d);
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.5), transparent 68%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.5), transparent 68%);
  pointer-events: none;
}

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

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.steps-grid article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(5, 5, 5, 0.24);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.steps-grid article::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--lime);
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.steps-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(132, 255, 0, 0.5);
  background:
    linear-gradient(145deg, rgba(132, 255, 0, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(5, 5, 5, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.steps-grid article:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.step-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(132, 255, 0, 0.12);
  color: var(--lime);
  box-shadow: inset 0 0 0 1px rgba(132, 255, 0, 0.18);
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.steps-grid article:hover .step-icon {
  transform: rotate(-4deg) scale(1.06);
  background: var(--lime);
  color: var(--black);
}

.steps-grid h3 {
  margin: 32px 0 14px;
  color: var(--white);
  font-size: 1.22rem;
}

.steps-grid p {
  color: #cbd0c6;
  line-height: 1.55;
}

.centered {
  width: fit-content;
  margin: 44px auto 0;
}

.process .centered {
  display: flex;
  width: fit-content;
  margin: 44px auto 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(58px, 6vw, 96px);
  align-items: center;
}

.about-copy h2 {
  max-width: 660px;
}

.about-copy h2 span {
  color: var(--lime-dark);
}

.about-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #4f5664;
  font-size: 1.06rem;
  line-height: 1.72;
}

.mini-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mini-stats article {
  min-height: 126px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0, rgba(132, 255, 0, 0.16), transparent 4.8rem),
    #ffffff;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.06);
}

.mini-stats span {
  display: block;
  margin-bottom: 10px;
  color: #4f5664;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 800;
}

.mini-stats strong {
  display: block;
  color: var(--lime-dark);
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.mini-stats small {
  display: block;
  margin-top: 10px;
  color: #68717d;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.42;
}

.about-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-actions .btn {
  position: relative;
  min-width: 250px;
  min-height: 54px;
  justify-content: space-between;
  overflow: hidden;
  padding: 0 14px 0 24px;
  border: 1px solid rgba(82, 205, 0, 0.5);
  border-radius: 8px;
  background: #78ff00;
  box-shadow: 0 12px 26px rgba(112, 255, 0, 0.2);
  transform-origin: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.about-actions .btn::before {
  content: none;
}

.about-actions .btn span {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: transparent;
  color: var(--black);
  font-size: 0;
  line-height: 1;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.about-actions .btn span::before {
  content: "";
  width: 24px;
  height: 24px;
  background: currentColor;
  mask: url("assets/right-arrow-circle.svg") center / contain no-repeat;
  -webkit-mask: url("assets/right-arrow-circle.svg") center / contain no-repeat;
}

.about-actions .btn:hover {
  transform: scale(1.035);
  border-color: rgba(5, 5, 5, 0.2);
  background: #86ff12;
  box-shadow: 0 16px 32px rgba(112, 255, 0, 0.26);
}

.about-actions .btn:hover span {
  transform: translateX(3px);
  color: var(--black);
}

.quote-btn {
  position: relative;
  min-width: 250px;
  min-height: 54px;
  justify-content: space-between;
  overflow: hidden;
  gap: 16px;
  padding: 0 14px 0 24px;
  border: 1px solid rgba(82, 205, 0, 0.5);
  border-radius: 8px;
  background: #78ff00;
  color: var(--black);
  box-shadow: 0 12px 26px rgba(112, 255, 0, 0.2);
  transform-origin: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.quote-btn::before {
  content: none;
}

.quote-btn span {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: transparent;
  color: var(--black);
  font-size: 0;
  line-height: 1;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.quote-btn span::before {
  content: "";
  width: 24px;
  height: 24px;
  background: currentColor;
  mask: url("assets/right-arrow-circle.svg") center / contain no-repeat;
  -webkit-mask: url("assets/right-arrow-circle.svg") center / contain no-repeat;
}

.quote-btn:hover {
  transform: scale(1.035);
  border-color: rgba(5, 5, 5, 0.2);
  background: #86ff12;
  box-shadow: 0 16px 32px rgba(112, 255, 0, 0.26);
}

.quote-btn:hover span {
  transform: translateX(3px);
  color: var(--black);
}

.nav-quote.quote-btn {
  min-width: 150px;
  min-height: 40px;
  gap: 10px;
  padding: 0 12px 0 18px;
  border: 1px solid rgba(132, 255, 0, 0.28);
  border-radius: 999px;
  background: rgba(132, 255, 0, 0.88);
  box-shadow: 0 10px 22px rgba(132, 255, 0, 0.14);
}

.nav-quote.quote-btn:hover {
  transform: scale(1.025);
  background: rgba(146, 255, 28, 0.94);
  box-shadow: 0 12px 24px rgba(132, 255, 0, 0.2);
}

.nav-quote.quote-btn span {
  width: 26px;
  height: 26px;
}

.nav-quote.quote-btn span::before {
  width: 22px;
  height: 22px;
}

.about-minimum {
  min-height: 50px;
  padding: 8px 12px 8px 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(99, 199, 0, 0.28);
  border-radius: 10px;
  background: rgba(132, 255, 0, 0.08);
  color: var(--ink);
  font-family: var(--font-title);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-minimum strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--lime);
  color: var(--black);
}

.about-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  isolation: isolate;
  align-items: start;
}

.about-showcase::before {
  content: "";
  position: absolute;
  inset: 11% -4% -8% 12%;
  z-index: -1;
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 14%, rgba(132, 255, 0, 0.18), transparent 16rem),
    linear-gradient(135deg, #f4f6f2, #ffffff 68%);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.08);
}

.about-photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.about-photo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.14);
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.about-photo-card:nth-child(1) {
  height: 330px;
}

.about-photo-card:nth-child(2) {
  height: 282px;
  margin-top: 40px;
}

.about-photo-card:nth-child(3) {
  height: 282px;
}

.about-photo-card:nth-child(4) {
  height: 330px;
}

.about-photo-card:nth-child(1),
.about-photo-card:nth-child(4) {
  box-shadow: 0 24px 54px rgba(17, 17, 17, 0.14);
}

.social-proof {
  padding: 112px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(132, 255, 0, 0.1), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #f8faf7 100%);
}

.social-heading h2 span {
  color: var(--lime-dark);
}

.reviews-carousel {
  position: relative;
  margin-top: 52px;
  padding: 18px 0 30px;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-carousel.is-dragging {
  cursor: grabbing;
}

.reviews-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: reviewsLoop 34s linear infinite;
}

.reviews-track.is-controlled {
  animation: none;
  will-change: transform;
}

.reviews-group {
  display: flex;
  gap: 18px;
}

.review-card {
  position: relative;
  width: 360px;
  min-height: 252px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.review-card:hover {
  z-index: 2;
  transform: translateY(-6px) scale(1.04);
  border-color: rgba(99, 199, 0, 0.42);
  box-shadow: 0 28px 62px rgba(17, 17, 17, 0.16);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-link {
  color: inherit;
  text-decoration: none;
}

.review-link:hover strong {
  color: var(--lime-dark);
}

.review-top img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: 3px solid var(--lime-soft);
  border-radius: 50%;
  object-fit: cover;
}

.review-top img.review-logo {
  padding: 7px;
  background: #fff;
  object-fit: contain;
}

.review-top img.review-logo-dark {
  background: #050505;
}

.review-top strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
}

.review-top span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.86rem;
}

.review-stars {
  margin-top: 18px;
  color: var(--lime-dark);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.review-card p {
  margin: 16px 0 0;
  color: #4f5664;
  font-size: 0.98rem;
  line-height: 1.62;
}

@keyframes reviewsLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.client-deliveries {
  padding: 96px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(132, 255, 0, 0.11), transparent 22rem),
    linear-gradient(180deg, #f8faf7 0%, #ffffff 100%);
}

.client-deliveries-heading {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.client-deliveries-heading .eyebrow {
  margin-inline: auto;
}

.client-deliveries-heading h2 {
  margin-bottom: 14px;
}

.deliveries-slider {
  --delivery-gap: 18px;
  --delivery-visible: 4;
  position: relative;
  margin-top: 46px;
  padding-inline: 58px;
}

.deliveries-viewport {
  overflow: hidden;
  padding: 10px 0 28px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.deliveries-viewport.is-dragging {
  cursor: grabbing;
}

.deliveries-track {
  display: flex;
  gap: var(--delivery-gap);
  will-change: transform;
}

.deliveries-viewport.swiper .deliveries-track {
  gap: 0;
  overflow: visible;
  touch-action: pan-y;
}

.deliveries-viewport.swiper .delivery-image-card {
  flex: 0 0 auto;
  height: auto;
  flex-shrink: 0;
}

.deliveries-viewport.swiper .delivery-image-card img {
  -webkit-user-drag: none;
  user-select: none;
}

.delivery-image-card {
  flex: 0 0 calc((100% - (var(--delivery-gap) * (var(--delivery-visible) - 1))) / var(--delivery-visible));
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  appearance: none;
  background: #eef3eb;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
  cursor: pointer;
  line-height: 0;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.delivery-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.delivery-image-card:hover {
  z-index: 2;
  transform: scale(1.035);
  border-color: rgba(99, 199, 0, 0.34);
  box-shadow: 0 24px 54px rgba(17, 17, 17, 0.14);
}

.deliveries-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
}

.deliveries-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 3px solid var(--black);
  border-right: 3px solid var(--black);
}

.deliveries-arrow.prev {
  left: 0;
}

.deliveries-arrow.prev::before {
  transform: rotate(-135deg);
}

.deliveries-arrow.next {
  right: 0;
}

.deliveries-arrow.next::before {
  transform: rotate(45deg);
}

.deliveries-arrow:hover {
  background: var(--lime);
}

.deliveries-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(52px, 7vw, 78px);
  overscroll-behavior: contain;
  touch-action: pan-x;
}

.deliveries-lightbox.is-open {
  display: flex;
}

.deliveries-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 8, 0.82);
  backdrop-filter: blur(5px);
}

.deliveries-lightbox-panel {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: min(88vw, 940px);
  max-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: visible;
  border-radius: 14px;
  background: transparent;
}

.deliveries-lightbox-panel img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(82vw, 860px);
  max-height: min(74vh, 680px);
  border-radius: 12px;
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  cursor: zoom-in;
  object-fit: contain;
  transform-origin: center;
  transition: transform 180ms ease, max-width 180ms ease, max-height 180ms ease;
}

.deliveries-lightbox-close,
.deliveries-lightbox-zoom,
.deliveries-lightbox-arrow {
  position: fixed;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 10, 8, 0.62);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.deliveries-lightbox-close:hover,
.deliveries-lightbox-zoom:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.03);
}

.deliveries-lightbox-arrow:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-50%) scale(1.03);
}

.deliveries-lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.deliveries-lightbox-close::before,
.deliveries-lightbox-close::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 18px;
  height: 2px;
  margin: auto;
  border-radius: 999px;
  background: currentColor;
}

.deliveries-lightbox-close::before {
  transform: rotate(45deg);
}

.deliveries-lightbox-close::after {
  transform: rotate(-45deg);
}

.deliveries-lightbox-zoom {
  top: 24px;
  right: 80px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.deliveries-lightbox-zoom::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.deliveries-lightbox-zoom::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  border-radius: 999px;
  background: currentColor;
}

.deliveries-lightbox.is-zoomed .deliveries-lightbox-zoom::after {
  opacity: 0;
}

.deliveries-lightbox-arrow {
  top: 50%;
  width: 48px;
  height: 64px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.deliveries-lightbox-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 11px;
  height: 11px;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.deliveries-lightbox-arrow.prev {
  left: 24px;
}

.deliveries-lightbox-arrow.prev::before {
  transform: rotate(-135deg);
}

.deliveries-lightbox-arrow.next {
  right: 24px;
}

.deliveries-lightbox-arrow.next::before {
  transform: rotate(45deg);
}

.deliveries-lightbox.is-zoomed {
  padding: clamp(58px, 6vw, 82px);
}

.deliveries-lightbox.is-zoomed .deliveries-lightbox-panel {
  max-width: min(94vw, 1100px);
  max-height: min(84vh, 820px);
  overflow: auto;
  overscroll-behavior: contain;
}

.deliveries-lightbox.is-zoomed .deliveries-lightbox-panel img {
  max-width: none;
  max-height: none;
  width: min(128vw, 1180px);
  height: auto;
  cursor: zoom-out;
}

.quote-section {
  padding: 82px 0 96px;
  background:
    linear-gradient(90deg, rgba(132, 255, 0, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #f8faf7 0%, #ffffff 100%);
  background-size: 44px 44px, auto;
}

.quote-panel {
  position: relative;
  overflow: hidden;
  width: min(1080px, calc(100% - 48px));
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 14%, rgba(132, 255, 0, 0.22), transparent 18rem),
    radial-gradient(circle at 12% 92%, rgba(132, 255, 0, 0.08), transparent 18rem),
    linear-gradient(135deg, #20251f, #141815 58%, #18230f);
  color: var(--white);
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.18);
}

.quote-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  opacity: 0.55;
}

.quote-head {
  position: relative;
  z-index: 1;
  padding: 0;
  text-align: left;
}

.quote-head .eyebrow {
  margin: 0 0 18px;
}

.quote-head h2 {
  max-width: 380px;
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  line-height: 1;
}

.quote-head p:not(.eyebrow) {
  max-width: 390px;
  margin: 0;
  color: #d3d9cf;
  font-size: 1rem;
  line-height: 1.6;
}

.quote-form {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: clamp(20px, 3vw, 28px);
  border: 0;
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.08);
}

.quote-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.86rem;
  font-weight: 700;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #dcdfe5;
  border-radius: 8px;
  background: #fafafa;
  color: var(--black);
  outline: none;
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--lime-dark);
  box-shadow: 0 0 0 4px rgba(132, 255, 0, 0.18);
}

.quote-cta {
  padding: clamp(8px, 1.6vw, 18px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-points {
  margin: 24px 0 28px;
  display: grid;
  gap: 10px;
}

.quote-points span {
  position: relative;
  padding-left: 22px;
  color: #dce3d6;
  font-size: 0.92rem;
  line-height: 1.45;
}

.quote-points span::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(132, 255, 0, 0.16);
}

.quote-cta .quote-btn {
  width: fit-content;
  min-width: 250px;
}

.quote-btn:disabled,
.quote-btn.is-loading {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.quote-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: #d3d9cf;
  font-size: 0.86rem;
  line-height: 1.45;
}

.quote-status[data-status="success"] {
  color: var(--lime);
}

.quote-status[data-status="error"] {
  color: #ffddd5;
}

.quote-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.quote-whatsapp {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(132, 255, 0, 0.2);
  border-radius: 10px;
  background: rgba(132, 255, 0, 0.08);
}

.quote-whatsapp .whatsapp-icon {
  width: 34px;
  height: 34px;
}

.quote-whatsapp strong,
.quote-whatsapp span {
  display: block;
}

.quote-whatsapp strong {
  color: var(--lime);
  font-family: var(--font-title);
  font-size: 1rem;
}

.quote-whatsapp span {
  margin-top: 2px;
  color: #d7ddd2;
  font-size: 0.86rem;
}

.quote-benefits {
  display: grid;
  gap: 9px;
}

.quote-benefits article {
  position: relative;
  padding: 14px 14px 14px 46px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.quote-benefits article:hover {
  transform: translateY(-2px);
  border-color: rgba(132, 255, 0, 0.34);
  background: rgba(255, 255, 255, 0.065);
}

.quote-benefits strong,
.quote-benefits span {
  display: block;
}

.quote-benefits strong {
  font-family: var(--font-title);
  color: var(--lime);
  margin-bottom: 5px;
  font-size: 0.92rem;
}

.quote-benefits span {
  color: #d5dacd;
  font-size: 0.84rem;
  line-height: 1.45;
}

.quote-check {
  position: absolute;
  top: 15px;
  left: 14px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 18px 40px rgba(5, 5, 5, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 16px, 0) scale(0.92);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.whatsapp-float:hover {
  box-shadow: 0 22px 48px rgba(132, 255, 0, 0.28);
  transform: translate3d(0, -2px, 0) scale(1.03);
}

.whatsapp-icon-float {
  width: 27px;
  height: 27px;
}

.footer {
  padding: 76px 0 34px;
  background:
    radial-gradient(circle at 86% 18%, rgba(132, 255, 0, 0.14), transparent 22rem),
    linear-gradient(115deg, #0b0b0b, #141414 68%, #17280c);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 1fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.footer p,
.footer a {
  display: block;
  color: #cdd2c9;
  line-height: 1.65;
}

.footer a {
  width: fit-content;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer a:hover {
  color: var(--lime);
  transform: translateX(2px);
}

.footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-brand img {
  width: 196px;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(132, 255, 0, 0.22);
  border-radius: 999px;
  background: rgba(132, 255, 0, 0.08);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-social a:hover {
  transform: translateY(-1px);
  border-color: rgba(132, 255, 0, 0.42);
  background: rgba(132, 255, 0, 0.14);
  color: var(--lime);
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #cdd2c9;
  font-size: 0.88rem;
}

@media (max-width: 1040px) {
  .hero-grid,
  .about-grid,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .hero-media {
    align-self: auto;
    min-height: auto;
  }

  .hero-media img {
    min-height: 420px;
  }

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

  .models-track {
    --cards-per-view: 2;
  }

  .models-carousel {
    padding-inline: 58px;
  }

  .models-carousel.is-swiper-ready {
    width: 100%;
    margin-inline: 0;
    padding-inline: 58px;
  }

  .models-carousel.is-swiper-ready .carousel-arrow.prev {
    left: 0;
  }

  .models-carousel.is-swiper-ready .carousel-arrow.next {
    right: 0;
  }

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

  .quote-panel {
    padding: clamp(22px, 4vw, 30px);
  }

  .quote-head {
    align-items: center;
    padding: 0;
    text-align: center;
  }

  .quote-head h2,
  .quote-head p {
    max-width: 680px;
  }

  .quote-copy {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: stretch;
  }

  .quote-whatsapp {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .about-showcase {
    max-width: 760px;
    margin-inline: auto;
  }

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

  .about-photo-card:nth-child(1),
  .about-photo-card:nth-child(4) {
    height: 300px;
  }

  .about-photo-card:nth-child(2),
  .about-photo-card:nth-child(3) {
    height: 260px;
  }
}

@media (max-width: 760px) {
  .section-inner {
    width: min(100% - 28px, 1320px);
  }

  .site-header {
    top: 0;
    background:
      linear-gradient(90deg, rgba(132, 255, 0, 0.06), transparent 42%),
      rgba(5, 8, 5, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-shell {
    position: relative;
    width: min(100% - 32px, 1320px);
    min-height: 72px;
    padding: 0;
    gap: 12px;
    border-radius: 0;
  }

  .brand img {
    width: 176px;
  }

  .brand {
    min-height: 72px;
    padding-right: 0;
  }

  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    color: var(--lime);
    transition:
      background 180ms ease,
      border-color 180ms ease;
  }

  .nav-shell.is-open .nav-toggle {
    border-color: rgba(132, 255, 0, 0.38);
    background: rgba(132, 255, 0, 0.1);
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    justify-items: stretch;
    padding: 8px 16px 16px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(5, 8, 5, 0.99), rgba(8, 12, 8, 0.99));
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.32);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-shell.is-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    inline-size: 100%;
    width: 100%;
    justify-items: stretch;
    justify-self: stretch;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .nav-links a {
    inline-size: 100%;
    width: 100%;
    justify-self: stretch;
    min-height: 50px;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
  }

  .nav-links a::after {
    content: "→";
    color: var(--lime);
  }

  .nav-shell .btn {
    min-height: 46px;
    width: 100%;
    padding-inline: 15px;
    font-size: 0.76rem;
    border-radius: 9px;
  }

  .nav-links a {
    min-height: 50px;
    padding: 0;
    background: transparent;
  }

  .nav-links a::after {
    content: "";
    position: static;
    width: 8px;
    height: 8px;
    display: block;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    border-radius: 0;
    background: transparent;
    color: var(--lime);
    opacity: 1;
    transform: rotate(45deg);
  }

  .nav-shell .btn {
    min-height: 50px;
    width: 100%;
    margin-top: 14px;
    padding-inline: 18px;
    font-size: 0.8rem;
    border-radius: 8px;
  }

  .nav-menu .nav-quote {
    inline-size: 100% !important;
    width: 100% !important;
    min-width: 0;
    justify-self: stretch;
  }

  .nav-menu .nav-links > a {
    display: flex;
    inline-size: 100% !important;
    width: 100% !important;
    max-width: none;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 98px 0 38px;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 9vw, 2.55rem);
    overflow-wrap: break-word;
  }

  .hero-media img {
    min-height: 330px;
  }

  h2 {
    font-size: 2.25rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-stats,
  .steps-grid,
  .proof-grid,
  .quote-benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .models-track {
    --cards-per-view: 1;
    --carousel-gap: 16px;
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    cursor: auto;
    scroll-snap-type: x proximity;
    user-select: auto;
  }

  .models-carousel {
    padding-inline: 0;
    overflow: hidden;
  }

  .models-carousel.is-swiper-ready {
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
  }

  .carousel-arrow {
    display: none;
  }

  .model-card-body {
    padding: 22px;
  }

  .model-lightbox {
    padding: 16px;
  }

  .model-lightbox-panel {
    width: 100%;
    height: min(82vh, 680px);
    grid-template-columns: minmax(0, 1fr);
  }

  .model-lightbox-figure {
    gap: 12px;
  }

  .model-lightbox-figure img {
    max-height: calc(82vh - 66px);
    border-radius: 7px;
  }

  .model-lightbox-arrow {
    width: 40px;
    height: 40px;
  }

  .model-lightbox-arrow.prev {
    left: 6px;
  }

  .model-lightbox-arrow.next {
    right: 6px;
  }

  .model-lightbox-close {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
  }

  .model-lightbox-figure figcaption {
    max-width: calc(100vw - 32px);
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .hero-stats {
    max-width: none;
  }

  .media-badge {
    padding: 10px 12px;
  }

  .hero-media .media-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    margin-top: 0;
  }

  .hero-media-panel {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 6px;
  }

  .hero-media-panel article {
    min-height: 58px;
    padding: 10px;
    border-radius: 8px;
  }

  .hero-media-panel strong {
    font-size: 0.88rem;
  }

  .hero-media-panel span {
    margin-top: 5px;
    font-size: 0.65rem;
  }

  .product-lines,
  .about,
  .social-proof,
  .client-deliveries,
  .quote-section,
  .process {
    padding: 76px 0;
  }

  .about-grid {
    gap: 34px;
  }

  .about-showcase {
    margin-top: 8px;
  }

  .about-showcase::before {
    inset: 8% 0 5%;
  }

  .about-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .about-photo-card {
    border-radius: 10px;
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .about-actions .btn,
  .about-minimum {
    width: 100%;
  }

  .about-photo-card:nth-child(1),
  .about-photo-card:nth-child(4) {
    height: 210px;
  }

  .about-photo-card:nth-child(2),
  .about-photo-card:nth-child(3) {
    height: 176px;
  }

  .about-photo-card:nth-child(2) {
    margin-top: 26px;
  }

  .reviews-carousel {
    margin-top: 36px;
    padding: 12px 0 24px;
    mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  }

  .reviews-track,
  .reviews-group {
    gap: 10px;
  }

  .review-card {
    width: min(78vw, 292px);
    min-height: 238px;
    padding: 18px;
  }

  .deliveries-slider {
    --delivery-gap: 12px;
    --delivery-visible: 1.16;
    margin-top: 32px;
  }

  .deliveries-arrow {
    display: none;
  }

  .deliveries-viewport {
    overflow: hidden;
    padding-bottom: 12px;
  }

  .deliveries-lightbox {
    padding: 58px 18px;
  }

  .deliveries-lightbox-panel {
    width: fit-content;
    max-width: 100%;
    max-height: 76vh;
    padding: 0;
    border-radius: 12px;
  }

  .deliveries-lightbox-arrow {
    width: 38px;
    height: 38px;
  }

  .deliveries-lightbox-arrow.prev {
    left: -18px;
  }

  .deliveries-lightbox-arrow.next {
    right: -18px;
  }

  .deliveries-lightbox-close {
    top: -50px;
    right: 0;
  }

  .deliveries-lightbox-zoom {
    top: -50px;
    left: 0;
  }

  .deliveries-lightbox-panel img {
    max-width: min(92vw, 620px);
    max-height: 72vh;
    border-radius: 10px;
  }

  .deliveries-lightbox.is-zoomed .deliveries-lightbox-panel {
    max-width: 94vw;
    max-height: 76vh;
  }

  .deliveries-lightbox.is-zoomed .deliveries-lightbox-panel img {
    width: min(150vw, 820px);
  }

  .quote-panel {
    width: min(100% - 28px, 1080px);
    gap: 22px;
    padding: 18px;
  }

  .quote-head {
    text-align: center;
  }

  .quote-head .eyebrow {
    margin-inline: auto;
  }

  .quote-head h2 {
    font-size: 2.15rem;
  }

  .quote-head p {
    font-size: 0.94rem;
  }

  .quote-form {
    padding: 18px;
  }

  .quote-cta {
    order: -1;
    padding: 4px 0 0;
    align-items: center;
  }

  .quote-points {
    width: 100%;
    margin: 20px 0 22px;
  }

  .quote-cta .quote-btn {
    width: 100%;
  }

  .quote-copy {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .quote-whatsapp {
    align-items: center;
    flex-direction: row;
    padding: 14px;
  }

  .quote-benefits article {
    padding: 14px 14px 14px 44px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Public site responsive refinement layer */
@media (max-width: 1180px) {
  .hero-grid,
  .about-grid,
  .quote-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .about-copy {
    max-width: 820px;
    margin-inline: auto;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-media {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .quote-panel {
    max-width: 920px;
  }

  .deliveries-slider {
    --delivery-visible: 2;
  }
}

@media (max-width: 900px) {
  .section-inner {
    width: min(100% - 32px, 1320px);
  }

  .deliveries-slider {
    --delivery-gap: 12px;
    --delivery-visible: 2;
  }

  .nav-shell {
    position: relative;
    width: min(100% - 32px, 1320px);
    min-height: 72px;
    padding: 0;
  }

  .brand {
    min-height: 72px;
    padding-right: 0;
  }

  .brand img {
    width: 176px;
  }

  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    color: var(--lime);
  }

  .nav-shell.is-open .nav-toggle {
    border-color: rgba(132, 255, 0, 0.38);
    background: rgba(132, 255, 0, 0.1);
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    justify-items: stretch;
    padding: 8px 16px 16px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(5, 8, 5, 0.99), rgba(8, 12, 8, 0.99));
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-shell.is-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .nav-links a {
    width: 100%;
    min-height: 50px;
    display: flex;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
  }

  .nav-links a::after {
    content: "";
    position: static;
    width: 8px;
    height: 8px;
    display: block;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    border-radius: 0;
    background: transparent;
    color: var(--lime);
    opacity: 1;
    transform: rotate(45deg);
  }

  .nav-menu .nav-quote {
    width: 100% !important;
    min-width: 0;
    min-height: 50px;
    margin-top: 14px;
    border-radius: 8px;
  }

  .product-lines,
  .about,
  .social-proof,
  .quote-section,
  .process {
    padding: 84px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

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

  .quote-copy {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom {
    text-align: center;
  }

  .footer-brand,
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .deliveries-slider {
    --delivery-visible: 1.16;
  }

  html {
    scroll-padding-top: 72px;
  }

  .section-inner {
    width: min(100% - 28px, 1320px);
  }

  .site-header {
    width: 100%;
  }

  .nav-shell {
    width: min(100% - 28px, 1320px);
  }

  .nav-menu {
    left: 0;
    right: 0;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 58px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy,
  .about-copy,
  .section-heading,
  .quote-head,
  .footer {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .about-copy .eyebrow,
  .section-heading .eyebrow,
  .quote-head .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 2.35rem;
    line-height: 1.08;
  }

  h2,
  .quote-head h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .lead,
  .about-copy p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .quote-head p {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-actions,
  .about-actions {
    align-items: stretch;
    justify-content: center;
    width: 100%;
  }

  .hero-actions .btn,
  .hero-actions .link-action,
  .about-actions .btn,
  .quote-cta .quote-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    text-align: center;
  }

  .hero-stats article {
    padding: 14px 10px;
  }

  .hero-media {
    border-radius: 10px;
  }

  .hero-media img {
    min-height: 300px;
    max-height: 420px;
  }

  .media-badge.top {
    left: 12px;
    right: 12px;
    top: 12px;
    width: auto;
  }

  .hero-media-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .models-carousel {
    width: 100%;
    padding-inline: 0;
  }

  .models-track {
    scroll-padding-inline: 0;
  }

  .models-carousel.is-swiper-ready {
    width: 100%;
    margin-inline: 0;
    overflow: hidden;
    padding-inline: 0;
  }

  .model-card {
    min-width: 0;
    width: 100%;
  }

  .proof-grid,
  .steps-grid,
  .quote-benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article,
  .steps-grid article {
    text-align: left;
  }

  .mini-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }

  .about-showcase {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .about-showcase::before {
    inset: 8% 0 6%;
    border-radius: 18px;
  }

  .quote-panel {
    width: min(100% - 28px, 1080px);
  }

  .quote-form {
    order: 1;
  }

  .quote-cta {
    order: 0;
  }

  .quote-points {
    text-align: left;
  }

  .footer-social,
  .footer-bottom {
    justify-content: center;
  }

  .footer-bottom {
    align-items: center;
  }
}

@media (max-width: 520px) {
  .section-inner {
    width: min(100% - 24px, 1320px);
  }

  .brand img {
    width: 158px;
  }

  h1 {
    font-size: 2.05rem;
  }

  h2,
  .quote-head h2 {
    font-size: 1.76rem;
  }

  .hero {
    padding-top: 94px;
  }

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

  .hero-media img {
    min-height: 280px;
  }

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

  .hero-media-panel article {
    min-height: 48px;
    align-items: center;
    text-align: center;
  }

  .proof-grid article,
  .steps-grid article,
  .mini-stats article,
  .quote-form,
  .quote-benefits article {
    border-radius: 10px;
  }

  .about-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .about-photo-card:nth-child(1),
  .about-photo-card:nth-child(2),
  .about-photo-card:nth-child(3),
  .about-photo-card:nth-child(4) {
    height: auto;
    margin-top: 0;
    aspect-ratio: 1;
  }

  .review-card {
    width: min(78vw, 292px);
  }

  .quote-panel {
    width: min(100% - 20px, 1080px);
    padding: 14px;
    border-radius: 12px;
  }

  .quote-whatsapp {
    justify-content: center;
    text-align: left;
  }

  .footer {
    padding-bottom: 86px;
  }
}

@media (max-width: 380px) {
  .nav-shell {
    width: min(100% - 20px, 1320px);
  }

  .brand img {
    width: 144px;
  }

  h1 {
    font-size: 1.84rem;
  }

  h2,
  .quote-head h2 {
    font-size: 1.58rem;
  }

  .btn-large,
  .quote-btn {
    min-height: 50px;
    padding-inline: 16px;
    font-size: 0.78rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .models-track {
    cursor: auto;
    scroll-snap-type: x mandatory;
    touch-action: auto;
    user-select: auto;
  }

  .model-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 760px) {
  .model-lightbox-arrow,
  .deliveries-lightbox-arrow,
  .deliveries-lightbox-zoom {
    display: none;
  }

  .model-lightbox-close,
  .deliveries-lightbox-close {
    position: fixed;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .deliveries-lightbox {
    padding: 58px 14px 24px;
  }

  .deliveries-lightbox-panel img {
    cursor: default;
    max-width: calc(100vw - 28px);
    max-height: calc(100vh - 96px);
  }
}

/* Final public landing responsive system */
@media (min-width: 1024px) {
  .product-lines,
  .social-proof,
  .client-deliveries {
    overflow: hidden;
  }

  .models-carousel {
    overflow: hidden;
    contain: layout paint;
  }

  .models-carousel.is-swiper-ready {
    overflow: visible;
    contain: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(480px, 0.97fr);
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  }

  .quote-panel {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  }

  .models-track {
    --cards-per-view: 4;
  }

  .hero {
    min-height: 100svh;
  }
}

@media (min-width: 1440px) {
  .section-inner,
  .nav-shell {
    width: min(1400px, calc(100% - 80px));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(560px, 1.05fr);
  }

  .hero-media img {
    min-height: 540px;
  }

  .models-track {
    --cards-per-view: 4;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .product-lines,
  .social-proof,
  .client-deliveries {
    overflow: hidden;
  }

  .models-carousel {
    overflow: hidden;
    contain: layout paint;
  }

  .models-carousel.is-swiper-ready {
    overflow: visible;
    contain: none;
  }

  html {
    scroll-padding-top: 78px;
  }

  .section-inner,
  .nav-shell {
    width: min(100% - 40px, 1320px);
  }

  .hero {
    min-height: auto;
    padding: 110px 0 72px;
  }

  .hero-grid,
  .about-grid,
  .quote-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .about-copy,
  .section-heading,
  .quote-head {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .about-copy .eyebrow,
  .section-heading .eyebrow,
  .quote-head .eyebrow {
    margin-inline: auto;
  }

  .hero-copy h1,
  .hero-copy .lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-stats,
  .about-actions {
    justify-content: center;
  }

  h1 {
    font-size: clamp(2.75rem, 5.4vw, 3.35rem);
  }

  h2,
  .quote-head h2 {
    font-size: clamp(2.1rem, 4.6vw, 2.75rem);
  }

  .hero-media {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .hero-media img {
    min-height: 420px;
    max-height: 520px;
  }

  .models-carousel {
    padding-inline: 52px;
  }

  .models-track {
    --cards-per-view: 2;
    --carousel-gap: 18px;
  }

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

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

  .about-showcase {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .client-deliveries,
  .product-lines,
  .about,
  .social-proof,
  .quote-section,
  .process {
    padding-block: 88px;
  }

  .deliveries-slider {
    --delivery-visible: 2;
  }

  .quote-panel {
    width: min(920px, calc(100% - 40px));
  }

  .footer-grid {
    text-align: left;
    gap: 34px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    max-width: 620px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 68px;
  }

  body,
  main,
  section,
  header,
  footer {
    max-width: 100%;
  }

  .section-inner,
  .nav-shell {
    width: min(100% - 28px, 1320px);
  }

  .site-header {
    width: 100%;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand,
  .brand img {
    min-width: 0;
  }

  .brand {
    min-height: 68px;
  }

  .brand img {
    width: clamp(144px, 42vw, 176px);
  }

  .nav-toggle {
    flex: 0 0 44px;
    min-width: 44px;
  }

  .nav-menu {
    left: calc((100vw - 100%) / -2);
    right: calc((100vw - 100%) / -2);
    max-height: calc(100svh - 68px);
    overflow-y: auto;
  }

  .nav-links a,
  .nav-menu .nav-quote {
    min-height: 52px;
  }

  .hero {
    min-height: auto;
    padding: 88px 0 46px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .about-grid,
  .quote-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .about-copy,
  .section-heading,
  .quote-head,
  .footer {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .about-copy .eyebrow,
  .section-heading .eyebrow,
  .quote-head .eyebrow {
    margin-inline: auto;
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 16px;
    white-space: normal;
    line-height: 1.25;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 8.2vw, 2.55rem);
    line-height: 1.08;
  }

  h2,
  .quote-head h2 {
    font-size: clamp(1.7rem, 7vw, 2.15rem);
    line-height: 1.1;
  }

  h3 {
    font-size: clamp(1.05rem, 4.6vw, 1.28rem);
  }

  .lead,
  .section-heading p:not(.eyebrow),
  .about-copy p:not(.eyebrow),
  .quote-head p {
    max-width: 34rem;
    margin-inline: auto;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-actions,
  .about-actions {
    width: 100%;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
  }

  .hero-actions .btn,
  .hero-actions .link-action,
  .about-actions .btn,
  .quote-cta .quote-btn {
    width: 100%;
    justify-content: center;
  }

  .btn,
  .link-action,
  .model-btn,
  .quote-btn {
    min-height: 48px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 16px 0 0;
    gap: 10px;
  }

  .hero-stats article {
    min-width: 0;
    padding: 13px 10px;
  }

  .hero-stats strong {
    font-size: 1.58rem;
  }

  .hero-stats span {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .hero-media {
    width: 100%;
    min-height: 0;
    border-radius: 10px;
  }

  .hero-media img {
    height: auto;
    min-height: 260px;
    max-height: 390px;
    aspect-ratio: 1 / 0.86;
    object-fit: cover;
  }

  .media-badge.top {
    top: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    padding: 10px 12px;
  }

  .media-badge strong {
    font-size: 0.88rem;
  }

  .media-badge span {
    font-size: 0.74rem;
  }

  .hero-media-panel {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-media-panel article {
    min-height: 56px;
    padding: 8px 6px;
    text-align: center;
  }

  .hero-media-panel strong {
    font-size: 0.82rem;
  }

  .hero-media-panel span {
    font-size: 0.62rem;
  }

  .product-lines,
  .about,
  .social-proof,
  .client-deliveries,
  .quote-section,
  .process {
    padding-block: 64px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .models-carousel {
    padding-inline: 0;
  }

  .models-track {
    --cards-per-view: 1;
    --carousel-gap: 12px;
    padding-top: 6px;
    padding-bottom: 14px;
    cursor: auto;
    scroll-snap-type: x mandatory;
    user-select: auto;
  }

  .carousel-mobile-hint {
    display: block;
    margin-top: 6px;
    padding-bottom: 18px;
    font-size: 0.74rem;
  }

  .model-card img {
    height: clamp(188px, 58vw, 232px);
  }

  .model-card-body {
    padding: 15px 16px 16px;
  }

  .model-card-title {
    margin-bottom: 12px;
  }

  .model-card-title h3 {
    font-size: 1rem;
    line-height: 1.22;
  }

  .model-card ul {
    margin-bottom: 16px;
  }

  .model-card li {
    gap: 8px;
    margin-top: 7px;
    font-size: 0.82rem;
    line-height: 1.32;
  }

  .model-card .model-btn {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .model-card .model-btn::after {
    width: 20px;
    height: 20px;
  }

  .carousel-dots {
    margin-top: 4px;
    gap: 6px;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
  }

  .carousel-dot.is-active {
    width: 26px;
  }

  .proof-grid,
  .steps-grid,
  .mini-stats,
  .quote-benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article,
  .steps-grid article,
  .mini-stats article {
    min-height: auto;
  }

  .steps-grid article {
    padding: 22px;
  }

  .steps-grid h3 {
    margin-top: 22px;
  }

  .about-grid {
    gap: 30px;
  }

  .about-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }

  .about-photo-card:nth-child(1),
  .about-photo-card:nth-child(2),
  .about-photo-card:nth-child(3),
  .about-photo-card:nth-child(4) {
    height: auto;
    margin-top: 0;
    aspect-ratio: 1;
  }

  .reviews-carousel {
    margin-top: 28px;
    padding-block: 8px 20px;
    overflow: hidden;
  }

  .review-card {
    width: min(84vw, 310px);
    min-height: 232px;
    padding: 18px;
  }

  .review-card p {
    font-size: 0.9rem;
    line-height: 1.54;
  }

  .deliveries-slider {
    --delivery-visible: 1.14;
    --delivery-gap: 12px;
    margin-top: 26px;
    overflow: hidden;
  }

  .deliveries-viewport {
    overflow: visible;
    padding-bottom: 12px;
  }

  .delivery-image-card {
    aspect-ratio: 4 / 5;
  }

  .quote-panel {
    width: min(100% - 28px, 1080px);
    padding: 16px;
    gap: 18px;
    border-radius: 12px;
  }

  .quote-cta {
    order: 0;
    padding-top: 2px;
  }

  .quote-form {
    order: 1;
    padding: 16px;
  }

  .quote-form input,
  .quote-form textarea {
    min-height: 48px;
    font-size: 1rem;
  }

  .quote-points {
    width: 100%;
    text-align: left;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .footer {
    padding: 54px 0 82px;
  }

  .footer-grid {
    gap: 28px;
    text-align: center;
  }

  .footer-grid > div {
    display: grid;
    justify-items: center;
    gap: 8px;
  }

  .footer p {
    max-width: 28rem;
    margin-inline: auto;
  }

  .footer a {
    width: auto;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
    gap: 10px;
  }

  .footer-social a {
    min-height: 42px;
    padding-inline: 16px;
  }

  .footer-bottom {
    margin-top: 34px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .hero-media img {
    min-height: 330px;
    max-height: 440px;
  }

  .models-track {
    --cards-per-view: 1.16;
  }

  .deliveries-slider {
    --delivery-visible: 1.55;
  }

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

@media (max-width: 480px) {
  .section-inner,
  .nav-shell {
    width: min(100% - 22px, 1320px);
  }

  .hero {
    padding-top: 78px;
    padding-bottom: 34px;
  }

  .hero-grid {
    gap: 20px;
  }

  h1 {
    margin-bottom: 12px;
    font-size: clamp(1.62rem, 8.2vw, 1.96rem);
    line-height: 1.04;
  }

  h2,
  .quote-head h2 {
    font-size: clamp(1.48rem, 8vw, 1.82rem);
  }

  .lead,
  .section-heading p:not(.eyebrow),
  .about-copy p:not(.eyebrow),
  .quote-head p {
    font-size: 0.91rem;
  }

  .hero .lead {
    line-height: 1.45;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-stats {
    display: none;
  }

  .hero-media img {
    min-height: 230px;
    max-height: 300px;
  }

  .hero-media-panel {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: transparent;
  }

  .hero-media::after {
    display: block;
  }

  .media-badge.top {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    margin: 0;
    padding: 8px 10px;
  }

  .hero-media-panel article {
    min-height: 46px;
    padding: 7px 4px;
  }

  .hero-media-panel strong {
    font-size: 0.72rem;
  }

  .hero-media-panel span {
    font-size: 0.56rem;
    line-height: 1.12;
  }

  .product-lines,
  .about,
  .social-proof,
  .client-deliveries,
  .quote-section,
  .process {
    padding-block: 52px;
  }

  .product-lines {
    padding-bottom: 72px;
  }

  .models-track {
    --cards-per-view: 1;
  }

  .model-card img {
    height: clamp(176px, 56vw, 218px);
  }

  .model-card-body {
    padding: 14px 15px 15px;
  }

  .model-card-title h3 {
    font-size: 0.96rem;
  }

  .model-card li {
    font-size: 0.8rem;
  }

  .model-card .model-btn {
    min-height: 46px;
    font-size: 0.7rem;
  }

  .about-showcase {
    gap: 8px;
  }

  .review-card {
    width: min(86vw, 292px);
  }

  .deliveries-slider {
    --delivery-visible: 1.08;
  }

  .quote-panel {
    width: min(100% - 20px, 1080px);
    padding: 14px;
  }

  .quote-form {
    padding: 14px;
  }

  .footer-brand {
    margin-bottom: 12px;
  }

  .footer-brand img {
    width: 166px;
  }
}

@media (max-width: 340px) {
  .section-inner,
  .nav-shell {
    width: min(100% - 18px, 1320px);
  }

  .brand img {
    width: 132px;
  }

  h1 {
    font-size: 1.72rem;
  }

  .btn-large,
  .quote-btn,
  .model-btn {
    padding-inline: 12px;
    font-size: 0.74rem;
  }

  .hero-media img {
    min-height: 220px;
  }
}
