:root {
  --ink: #101820;
  --muted: #5f6875;
  --line: #e4e7eb;
  --paper: #ffffff;
  --soft: #f7f7f4;
  --navy: #081a2f;
  --blue: #183b59;
  --gold: #b88934;
  --gold-soft: #ead9b9;
  --shadow: 0 18px 48px rgba(8, 26, 47, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(228, 231, 235, .9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 174px;
  height: 46px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--navy);
  -webkit-mask: url("assets/images/logo-moneyauto-color.png") center / contain no-repeat;
  mask: url("assets/images/logo-moneyauto-color.png") center / contain no-repeat;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

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

.nav-highlight {
  color: var(--gold) !important;
  font-weight: 800;
}

.nav-highlight:hover {
  color: #8b6729 !important;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 650;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(8, 26, 47, .20);
}

.btn.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .34);
}

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(5, 13, 24, .94) 0%, rgba(5, 13, 24, .80) 44%, rgba(5, 13, 24, .30) 76%, rgba(5, 13, 24, .12) 100%),
    url("assets/images/hero-moneyauto.png") center right / cover no-repeat;
}

.hero-content {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold-soft);
}

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

h1 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.07;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(27px, 3.1vw, 40px);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.3;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 28px;
  color: #eef5fa;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: #eef5fa;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 650;
}

.conversion-bar {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.conversion-bar a {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  color: var(--navy);
  background: #fff;
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.conversion-bar a:first-child {
  color: #fff;
  background: var(--navy);
}

.conversion-bar a:hover {
  background: #f4f1ea;
}

.conversion-bar a:first-child:hover {
  background: #0d2746;
}

.section {
  padding: clamp(60px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 32px;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

.proof,
.vehicles {
  background: #fff;
}

.benefit-grid,
.vehicle-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

.benefit-grid article,
.vehicle-grid article,
.faq-grid details {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-grid article {
  box-shadow: 0 10px 24px rgba(8, 26, 47, .04);
}

.benefit-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  background: var(--soft);
}

.split-copy {
  max-width: 680px;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.steps article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
}

.steps p,
.steps h3 {
  margin-bottom: 0;
}

.split-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.vehicle-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}

.vehicle-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(245, 248, 251, .96));
}

.requirements {
  background: #071526;
}

.requirements-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
}

.requirements h2 {
  color: #fff;
}

.requirements p,
.requirements li {
  color: #d5e1ec;
}

.requirements .eyebrow {
  color: var(--gold-soft);
}

.requirements ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.requirements li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.requirements li:last-child {
  border-bottom: 0;
}

.inline-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--gold-soft);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
}

.faq {
  background: var(--soft);
}

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

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

details p {
  margin: 14px 0 0;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 7vw, 84px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #ffffff 0%, #f4f1ea 100%);
}

.cta-section p {
  max-width: 620px;
  margin-bottom: 0;
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(280px, 1.15fr) minmax(220px, .7fr);
  gap: 32px;
  padding: 36px clamp(20px, 5vw, 72px);
  align-items: center;
  color: #d9e4ec;
  background: #06111f;
  font-size: 14px;
}

.footer img {
  width: 150px;
  height: auto;
}

.footer p,
.footer span,
.footer a {
  color: #c9d5df;
}

.footer p {
  max-width: 320px;
  margin: 14px 0 0;
  font-size: 13px;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 14px;
}

.footer-contact {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer-contact a:hover,
.footer-social a:hover {
  color: #fff;
}

.footer-social div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(234, 217, 185, .24);
  border-radius: 8px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: #12375c;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(8, 26, 47, .24);
  font-size: 14px;
  font-weight: 800;
}

.improvements-page {
  background: #f5f6f7;
}

.improvements-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(70px, 8vw, 110px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 70px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f6f7 100%);
  border-bottom: 1px solid var(--line);
}

.improvements-copy {
  max-width: 820px;
}

.improvements-hero h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
}

.improvements-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.proposal-card {
  padding: 30px;
  background: #06111f;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proposal-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.proposal-card strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
}

.proposal-card p {
  margin-bottom: 0;
  color: #dbe6ef;
  font-size: 14px;
}

.executive-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transform: translateY(-22px);
}

.executive-strip article {
  min-height: 112px;
  padding: 22px;
  background: #fff;
}

.executive-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 16px;
}

.executive-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.executive-section {
  padding: clamp(34px, 6vw, 74px) clamp(20px, 5vw, 72px) clamp(56px, 7vw, 90px);
}

.executive-heading {
  display: grid;
  grid-template-columns: minmax(170px, .42fr) minmax(0, 1fr);
  gap: 34px;
  max-width: 1120px;
  margin-bottom: 28px;
}

.executive-heading h2 {
  max-width: 850px;
  color: var(--navy);
  font-size: clamp(28px, 3.2vw, 42px);
}

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

.executive-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(8, 26, 47, .045);
}

.executive-grid article > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.executive-grid h3 {
  color: var(--navy);
  font-size: 22px;
}

.executive-grid ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.58;
}

.executive-grid p:last-child,
.executive-grid ul:last-child {
  margin-bottom: 0;
}

.executive-closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px) clamp(54px, 7vw, 84px);
  padding: clamp(32px, 5vw, 46px);
  color: #fff;
  background: #06111f;
  border-radius: 8px;
}

.executive-closing h2 {
  max-width: 880px;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
}

.executive-closing p {
  max-width: 780px;
  color: #d9e4ec;
}

@media (max-width: 1080px) {
  .section-heading,
  .split,
  .requirements-panel,
  .cta-section,
  .footer,
  .conversion-bar,
  .improvements-hero,
  .executive-strip,
  .executive-heading,
  .executive-grid,
  .executive-closing {
    grid-template-columns: 1fr;
  }

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

  .split-image img {
    min-height: 380px;
  }

  .executive-strip {
    transform: none;
    margin-top: 22px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(5, 13, 24, .92), rgba(5, 13, 24, .80)),
      url("assets/images/hero-moneyauto.png") center / cover no-repeat;
  }

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

  .hero-actions,
  .hero-actions .btn,
  .cta-section .btn,
  .floating-whatsapp {
    width: 100%;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .steps article {
    grid-template-columns: 38px 1fr;
  }

  .steps strong {
    width: 38px;
    height: 38px;
  }

  .improvements-hero {
    padding-top: 48px;
  }

  .proposal-card,
  .executive-grid article,
  .executive-closing {
    padding: 22px;
  }

  .executive-section {
    padding-top: 44px;
  }
}
