:root {
  --black: #181818;
  --charcoal: #363636;
  --text: #4f4f4f;
  --muted: #7f8185;
  --paper: #fafafa;
  --panel: #f4f4f4;
  --gold: #b0a477;
  --olive: #6f6a56;
  --white: #f4f4f4;
  --container: 1260px;
  --body: "Roboto", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  overflow-x: hidden;
}

body.is-scrolled .site-header {
  top: 16px;
  height: 80px;
  padding: 16px 40px;
  border-color: transparent;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
  backdrop-filter: none;
}

body.is-scrolled .site-header .logo {
  width: 216px;
  height: 48px;
  filter: brightness(0);
}

body.is-scrolled .header-link-hero {
  display: none;
}

body.is-scrolled .header-link-sticky {
  display: inline-flex;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), calc(100vw - 48px));
  margin: 0 auto;
}

.section-light {
  background: var(--paper);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 24px;
  left: 50%;
  width: min(var(--container), calc(100vw - 48px));
  height: 74px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: top .2s ease, height .2s ease, padding .2s ease, background .2s ease, box-shadow .2s ease;
}

.logo {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 280px;
  height: 74px;
  overflow: hidden;
}

.logo img,
.footer-logo,
.why-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 10px 24px;
  border: 1px solid var(--white);
  border-radius: 8px;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.18;
  text-decoration: none;
}

.header-link-sticky {
  display: none;
  gap: 10px;
  border-color: var(--text);
  color: var(--text);
}

.header-link-sticky img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(29%) sepia(0%) saturate(0%) hue-rotate(171deg) brightness(97%) contrast(85%);
}

.hero {
  position: relative;
  min-height: 1024px;
  overflow: hidden;
  background: #050505;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(126deg, rgba(0, 0, 0, .8) 6.7%, rgba(0, 0, 0, 0) 36.5%),
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)),
    url("assets/hero-bg.png") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 1024px;
}

.hero-copy {
  width: min(751px, 62vw);
  padding-top: 285px;
}

.kicker {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .kicker {
  color: var(--white);
  font-size: 24px;
  font-weight: 400;
}

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

.hero h1 {
  margin: 36px 0 27px;
  color: var(--white);
  font-size: 64px;
  font-weight: 200;
  line-height: 1.17;
  letter-spacing: 0;
}

.hero h1 strong {
  font-weight: 500;
}

.hero-subtitle {
  color: var(--white);
  font-size: 24px;
  font-weight: 200;
  line-height: 1.16;
}

.hero-subtitle strong {
  font-weight: 400;
}

.hero-card {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: 380px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(2px);
}

.hero-card > p {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.16;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
  padding: 16px 24px;
  border: 0;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.16;
  text-decoration: none;
  cursor: pointer;
}

.button img {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.button-gold {
  background: var(--gold);
  color: var(--black);
}

.button-dark {
  background: var(--text);
  color: var(--white);
}

.button-whatsapp {
  min-height: 48px;
  width: 100%;
  padding-block: 10px;
  font-weight: 400;
}

.button-whatsapp img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(0%) saturate(0%) hue-rotate(227deg) brightness(99%) contrast(96%);
}

.button-arrow img {
  transform: rotate(45deg);
}

.button-arrow.full {
  width: 100%;
}

.button.compact {
  min-height: 48px;
  font-size: 20px;
  font-weight: 500;
}

.hero-benefits {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}

.hero-benefits img {
  width: 20px;
  height: 20px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 35;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: #067c14;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .28);
  transition: transform .18s ease, box-shadow .18s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, .34);
}

.floating-whatsapp img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.features {
  padding: 118px 0 134px;
}

.section-heading {
  width: min(1045px, 100%);
}

.section-heading .kicker {
  margin-bottom: 24px;
}

.section-heading h2,
.gallery-title h2,
.trade h2,
.faq h2,
.contact h2 {
  color: var(--text);
  font-size: 64px;
  font-weight: 300;
  line-height: 1.17;
  letter-spacing: 0;
}

.section-heading h2 {
  margin-bottom: 80px;
}

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

.feature-card {
  position: relative;
  min-height: 428px;
  overflow: hidden;
  border-radius: 10px;
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-wide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(116deg, #000 0.8%, rgba(0, 0, 0, 0) 98%);
}

.feature-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000);
}

.feature-card > div {
  position: relative;
  z-index: 1;
}

.feature-card-wide > div {
  width: min(496px, calc(100% - 80px));
  padding: 40px;
  color: var(--white);
}

.feature-card h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.feature-card-wide h3 {
  width: 716px;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 500;
  white-space: nowrap;
}

.feature-card p {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.feature-outline {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  border: 2px solid var(--gold);
  background: var(--panel);
}

.feature-solid {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 39px;
  background: var(--olive);
  color: var(--white);
}

.feature-outline p,
.feature-solid p {
  color: inherit;
}

.feature-contact {
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.feature-label {
  margin-bottom: 16px;
  color: #f0eff9;
  font-size: 16px !important;
  font-weight: 300 !important;
}

.feature-contact h3 {
  margin-bottom: 16px;
  color: #f0eff9;
  font-size: 24px;
  font-weight: 400;
}

.gallery-intro {
  position: relative;
  z-index: 2;
  padding: 41px 0 0;
}

.gallery-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 80px;
}

.gallery-title h2 {
  width: min(756px, 100%);
  margin: 0;
}

.gallery-title strong {
  font-weight: 500;
}

.gallery-title img {
  width: 100px;
  height: 98px;
  object-fit: cover;
  object-position: left center;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .18));
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.gallery-row img {
  width: 100%;
  height: 479px;
  border-radius: 8px;
  object-fit: cover;
}

.offer {
  position: relative;
  z-index: 1;
  min-height: 800px;
  margin-top: -300px;
  padding: 380px 0 112px;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 614px) minmax(0, 541px);
  justify-content: space-between;
  gap: 80px;
}

.offer h2 {
  margin: 16px 0 0;
  color: var(--white);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.16;
}

.offer h2 strong {
  color: var(--gold);
  font-weight: 600;
}

.offer-actions {
  display: grid;
  gap: 64px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  padding: 10px;
  border-bottom: 1px solid var(--muted);
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
}

.check-list img {
  width: 24px;
  height: 24px;
}

.trade {
  position: relative;
  min-height: 719px;
  overflow: hidden;
}

.trade-bg {
  position: absolute;
  inset: 80px 0 0;
  height: 639px;
  background:
    linear-gradient(180deg, var(--paper) 0%, rgba(250, 250, 250, 0) 52%),
    url("assets/used-car-bg.png") center bottom / cover no-repeat;
}

.trade-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-top: 72px;
}

.trade-copy {
  width: min(539px, 100%);
}

.trade .kicker,
.faq .kicker {
  margin-bottom: 16px;
}

.trade h2 {
  margin: 0 0 32px;
  font-size: 48px;
}

.trade p:not(.kicker) {
  margin-bottom: 64px;
  color: var(--text);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.16;
}

.trade p strong {
  font-weight: 500;
}

.trade .button {
  min-height: 65px;
  width: 281px;
}

.trade-logo {
  width: 216px;
  height: 48px;
  object-fit: cover;
  filter: brightness(0);
}

.faq {
  padding: 120px 0 176px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 506px) minmax(0, 722px);
  gap: 32px;
}

.faq-copy h2 {
  margin: 0 0 40px;
  font-size: 40px;
  line-height: 1.17;
}

.faq-copy h2 strong {
  font-weight: 500;
}

.faq-copy img {
  width: 506px;
  aspect-ratio: 970 / 547;
  object-fit: contain;
}

.faq-panel {
  display: grid;
  align-content: start;
  gap: 64px;
}

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

.faq-item {
  border-radius: 10px;
  background: var(--panel);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 32px 72px 32px 24px;
  color: var(--text);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.16;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 3px solid #111;
  border-bottom: 3px solid #111;
  transform: translateY(-65%) rotate(45deg);
}

.faq-item[open] summary {
  padding-bottom: 16px;
}

.faq-item[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-item p {
  margin: 0 24px 24px;
  padding-top: 24px;
  border-top: 1px solid #fff;
  color: var(--text);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.16;
}

.why {
  position: relative;
  min-height: 1023px;
  overflow: hidden;
  border-radius: 16px;
}

.why-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #363636 100%),
    url("assets/purchase-bg.png") center / cover no-repeat;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 491px) minmax(0, 617px);
  justify-content: space-between;
  gap: 80px;
  padding-top: 549px;
}

.why-logo {
  width: 210px;
  height: 55px;
  margin-bottom: 24px;
}

.why h2 {
  margin: 0 0 116px;
  color: var(--white);
  font-size: 64px;
  font-weight: 300;
  line-height: 1.17;
}

.why h2 strong {
  font-weight: 500;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.text-link.dark {
  color: var(--text);
}

.why-list {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(2px);
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
}

.why-list img {
  width: 24px;
  height: 24px;
}

.contact {
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 337px minmax(0, 698px);
  justify-content: space-between;
  gap: 96px;
}

.contact-logo {
  width: 216px;
  height: 48px;
  margin-bottom: 24px;
  object-fit: cover;
  filter: brightness(0);
}

.contact p {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.18;
}

.contact p + .text-link {
  margin-top: 24px;
}

.contact h2 {
  margin: 0 0 24px;
  font-size: 48px;
}

.contact h2 strong {
  font-weight: 600;
}

.contact h2 + p {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 400;
}

.contact .button {
  width: 427px;
}

.site-footer {
  position: relative;
  padding: 70px 0 36px;
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 385px) minmax(0, 448px);
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-logo {
  width: 364px;
  height: 96px;
  margin-bottom: 24px;
}

.footer-main h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
}

.footer-main p {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.16;
}

.footer-button {
  width: 385px;
  margin-top: 24px;
}

.footer-info {
  padding-top: 5px;
}

.socials {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.socials a,
.socials img {
  width: 32px;
  height: 32px;
}

.footer-place {
  margin-bottom: 14px !important;
  font-weight: 400 !important;
}

.footer-info p:last-child {
  font-size: 16px;
}

.scroll-top {
  position: absolute;
  right: 0;
  top: -30px;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .25);
  cursor: pointer;
}

.scroll-top img {
  width: 64px;
  height: 64px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 244, 244, .35);
}

.footer-bottom p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
}

@media (max-width: 1180px) {
  .hero-copy {
    width: 64vw;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-card {
    width: 350px;
  }

  .feature-card h3 {
    font-size: 34px;
  }

  .why-grid,
  .offer-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    padding-top: 220px;
  }

  .why h2 {
    margin-bottom: 48px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    width: calc(100vw - 32px);
    height: 58px;
    top: 16px;
  }

  .logo,
  body.is-scrolled .site-header .logo {
    width: 168px;
    height: 44px;
  }

  .header-link {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .header-link-sticky {
    font-size: 0;
    gap: 0;
  }

  .header-link-sticky img {
    width: 22px;
    height: 22px;
  }

  body.is-scrolled .site-header {
    height: 64px;
    padding: 10px 16px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-inner {
    min-height: 860px;
  }

  .hero-copy {
    width: 100%;
    padding-top: 158px;
  }

  .hero .kicker {
    font-size: 18px;
  }

  .hero h1 {
    max-width: 680px;
    margin-top: 28px;
    font-size: clamp(42px, 10vw, 64px);
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-card {
    right: 0;
    bottom: 32px;
    left: 0;
    width: min(420px, 100%);
    margin: 0 auto;
  }

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

  .floating-whatsapp img {
    width: 36px;
    height: 36px;
  }

  .features,
  .faq,
  .contact {
    padding: 72px 0;
  }

  .section-heading h2,
  .gallery-title h2,
  .why h2,
  .contact h2 {
    font-size: clamp(40px, 9vw, 56px);
  }

  .section-heading h2 {
    margin-bottom: 48px;
  }

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

  .feature-card-wide {
    grid-column: auto;
  }

  .feature-card {
    min-height: 360px;
  }

  .feature-outline,
  .feature-solid,
  .feature-contact {
    padding: 28px;
  }

  .feature-card-wide > div {
    width: 100%;
    padding: 28px;
  }

  .feature-card-wide h3 {
    width: auto;
    font-size: 38px;
    white-space: normal;
  }

  .feature-card p {
    font-size: 20px;
  }

  .gallery-title {
    align-items: flex-end;
    padding-bottom: 48px;
  }

  .gallery-intro {
    padding-top: 0;
  }

  .gallery-title img {
    width: 72px;
    height: 70px;
  }

  .gallery-row {
    display: flex;
    gap: 16px;
    padding-inline: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .gallery-row img {
    flex: 0 0 78vw;
    height: 420px;
    scroll-snap-align: center;
  }

  .offer {
    min-height: auto;
    margin-top: 0;
    padding: 72px 0;
  }

  .offer h2,
  .trade h2,
  .faq-copy h2 {
    font-size: clamp(34px, 8vw, 48px);
  }

  .check-list li {
    align-items: flex-start;
    font-size: 20px;
  }

  .trade {
    min-height: 620px;
  }

  .trade-bg {
    inset: 0;
    height: auto;
  }

  .trade-inner {
    padding-top: 56px;
  }

  .trade-logo {
    display: none;
  }

  .faq-copy img {
    width: 100%;
    max-width: 520px;
  }

  .faq-panel {
    gap: 32px;
  }

  .faq-item summary {
    padding: 24px 56px 24px 20px;
    font-size: 21px;
  }

  .why {
    min-height: auto;
    border-radius: 0 0 16px 16px;
  }

  .why-grid {
    padding: 190px 0 72px;
  }

  .why-list li {
    font-size: 20px;
  }

  .contact-grid,
  .footer-main {
    gap: 48px;
  }

  .contact .button,
  .footer-button {
    width: min(100%, 427px);
  }

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

  .scroll-top {
    top: -20px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .logo,
  body.is-scrolled .site-header .logo {
    width: 142px;
    height: 38px;
  }

  .header-link-hero {
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-inner {
    min-height: 820px;
  }

  .hero-copy {
    padding-top: 126px;
  }

  .hero h1 {
    font-size: 39px;
    line-height: 1.12;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-card > p {
    font-size: 21px;
  }

  .button {
    min-height: 56px;
    padding: 14px 18px;
    font-size: 19px;
  }

  .features {
    padding-top: 64px;
  }

  .section-heading h2,
  .gallery-title h2,
  .why h2,
  .contact h2 {
    font-size: 38px;
  }

  .feature-card h3,
  .feature-card-wide h3 {
    font-size: 32px;
  }

  .gallery-title {
    gap: 24px;
  }

  .gallery-title img {
    width: 56px;
    height: 55px;
  }

  .gallery-row img {
    flex-basis: 86vw;
    height: 360px;
  }

  .offer-grid {
    gap: 48px;
  }

  .trade {
    min-height: 700px;
  }

  .trade-bg {
    background-position: 58% bottom;
  }

  .trade-inner {
    display: block;
  }

  .trade-logo {
    margin: 24px 0 0 auto;
  }

  .trade p:not(.kicker) {
    margin-bottom: 40px;
    font-size: 20px;
  }

  .why-grid {
    padding-top: 160px;
  }

  .why-list li {
    align-items: flex-start;
    padding: 18px;
    font-size: 18px;
  }

  .contact {
    padding: 72px 0 84px;
  }

  .contact h2 + p {
    font-size: 20px;
  }

  .site-footer {
    padding-top: 64px;
  }

  .footer-logo {
    width: 280px;
    height: 74px;
  }

  .footer-main p {
    font-size: 20px;
  }

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