/* landing.css — Reprise Auto Cash */

:root {
  --green: #9ece39;
  --green-dark: #7fad20;
  --dark: #111827;
  --text: #374151;
  --muted: #6b7280;
  --light: #f5f7f2;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 20px 60px rgba(17, 24, 39, 0.12);
  --radius: 22px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  max-width: 220px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.main-nav a:hover {
  color: var(--green-dark);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  font-weight: 800;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 74px;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.74), rgba(17, 24, 39, 0.28)),
    url("assets/images/slider/slider-1-desktop.webp") center / cover no-repeat;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 390px;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.hero h1,
.section-heading h2,
.process-grid h2,
.final-cta h2 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(38px, 6vw, 68px);
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--green);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 900;
}

.hero-text {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--green);
  color: var(--dark);
  box-shadow: 0 14px 30px rgba(158, 206, 57, 0.28);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-benefits li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 800;
}

.hero-benefits li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 900;
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark);
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.hero-card ul {
  padding-left: 20px;
  margin: 18px 0;
}

.hero-card li {
  margin: 8px 0;
}

.mini-link {
  color: var(--green-dark);
  font-weight: 900;
}

/* TRUST BAR */

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  color: var(--dark);
  font-size: 15px;
  font-weight: 900;
}

.trust-bar span::before {
  content: "✓ ";
  color: var(--green-dark);
}

/* SECTIONS */

.form-section,
.benefits-section,
.brands-section,
.reviews-section,
.faq-section {
  padding: 82px 0;
}

.form-section,
.brands-section,
.faq-section {
  background: var(--light);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.process-grid h2,
.final-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--dark);
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
}

.form-reassurance {
  font-weight: 800;
  color: var(--dark) !important;
}

.form-card {
  max-width: 1180px;
  margin-inline: auto;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.form-card-header h3 {
  margin: 0;
  color: var(--dark);
  font-size: 25px;
}

.form-card-header p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.cards-grid,
.reviews-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card,
.review-card,
.faq-grid details {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(17, 24, 39, 0.06);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--dark);
  font-weight: 900;
}

.info-card h3,
.review-card h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 22px;
}

.info-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
}

/* PROCESS */

.process-section {
  padding: 82px 0;
  color: var(--white);
  background: var(--dark);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
}

.process-grid h2 {
  color: var(--white);
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding: 24px 24px 24px 74px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  counter-increment: process;
}

.process-list li::before {
  content: counter(process);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--dark);
  font-weight: 900;
}

.process-list strong {
  display: block;
  color: var(--white);
  font-size: 19px;
}

.process-list span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

/* BRANDS */

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.brand-grid span {
  min-height: 62px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  font-weight: 900;
}

/* REVIEWS */

.review-card {
  display: grid;
  gap: 14px;
}

.stars {
  color: var(--green-dark);
  letter-spacing: 0.12em;
  font-size: 18px;
}

.review-card strong {
  color: var(--dark);
}

/* FAQ */

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

.faq-grid summary {
  cursor: pointer;
  color: var(--dark);
  font-weight: 900;
  font-size: 18px;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

/* FINAL CTA */

.final-cta {
  padding: 56px 0;
  background: var(--green);
}

.final-cta .eyebrow {
  color: rgba(17, 24, 39, 0.72);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.final-cta .btn-primary {
  background: var(--dark);
  color: var(--white);
  box-shadow: none;
}

/* FOOTER */

.site-footer {
  padding: 56px 0 26px;
  background: #0b1220;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
}

.site-footer strong {
  display: block;
  color: var(--white);
  margin-bottom: 10px;
  font-size: 18px;
}

.site-footer p {
  margin: 8px 0;
}

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

.footer-bottom {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 20px 46px rgba(17, 24, 39, 0.34);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero {
    padding: 66px 0 54px;
    background:
      linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.7)),
      url("assets/images/slider/slider-1-mobile.webp") center / cover no-repeat;
  }

  .hero-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

  .cards-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .header-inner {
    min-height: 68px;
  }

  .logo img {
    max-width: 176px;
  }

  .header-phone {
    display: none;
  }

  .hero {
    padding: 48px 0 40px;
  }

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

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

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    min-height: 52px;
  }

  .hero-benefits {
    gap: 8px;
  }

  .hero-benefits li {
    width: 100%;
    font-size: 14px;
  }

  .hero-card {
    padding: 22px;
  }

  .trust-bar-inner {
    justify-content: flex-start;
    gap: 10px;
    padding: 16px 0;
  }

  .trust-bar span {
    width: 100%;
  }

  .form-section,
  .benefits-section,
  .brands-section,
  .reviews-section,
  .faq-section,
  .process-section {
    padding: 58px 0;
  }

  .form-card {
    padding: 18px;
    border-radius: 18px;
  }

  .form-card-header {
    display: block;
  }

  .form-card-header h3 {
    font-size: 22px;
  }

  .brand-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-card,
  .review-card,
  .faq-grid details {
    padding: 20px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .site-footer {
    padding-bottom: 90px;
  }
}

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