:root {
  --bg: #07080a;
  --surface: #101216;
  --surface-2: #171a20;
  --surface-3: #20242c;
  --text: #f7f8fa;
  --muted: #b8bec8;
  --line: rgba(255, 255, 255, 0.13);
  --red: #f0142f;
  --red-2: #a9081e;
  --silver: #e6e8ed;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(120deg, rgba(240, 20, 47, 0.18), transparent 34rem),
    radial-gradient(circle at 78% 6%, rgba(255, 255, 255, 0.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--text);
  color: #111;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 62px;
  padding: 6px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: #000;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 132px;
}

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

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
}

.nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

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

.header-cta,
.button,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.header-cta {
  padding: 0 16px;
  background: var(--silver);
  color: #101216;
}

.hero,
.section,
.contact-section,
.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  min-height: calc(100vh - 62px);
  padding: 56px 0 38px;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 7vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.8vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.hero-text,
.section-heading p,
.copy-block p,
.steps p,
.vehicle-card p,
.feature-card p,
.company-data p,
.contact-copy p,
.video-card span,
.contact-card small {
  color: var(--muted);
}

.hero-text {
  max-width: 660px;
  font-size: 1.12rem;
}

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

.button {
  padding: 0 18px;
  border: 1px solid var(--line);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(180deg, var(--red), var(--red-2));
  color: white;
  box-shadow: 0 16px 38px rgba(240, 20, 47, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-panel {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 46%),
    var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(18px, 4vw, 34px);
}

.hero-logo {
  display: block;
  width: 100%;
  margin: 0 auto 24px;
  border-radius: 8px;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.panel-grid div,
.steps article,
.vehicle-card,
.feature-card,
.video-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.panel-grid div {
  min-height: 124px;
  padding: 16px;
}

.panel-grid strong,
.panel-grid span,
.video-card strong,
.video-card span,
.contact-card strong,
.contact-card span {
  display: block;
}

.panel-grid strong,
.contact-card strong {
  margin-bottom: 8px;
}

.panel-grid span {
  color: var(--muted);
}

.section {
  padding: clamp(46px, 8vw, 84px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.copy-block {
  border-left: 3px solid var(--red);
  padding-left: 22px;
  font-size: 1.05rem;
}

.copy-block p:last-child {
  margin-bottom: 0;
}

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

.steps,
.vehicle-grid,
.featured-grid,
.video-grid {
  display: grid;
  gap: 14px;
}

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

.steps article {
  min-height: 210px;
  padding: 22px;
}

.steps span,
.vehicle-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
}

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

.vehicle-card {
  min-height: 190px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(240, 20, 47, 0.12), transparent 52%),
    var(--surface-2);
}

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

.feature-card {
  overflow: hidden;
  min-height: 372px;
  padding: 16px;
}

.car-visual {
  height: 160px;
  margin: -2px -2px 18px;
  border-radius: 6px;
  background: #111319;
  overflow: hidden;
}

.car-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--silver);
  font-weight: 900;
}

.testimonials-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.video-card {
  padding: 12px;
}

.video-card button {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 15;
  margin-bottom: 14px;
  border: 0;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.62)),
    linear-gradient(145deg, #313640, #111319 58%, #07080a);
  cursor: pointer;
}

.video-card button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(240, 20, 47, 0.92);
}

.video-card button::after {
  content: "";
  position: absolute;
  left: calc(50% - 8px);
  top: calc(50% - 14px);
  border-left: 22px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.video-card strong {
  margin-bottom: 2px;
}

.company-data {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}

.company-data h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
}

.company-data p {
  margin-bottom: 4px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: stretch;
  padding: clamp(50px, 8vw, 90px) 0;
}

.contact-copy,
.contact-card {
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-copy {
  background:
    linear-gradient(140deg, rgba(240, 20, 47, 0.22), transparent 62%),
    var(--surface);
  border: 1px solid var(--line);
}

.contact-copy h2 {
  max-width: 760px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card span {
  font-size: 1.35rem;
  font-weight: 900;
}

.contact-card .button {
  width: 100%;
}

.group-button {
  min-height: 58px;
  font-size: 1.05rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12;
  min-height: 50px;
  padding: 0 18px;
  background: #22c55e;
  color: #061008;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-panel {
    display: block;
  }

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

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto;
    padding: 8px 16px 10px;
  }

  .brand {
    width: 126px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    width: min(100%, 280px);
  }

  .hero {
    padding-top: 34px;
  }

  .panel-grid,
  .steps,
  .vehicle-grid,
  .featured-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .company-data {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
  }
}
