:root {
  --orange: #ff7417;
  --black: #070707;
  --dark: #111;
  --text: #151515;
  --muted: #666;
  --light: #f7f7f7;
  --border: #e6e6e6;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: white;
}
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 auto;
}
a {
  text-decoration: none;
  color: inherit;
}
.header {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 6%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.logo img {
  width: 245px;
  display: block;
}
nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
}
nav a,
.top-btn {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.top-btn,
.btn {
  background: var(--orange);
  color: white;
  border-radius: 4px;
  padding: 17px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.btn svg {
  font-size: 19px;
}
.menu {
  display: none;
}
.hero {
  min-height: 610px;
  background:
    radial-gradient(circle at 49% 22%, rgba(255, 255, 255, 0.12), transparent 19%),
    linear-gradient(90deg, #040609 0%, #06090d 38%, rgba(6, 9, 13, 0.6) 58%, rgba(6, 9, 13, 0.12) 78%),
    url("assets/hero-products.jpg") center right / cover no-repeat,
    #05070a;
  color: white;
  display: flex;
  align-items: center;
  padding: 58px 6%;
  overflow: hidden;
  position: relative;
}
.hero:after {
  content: "";
  position: absolute;
  left: 42%;
  top: 85px;
  width: 280px;
  height: 150px;
  opacity: 0.16;
  background: radial-gradient(circle, #9da2a6 1.3px, transparent 2px);
  background-size: 9px 9px;
}
.hero-text {
  position: relative;
  z-index: 1;
  max-width: 590px;
}
.hero h1 {
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 69px;
  line-height: 0.94;
  text-transform: uppercase;
  margin: 0 0 22px;
  letter-spacing: 0.5px;
}
.hero h1 span {
  color: var(--orange);
}
.hero p {
  font-size: 18px;
  line-height: 1.55;
  max-width: 555px;
}
.actions {
  display: flex;
  gap: 18px;
  margin: 28px 0;
}
.btn-dark {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
}
.usa {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 310px;
  line-height: 1.15;
}
.usa img {
  width: 52px;
  height: auto;
  display: block;
}
.trust {
  width: 88%;
  margin: -34px auto 0;
  background: white;
  position: relative;
  z-index: 2;
  border-radius: 7px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}
.trust div {
  padding: 25px 12px;
  border-right: 1px solid var(--border);
}
.trust div:last-child {
  border-right: 0;
}
.trust svg {
  color: var(--orange);
  font-size: 34px;
}
.trust strong {
  display: block;
  margin-top: 6px;
  text-transform: uppercase;
  font-size: 13px;
}
.trust span {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}
.about,
.partner,
.contact {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 55px;
  align-items: center;
  padding: 78px 6%;
}
small {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.about h2,
.products h2,
.why h2,
.partner h2,
.contact h2 {
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: 40px;
  margin: 10px 0 20px;
  letter-spacing: 0.5px;
}
.about p {
  color: var(--muted);
  line-height: 1.7;
}
.about-img,
.partner img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}
.about-img {
  height: 330px;
  object-fit: cover;
}
.products {
  text-align: center;
  background: var(--light);
  padding: 68px 6%;
}
.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.cards article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.cards img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  display: block;
}
.cards h3 {
  font-family: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  font-size: 19px;
  text-transform: uppercase;
  margin: 16px 14px 8px;
}
.cards p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  margin: 0 14px 10px;
}
.cards a {
  color: var(--orange);
  font-size: 23px;
  margin: 0 18px 15px;
  display: inline-block;
}
.why {
  background: linear-gradient(135deg, #121212, #020202);
  color: white;
  text-align: center;
  padding: 75px 6%;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.why-grid div {
  border-right: 1px solid rgba(255, 116, 23, 0.65);
  padding: 8px 14px;
}
.why-grid div:last-child {
  border-right: 0;
}
.why-grid svg {
  color: var(--orange);
  font-size: 40px;
}
.why-grid h3 {
  font-size: 15px;
  text-transform: uppercase;
}
.why-grid p {
  font-size: 13px;
  line-height: 1.5;
  color: #ddd;
}
.partner {
  background: white;
}
.partner ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 25px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}
.partner li {
  font-size: 15px;
}
.partner li:before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: -2px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 50%, var(--orange) 50%) 4px 6px / 4px 2px no-repeat,
    linear-gradient(135deg, transparent 45%, var(--orange) 45%) 6px 5px / 6px 2px no-repeat;
}
.partner img {
  height: 240px;
  object-fit: cover;
  box-shadow: none;
}
.contact {
  background:
    linear-gradient(90deg, #090c0f 0%, #090c0f 72%, rgba(9, 12, 15, 0.58)),
    url("assets/contact-tools.jpg") right bottom / auto 100% no-repeat,
    #090c0f;
  color: white;
}
.contact-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 13px 0;
  color: white;
}
.contact-info svg {
  color: var(--orange);
  font-size: 17px;
}
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
input,
textarea {
  width: 100%;
  padding: 15px;
  background: #111;
  border: 1px solid #353535;
  color: white;
  border-radius: 3px;
}
textarea {
  grid-column: 1/-1;
  min-height: 125px;
  resize: vertical;
}
.hide {
  display: none;
}
#formStatus {
  grid-column: 1/-1;
  margin: 0;
}
footer {
  background: #050505;
  border-top: 2px solid var(--orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 6%;
  font-size: 12px;
}
footer img {
  width: 190px;
}
footer nav {
  margin-left: 0;
  gap: 24px;
}
@media (max-width: 1100px) {
  .hero,
  .about,
  .partner,
  .contact {
    grid-template-columns: 1fr;
  }
  .hero {
    background-position: center right;
  }
  .cards,
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .header {
    height: auto;
    padding: 15px 5%;
    flex-wrap: wrap;
  }
  .logo img {
    width: 210px;
  }
  .menu {
    display: block;
    margin-left: auto;
    background: #111;
    color: white;
    border: 0;
    border-radius: 4px;
    padding: 9px 12px;
  }
  #nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-left: 0;
  }
  #nav.active {
    display: flex;
  }
  .top-btn {
    display: none;
  }
  .hero {
    padding: 55px 5%;
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(4, 6, 9, 0.96), rgba(4, 6, 9, 0.78)),
      url("assets/hero-products.jpg") center right / cover no-repeat,
      #05070a;
  }
  .hero h1 {
    font-size: 48px;
  }
  .actions {
    flex-direction: column;
  }
  .trust {
    grid-template-columns: 1fr;
    margin: 20px auto;
  }
  .trust div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .cards,
  .why-grid,
  form {
    grid-template-columns: 1fr;
  }
  .why-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 116, 23, 0.4);
  }
  .partner ul {
    grid-template-columns: 1fr;
  }
  .about,
  .partner,
  .contact,
  .products,
  .why {
    padding: 55px 5%;
  }
  .about-img {
    height: auto;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .about h2,
  .products h2,
  .why h2,
  .partner h2,
  .contact h2 {
    font-size: 34px;
  }
}
