:root {
  --bg: #ffffff;
  --panel: #f8f8f8;
  --muted: #555;
  --primary: #1E6ACC;
  --primary-light: #63A7FF;
  --text: #24262B;
  --max: 1200px;
  --radius: 3px;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --borders: 1px solid rgba(30, 106, 204, 0.1450980392);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Montserrat", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgb(255, 255, 255);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
header .nav #mobile-menu-btn {
  display: none;
}
header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  font: normal normal normal 20px/25px Fjalla One;
}
header .nav .container-left {
  display: flex;
  align-items: center;
  gap: 20%;
}
header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--text);
}
header .brand .logo img {
  max-width: 150px;
}
header .brand span {
  font-size: 18px;
}
header nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
header nav a {
  color: var(--text);
  opacity: 0.9;
}
header .tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--text);
  font-weight: 600;
}
header .tel span {
  position: relative;
  padding-left: 30px;
}
header .tel span::before {
  content: url(../img/icons/tel.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  top: 1px;
  left: 0;
}
header .tel:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.hero {
  padding: 0px;
  color: #fff;
  position: relative;
}
.hero #hero-bg-image {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero #hero-bg-image > img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
}
.hero .hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  padding: 70px 40px 78px 40px;
  background: rgba(0, 0, 0, 0.815);
}
.hero .hero-grid .kicker {
  color: #fff;
  font-weight: 400;
}
.hero aside {
  position: absolute;
  display: flex;
  flex-direction: row-reverse;
  top: 0;
  right: 0;
  height: 100%;
  padding-bottom: 38px;
  width: 20%;
}
.hero aside > div {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  max-width: 150px;
  font-size: 14px;
}
.hero aside > div li {
  list-style-type: none;
}
.hero aside h2 {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: Fjalla One;
  font-size: 35px;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.hero .h1 {
  margin: 6px 0 12px;
  font-family: Fjalla One;
  font-size: 85px;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.2;
}
.hero .h1 span {
  color: var(--primary-light);
}
.hero .badges {
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.68);
  text-align: center;
  justify-content: center;
  gap: 5px 20px;
  padding: 8px 12px;
}
.hero .badges .badge {
  color: #fff;
  position: relative;
  font-weight: 600;
}
.hero .subtitle {
  color: #fff;
  max-width: 60ch;
}
.hero .hero-card {
  background: var(--panel);
  border: 1px solid #e9ecef;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.hero .hero-card h3 {
  margin: 8px 0 10px;
}
.hero .cta.xl {
  font: normal normal normal 25px/39px;
  padding: 8px 70px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
  width: 100%;
}
.badges .badge {
  font-size: 14px;
}
.badges .badge:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 20px;
  align-self: center;
}

.cta {
  background-color: var(--primary);
  border: 2px solid var(--primary);
  color: #fff;
  padding: 5px 15px;
  font-family: Fjalla One;
  font-size: 1.2rem;
  text-align: center;
  border-radius: var(--radius);
}
.cta:hover {
  background-color: transparent;
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
}

section {
  padding: 23px 0;
}

h2 {
  font-size: 35px;
  margin: 0 0 18px;
  font-family: Fjalla One;
  font-weight: 400;
}

h3 {
  font-family: Fjalla One;
  font-weight: 400;
  font-size: 25px;
}

.center-text, .kicker.center-text {
  text-align: center;
  width: 100%;
}

.kicker {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.kicker:not(.light) {
  color: var(--primary);
}
.kicker.light {
  color: var(--primary-light);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 8px 0 6px;
  text-align: center;
  width: 100%;
}
.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  width: 100%;
}

.icon {
  width: 28px;
  height: 28px;
}

#services .grid {
  grid-template-columns: repeat(4, 1fr);
}

#packs {
  background-color: var(--text);
  position: relative;
  z-index: 1;
}
#packs::before, #packs::after {
  content: "";
  background-image: url("/assets/img/packs-dashes.svg");
  object-fit: contain;
  object-position: center;
  height: 100%;
  width: 50px;
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
}
#packs::before {
  left: 0;
}
#packs::after {
  right: 0;
}
#packs .pack {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
#packs .pack > div {
  width: 100%;
}
#packs .pack h3 {
  text-align: left;
  margin-bottom: 0;
}
#packs .pack img {
  max-height: 300px;
  max-width: 100%;
}
#packs .pack ul {
  border-top: var(--borders);
  border-bottom: var(--borders);
  width: 100%;
  margin: 15px 0;
  padding: 10px 5px;
  list-style: none;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#packs .pack ul li {
  margin: 5px 0;
}
#packs .pack ul li::before {
  content: url("../img/icons/check.svg");
  width: 6px;
  height: 6px;
  margin-right: 10px;
}
#packs .pack .price {
  text-align: center;
  color: var(--text);
}
#packs .pack .price:not(span) {
  font-family: Fjalla One;
  font-size: 25px;
}
#packs .pack .price span {
  font-family: Montserrat;
  font-size: 15px;
  display: block;
  font-weight: 300;
}
#packs .pack .cta {
  display: block;
  width: 100%;
  margin-top: 10px;
}
#packs h2 {
  color: #fff;
}
#packs .note {
  color: #fff;
}

#zone .container {
  display: flex;
  align-items: center;
  gap: 50px;
}
#zone .container .badges {
  gap: 10px 0;
}
#zone .container .badges span {
  padding: 5px 10px;
  margin-right: 10px;
  background-color: rgba(215, 215, 216, 0.3607843137);
  border-radius: var(--radius);
  font-family: Fjalla One;
}

#brands {
  padding-bottom: 0;
}
#brands .bg-primary {
  background-color: var(--primary);
  margin-bottom: 10px;
}
#brands .bg-black {
  background-color: var(--text);
}
#brands .equipment-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  color: #fff;
  min-height: 235px;
}
#brands .equipment-content img {
  width: 100%;
  height: 100%;
  outline: 10px solid #fff;
  object-fit: cover;
}
#brands .equipment-content div {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#brands .equipment-content h3 {
  margin: 0;
  font-size: 30px;
}
#brands .equipment-content p {
  margin-top: 0;
}

#faq {
  background-color: var(--panel);
}
#faq .container {
  max-width: 850px;
}
#faq .container::before, #faq .container::after {
  content: "";
  width: 2px;
  height: 25px;
  background-color: var(--primary-light);
  display: block;
  margin: 25px auto;
}

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

.pill {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 999px;
  background: #f1f3f5;
  border: 1px solid #e9ecef;
  color: var(--text);
}

details {
  border-bottom: var(--borders);
  padding: 20px 15px;
}
details:open summary::after {
  transition: all 0.3s ease-in;
  rotate: 180deg;
}
details:not(:open) summary::after {
  transition: all 0.3s ease-in;
  rotate: 0deg;
}
details + details {
  margin-top: 10px;
}
details summary {
  cursor: pointer;
  font-weight: 600;
  list-style-type: none;
  position: relative;
  padding-right: 50px;
}
details summary::after {
  content: url("/assets/img/icons/down-arrow.svg");
  position: absolute;
  right: 0;
  top: 20%;
}
details p {
  margin: 10px 0 0;
  color: var(--muted);
}

#contact {
  padding: 0;
  margin-bottom: 0;
  position: relative;
}
#contact::before, #contact::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background-image: url("/assets/img/contact-1920.webp");
  background-size: cover;
  position: absolute;
  top: 0;
  z-index: -2;
}
#contact::before {
  left: 0;
  background-position: left center;
}
#contact::after {
  right: 0;
  background-position: right center;
}
#contact > .container {
  background-color: #fff;
  padding: 48px 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#contact form {
  max-width: 850px;
  display: grid;
  gap: 12px;
}
#contact form input,
#contact form textarea,
#contact form select {
  width: 100%;
  padding: 12px 14px;
  border: var(--borders);
  background: #fff;
  color: var(--text);
}
#contact form input::placeholder,
#contact form textarea::placeholder,
#contact form select::placeholder {
  font-family: Montserrat;
}
#contact form input:focus-visible, #contact form input:focus,
#contact form textarea:focus-visible,
#contact form textarea:focus,
#contact form select:focus-visible,
#contact form select:focus {
  outline: 1px solid var(--primary);
}
#contact form label {
  font-size: 15px;
}
#contact form .inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
#contact form .cta {
  margin: auto;
  display: block;
  min-width: 30%;
}
#contact form .note {
  font-size: 13px;
  color: var(--muted);
}

footer {
  padding-top: 28px;
  background: var(--text);
  color: #fff;
}
footer .footgrid {
  display: grid;
  gap: 25px;
  grid-template-columns: 3fr 1fr 2fr;
}
footer .footgrid img {
  margin-bottom: 15px;
  max-width: 300px;
}
footer .footgrid strong {
  font-family: Fjalla One;
  font-weight: normal;
  display: block;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
footer .footgrid p {
  margin: 0;
}
footer .footgrid a {
  color: #fff;
}
footer .footgrid .footer-navigation span {
  display: flex;
  flex-direction: column;
}
footer .footgrid .footer-navigation a {
  color: var(--primary-light);
}
footer .footer-legal {
  grid-column: 1/4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  border-top: 1px solid rgba(236, 243, 249, 0.1803921569);
  padding-top: 15px;
}
footer .footer-legal span a:not(:first-child) {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #fff;
}

.notice {
  margin: 1rem 0 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  line-height: 1.4;
  border: 1px solid transparent;
}
.notice.success {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0;
}
.notice.error {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

@media (max-width: 1320px) {
  #packs::before, #packs::after {
    display: none;
  }
}
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  #zone img {
    max-width: 40%;
  }
  #contact {
    margin-top: 330px;
  }
  #contact::after {
    display: none;
  }
  #contact::before {
    width: 100%;
    height: 330px;
    top: -330px;
    background-image: url("/assets/img/contact-1200.webp");
  }
}
@media (max-width: 920px) {
  footer .footgrid {
    grid-template-columns: 2fr 1fr 2fr;
  }
  #services .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid,
  .grid-3,
  .grid-2,
  .inline {
    grid-template-columns: 1fr;
  }
  #packs .pack {
    flex-direction: row;
  }
  #packs .pack > img {
    max-width: 50%;
    width: 50%;
  }
  #zone .container {
    flex-direction: column;
  }
  #zone .container img {
    max-width: 65%;
  }
  #brands .bg-primary .equipment-content {
    grid-template-columns: 1fr 2fr;
  }
  #brands .bg-black .equipment-content {
    grid-template-columns: 2fr 1fr;
  }
  #brands .bg-black .equipment-content img {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  #brands .bg-black .equipment-content > div {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  #brands .equipment-content > img:first-child {
    display: none;
  }
  #contact {
    margin-top: 250px;
  }
  #contact::before {
    height: 250px;
    top: -250px;
    background-image: url("/assets/img/contact-1200.webp");
  }
}
@media (max-width: 770px) {
  h2 {
    font-size: 30px;
    line-height: 1.2;
  }
  footer .footgrid {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  footer .footgrid .footer-navigation {
    border-top: var(--borders);
    border-bottom: var(--borders);
    padding-top: 15px;
  }
  footer .footgrid .footer-navigation a {
    display: block;
    width: 100%;
    padding: 15px;
    border-top: var(--borders) 7;
    border-bottom: var(--borders);
    text-align: center;
  }
  footer .footgrid .footer-legal {
    flex-direction: column;
    padding: 5px 0;
    gap: 8px;
  }
  footer .footgrid .footer-legal .copyright {
    text-align: left;
  }
  footer .footgrid .footer-legal .legal-links {
    display: flex;
  }
  header .nav {
    height: 80px;
    position: relative;
  }
  header .nav nav, header .nav .tel {
    width: 100%;
    position: absolute;
    left: 0;
  }
  header .nav .tel {
    width: 100%;
    display: block;
    text-align: center;
    top: 80px;
    padding: 18px;
    border-top: var(--borders);
  }
  header .nav nav {
    top: 142px;
    background-color: #fff;
  }
  header .nav nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  header .nav nav ul li {
    border-top: var(--borders);
    width: 100%;
  }
  header .nav nav ul li a {
    width: 100%;
    display: block;
    padding: 18px;
    text-align: center;
  }
  header .nav nav ul li a:active, header .nav nav ul li a:focus {
    background-color: var(--panel);
  }
  header .nav:has(#mobile-menu-btn.hide) nav, header .nav:has(#mobile-menu-btn.hide) .tel {
    display: none;
  }
  header .nav #mobile-menu-btn {
    display: block;
    position: relative;
    border: none;
    outline: none;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
  }
  header .nav #mobile-menu-btn.hide {
    background-image: url("/assets/img/icons/mobile-menu.svg");
  }
  header .nav #mobile-menu-btn:not(.hide) {
    background-image: url("/assets/img/icons/close.svg");
  }
  .hero .badges {
    position: relative;
    margin-top: 0;
    background-color: rgba(0, 0, 0, 0.815);
    gap: 1px 20px;
  }
  .hero .badges .badge::after, .hero .badges .badge::before {
    display: none;
  }
  .hero .hero-grid {
    display: block;
    padding: 50px 30px 15px 30px;
  }
  .hero .hero-grid .cta {
    width: 100%;
    display: block;
  }
  .hero .hero-grid .cta.xl {
    padding: 8px 15px;
  }
  .hero aside {
    background-color: rgba(255, 255, 255, 0.815);
    color: var(--text);
    position: relative;
    display: block;
    width: 100%;
    height: fit-content;
    padding: 7px 30px;
  }
  .hero aside h2 {
    writing-mode: unset;
    display: block;
    font-size: 20px;
    text-align: center;
    margin: 5px 0;
    height: auto;
  }
  .hero aside > div {
    width: 100%;
    max-width: 100%;
    font-size: 12px;
    text-align: left;
  }
  .hero aside > div p {
    margin: 0;
  }
  .hero aside > div ul {
    padding-left: 0;
    margin-top: 2px;
  }
}
@media (max-width: 660px) {
  .cta {
    padding: 10px 15px;
  }
  #services .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  #packs .pack {
    flex-direction: column;
  }
  #packs .pack > img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 350px;
  }
  #zone .container {
    flex-direction: column;
  }
  #zone .container img {
    max-width: 100%;
    max-height: 350px;
  }
  #brands .equipment-content > div {
    padding: 15px 30px;
    line-height: 1.2;
  }
  #contact {
    background-image: none;
  }
  #contact > .container {
    background-color: #fff;
    padding: 20px 15px;
  }
  #contact form {
    max-width: 100%;
    gap: 20px;
  }
  #contact form input,
  #contact form textarea,
  #contact form select {
    padding: 10px 8px;
    font-size: 16px;
  }
  #contact form .inline {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #contact form .cta {
    width: 100%;
  }
  #contact form .note {
    margin: 0;
  }
}

/*# sourceMappingURL=style.css.map */
