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

:root {
  --green:  #3cb98a;
  --pink:   #e87eb4;
  --navy:   #1b3564;
  --blue:   #1a6fd4;
  --black:  #111;
  --white:  #fff;
  --border: #c8e8da;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--white); color: var(--green); -webkit-font-smoothing: antialiased; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; }

/* ── NAV ─────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  vertical-align: middle;
  padding: 0 40px; height: 120px;
  border-bottom: 1px solid #eee;
}
.nav-logo img { height: 78px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--black); font-size: 0.88rem; font-weight: 400; letter-spacing: 0.02em; transition: color .2s; }
.nav-links a:hover { color: var(--green); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; }

/* Mobile overlay */
.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: var(--white); flex-direction: column;
  align-items: center; justify-content: center; gap: 44px;
}
.mob-menu.open { display: flex; }
.mob-menu a { color: var(--green); font-size: 1.9rem; font-weight: 300; letter-spacing: 0.03em; transition: opacity .15s; }
.mob-menu a:hover { opacity: .7; }
.mob-logo { position: absolute; top: 14px; left: 20px; }
.mob-logo img { height: 52px; }
.mob-close {
  position: absolute; top: 16px; right: 16px;
  width: 50px; height: 50px; border: 2px solid var(--green);
  background: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--green);
}

/* ── HERO ─────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 40px; align-items: start;
  max-width: 1180px; margin: 0 auto;
  padding: 40px 40px 0;
}

.car-wrap { position: relative; }
.car-main {
  position: relative; overflow: hidden; border-radius: 4px;
  background: #f0ece5; aspect-ratio: 0.9;
}
.car-main img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .5s ease;
}
.car-main img.active { opacity: 1; }
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; z-index: 2; border: none; cursor: pointer;
  background: rgba(190,190,190,.6); color: #333; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.car-btn:hover { background: rgba(100,100,100,.75); }
.car-btn.prev { left: 0; border-radius: 0 3px 3px 0; }
.car-btn.next { right: 0; border-radius: 3px 0 0 3px; }
.car-thumbs { display: flex; gap: 8px; margin-top: 8px; overflow-x: auto; padding-bottom: 2px; }
.car-thumbs::-webkit-scrollbar { height: 3px; }
.car-thumbs::-webkit-scrollbar-thumb { background: var(--border); }
.thumb {
  flex: 0 0 19%; aspect-ratio: 1; border-radius: 3px; overflow: hidden;
  cursor: pointer; opacity: .5; transition: opacity .2s;
  border: 2px solid transparent;
}
.thumb.active { opacity: 1; border-color: var(--green); }
.thumb:hover { opacity: .8; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.hero-text { padding-top: 16px; text-align: center; }
.hero-text h1 {
  font-size: 3.06rem; font-weight: 500;
  line-height: 1.06; color: var(--green); letter-spacing: -0.02em;
  text-align: center;
}
.hero-text h1 .pink { color: var(--pink); display: block; }
.hero-text p { font-size: 1rem; color: #1680d1; font-weight: 400; line-height: 1.5; margin: 18px 0 24px; text-align: left; }
.hero-text p strong { font-weight: 600; }
.btn-black {
  display: inline-block; background: var(--black); color: var(--white);
  padding: 15px 32px; border-radius: 50px; font-family: inherit;
  font-size: 0.9rem; font-weight: 500; cursor: pointer;
  transition: background .2s, transform .15s; border: none;
}
.btn-black:hover { background: #333; transform: translateY(-1px); }

/* ── TRUST STRIP ──────────────────────────── */
.trust {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; padding: 36px 40px 52px; align-items: start;
}
.trust-quote { font-style: italic; font-size: 0.9rem; color: var(--green); }
.trust-quote cite { display: block; font-style: normal; font-weight: 600; margin-top: 8px; font-size: 0.88rem; }
.trust-right .checks { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.trust-right .checks span { font-weight: 600; font-size: 1rem; }
.trust-right .checks span::before { content: "✔️ "; }
.trust-right p { font-size: 0.9rem; }
.trust-right p strong { font-weight: 600; }

/* ── HOW IT WORKS ─────────────────────────── */
.how { padding: 64px 40px; text-align: center; background: var(--white); }
.how h2 { font-size: 2.2rem; font-weight: 600; color: var(--green); margin-bottom: 48px; letter-spacing: -0.01em; }
.how h2 strong { font-weight: 700; }
.how-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 36px; max-width: 1100px; margin: 0 auto 44px; text-align: left;
}
.how-col h3 { font-size: 0.95rem; font-weight: 600; color: var(--green); margin-bottom: 10px; }
.how-col p { font-size: 0.88rem; color: var(--green); }
.btn-outline {
  display: inline-block; border: 2px solid var(--black); color: var(--black);
  padding: 15px 44px; border-radius: 10px; font-family: inherit;
  font-size: 0.9rem; font-weight: 500; cursor: pointer;
  transition: background .2s, color .2s; background: none;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ── EARNINGS ─────────────────────────────── */
.earnings {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 48px; padding: 48px 40px 64px; align-items: center;
}
.earnings-text h2 { font-size: 1.7rem; font-weight: 600; color: var(--green); margin-bottom: 14px; line-height: 1.3; letter-spacing: -0.01em; }
.earnings-text p { font-size: 0.88rem; color: var(--green); }
.earnings img { width: 100%; border-radius: 6px; }

/* ── TESTIMONIALS ─────────────────────────── */
.testimonials { background: var(--blue); padding: 64px 40px; }
.tslider { max-width: 900px; margin: 0 auto; }
.tslide {
  display: none; color: var(--white);
  font-size: clamp(1.05rem, 2.2vw, 1.6rem); font-weight: 400;
  font-style: italic; line-height: 1.55; padding-bottom: 24px;
}
.tslide.active { display: block; }
.tslide cite { display: block; font-style: normal; font-size: 0.88rem; font-weight: 400; opacity: .8; margin-top: 14px; }
.tarrows { display: flex; justify-content: flex-end; gap: 10px; max-width: 900px; margin: 16px auto 0; }
.tarrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,.45); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; transition: background .2s;
}
.tarrow:hover { background: rgba(0,0,0,.8); }

/* ── FAQS ─────────────────────────────────── */
.faqs-wrap {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 160px 1fr;
  gap: 60px; padding: 64px 40px;
}
.faqs-label { font-size: 2.4rem; font-weight: 600; color: var(--green); padding-top: 6px; letter-spacing: -0.01em; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 4px; cursor: pointer; gap: 16px;
  color: var(--green); font-size: 0.98rem; font-weight: 600; user-select: none;
  transition: opacity .15s;
}
.faq-q:hover { opacity: .75; }
.faq-icon { font-size: 1.4rem; font-weight: 300; flex-shrink: 0; width: 20px; text-align: center; line-height: 1; }
.faq-item.open .faq-q {
  outline: 2px solid var(--green);
  padding: 18px 16px;
  margin: -1px -2px 0;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; font-size: 0.9rem; color: var(--green); }
.faq-a-inner { padding: 14px 4px 22px; }
.faq-item.open .faq-a { max-height: 500px; }

/* ── GALLERY ───────────────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(5,1fr); }
.gallery-item { aspect-ratio: 1; overflow: hidden; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.88); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lb-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--white);
  font-size: 2.2rem; cursor: pointer; line-height: 1;
}

/* ── FOOTER ────────────────────────────────── */
footer {
  border-top: 1px solid #eee; padding: 24px 40px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: #888;
}
.footer-links a { color: var(--green); margin-right: 16px; font-weight: 500; }
.footer-links a:hover { text-decoration: underline; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 820px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero { grid-template-columns: 1fr; padding: 20px 20px 0; gap: 24px; }
  .hero-text { text-align: center; }
  .hero-text h1 { font-size: 2.2rem; }

  .trust { grid-template-columns: 1fr; padding: 28px 20px 40px; gap: 24px; }
  .how { padding: 48px 20px; }
  .how-grid { grid-template-columns: 1fr; gap: 28px; }
  .earnings { grid-template-columns: 1fr; padding: 40px 20px; }
  .testimonials { padding: 44px 20px; }
  .faqs-wrap { grid-template-columns: 1fr; gap: 20px; padding: 44px 20px; }
  .gallery { grid-template-columns: repeat(3,1fr); }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }
}
@media (max-width: 500px) {
  .gallery { grid-template-columns: repeat(2,1fr); }
}
