:root {
  --green-950: #002e1d;
  --green-900: #003b26;
  --green-800: #06452d;
  --green-700: #0d5c40;
  --gold: #f4ad31;
  --gold-2: #d9921f;
  --cream: #fbfaf6;
  --paper: #ffffff;
  --muted: #65756d;
  --line: #e4e9e4;
  --ink: #083d2b;
  --red: #ed6565;
  --shadow: 0 24px 60px rgba(0, 34, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 26px clamp(18px, 5vw, 46px);
  color: #fff;
  background: rgba(0, 46, 29, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 156px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold), #ffe08c);
  clip-path: polygon(50% 0, 100% 88%, 0 88%);
  font-size: 12px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 14px;
}

.brand small {
  margin-top: 3px;
  color: var(--gold);
  font-size: 9px;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 30px;
  font-size: 13px;
  font-weight: 800;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
}

.nav a:hover {
  color: #fff;
}

.header-cta,
.whatsapp,
.form button,
.contact-form button {
  border: 0;
  border-radius: 4px;
  color: #143321;
  background: linear-gradient(180deg, #ffc55a, var(--gold));
  box-shadow: 0 8px 20px rgba(244, 173, 49, 0.25);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.header-cta {
  padding: 13px 18px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: #fff;
  background: transparent;
  font-size: 20px;
}

.hero {
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(17, 97, 64, 0.55), transparent 28%),
    linear-gradient(145deg, var(--green-900), #002718 75%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  width: min(1220px, calc(100% - 64px));
  margin: 0 auto;
  padding: 80px 0 96px;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.pill {
  padding: 8px 12px;
  border: 1px solid rgba(244, 173, 49, 0.32);
  border-radius: 999px;
  background: rgba(244, 173, 49, 0.08);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
}

h1 span {
  color: var(--gold);
}

.lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

.hero-photo {
  width: 100%;
  margin: 34px 0 26px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 34px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.trust-list li::before,
.comparison li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--gold);
}

.quote-card {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(244, 173, 49, 0.75);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(244, 173, 49, 0.22), rgba(1, 50, 31, 0.92) 42%);
  box-shadow: 0 0 46px rgba(244, 173, 49, 0.25);
}

.quote-card h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 27px;
}

.quote-card h2 span {
  color: var(--gold);
}

.quote-card p {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.form,
.contact-form {
  display: grid;
  gap: 12px;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d7ded8;
  border-radius: 4px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.form button,
.contact-form button {
  min-height: 52px;
  padding: 0 18px;
  font-size: 12px;
}

.form button:disabled,
.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status[data-type="success"] {
  color: #8df0b5;
}

.form-status[data-type="error"] {
  color: #ffb1a8;
}

.small-link {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.segments {
  padding: 34px 22px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  background: #fff;
}

.segments p {
  margin-bottom: 20px;
  color: #98a39d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.segments div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  color: #597068;
  font-size: 13px;
  font-weight: 900;
}

.segments span::before {
  content: "▣";
  margin-right: 7px;
  color: #78948a;
}

.section {
  width: min(1220px, calc(100% - 64px));
  margin: 0 auto;
  padding: 110px 0;
}

.section h2,
.contact h2 {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(35px, 5vw, 56px);
  line-height: 0.98;
  font-weight: 900;
}

.section-lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.feature-card,
.testimonial-grid article,
.vehicle-card,
.pain-card,
.gain-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.feature-card {
  min-height: 240px;
  padding: 28px;
}

.icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 7px;
  color: #fff;
  background: var(--green-700);
  font-size: 13px;
}

.icon.amber {
  background: var(--gold);
  color: var(--green-950);
}

.feature-card h3 {
  font-size: 17px;
  line-height: 1.25;
}

.feature-card p,
.vehicle-card p,
.testimonial-grid p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  font-weight: 700;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  width: min(1220px, calc(100% - 64px));
  margin: 0 auto;
  padding: 70px 0 100px;
}

.pain-card,
.gain-card {
  padding: 36px;
}

.gain-card {
  color: #fff;
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.comparison h3 {
  font-size: 25px;
}

.comparison ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 800;
}

.pain-card li::before {
  content: "×";
  color: var(--red);
}

.gain-card ul {
  color: rgba(255, 255, 255, 0.8);
}

.red {
  color: var(--red);
}

.centered {
  text-align: center;
}

.centered h2,
.centered .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.compact .feature-card {
  min-height: 200px;
}

.fleet,
.testimonials {
  border-top: 1px solid rgba(0, 0, 0, 0.035);
}

.fleet-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.vehicle-card {
  overflow: hidden;
}

.vehicle-card img {
  width: 100%;
  aspect-ratio: 1.78;
  object-fit: cover;
}

.vehicle-card div {
  padding: 26px;
}

.vehicle-card h3 {
  font-size: 20px;
  line-height: 1.25;
}

.vehicle-card a {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
}

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

.testimonial-grid article {
  padding: 30px;
}

.stars {
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-grid strong,
.testimonial-grid small {
  display: block;
}

.testimonial-grid small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  padding: 112px max(32px, calc((100vw - 1220px) / 2));
  color: #fff;
  background: linear-gradient(140deg, var(--green-950), #003520);
}

.contact h2 {
  color: #fff;
}

.contact p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
  font-weight: 900;
}

.contact-list span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 12px;
  border: 1px solid rgba(244, 173, 49, 0.48);
  border-radius: 4px;
  color: var(--gold);
}

.whatsapp {
  display: inline-flex;
  padding: 16px 20px;
  font-size: 13px;
}

.contact-form {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(244, 173, 49, 0.72);
  border-radius: 8px;
  background: rgba(0, 42, 26, 0.62);
}

.contact-form h3 {
  font-size: 20px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 40px;
  padding: 60px max(32px, calc((100vw - 1220px) / 2)) 34px;
  color: rgba(255, 255, 255, 0.78);
  background: #002719;
}

.footer p,
.footer a,
.footer small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}

.footer strong {
  display: block;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer nav a {
  display: block;
  margin-bottom: 8px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: #16c766;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  font-size: 22px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 12px;
    padding-top: 10px;
  }

  .site-header.is-open .header-cta {
    grid-column: 1 / -1;
    display: inline-flex;
    justify-content: center;
  }

  .hero-inner,
  .contact,
  .comparison,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

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

  .quote-card {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px;
  }

  .hero-inner,
  .section,
  .comparison {
    width: calc(100% - 36px);
  }

  .hero-inner {
    padding: 52px 0 68px;
  }

  h1 {
    font-size: 43px;
  }

  .lead {
    font-size: 16px;
  }

  .trust-list,
  .feature-grid,
  .testimonial-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .section h2,
  .contact h2 {
    font-size: 35px;
  }

  .contact {
    padding: 76px 18px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 48px 18px 32px;
  }
}
