@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&family=Roboto:wght@300;400;500&display=swap');

:root {
  --gold: #f5b900;
  --gold2: #ffca18;
  --bg: #050607;
  --panel: #090b0d;
  --text: #f4f4f4;
  --muted: #c9c9c9;
  --line: #292b2e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Roboto, Arial, sans-serif;
  font-weight: 300;
}
a { color: inherit; text-decoration: none; }

.header {
  background: #030405;
  border-bottom: 1px solid #17191b;
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  min-height: 120px;
  max-width: 1400px;
  margin: auto;
  padding: 10px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand img {
  width: 245px;
  height: 100px;
  object-fit: contain;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 48px;
  height: 100%;
}
.nav a {
  font-size: 16px;
  padding: 43px 0 27px;
  white-space: nowrap;
  position: relative;
}
.nav a.active, .nav a:hover { color: var(--gold); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--gold);
}

.hero {
  min-height: 565px;
  max-width: 1600px;
  margin: auto;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 44% 56%;
  background: #090b0d;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 40px 80px 7%;
  background: linear-gradient(90deg, #08090a 0%, #08090a 70%, rgba(8,9,10,.55) 100%);
}
.eyebrow {
  color: var(--gold);
  font-size: 18px;
  margin: 0 0 16px;
  letter-spacing: .4px;
}
h1, h2 {
  font-family: Oswald, Impact, sans-serif;
  letter-spacing: .5px;
  margin: 0;
}
h1 {
  font-size: clamp(46px, 5vw, 70px);
  line-height: .98;
}
h1 span { color: var(--gold); }
.hero-text {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.75;
  margin: 30px 0 35px;
  color: #eee;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-width: 250px;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 17px 20px;
  font-size: 14px;
  transition: .2s;
}
.button b { font-size: 25px; font-weight: 300; }
.button:hover { background: var(--gold); color: #050607; }
.hero-image {
  min-height: 565px;
  background:
    linear-gradient(90deg, #08090a 0%, transparent 18%),
    url("images/hero-trucks.jpg") center center / cover no-repeat;
}

.advantages {
  max-width: 1600px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #080a0c;
}
.advantage {
  text-align: center;
  padding: 38px 30px 35px;
  border-right: 1px solid #705b20;
}
.advantage:last-child { border-right: 0; }
.icon {
  color: var(--gold);
  font-size: 46px;
  line-height: 1;
  margin-bottom: 25px;
}
.advantage h3 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 14px;
}
.advantage p {
  margin: 0 auto;
  max-width: 250px;
  line-height: 1.65;
  color: var(--muted);
}

.about {
  max-width: 1600px;
  margin: auto;
  min-height: 530px;
  padding: 65px 7%;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 35px;
  border-bottom: 1px solid var(--line);
}
.about h2, .fleet h2 {
  font-size: 54px;
  margin-bottom: 25px;
}
.about-text > p:not(.eyebrow) {
  max-width: 580px;
  line-height: 1.75;
  color: #ddd;
  font-size: 16px;
}
.about ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}
.about li {
  margin: 12px 0;
  color: #eee;
}
.about li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 12px;
}
.map-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-image img {
  width: 100%;
  max-width: 680px;
  max-height: 430px;
  object-fit: contain;
}

.fleet {
  max-width: 1600px;
  margin: auto;
  text-align: center;
  padding: 75px 20px;
  border-bottom: 1px solid var(--line);
}
.fleet p:last-child {
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact {
  max-width: 1600px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.contact > div {
  padding: 35px 40px;
  border-right: 1px solid #55491f;
  text-align: center;
}
.contact > div:last-child { border-right: 0; }
.contact-icon {
  display: block;
  color: var(--gold);
  font-size: 35px;
  margin-bottom: 10px;
}
.contact h3 {
  color: var(--gold);
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 12px;
}
.contact p {
  margin: 0;
  line-height: 1.6;
  color: #ddd;
}

footer {
  text-align: center;
  padding: 28px 20px;
  color: #888;
  font-size: 14px;
}

@media (max-width: 900px) {
  .header-inner { min-height: auto; padding: 15px 20px 0; display: block; }
  .brand { display: block; text-align: center; }
  .brand img { width: 260px; height: 120px; margin: auto; }
  .nav {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 24px;
    padding-bottom: 0;
  }
  .nav a { font-size: 14px; padding: 20px 0 25px; }
  .nav a.active::after { bottom: 8px; }

  .hero { display: block; }
  .hero-content { padding: 60px 8% 45px; background: #08090a; }
  .hero-image { min-height: 320px; }
  .advantages { grid-template-columns: 1fr 1fr; }
  .advantage { border-bottom: 1px solid #705b20; }
  .about { grid-template-columns: 1fr; padding: 55px 8%; }
  .about h2, .fleet h2 { font-size: 42px; }
  .map-image { order: -1; }
  .contact { grid-template-columns: 1fr 1fr; }
  .contact > div:nth-child(2) { border-right: 0; }
  .contact > div { border-bottom: 1px solid #55491f; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 44px; }
  .hero-text { font-size: 16px; }
  .advantages { grid-template-columns: 1fr; }
  .advantage { border-right: 0; }
  .contact { grid-template-columns: 1fr; }
  .contact > div { border-right: 0; }
  .about h2, .fleet h2 { font-size: 38px; }
}
