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

:root {
  --green: #2f7d24;
  --green-dark: #205e19;
  --black: #15181f;
  --light: #f5f7f4;
  --line: #dfe5dc;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: white;
}

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

.header {
  height: 100px;
  display: grid;
  grid-template-columns: 310px 1fr 470px;
  align-items: center;
  gap: 18px;
  padding: 0 44px;
  background: white;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.truck-mark {
  color: var(--green);
  font-size: 50px;
}

.brand-name {
  font-size: 43px;
  font-weight: 1000;
  font-style: italic;
  letter-spacing: 1px;
  line-height: .82;
}

.brand-sub {
  color: var(--green);
  font-weight: 1000;
  font-size: 17px;
  letter-spacing: 4px;
  margin-top: 6px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-weight: 900;
  font-size: 14px;
}

nav a {
  padding: 39px 0;
  position: relative;
}

nav a.active,
nav a:hover {
  color: var(--green);
}

nav a.active::after,
nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 3px;
  background: var(--green);
}

.header-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.header-buttons a {
  height: 50px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 0 22px;
  font-size: 18px;
  font-weight: 1000;
}

.phone {
  border: 2px solid var(--green);
}

.quote {
  background: linear-gradient(#347f28, #24691e);
  color: white;
}

.hero {
  min-height: 540px;
  display: grid;
  grid-template-columns: 43% 57%;
  overflow: hidden;
  background:
    linear-gradient(90deg, white 0%, white 34%, rgba(255,255,255,.88) 52%, rgba(255,255,255,.12) 100%),
    radial-gradient(circle at 78% 35%, rgba(47,125,36,.15), transparent 32%),
    #eef2ec;
}

.hero-left {
  padding: 58px 0 40px 60px;
  z-index: 3;
}

.hero-left h1 {
  font-size: 54px;
  line-height: .96;
  letter-spacing: -2px;
  font-weight: 1000;
}

.hero-left h2 {
  color: var(--green);
  font-size: 43px;
  line-height: 1;
  margin-top: 10px;
  font-weight: 1000;
}

.green-line {
  width: 225px;
  height: 3px;
  background: var(--green);
  margin: 27px 0 17px;
}

.hero-left p {
  font-size: 20px;
  line-height: 1.45;
}

.benefits {
  display: flex;
  gap: 32px;
  margin: 26px 0 28px;
}

.benefits div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefits span {
  width: 44px;
  height: 44px;
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 1000;
}

.benefits strong {
  font-size: 16px;
  line-height: 1.05;
}

.hero-buttons {
  display: flex;
  gap: 14px;
}

.hero-buttons a {
  width: 270px;
  min-height: 82px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: 1000;
}

.call-big {
  background: linear-gradient(#3c8d30, #24691e);
  color: white;
}

.call-big b {
  font-size: 23px;
}

.text-big {
  background: white;
  border: 2px solid var(--green);
  color: var(--green);
}

.text-big small {
  display: block;
  color: #222;
  font-size: 14px;
  font-weight: 500;
}

.hero-right {
  position: relative;
  min-height: 540px;
  background:
    linear-gradient(rgba(255,255,255,.15), rgba(255,255,255,.15)),
    repeating-linear-gradient(90deg, rgba(47,125,36,.05) 0 1px, transparent 1px 95px),
    linear-gradient(135deg, #e3e9e1, white 55%, #dfe7dc);
}

.truck-scene {
  position: absolute;
  inset: 0;
}

.truck {
  position: absolute;
  right: 36px;
  top: 110px;
  width: 660px;
  height: 300px;
}

.box {
  position: absolute;
  right: 0;
  top: 58px;
  width: 455px;
  height: 172px;
  background: #11151b;
  border-radius: 8px;
  box-shadow: inset 0 0 0 4px #282d34, 0 20px 36px rgba(0,0,0,.22);
}

.cab {
  position: absolute;
  left: 70px;
  top: 98px;
  width: 190px;
  height: 135px;
  background: white;
  border: 8px solid #171a1f;
  border-radius: 35px 12px 12px 10px;
  box-shadow: inset 54px 0 0 #d9e0dc;
}

.cab::after {
  content: "";
  position: absolute;
  left: 47px;
  top: 24px;
  width: 76px;
  height: 46px;
  background: #a9b8b3;
  border-radius: 7px;
}

.wheel {
  position: absolute;
  bottom: 28px;
  width: 64px;
  height: 64px;
  background: #101010;
  border-radius: 50%;
  border: 9px solid #30343b;
}

.wheel1 { left: 175px; }
.wheel2 { right: 115px; }

.box-logo {
  height: 100%;
  color: white;
  text-align: center;
  display: grid;
  place-items: center;
  align-content: center;
}

.box-logo div {
  font-size: 40px;
}

.box-logo strong {
  font-size: 54px;
  line-height: .85;
  font-style: italic;
}

.box-logo span {
  color: #73c75f;
  font-size: 24px;
  font-weight: 1000;
  letter-spacing: 2px;
}

.box-logo p {
  font-weight: 1000;
  letter-spacing: 2px;
  margin-top: 4px;
}

.person {
  position: absolute;
  bottom: 0;
  z-index: 4;
  width: 96px;
  height: 225px;
  background:
    radial-gradient(circle at 50% 23px, #e2bd9b 0 22px, transparent 23px),
    linear-gradient(#111 48px, #111 118px, #161616 119px 100%);
  border-radius: 45px 45px 8px 8px;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.08);
}

.p1 { left: 135px; }
.p2 { left: 245px; }

.area {
  position: absolute;
  right: 36px;
  bottom: 20px;
  background: #191d24;
  color: white;
  border: 2px solid var(--green);
  border-radius: 10px;
  padding: 14px 20px;
  min-width: 255px;
  z-index: 6;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.area span {
  display: block;
  font-size: 21px;
  font-weight: 1000;
}

.area strong {
  display: block;
  color: #70c75c;
  font-size: 23px;
}

.area small {
  font-weight: 1000;
}

.trust {
  width: calc(100% - 120px);
  margin: 18px auto;
  background: #f3f5f2;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e4e8e2;
}

.trust div {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 12px;
  border-right: 1px solid #d9dfd7;
}

.trust span {
  color: var(--green);
  font-size: 34px;
  grid-row: span 2;
}

.trust strong {
  font-size: 15px;
}

.trust p {
  color: #555;
  font-size: 14px;
}

.services {
  padding: 0 58px 12px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 12px 0;
}

.section-title i {
  width: 90px;
  height: 2px;
  background: var(--green);
}

.section-title h2 {
  font-size: 30px;
  font-weight: 1000;
}

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

.service-grid article {
  border: 1px solid #e0e4df;
  border-radius: 8px;
  min-height: 173px;
  text-align: center;
  padding: 20px 12px;
  box-shadow: 0 10px 18px rgba(0,0,0,.04);
  background: white;
}

.service-grid article div {
  color: var(--green);
  font-size: 38px;
  margin-bottom: 10px;
}

.service-grid h3 {
  font-size: 16px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.service-grid p {
  font-size: 14px;
  line-height: 1.25;
}

.cta-strip {
  margin-top: 12px;
  background: linear-gradient(90deg, #171b21, #080a0d);
  color: white;
  min-height: 96px;
  padding: 18px 60px;
  display: grid;
  grid-template-columns: 1.6fr 230px 230px .9fr;
  align-items: center;
  gap: 18px;
}

.cta-strip h2 {
  font-size: 24px;
}

.cta-strip p {
  color: #65bd51;
  font-weight: 1000;
  font-size: 19px;
}

.cta-strip a {
  height: 64px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(#3b8a30, #24691e);
  font-weight: 1000;
}

.cta-text-btn {
  background: transparent !important;
  border: 2px solid white;
}

.mini-review div {
  color: #ffbd25;
  font-size: 23px;
}

.mini-review p {
  color: white;
  font-size: 14px;
  font-style: italic;
}

footer {
  min-height: 54px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  border-top: 1px solid #eee;
  gap: 16px;
}

@media (max-width: 1200px) {
  .header {
    grid-template-columns: 1fr;
    height: auto;
    padding: 16px 24px;
    text-align: center;
  }

  .brand, .header-buttons, nav {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .hero-left {
    padding: 40px 28px;
  }

  .hero-right {
    min-height: 430px;
  }

  .trust {
    width: calc(100% - 40px);
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer {
    height: auto;
    padding: 18px;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .brand-name {
    font-size: 34px;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-left h2 {
    font-size: 31px;
  }

  .benefits,
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
  }

  .truck {
    transform: scale(.62);
    transform-origin: top right;
    right: -30px;
  }

  .person {
    transform: scale(.72);
    transform-origin: bottom left;
  }

  .p1 { left: 35px; }
  .p2 { left: 115px; }

  .area {
    left: 18px;
    right: 18px;
    text-align: center;
  }

  .trust,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .services {
    padding: 0 20px 12px;
  }
}
