:root {
  --bg: #050506;
  --bg-2: #090a0d;
  --surface: #101116;
  --surface-2: #17191f;
  --surface-3: #20232b;
  --text: #ffffff;
  --muted: #b8bdc8;
  --muted-2: #7e8490;
  --line: rgba(255, 255, 255, 0.12);
  --red: #e30613;
  --red-2: #ff2635;
  --red-3: #8f020c;
  --silver: #d7dbe2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --glow: 0 0 28px rgba(227, 6, 19, 0.34);
  --radius: 8px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(227, 6, 19, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #030304 0%, #07080a 42%, #0d0e12 100%);
  background-size: 78px 78px, 78px 78px, auto;
  line-height: 1.6;
  min-width: 320px;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section-offset {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--red);
  color: var(--text);
  padding: 10px 14px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(5, 5, 6, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 6, 0.95);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 136px;
  height: 54px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 12px rgba(227, 6, 19, 0.2));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.main-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: var(--text);
  padding: 0 18px;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: var(--glow);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--line);
  position: relative;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 76px;
  background:
    linear-gradient(115deg, rgba(227, 6, 19, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), transparent 34%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.2), rgba(5, 5, 6, 1));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      112deg,
      transparent 0,
      transparent 34px,
      rgba(255, 255, 255, 0.045) 35px,
      transparent 36px
    ),
    linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.12), transparent);
  opacity: 0.7;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: 18%;
  width: 58vw;
  height: 260px;
  background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.34), transparent);
  transform: skewX(-24deg);
  opacity: 0.46;
  pointer-events: none;
}

.hero-argo {
  padding: 126px 0 42px;
  background:
    linear-gradient(112deg, rgba(227, 6, 19, 0.08) 0 31%, rgba(227, 6, 19, 0.72) 31% 57%, rgba(5, 5, 6, 0.96) 57%),
    radial-gradient(circle at 75% 34%, rgba(227, 6, 19, 0.36), transparent 34%),
    linear-gradient(135deg, #050506 0%, #0b0c10 56%, #240206 100%);
}

.hero-argo::before {
  background:
    repeating-linear-gradient(
      112deg,
      transparent 0,
      transparent 35px,
      rgba(255, 255, 255, 0.05) 36px,
      transparent 37px
    ),
    linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.14), transparent);
  opacity: 0.52;
}

.hero-argo::after {
  right: -10vw;
  top: 16%;
  width: 64vw;
  height: 420px;
  background: linear-gradient(100deg, transparent, rgba(227, 6, 19, 0.52), rgba(227, 6, 19, 0.08));
  opacity: 0.55;
}

.hero-argo .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(24px, 4vw, 54px);
}

.argo-title {
  max-width: 720px;
  font-size: clamp(2.75rem, 4.55vw, 4.55rem);
}

.argo-title mark {
  border-radius: 4px;
  background: linear-gradient(180deg, transparent 54%, rgba(227, 6, 19, 0.28) 54%);
  color: var(--red-2);
  padding-inline: 0.06em;
}

.argo-floating {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.argo-floating::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 58px;
  width: min(680px, 96%);
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  filter: blur(18px);
  transform: skewX(-14deg);
}

.argo-floating::after {
  content: "";
  position: absolute;
  right: 2%;
  top: 18%;
  width: min(560px, 82%);
  height: 210px;
  background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.34), transparent);
  filter: blur(24px);
  transform: skewX(-24deg);
  pointer-events: none;
}

.argo-cutout {
  position: relative;
  z-index: 2;
  width: min(800px, 124%);
  max-width: none;
  transform: translateX(6%);
  filter:
    drop-shadow(0 28px 30px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 24px rgba(227, 6, 19, 0.28));
}

.argo-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.argo-frame {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
    #08090c;
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.46), 0 0 36px rgba(227, 6, 19, 0.22);
}

.argo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.5), transparent 38%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.12), rgba(5, 5, 6, 0.42));
  pointer-events: none;
}

.argo-frame::after {
  content: "";
  position: absolute;
  left: -18%;
  right: -12%;
  bottom: 30px;
  z-index: 2;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.95), transparent);
  transform: skewX(-24deg);
  box-shadow: 0 0 22px rgba(227, 6, 19, 0.65);
}

.argo-car-image {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: center;
}

.model-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 5, 6, 0.74);
  color: var(--text);
  padding: 8px 14px;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.argo-card-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 2px;
  max-width: 230px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 5, 6, 0.8);
  padding: 12px 14px;
  text-align: right;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.argo-card-note strong {
  color: var(--text);
  font-size: 0.98rem;
}

.argo-card-note span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.argo-showcase .visual-whatsapp {
  width: min(100%, 360px);
  justify-self: end;
}

.hero-proof-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.hero-proof-bar article {
  min-height: 120px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid rgba(227, 6, 19, 0.7);
  background: rgba(16, 17, 22, 0.76);
  padding: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.hero-proof-bar span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red-2);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.hero-proof-bar strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.98rem;
}

.hero-proof-bar p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-2);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(227, 6, 19, 0.7);
}

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

h1,
h2,
h3 {
  line-height: 1.02;
  color: var(--text);
}

h1,
h2 {
  font-family: "Rajdhani", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.85rem, 5vw, 4.75rem);
  line-height: 1.05;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

.hero-title span:nth-child(3) {
  color: #ffffff;
  text-shadow: 0 0 28px rgba(227, 6, 19, 0.35);
}

.hero-subtitle {
  max-width: 590px;
  color: var(--silver);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: var(--radius);
  padding: 0 22px;
  border: 1px solid transparent;
  color: var(--text);
  font-weight: 800;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: var(--glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  border-color: rgba(227, 6, 19, 0.7);
  background: rgba(227, 6, 19, 0.11);
}

.btn-light {
  background: var(--text);
  color: #09090b;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.btn-card {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  background: rgba(227, 6, 19, 0.1);
  border-color: rgba(227, 6, 19, 0.45);
}

.btn-card:hover {
  background: var(--red);
  box-shadow: var(--glow);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 590px;
  margin-top: 28px;
}

.hero-highlights span {
  min-height: 50px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  background: rgba(16, 17, 22, 0.72);
  padding: 12px 14px;
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.hero-visual {
  min-width: 0;
}

.tech-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 52% 30%, rgba(227, 6, 19, 0.36), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(145deg, rgba(227, 6, 19, 0.16), rgba(5, 5, 6, 0.92) 46%),
    #08090c;
  box-shadow: var(--shadow);
  min-height: 468px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 28px);
}

.tech-panel::before,
.tech-panel::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.95), transparent);
  transform: rotate(-10deg);
}

.tech-panel::before {
  top: 25%;
}

.tech-panel::after {
  bottom: 34%;
  opacity: 0.58;
}

.panel-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(120deg, transparent, #000 28%, #000 70%, transparent);
  opacity: 0.55;
}

.rental-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-badge {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  border: 1px solid rgba(227, 6, 19, 0.54);
  background: rgba(227, 6, 19, 0.12);
  color: #ffd8db;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fleet-count {
  position: relative;
  z-index: 1;
  color: var(--silver);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
}

.launch-visual {
  position: relative;
  z-index: 1;
  min-height: 288px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 50% 42%, rgba(227, 6, 19, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
    #050506;
}

.launch-visual::before {
  content: "";
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  left: 50%;
  top: 44%;
  border-radius: 50%;
  border: 1px solid rgba(227, 6, 19, 0.32);
  background:
    conic-gradient(from 230deg, transparent, rgba(227, 6, 19, 0.9), transparent 36%),
    radial-gradient(circle, transparent 0 58%, rgba(227, 6, 19, 0.1) 59%, transparent 70%);
  transform: translate(-50%, -50%) rotate(-12deg);
  opacity: 0.85;
}

.launch-visual::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 58px;
  height: 72px;
  background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.34), transparent);
  transform: skewX(-24deg);
  filter: blur(10px);
}

.availability-pill,
.status-chip {
  position: absolute;
  z-index: 4;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(8, 9, 12, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.availability-pill {
  top: 18px;
  right: 18px;
  display: grid;
  min-width: 108px;
  padding: 10px 12px;
  text-align: right;
}

.availability-pill strong {
  color: var(--text);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 2rem;
  line-height: 0.9;
}

.availability-pill span,
.status-chip span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.logo-orbit {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 33%;
  width: min(330px, 72%);
  transform: translate(-50%, -50%);
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: auto;
  border-radius: var(--radius);
  filter:
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 28px rgba(227, 6, 19, 0.42));
}

.hero-car {
  position: absolute;
  z-index: 2;
  left: 8%;
  right: 8%;
  bottom: 34px;
  height: 112px;
}

.hero-car::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 8px;
  height: 10px;
  border-radius: 50%;
  background: rgba(227, 6, 19, 0.42);
  filter: blur(13px);
}

.hero-car-roof,
.hero-car-body,
.hero-car-wheel {
  position: absolute;
  display: block;
}

.hero-car-roof {
  left: 26%;
  right: 27%;
  top: 18%;
  height: 42%;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #ff1e2c, #83020b);
  clip-path: polygon(0 80%, 22% 18%, 66% 8%, 100% 80%);
  box-shadow: 0 0 20px rgba(227, 6, 19, 0.45);
}

.hero-car-body {
  left: 7%;
  right: 6%;
  top: 45%;
  height: 36%;
  background: linear-gradient(180deg, #f6f7f9, #8b909b 68%, #23262d);
  clip-path: polygon(3% 48%, 13% 20%, 70% 18%, 91% 42%, 98% 70%, 0 72%);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.58));
}

.hero-car-wheel {
  top: 67%;
  width: 12%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #d9dde4 0 18%, #0b0c10 20% 58%, #575c66 60% 70%, #090a0d 72%);
  border: 2px solid rgba(255, 255, 255, 0.16);
}

.wheel-a {
  left: 22%;
}

.wheel-b {
  right: 18%;
}

.status-chip {
  display: grid;
  gap: 2px;
  max-width: 164px;
  padding: 10px 12px;
}

.status-chip strong {
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.1;
}

.chip-left {
  left: 18px;
  bottom: 82px;
}

.chip-right {
  right: 18px;
  bottom: 82px;
  text-align: right;
}

.rental-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.rental-flow span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--silver);
  font-size: 0.83rem;
  font-weight: 800;
  padding: 8px 10px;
}

.rental-flow strong {
  color: var(--red-2);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 1.05rem;
}

.visual-whatsapp {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: var(--text);
  font-weight: 900;
  box-shadow: var(--glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.visual-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(227, 6, 19, 0.44);
}

.fleet,
.differentials,
.process,
.faq,
.contact {
  padding: clamp(72px, 9vw, 118px) 0;
}

.fleet,
.process,
.faq {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading h2,
.cta-inner h2,
.contact-info h2 {
  margin: 10px 0 14px;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  text-transform: uppercase;
}

.section-heading p,
.cta-inner p,
.contact-info p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.vehicle-card,
.benefit-card,
.step-card,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.045), transparent 34%),
    var(--surface);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.vehicle-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.vehicle-card:hover,
.vehicle-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(227, 6, 19, 0.54);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.36), var(--glow);
}

.vehicle-media {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 58%, rgba(227, 6, 19, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 34%),
    #08090c;
  overflow: hidden;
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  filter:
    drop-shadow(0 18px 20px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 14px rgba(227, 6, 19, 0.2));
}

.vehicle-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 0 22%, rgba(227, 6, 19, 0.26) 22% 25%, transparent 25%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 38%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 16px),
    #0a0b0f;
}

.vehicle-placeholder::before {
  content: attr(data-model);
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.13);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.vehicle-placeholder::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 48%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.95), transparent);
  transform: skewX(-24deg);
  box-shadow: 0 0 14px rgba(227, 6, 19, 0.7);
}

.vehicle-placeholder.electric::after {
  background: linear-gradient(90deg, transparent, rgba(122, 255, 222, 0.9), transparent);
  box-shadow: 0 0 14px rgba(122, 255, 222, 0.42);
}

.vehicle-placeholder.pickup .car-body {
  left: 14%;
  right: 12%;
  clip-path: polygon(3% 52%, 16% 24%, 48% 22%, 58% 42%, 96% 42%, 99% 72%, 0 72%);
}

.vehicle-placeholder.pickup .car-roof {
  left: 28%;
  right: 44%;
  clip-path: polygon(0 78%, 28% 14%, 82% 12%, 100% 78%);
}

.vehicle-placeholder.pickup .wheel-left {
  left: 25%;
}

.vehicle-placeholder.pickup .wheel-right {
  right: 18%;
}

.car-body,
.car-roof,
.car-wheel {
  position: absolute;
  display: block;
}

.car-body {
  left: 18%;
  right: 16%;
  top: 48%;
  height: 22%;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, #f4f5f7, #747985 72%, #2b2f37);
  clip-path: polygon(4% 46%, 16% 20%, 70% 18%, 92% 42%, 98% 72%, 0 72%);
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.5));
}

.car-roof {
  left: 32%;
  right: 30%;
  top: 35%;
  height: 26%;
  border-radius: 44% 48% 8px 8px;
  background: linear-gradient(180deg, rgba(227, 6, 19, 0.95), rgba(94, 2, 8, 0.98));
  clip-path: polygon(0 78%, 24% 16%, 74% 10%, 100% 78%);
}

.car-wheel {
  top: 62%;
  width: 12%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #cdd1d8 0 20%, #0b0c10 22% 58%, #494d56 60% 68%, #0b0c10 70%);
  border: 2px solid rgba(255, 255, 255, 0.16);
}

.wheel-left {
  left: 28%;
}

.wheel-right {
  right: 24%;
}

.vehicle-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.vehicle-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.vehicle-title-row h3 {
  margin-bottom: 0;
  font-size: 1.36rem;
}

.tag {
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.14);
  border: 1px solid rgba(227, 6, 19, 0.48);
  color: #ffb5ba;
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 800;
}

.tag-electric {
  background: rgba(122, 255, 222, 0.1);
  border-color: rgba(122, 255, 222, 0.45);
  color: #b6fff0;
}

.vehicle-content p,
.benefit-card p,
.step-card p {
  color: var(--muted);
}

.vehicle-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.vehicle-content li {
  position: relative;
  color: var(--silver);
  padding-left: 18px;
  font-size: 0.95rem;
}

.vehicle-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 10px rgba(227, 6, 19, 0.8);
}

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

.benefit-card {
  padding: 24px;
  border-top: 3px solid rgba(227, 6, 19, 0.68);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: rgba(227, 6, 19, 0.13);
  color: var(--red-2);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.benefit-card h3,
.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

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

.step-card {
  position: relative;
  min-height: 250px;
  padding: 26px 22px;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto -20% 0 auto;
  width: 65%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red));
  transform: skewX(-24deg);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--red);
  color: var(--text);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  box-shadow: var(--glow);
}

.faq {
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 18%, rgba(227, 6, 19, 0.12), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 42px 42px, 42px 42px;
}

.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

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

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), transparent 42%),
    rgba(12, 13, 17, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(227, 6, 19, 0.42);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32), 0 0 22px rgba(227, 6, 19, 0.12);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 0 22px;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: rgba(227, 6, 19, 0.14);
  color: var(--red-2);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background:
    linear-gradient(115deg, rgba(227, 6, 19, 0.94), rgba(118, 2, 11, 0.94) 44%, rgba(5, 5, 6, 0.98)),
    #99020d;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(112deg, transparent 0 34px, rgba(255, 255, 255, 0.1) 35px, transparent 36px);
  opacity: 0.34;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  margin-bottom: 8px;
}

.cta-inner p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band .section-kicker {
  color: var(--text);
}

.cta-band .section-kicker::before {
  background: var(--text);
  box-shadow: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 32px 0;
}

.contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  padding: 16px 18px;
}

.contact-list span {
  color: var(--muted);
  font-weight: 700;
}

.contact-list strong {
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 4vw, 30px);
  border-color: rgba(227, 6, 19, 0.32);
}

.contact-form h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.contact-form label {
  color: var(--silver);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: #0b0c10;
  color: var(--text);
  padding: 13px 14px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(227, 6, 19, 0.78);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.16);
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--red);
  background:
    radial-gradient(circle at 0% 28%, rgba(227, 6, 19, 0.25), transparent 28%),
    linear-gradient(180deg, #040405 0%, #08080a 46%, #030304 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(42deg, rgba(227, 6, 19, 0.18) 0 2%, transparent 2% 4%, rgba(227, 6, 19, 0.1) 4% 5%, transparent 5%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 100%, 38px 38px, 38px 38px;
  opacity: 0.48;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(320px, 1.05fr) minmax(330px, 1.05fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: start;
  padding: clamp(24px, 3vw, 38px) 0 clamp(22px, 2.8vw, 34px);
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  width: min(170px, 58vw);
  height: 94px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 12px;
}

.footer-brand h2,
.footer-benefits h2,
.footer-contact-panel h2 {
  margin: 0;
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.22rem, 1.55vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-title-line {
  display: block;
  width: 50px;
  height: 3px;
  margin: 12px 0 18px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(227, 6, 19, 0.5);
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.48;
}

.footer-benefits,
.footer-contact-panel {
  min-height: 100%;
  padding-left: clamp(22px, 2.8vw, 40px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-benefit-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
}

.footer-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.035), 0 18px 35px rgba(0, 0, 0, 0.22);
}

.footer-feature-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-benefit-item strong,
.footer-benefit-item small {
  display: block;
}

.footer-benefit-item strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.footer-benefit-item small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.32;
}

.footer-cta-list {
  display: grid;
  gap: 12px;
}

.footer-cta {
  display: flex;
  align-items: center;
  min-height: 58px;
  gap: 14px;
  border-radius: 8px;
  padding: 0 18px;
  color: var(--text);
  font-size: clamp(0.94rem, 1.2vw, 1.05rem);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.footer-cta img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-cta svg {
  width: 20px;
  height: 20px;
  margin-left: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-cta-primary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 0 0 1px rgba(227, 6, 19, 0.45), 0 20px 48px rgba(227, 6, 19, 0.32);
}

.footer-cta-primary:hover {
  box-shadow: 0 0 0 1px rgba(227, 6, 19, 0.7), 0 24px 58px rgba(227, 6, 19, 0.42);
}

.footer-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.45);
}

.footer-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 46px rgba(255, 255, 255, 0.08);
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.footer-contact-data {
  display: grid;
  gap: 8px;
}

.footer-contact-data span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: clamp(0.94rem, 1.1vw, 1rem);
  font-weight: 800;
}

.footer-contact-data img {
  width: 21px;
  height: 21px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  object-fit: contain;
}

.footer-social-actions {
  display: flex;
  gap: 10px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-social-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.46);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 46px rgba(255, 255, 255, 0.08);
}

.footer-social-card img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.footer-bottom-band {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 6, 0.82);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 48px rgba(37, 211, 102, 0.48);
}

.floating-whatsapp span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.72);
}

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

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

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

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

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

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

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

  .argo-floating {
    min-height: 360px;
    justify-content: center;
  }

  .argo-cutout {
    width: min(720px, 108%);
    transform: none;
  }

  .tech-panel {
    min-height: 450px;
  }

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

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

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    width: 122px;
    height: 50px;
  }

  .brand img {
    height: 100%;
  }

  .menu-toggle {
    display: block;
    z-index: 102;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 12px auto 12px;
    z-index: 101;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(227, 6, 19, 0.36);
    border-radius: var(--radius);
    background: rgba(9, 10, 13, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-radius: var(--radius);
    padding: 0 14px;
    font-size: 1rem;
  }

  .main-nav a:hover {
    background: rgba(227, 6, 19, 0.12);
  }

  .hero {
    padding: 112px 0 64px;
  }

  .hero-argo {
    padding: 108px 0 38px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

  .hero-highlights,
  .vehicle-grid,
  .benefit-grid,
  .steps,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .argo-frame {
    min-height: 360px;
  }

  .argo-car-image {
    min-height: 360px;
  }

  .argo-showcase .visual-whatsapp {
    justify-self: stretch;
    width: 100%;
  }

  .argo-floating {
    min-height: 330px;
  }

  .argo-cutout {
    width: min(660px, 110%);
  }

  .rental-flow {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-benefits,
  .footer-contact-panel {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .footer-social-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
    text-align: center;
  }

  .tech-panel {
    min-height: auto;
    padding: 16px;
  }

  .argo-title {
    font-size: clamp(2.36rem, 11vw, 3.75rem);
  }

  .argo-frame {
    min-height: 280px;
  }

  .argo-car-image {
    min-height: 280px;
    object-position: 48% center;
  }

  .model-pill {
    top: 12px;
    left: 12px;
    padding: 7px 11px;
    font-size: 0.88rem;
  }

  .argo-card-note {
    right: 12px;
    bottom: 12px;
    max-width: 190px;
    padding: 10px 11px;
  }

  .argo-floating {
    min-height: 230px;
  }

  .argo-cutout {
    width: min(500px, 116%);
  }

  .rental-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-visual {
    min-height: 322px;
  }

  .logo-orbit {
    top: 30%;
    width: min(300px, 82%);
  }

  .availability-pill {
    top: 12px;
    right: 12px;
    min-width: 92px;
    padding: 8px 10px;
  }

  .availability-pill strong {
    font-size: 1.55rem;
  }

  .status-chip {
    max-width: calc(50% - 22px);
    padding: 8px 9px;
  }

  .status-chip strong {
    font-size: 0.78rem;
  }

  .status-chip span {
    font-size: 0.68rem;
  }

  .chip-left,
  .chip-right {
    bottom: 74px;
  }

  .chip-left {
    left: 12px;
  }

  .chip-right {
    right: 12px;
  }

  .hero-car {
    left: 4%;
    right: 4%;
    bottom: 28px;
  }

  .rental-flow {
    grid-template-columns: 1fr;
  }

  .visual-whatsapp {
    width: 100%;
    min-height: 52px;
    text-align: center;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 0 16px;
    font-size: 0.96rem;
  }

  .faq-item p {
    padding: 0 16px 18px;
  }

  .vehicle-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-list a {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .footer-main {
    padding: 30px 0 26px;
  }

  .footer-logo {
    width: min(150px, 64vw);
    height: 84px;
  }

  .footer-title-line {
    margin: 12px 0 16px;
  }

  .footer-benefit-item {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }

  .footer-feature-icon {
    width: 50px;
    height: 50px;
  }

  .footer-feature-icon svg {
    width: 27px;
    height: 27px;
  }

  .footer-cta {
    min-height: 58px;
    padding: 0 16px;
    gap: 12px;
  }

  .footer-cta img {
    width: 28px;
    height: 28px;
  }

  .footer-contact-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-social-actions {
    padding-left: 0;
    border-left: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
