:root {
  --bg: #08090c;
  --card: #12161f;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f3f5f7;
  --muted: rgba(243, 245, 247, 0.72);
  --gold: #d6bd8a;
  --gold-bg: rgba(176, 140, 77, 0.24);
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.navbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 1rem;
}

.navbar {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.46);
  padding: 0.75rem 1rem;
}

.brand strong {
  display: block;
  letter-spacing: 0.2em;
  font-size: 1rem;
}

.brand span {
  letter-spacing: 0.42em;
  font-size: 0.62rem;
  color: var(--muted);
}

.desktop-nav {
  display: none;
  gap: 1.2rem;
  font-size: 0.92rem;
  color: var(--muted);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.menu-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  display: grid;
  place-items: center;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 2px 0;
  transition: 0.25s;
}

.mobile-nav {
  display: none;
  width: min(1200px, calc(100% - 2rem));
  margin: 0.5rem auto 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.mobile-nav a:first-child {
  border-top: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-bg,
.cta-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.56));
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 30%, rgba(214, 189, 138, 0.2), transparent 45%),
    radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.1), transparent 35%);
}

.hero-content {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 5rem;
}

.trust-badge {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.85rem;
  font-size: 0.7rem;
}

.hero h1,
.section-title {
  margin: 0.9rem 0 0;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.2rem, 7vw, 5rem);
  max-width: 800px;
}

.hero-sub,
.section-sub {
  color: var(--muted);
  max-width: 700px;
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  border: 1px solid;
  padding: 0.8rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s, background 0.25s;
}

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

.btn.small {
  padding: 0.62rem 1rem;
}

.btn-gold {
  border-color: rgba(214, 189, 138, 0.7);
  color: #f4e7c8;
  background: var(--gold-bg);
}

.btn-gold:hover {
  background: rgba(176, 140, 77, 0.38);
}

.btn-glass {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0f1219;
  padding: 1rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-grid > div {
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
  padding: 0.8rem 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.section {
  padding: 4.4rem 0;
}

.section.pt-0 {
  padding-top: 0;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.car-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  transition: transform 0.3s;
}

.car-card:hover {
  transform: translateY(-6px);
}

.img-wrap {
  overflow: hidden;
  height: 220px;
}

.img-wrap img,
.img-card img,
.big-shot img,
.mini-shots img,
.slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-wrap img {
  transition: transform 0.4s;
}

.car-card:hover .img-wrap img {
  transform: scale(1.06);
}

.card-body {
  padding: 1rem;
}

.card-body h3 {
  margin: 0;
  font-size: 1.35rem;
}

.card-body p {
  margin: 0.4rem 0;
  color: var(--muted);
}

.card-body h4 {
  margin: 0.5rem 0;
  color: var(--gold);
  font-size: 1.4rem;
}

.location {
  font-size: 0.9rem;
}

.dual-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.glass-box,
.feature {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.glass-box {
  padding: 1.1rem;
}

.filters {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

select,
input,
textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(214, 189, 138, 0.24);
}

.feature {
  padding: 1rem;
}

.feature h4 {
  margin: 0;
}

.feature p {
  color: var(--muted);
}

.gallery-grid {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.8rem;
}

.big-shot,
.mini-shots button,
.slider-track img {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  padding: 0;
}

.big-shot {
  position: relative;
  height: 420px;
}

.big-shot span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.48);
  padding: 0.42rem 0.7rem;
}

.mini-shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.mini-shots button {
  height: 140px;
}

.slider-track {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
}

.slider-track img {
  min-width: 180px;
  height: 90px;
}

.two-col {
  display: grid;
  gap: 1rem;
}

.img-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  min-height: 330px;
}

.accent {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.84rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.rating strong {
  font-size: 2.8rem;
  color: var(--gold);
}

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

.review-track {
  display: flex;
  overflow-x: auto;
  gap: 0.8rem;
  margin-top: 1rem;
}

.review-track article {
  min-width: 280px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

.steps {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.steps article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.22);
}

.steps span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(214, 189, 138, 0.7);
  background: rgba(214, 189, 138, 0.16);
  font-weight: 700;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}

.shine {
  position: absolute;
  inset: -20% auto -20% -30%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  animation: sweep 5.5s infinite ease-in-out;
}

@keyframes sweep {
  0% {
    left: -35%;
  }
  70%,
  100% {
    left: 110%;
  }
}

.cta-band .content {
  position: relative;
  padding: 5rem 0;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
}

label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

iframe {
  border: 1px solid var(--line);
  width: 100%;
  height: 250px;
  border-radius: 14px;
  margin-top: 1rem;
}

.notice {
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  margin-top: 1rem;
}

.success {
  background: rgba(46, 160, 67, 0.24);
  border: 1px solid rgba(46, 160, 67, 0.5);
}

.error {
  background: rgba(225, 84, 84, 0.2);
  border: 1px solid rgba(225, 84, 84, 0.52);
}

footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem 0 5rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.footer-grid p,
.footer-grid a {
  display: block;
  color: var(--muted);
  margin: 0.38rem 0;
}

.copyright {
  text-align: center;
  margin-top: 1.6rem;
  color: rgba(243, 245, 247, 0.55);
  font-size: 0.8rem;
}

.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.6rem;
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.84);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  place-items: center;
  padding: 1rem;
  z-index: 60;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 16px;
}

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

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

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

  .gallery-grid {
    grid-template-columns: 1.6fr 1fr;
  }

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

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

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

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

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

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

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

@media (min-width: 900px) {
  .mobile-sticky {
    display: none;
  }

  footer {
    padding-bottom: 2.2rem;
  }
}
