:root {
  --primary-blue: #01aaff;
  --primary-blue-dark: #018fd8;
  --text-dark: #000000;
  --text-grey: #545a6c;
  --section-bg: #f3f3ff;
  --white: #ffffff;
  --border-color: rgba(84, 90, 108, 0.16);
  --input-bg: #f9fafb;
  --font-heading: "Poppins", Arial, sans-serif;
  --font-body: "Roboto", Arial, sans-serif;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--section-bg);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  height: 84px;
  background: transparent;
}

.header-inner {
  width: min(1142px, calc(100% - 48px));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  width: 295px;
  height: auto;
  max-height: 79px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1;
}

.site-nav a {
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary-blue);
}

.site-nav .nav-button {
  border: 1px solid var(--primary-blue);
  min-width: 114px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 5px;
  background: var(--primary-blue);
  color: var(--white);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav .nav-button:hover,
.site-nav .nav-button:focus-visible {
  background: var(--primary-blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.site-header .site-nav a.nav-button:hover,
.site-header .site-nav a.nav-button:focus,
.site-header .site-nav a.nav-button:focus-visible {
  background: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--primary-blue);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 5px;
  background: var(--primary-blue);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.equipment-hero {
  position: relative;
  min-height: 478px;
  overflow: hidden;
  background: var(--section-bg);
  padding-top: 84px;
}

.hero-rings {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(360px, 39vw, 561px);
  opacity: 0.62;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  min-height: 478px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 585px;
  padding-top: 111px;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(78px, 6.25vw, 100px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span:first-child {
  color: var(--text-dark);
}

.hero-copy h1 span:last-child {
  color: var(--primary-blue);
}

.hero-visual {
  position: absolute;
  top: 0;
  right: calc((var(--container) - 100vw) / 2);
  z-index: 1;
  width: min(850px, 53.125vw);
  height: 366px;
  overflow: hidden;
  border-radius: 210px 0 0 210px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-listing {
  position: relative;
  padding: 0 0 50px;
  background: var(--section-bg);
  overflow: hidden;
}

.listing-rings {
  position: absolute;
  left: 0;
  bottom: -465px;
  z-index: 0;
  width: clamp(360px, 34vw, 502px);
  height: auto;
  max-width: none;
  pointer-events: none;
}

.listing-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 263px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.equipment-sidebar {
  display: grid;
  gap: 20px;
}

.sidebar-card {
  border-radius: 20px;
  background: var(--white);
}

.search-card {
  min-height: 112px;
  padding: 16px;
}

.sidebar-card h2 {
  margin: 0;
  color: var(--text-grey);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}

.search-field {
  position: relative;
  display: block;
  margin-top: 16px;
}

.search-field input {
  width: 100%;
  height: 36px;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  background: var(--input-bg);
  color: var(--text-dark);
  font-size: 14px;
  outline: none;
  padding: 0 12px 0 35px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-field input::placeholder {
  color: var(--text-grey);
  opacity: 1;
}

.search-field input:focus {
  border-color: rgba(1, 170, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(1, 170, 255, 0.1);
}

.search-icon {
  position: absolute;
  top: 49%;
  left: 9px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--text-grey);
  border-radius: 50%;
  opacity: 0.85;
  transform: translateY(-50%);
  pointer-events: none;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-grey);
  transform: rotate(45deg);
}

.filter-card {
  min-height: 450px;
  padding: 25px;
}

.title-rule {
  display: block;
  width: 69px;
  height: auto;
  margin: 9px 0 11px;
  object-fit: contain;
}

.filter-category {
  border-bottom: 1px solid rgba(84, 90, 108, 0.22);
}

.filter-category.is-open {
  padding-bottom: 14px;
}

.filter-category:last-child {
  border-bottom: 0;
}

.filter-trigger {
  width: 100%;
  min-height: 59px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.filter-trigger > span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #333333;
  border-bottom: 2px solid #333333;
  transform: rotate(45deg) translateY(-3px);
  transition: transform 240ms ease;
  flex: 0 0 auto;
}

.filter-category.is-open .filter-arrow {
  transform: rotate(225deg) translate(-2px, -2px);
}

.filter-icon {
  width: 10px;
  height: 5px;
  flex: 0 0 18px;
  border: 0;
  object-fit: contain;
  transform: none;
}

.filter-category.is-open .filter-icon {
  transform: none;
}

.filter-panel {
  display: grid;
  gap: 22px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  transition: max-height 280ms ease, opacity 220ms ease, padding-bottom 220ms ease;
}

.filter-category.is-open .filter-panel {
  opacity: 1;
  padding-bottom: 11px;
}

.filter-panel[hidden] {
  display: grid;
  visibility: hidden;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 20px;
  color: var(--text-grey);
  font-size: 15px;
  line-height: 1.35;
  cursor: pointer;
}

.check-option > span:last-child {
  min-width: 0;
}

.check-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-checkbox {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 1px solid rgba(84, 90, 108, 0.4);
  border-radius: 2px;
  background: var(--white);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.check-option input:checked + .custom-checkbox {
  border-color: var(--primary-blue);
}

.custom-checkbox img {
  position: absolute;
  inset: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  object-fit: contain;
  opacity: 0;
}

.check-option input:checked + .custom-checkbox img {
  opacity: 1;
}

.equipment-content {
  min-width: 0;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 262px));
  gap: 30px 31px;
}

.equipment-card {
  min-width: 0;
  min-height: 387px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: var(--white);
  padding: 15px 18px 21px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.equipment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
}

.equipment-card[hidden] {
  display: none;
}

.equipment-card img {
  width: 244px;
  height: 188px;
  margin: 0 auto 19px;
  object-fit: contain;
}

.equipment-card h2 {
  margin: 0 0 19px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}

.equipment-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 21px;
  padding: 0;
  list-style: none;
}

.equipment-card li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  min-height: 20px;
  color: var(--text-grey);
  font-size: 15px;
  line-height: 1.25;
}

.equipment-feature-label {
  color: var(--text-dark);
  font-weight: 500;
}

.equipment-card .product-check-icon {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 18px;
  object-fit: contain;
}

.details-button {
  width: 100%;
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 8px 67px;
  border: 1px solid var(--primary-blue);
  border-radius: 9px;
  background: var(--white);
  color: var(--primary-blue);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.details-button.is-filled,
.details-button:hover {
  background: var(--primary-blue);
  color: var(--white);
}

.details-button:hover {
  transform: translateY(-1px);
}

.empty-results {
  margin: 30px 0 0;
  color: var(--text-grey);
  font-size: 18px;
  text-align: center;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}

.pagination button {
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.page-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 90, 108, 0.25) !important;
  border-radius: 50%;
  color: var(--text-grey);
  font-size: 18px;
  line-height: 1;
}

.page-number.is-active {
  border-color: var(--primary-blue) !important;
  background: var(--primary-blue);
  color: var(--white);
}

.page-number:not(.is-active):hover,
.page-text:hover {
  color: var(--primary-blue);
  border-color: var(--primary-blue) !important;
}

.page-number.dots {
  font-size: 20px;
  padding-top: 3px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.page-text {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-grey);
  font-size: 15px;
  line-height: 1;
  padding: 0 7px;
}

.page-text span {
  font-size: 24px;
  line-height: 1;
}

.page-text .pagination-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 12px;
  line-height: 0;
}

.page-text .pagination-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-section {
  position: relative;
  min-height: 313px;
  background: var(--section-bg);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 90px 0 0 auto;
  z-index: 0;
  width: calc((100vw - var(--container)) / 2 + var(--container) + 116px);
  background: var(--white);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 246px 1fr;
  gap: 82px;
  align-items: start;
}

.cta-image {
  width: 490px;
  height: 246px;
  margin-left: calc((var(--container) - 100vw) / 2);
  overflow: hidden;
  border-radius: 0 130px 130px 0;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  padding-top: 174px;
}

.cta-content h2 {
  max-width: 812px;
  margin: 0 0 30px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 3.75vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cta-content h2 span {
  color: var(--text-grey);
}

.email-button {
  min-width: 458px;
  height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  border-radius: 5px;
  background: var(--primary-blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.email-button:hover {
  background: transparent;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.site-footer {
  position: relative;
  background: var(--section-bg);
  padding: 0 0 89px;
}

.footer-bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: calc((100vw - var(--container)) / 2 + var(--container) + 116px);
  background: var(--white);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 255px 1fr;
  gap: 134px;
  border-top: 1px solid var(--border-color);
  padding-top: 56px;
}

.footer-brand img {
  width: 255px;
  height: auto;
  margin: 0 0 20px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.footer-brand p,
.footer-links nav,
.footer-links p {
  margin: 0;
  color: var(--text-grey);
  font-size: 15px;
  line-height: 1.5;
}

.footer-links p {
  color: var(--text-grey);
}

.footer-brand a,
.footer-links a {
  transition: color 180ms ease;
}

.footer-brand a:hover,
.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-links p a {
  color: var(--primary-blue);
}

.footer-links h2 {
  margin: 0 0 28px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.footer-links nav {
  display: flex;
  gap: 36px;
  margin-bottom: 32px;
}
