:root {
  --black: #0a0a0a;
  --panel: #0f0f0f;
  --tile: #141414;
  --tile-hover: #161616;
  --hairline-1: #1e1e1e;
  --hairline-2: #2a2a2a;
  --yellow: #F5C400;
  --whatsapp: #25D366;
  --whatsapp-hover: #1DA851;
  --white: #fff;
  --green-text: #FBFBFB;
  --body-grey: #cfcfcf;
  --muted-1: #aaa;
  --muted-2: #888;
  --muted-3: #666;
  --nav-link: #ccc;
  --page-pad: clamp(20px, 5vw, 64px);
  --section-pad: clamp(56px, 8vw, 100px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 72px;
}

a {
  color: var(--yellow);
  text-decoration: none;
}
a:hover {
  color: var(--white);
}

img {
  max-width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--page-pad);
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline-1);
}

.site-header__logo {
  display: flex;
  align-items: center;
}
.site-header__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.site-header__nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.site-header__nav a {
  color: var(--nav-link);
}
.site-header__nav a:hover {
  color: var(--yellow);
}

@media (max-width: 760px) {
  .site-header__nav {
    display: none;
  }
}

/* Buttons */
.btn-call {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--black);
  padding: 16px 26px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: .5px;
  min-height: 56px;
  transition: background .15s ease;
}
.btn-call:hover {
  background: var(--yellow);
  color: var(--black);
}

.btn-call--header {
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 20px;
  min-height: 44px;
  gap: 10px;
  white-space: nowrap;
}

.btn-call--hero {
  box-shadow: 0 8px 28px rgba(255, 255, 255, .18);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--whatsapp);
  color: var(--green-text);
  padding: 16px 26px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: .5px;
  min-height: 56px;
  transition: background .15s ease;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  color: var(--green-text);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 40px;
  align-items: center;
  padding: clamp(48px, 8vw, 110px) var(--page-pad) clamp(56px, 8vw, 120px);
  background: linear-gradient(120deg, #0a0a0a 0%, #141414 55%, #0a0a0a 100%);
  overflow: hidden;
}

.hero__ring {
  position: absolute;
  right: -6%;
  top: -20%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 80px solid var(--yellow);
  opacity: .06;
  pointer-events: none;
}

.hero__stripe {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #F5C400 0 55%, #0a0a0a 55% 58%, #F5C400 58% 100%);
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 640px;
}

.hero__content h1 {
  margin: 0;
}
.hero__content h1 img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
}

.hero__subline {
  margin: 0;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e6e6e6;
  text-wrap: pretty;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ddd;
}
.hero__bullets span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__bullets .dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .hero__buttons {
    flex-direction: column;
  }
  .btn-call--hero,
  .btn-whatsapp--hero {
    width: 100%;
    justify-content: center;
    font-size: 20px;
    white-space: nowrap;
    padding: 14px 20px;
  }
  .hero__bullets {
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 1px;
  }
  .hero__bullets span {
    align-items: flex-start;
  }
  .hero__bullets .dot {
    margin-top: 6px;
  }
}

.hero__media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__frame {
  position: relative;
  aspect-ratio: 3 / 2;
  width: 100%;
  max-height: 420px;
  border-radius: 14px;
  background: #1a1a1a;
  border: 1px solid var(--hairline-2);
  overflow: hidden;
  transform: skewY(-2deg);
}
.hero__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__script {
  align-self: flex-end;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 48px);
  color: var(--yellow);
  transform: rotate(-4deg);
  padding-right: 16px;
}

/* Trust strip */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: #1a1a1a;
  border-bottom: 1px solid var(--hairline-1);
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px clamp(20px, 3vw, 40px);
  background: var(--panel);
}
.trust__item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
}

/* Section title */
.section-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 44px;
}
.section-title__line {
  flex: 1 1 24px;
  min-width: 24px;
  height: 2px;
  background: var(--yellow);
}
.section-title h2 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 36px);
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--yellow);
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .section-title {
    gap: 12px;
  }
  .section-title h2 {
    font-size: 5.6vw;
    letter-spacing: 3px;
  }
}

/* Services */
.services {
  padding: var(--section-pad) var(--page-pad);
  background: var(--black);
}

.services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
}

.services__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 36px 20px;
  background: var(--tile);
  text-align: center;
  min-height: 200px;
  flex: 1 1 200px;
  max-width: 280px;
  transition: background .15s ease;
}
.services__tile:hover {
  background: var(--tile-hover);
}

.services__icon {
  display: block;
  width: 96px;
  height: 96px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 600px) {
  .services__tile {
    flex: 1 1 calc(50% - 2px);
    max-width: calc(50% - 2px);
    min-height: 160px;
    padding: 24px 14px;
    gap: 12px;
  }
  .services__icon {
    width: 72px;
    height: 72px;
  }
  .services__label {
    font-size: 19px;
  }
}

.services__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  text-wrap: balance;
}

/* How it works */
.how {
  padding: var(--section-pad) var(--page-pad);
  background: var(--panel);
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 24px;
}

.how__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  background: var(--black);
  border-top: 4px solid var(--yellow);
}

.how__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 64px;
  line-height: .8;
  color: var(--yellow);
}

.how__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.how__card p {
  margin: 0;
  color: var(--body-grey);
  line-height: 1.55;
  font-size: 16px;
  text-wrap: pretty;
}

/* Vehicles */
.vehicles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 48px;
  align-items: center;
  padding: var(--section-pad) var(--page-pad);
  background: var(--yellow);
  color: var(--black);
}

.vehicles__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vehicles__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.vehicles__copy h2 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 112px);
  line-height: .88;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.vehicles__copy p {
  margin: 0;
  max-width: 460px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  text-wrap: pretty;
}

.vehicles__frame {
  aspect-ratio: 3 / 2;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--black);
  position: relative;
}
.vehicles__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Coverage */
.coverage {
  padding: var(--section-pad) var(--page-pad);
  background: var(--panel);
}

.coverage__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 40px;
  align-items: center;
}

.coverage__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coverage__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}
.coverage__heading h2 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

.coverage__copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--body-grey);
  max-width: 520px;
  text-wrap: pretty;
}

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

.coverage__cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 18px;
  background: var(--black);
  border-top: 4px solid var(--yellow);
  text-align: center;
  min-width: 0;
}

.coverage__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  overflow-wrap: break-word;
}

.coverage__note {
  font-size: 13px;
  color: var(--muted-1);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .coverage__cell {
    padding: 18px 6px;
  }
  .coverage__name {
    font-size: 14px;
    letter-spacing: 0;
  }
  .coverage__note {
    font-size: 10px;
  }
}

/* Callback */
.callback {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 48px;
  align-items: start;
  padding: var(--section-pad) var(--page-pad);
  background: var(--black);
}

.callback__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.callback__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
}

.callback__copy h2 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(44px, 6vw, 80px);
  line-height: .9;
  text-transform: uppercase;
}

.callback__copy p {
  margin: 0;
  max-width: 440px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--body-grey);
  text-wrap: pretty;
}

.callback__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 32px;
  background: var(--tile);
  border-top: 4px solid var(--yellow);
}

@media (max-width: 480px) {
  .callback__form {
    grid-template-columns: 1fr;
  }
}

.callback__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-1);
}

.callback__field--full {
  grid-column: 1 / -1;
}

.callback__form input,
.callback__form textarea {
  min-height: 48px;
  padding: 0 14px;
  background: var(--black);
  border: 1px solid var(--hairline-2);
  border-radius: 6px;
  color: var(--white);
  font: 500 16px 'Barlow', sans-serif;
  outline: none;
}
.callback__form textarea {
  padding: 12px 14px;
  resize: vertical;
  min-height: unset;
}
.callback__form input:focus,
.callback__form textarea:focus {
  border-color: var(--yellow);
}

.callback__error {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--body-grey);
  font-size: 14px;
}

.callback__submit {
  grid-column: 1 / -1;
  min-height: 56px;
  background: var(--yellow);
  color: var(--black);
  border: 0;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .15s ease;
}
.callback__submit:hover {
  background: var(--white);
}

.callback__success {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 32px;
  background: var(--tile);
  border-top: 4px solid var(--yellow);
}
.callback__success-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 34px;
  text-transform: uppercase;
  color: var(--yellow);
}
.callback__success-sub {
  color: var(--body-grey);
  font-size: 16px;
}

/* CTA */
.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(40px, 6vw, 72px) var(--page-pad);
  background: linear-gradient(100deg, #F5C400 0 62%, #0a0a0a 62%);
}

.cta__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--black);
}

.cta__headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1;
  text-transform: uppercase;
}

.cta__tag {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 900px) {
  .cta {
    flex-direction: column;
    align-items: stretch;
    background: var(--yellow);
  }
  .cta__buttons {
    flex-direction: column;
  }
  .cta__buttons a {
    width: 100%;
    justify-content: center;
  }
}

.btn-call--cta {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn-call--cta:hover {
  background: var(--white);
  color: var(--black);
}

.btn-whatsapp--cta {
  background: var(--whatsapp);
  color: var(--black);
}
.btn-whatsapp--cta:hover {
  background: var(--whatsapp-hover);
  color: var(--black);
}

/* Footer */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px var(--page-pad);
  background: var(--black);
  border-top: 1px solid var(--hairline-1);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-2);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-footer__brand img {
  height: 32px;
  width: auto;
}

.site-footer a {
  color: var(--yellow);
}

.site-footer__credit {
  flex-basis: 100%;
  text-align: center;
  color: var(--muted-3);
  text-transform: none;
  letter-spacing: .5px;
}
.site-footer__credit a {
  color: var(--muted-2);
}
.site-footer__credit a:hover {
  color: var(--yellow);
}

/* Mobile CTA bar */
.mobile-cta {
  display: none;
}

@media (max-width: 760px) {
  .mobile-cta {
    display: grid;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    grid-template-columns: 1fr 1fr;
    height: 64px;
    border-top: 1px solid var(--hairline-1);
  }
  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: .5px;
  }
  .mobile-cta a:first-child {
    background: var(--white);
    color: var(--black);
  }
  .mobile-cta a:last-child {
    background: var(--whatsapp);
    color: var(--black);
  }
  body {
    padding-bottom: 64px;
  }
}
