:root {
  --ink: #26322d;
  --muted: #66736c;
  --line: #dfe6e2;
  --panel: #f7f9f7;
  --brand: #1f7a4c;
  --brand-dark: #145336;
  --accent: #c77825;
  --white: #fff;
  --shadow: 0 12px 28px rgba(26, 44, 36, 0.12);
  --container: 1520px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  padding-top: 76px;
  color: var(--ink);
  background: var(--white);
  font-family: Rubik, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}

.admin-bar .site-header {
  top: 32px;
}

.nav-wrap {
  width: min(var(--container), calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 220px;
  flex: 0 0 auto;
}

.brand-original {
  min-width: 220px;
}

.brand-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  margin-top: 3px;
}

.main-nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  flex: 1;
}

.main-nav > a,
.nav-item > a {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #2e3833;
  font-size: 15.5px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav > a.nav-quote {
  min-height: 0;
  height: 42px;
  margin-left: 12px;
  padding: 0 18px;
  color: var(--white);
  background: #d95d16;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(217, 93, 22, 0.24);
}

.main-nav > a.nav-quote:hover {
  color: var(--white);
  background: #bf4f12;
}

.main-nav > a:hover,
.nav-item:hover > a {
  color: var(--brand);
}

.nav-item {
  height: 76px;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  width: 100%;
  min-height: 290px;
  padding: 38px max(32px, calc((100vw - var(--container)) / 2)) 34px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 160ms ease;
  pointer-events: none;
}

.mega-menu-narrow {
  grid-template-columns: repeat(2, minmax(0, 300px));
  justify-content: center;
  min-height: auto;
}

.mega-col h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-dark);
}

.mega-col a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 14px;
}

.mega-col a:hover {
  color: var(--brand);
}

.mega-cta {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 26px;
  color: var(--white);
  background: var(--brand-dark);
  border-radius: 4px;
}

.mega-cta span {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
}

.mega-menu-applications {
  grid-template-columns: 1fr;
  min-height: auto;
  padding-top: 24px;
  padding-bottom: 24px;
}

.mega-app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mega-app-grid a {
  display: block;
  min-height: 92px;
  padding: 15px 16px;
  color: var(--text);
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mega-app-grid a:hover {
  border-color: rgba(229, 101, 26, 0.55);
  box-shadow: 0 8px 18px rgba(11, 61, 46, 0.1);
  transform: translateY(-1px);
}

.mega-app-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-dark);
  font-size: 15px;
  line-height: 1.25;
}

.mega-app-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: 520px;
  background: #1c2b24;
}

.hero-slider {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 520ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 14, 0.72), rgba(8, 20, 14, 0.2) 56%, rgba(8, 20, 14, 0.1));
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: max(32px, calc((100vw - var(--container)) / 2));
  top: 50%;
  transform: translateY(-50%);
  width: min(620px, calc(100% - 64px));
  color: var(--white);
}

.hero-copy p {
  margin: 0 0 10px;
  color: #dce9e2;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 700;
  max-width: 690px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  color: var(--white);
  background: var(--brand);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

.button:hover {
  background: var(--brand-dark);
}

.button-small {
  min-height: 40px;
  padding-inline: 18px;
  background: var(--accent);
}

.slider-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--white);
}

.section {
  padding: 72px 0;
}

.intro .container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 54px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.standards h2,
.footer-main h2 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.22;
  font-weight: 600;
}

.intro p,
.section-heading p,
.standards p,
.footer-main p {
  margin: 0 0 14px;
  color: var(--muted);
}

.advantage-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.advantage-list li {
  min-height: 48px;
  padding: 12px 16px;
  border-left: 4px solid var(--brand);
  background: var(--panel);
  font-weight: 500;
}

.products,
.hot-products,
.accessories {
  background: var(--panel);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.product-card,
.hot-card,
.review-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(31, 52, 42, 0.05);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
}

.product-card h3,
.product-card p {
  padding-inline: 22px;
}

.product-card h3 {
  margin: 21px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.product-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

.standards-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 50px;
  align-items: center;
}

.standard-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.standard-badges span {
  min-height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--brand-dark);
  background: var(--white);
  font-size: 28px;
  font-weight: 700;
}

.hot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hot-card {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 8px 18px;
  padding: 16px;
}

.hot-card img {
  grid-row: span 2;
  width: 130px;
  height: 106px;
  object-fit: cover;
}

.hot-card span {
  align-self: end;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.hot-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.technology {
  background: #fbfcfb;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
}

.article-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.article-list span {
  color: var(--brand);
  white-space: nowrap;
}

.accessory-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.accessory-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.accessory-grid img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.accessory-grid span {
  display: block;
  padding: 13px 14px;
  font-weight: 600;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.review-grid article {
  padding: 28px;
}

.review-grid img {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 50%;
  object-fit: cover;
}

.review-grid h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.review-grid p {
  margin: 0 0 16px;
  color: var(--muted);
}

.site-footer {
  color: #e7eee9;
  background: #0d3f31;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(170px, 0.75fr) minmax(190px, 0.8fr) minmax(250px, 1fr);
  gap: 56px;
  padding: 58px 0 44px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: #d7e5de;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-brand strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0;
}

.footer-brand p {
  max-width: 310px;
  margin: 0 0 16px;
  color: #c7d8d0;
  font-size: 15px;
  line-height: 1.55;
}

.footer-brand ul {
  display: grid;
  gap: 7px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.footer-brand li {
  position: relative;
  padding-left: 18px;
  color: #e4eee9;
  font-size: 14px;
  line-height: 1.35;
}

.footer-brand li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: #e5651a;
  border-radius: 50%;
}

.footer-quote {
  width: fit-content;
  min-width: 156px;
  padding: 12px 18px;
  color: #fff !important;
  background: #d95d16;
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.footer-quote:hover {
  background: #bf4f12;
}

.footer-column {
  min-width: 0;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: 160ms ease;
}

.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.site-footer p {
  color: #c5d4cc;
}

.footer-contact {
  min-width: 0;
}

.footer-contact-line {
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin: 11px 0 !important;
  color: #e4eee9 !important;
}

.footer-contact-line svg {
  width: 20px;
  height: 20px;
  fill: none;
  color: #e5651a;
}

.footer-contact-line svg path {
  fill: currentColor;
}

.footer-contact-line span {
  overflow-wrap: anywhere;
}

.footer-subscribe {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-subscribe label {
  display: grid;
  gap: 7px;
  color: #d5e1db;
  font-size: 13px;
  font-weight: 600;
}

.footer-subscribe input {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #b7c7bf;
  font-size: 14px;
  gap: 18px;
}

.footer-bottom strong {
  color: var(--white);
  font-size: 16px;
}

.footer-bottom a {
  margin: 0;
}

.message-dialog {
  width: min(560px, calc(100% - 32px));
  border: 0;
  border-radius: 6px;
  padding: 0;
  box-shadow: var(--shadow);
}

.message-dialog::backdrop {
  background: rgba(16, 31, 24, 0.6);
}

.message-form {
  position: relative;
  padding: 30px;
}

.message-form h2 {
  margin: 0 0 8px;
}

.message-form p {
  margin: 0 0 20px;
  color: var(--muted);
}

.message-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.message-form input,
.message-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
}

.dialog-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.page-hero {
  min-height: 260px;
  display: flex;
  align-items: end;
  color: var(--white);
  background: url("assets/hero-green.jpg") center / cover;
}

.page-hero .container {
  padding: 74px 0 46px;
}

.page-hero p {
  margin: 0 0 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.page-hero h1 {
  margin: 0;
  max-width: 840px;
  color: #fff;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.12;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.58);
}

.breadcrumb {
  padding: 14px 0;
  color: var(--muted);
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--brand);
}

.page-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 86px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
}

.sidebar h2 {
  margin: 0;
  padding: 15px 18px;
  color: var(--white);
  background: var(--brand-dark);
  font-size: 18px;
  line-height: 1.25;
}

.sidebar a {
  display: block;
  padding: 11px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.sidebar a:hover {
  color: var(--brand);
  background: var(--panel);
}

.page-content h2 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.25;
}

.page-content h3 {
  margin: 28px 0 10px;
  font-size: 21px;
  line-height: 1.28;
}

.page-content [id],
.command-home [id] {
  scroll-margin-top: 110px;
}

.admin-bar .page-content [id],
.admin-bar .command-home [id] {
  scroll-margin-top: 142px;
}

.page-content p {
  color: var(--muted);
}

.content-photo {
  width: 100%;
  margin: 8px 0 24px;
  border-radius: 4px;
  object-fit: cover;
  max-height: 420px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.catalog-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  min-height: 154px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
}

.catalog-card img {
  width: 150px;
  height: 126px;
  object-fit: cover;
  border-radius: 3px;
}

.catalog-card h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.catalog-card p {
  margin: 0;
  font-size: 14px;
}

.application-card {
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.application-card:hover {
  border-color: rgba(229, 101, 26, 0.55);
  box-shadow: 0 12px 28px rgba(11, 61, 46, 0.12);
  transform: translateY(-2px);
}

.application-detail-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 26px;
}

.application-detail {
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
}

.application-detail h3 {
  margin-top: 0;
}

.application-detail p {
  margin-bottom: 0;
}

.application-detail-page.section {
  padding: 34px 0;
}

main.application-detail-page.section {
  padding-top: 46px;
}

.application-detail-page + .application-detail-page {
  border-top: 1px solid var(--line);
}

.application-detail-page .container.page-content {
  width: min(1180px, calc(100% - 32px));
}

.application-detail-page .content-photo {
  margin: 0;
  max-height: 360px;
  aspect-ratio: 2.1;
}

.application-detail-page h2,
.application-detail-page h3 {
  margin-top: 0;
}

.application-detail-page .about-lead {
  max-width: 840px;
  margin-bottom: 0;
  font-size: 16px;
}

.application-detail-split,
.application-detail-bottom {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.application-detail-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
}

.application-detail {
  padding: 16px 18px;
}

.application-detail h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.application-quote-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 4px;
}

.application-detail-page .spec-list {
  margin-top: 12px;
}

.application-detail-page .spec-list li {
  padding-top: 8px;
  padding-bottom: 8px;
}

.application-detail-page .command-table th,
.application-detail-page .command-table td {
  padding: 12px 18px;
}

.text-list,
.spec-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.text-list li,
.spec-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.text-list li::before,
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 50%;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
}

.contact-box {
  padding: 24px;
  color: var(--white);
  background: var(--brand-dark);
  border-radius: 4px;
}

.contact-box h2,
.contact-box p {
  color: inherit;
}

.inline-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
}

.inline-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.inline-form input,
.inline-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.pager {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.pager span {
  padding: 8px 16px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

@media (max-width: 1120px) {
  body {
    padding-top: 68px;
  }

  .container,
  .nav-wrap,
  .footer-bottom {
    width: min(100% - 32px, var(--container));
  }

  .nav-wrap {
    height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-original {
    min-width: 0;
  }

  .brand-logo {
    width: 174px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
    width: 48px;
    height: 48px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a,
  .nav-item > a {
    min-height: 56px;
    padding: 0 24px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-item {
    height: auto;
  }

  .mega-menu,
  .mega-menu-narrow {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px 24px 22px;
    box-shadow: none;
    border-top: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .has-mega:hover .mega-menu,
  .has-mega:focus-within .mega-menu {
    display: grid;
  }

  .mega-app-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mega-app-grid a {
    min-height: 0;
    padding: 13px 14px;
  }

  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .footer-subscribe {
    min-width: 0;
  }

  .footer-subscribe input,
  .footer-subscribe .button {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .hero-slider {
    height: 500px;
  }

  .hero-copy {
    left: 24px;
    width: calc(100% - 48px);
  }

  .intro .container,
  .standards-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .hot-grid,
  .article-list {
    grid-template-columns: 1fr 1fr;
  }

  .accessory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .application-detail-split,
  .application-detail-bottom,
  .application-detail-list {
    grid-template-columns: 1fr;
  }

  .application-detail-page.section {
    padding: 28px 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 64px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .nav-wrap {
    height: 64px;
  }

  .main-nav {
    top: 64px;
  }

  body {
    font-size: 15px;
  }

  .brand strong {
    max-width: 206px;
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .brand-logo {
    width: 160px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-slider {
    height: 474px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .section {
    padding: 54px 0;
  }

  .intro h2,
  .section-heading h2,
  .standards h2,
  .footer-main h2 {
    font-size: 27px;
  }

  .product-grid,
  .hot-grid,
  .review-grid,
  .article-list,
  .advantage-list {
    grid-template-columns: 1fr;
  }

  .hot-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .hot-card img {
    width: 104px;
    height: 96px;
  }

  .accessory-grid,
  .standard-badges {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero .container {
    padding: 56px 0 36px;
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.45;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
  }
}

/* COMMAND reference homepage */
.command-home {
  background: #fbfbf8;
  color: #173f32;
}

.command-home .container {
  width: min(1510px, calc(100% - 48px));
}

.command-hero {
  position: relative;
  min-height: 585px;
  overflow: hidden;
  background: #063f31;
}

.command-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.command-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 63, 47, 0.96) 0%, rgba(3, 63, 47, 0.88) 28%, rgba(3, 63, 47, 0.25) 62%, rgba(3, 63, 47, 0.02) 100%);
}

.command-hero-content {
  position: relative;
  z-index: 1;
  width: min(1510px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0 96px;
  color: var(--white);
}

.command-hero h1 {
  max-width: 760px;
  margin: 0 0 30px;
  font-size: 64px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

.command-hero h1::after,
.command-section-title h2::after {
  content: "";
  display: block;
  width: 88px;
  height: 4px;
  margin-top: 28px;
  background: #e96118;
}

.command-hero p {
  max-width: 820px;
  margin: 8px 0 0;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
}

.command-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.command-button,
.command-button-outline {
  min-width: 186px;
  justify-content: center;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
}

.command-button {
  background: #d95d16;
  box-shadow: 0 12px 26px rgba(217, 93, 22, 0.22);
}

.command-button:hover {
  background: #bf4f12;
}

.command-button-outline {
  background: rgba(3, 63, 47, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.command-band {
  padding: 44px 0;
  border-bottom: 1px solid #e3e9e3;
}

.command-feature-band {
  background: #fff;
}

.command-section-title h2 {
  margin: 0 0 34px;
  color: #164535;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0;
}

.command-section-title h2::after {
  width: 74px;
  height: 3px;
  margin-top: 14px;
}

.command-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 54px;
}

.command-features article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
}

.command-features .dashicons {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #15533f;
  border-radius: 50%;
  font-size: 32px;
  line-height: 62px;
}

.command-features h3,
.command-process h3 {
  margin: 0 0 8px;
  color: #1d3f35;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}

.command-features h3,
.command-features p {
  grid-column: 2;
}

.command-features .dashicons {
  grid-row: 1 / span 2;
}

.command-features p,
.command-copy p,
.command-process p {
  margin: 0 0 14px;
  color: #56655f;
  font-size: 15.5px;
  line-height: 1.55;
}

.command-products {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.command-products a,
.command-process article {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce5dd;
  border-radius: 5px;
  box-shadow: 0 10px 22px rgba(18, 55, 44, 0.08);
}

.command-products img {
  width: 100%;
  aspect-ratio: 1.03;
  object-fit: cover;
}

.command-products strong {
  display: block;
  min-height: 58px;
  padding: 18px 16px 6px;
  color: #173f32;
  font-size: 17px;
  line-height: 1.14;
}

.command-products span {
  display: block;
  padding: 0 16px 18px;
  color: #134836;
  font-size: 14px;
  font-weight: 700;
}

.command-products span::after {
  content: ">";
  margin-left: 12px;
  color: #e96118;
  font-weight: 700;
}

.command-split {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.command-wide-image,
.command-duo img,
.command-apps img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(18, 55, 44, 0.09);
}

.command-wide-image {
  aspect-ratio: 2.9;
}

.command-checks {
  display: grid;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.command-checks li {
  position: relative;
  padding-left: 28px;
  color: #21483d;
  font-weight: 600;
}

.command-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  border: 2px solid #34745e;
  border-radius: 50%;
}

.command-checks li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #34745e;
  border-bottom: 2px solid #34745e;
  transform: rotate(-45deg);
}

.command-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  color: #354941;
  background: #fff;
  border: 1px solid #d8e2dc;
  border-radius: 5px;
}

.command-table th,
.command-table td {
  padding: 14px 28px;
  border-bottom: 1px solid #d8e2dc;
  font-size: 16px;
  text-align: left;
}

.command-table th {
  width: 38%;
  background: #fbfcfa;
  font-weight: 600;
}

.command-table tr:last-child th,
.command-table tr:last-child td {
  border-bottom: 0;
}

.command-apps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  text-align: center;
}

.command-apps img {
  aspect-ratio: 1.72;
}

.command-apps strong {
  display: block;
  padding-top: 13px;
  color: #263f37;
  font-size: 17px;
}

.command-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 52px;
}

.command-process article {
  position: relative;
  overflow: visible;
  text-align: center;
}

.command-process article:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -36px;
  top: 28%;
  color: #1f6a53;
  font-size: 36px;
  font-weight: 700;
}

.command-process img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}

.command-process b {
  position: absolute;
  left: 14px;
  top: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #15533f;
  border: 3px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  font-size: 18px;
}

.command-process h3 {
  margin: 18px 14px 8px;
}

.command-process p {
  margin: 0;
  padding: 0 16px 20px;
}

.command-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.command-duo img {
  aspect-ratio: 1.72;
  border-radius: 4px;
}

.command-quote {
  background: #f4f7f3;
}

.command-quote-layout {
  display: grid;
  grid-template-columns: minmax(330px, 470px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.command-quote .command-copy {
  align-self: stretch;
}

.quote-lead {
  max-width: 420px;
  margin: 0 0 20px;
  color: #223e35;
  font-size: 17px;
  line-height: 1.65;
}

.quote-info-grid {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.quote-info-grid div {
  display: grid;
  gap: 5px;
  padding: 15px 16px;
  background: #fff;
  border: 1px solid #dbe4dd;
  border-left: 4px solid #e5651a;
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(18, 55, 44, 0.05);
}

.quote-info-grid strong {
  color: #0f4638;
  font-size: 15px;
}

.quote-info-grid span {
  color: #49645b;
  font-size: 14px;
  line-height: 1.45;
}

.quote-checklist {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.quote-checklist li {
  position: relative;
  padding-left: 24px;
  color: #223e35;
  font-size: 15px;
  line-height: 1.45;
}

.quote-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border: 2px solid #1f7a4c;
  border-radius: 50%;
  background: #f4f7f3;
}

.quote-contact {
  margin: 0;
  color: #223e35;
  font-size: 16px;
}

.command-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  padding: 28px;
  background: #fff;
  border: 1px solid #dbe4dd;
  border-radius: 6px;
  box-shadow: 0 14px 28px rgba(18, 55, 44, 0.09);
}

.command-form label {
  display: grid;
  gap: 7px;
  color: #223e35;
  font-weight: 600;
}

.command-form .command-field-wide,
.command-form button {
  grid-column: 1 / -1;
}

.command-form input,
.command-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: #1e352e;
  border: 1px solid #cfdad3;
  border-radius: 4px;
  background: #fbfcfb;
}

.command-form input:focus,
.command-form textarea:focus {
  outline: 3px solid rgba(31, 122, 76, 0.2);
  border-color: #1f7a4c;
}

.command-form textarea {
  min-height: 150px;
  resize: vertical;
}

@media (max-width: 1320px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    height: auto;
    max-height: calc(100vh - 108px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    overflow: auto;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a,
  .nav-item > a,
  .main-nav > a.nav-quote {
    min-height: 44px;
    height: auto;
    justify-content: flex-start;
    margin-left: 0;
    padding: 10px 14px;
    font-size: 16px;
  }

  .nav-item {
    height: auto;
  }
}

@media (max-width: 1180px) {
  .command-hero h1 {
    font-size: 50px;
  }

  .command-features,
  .command-apps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .command-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .command-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .command-process article::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .command-home .container,
  .command-hero-content {
    width: min(100% - 32px, 1510px);
  }

  .command-hero {
    min-height: 560px;
  }

  .command-hero > img {
    object-position: 64% center;
  }

  .command-hero-shade {
    background: linear-gradient(90deg, rgba(3, 63, 47, 0.97), rgba(3, 63, 47, 0.78));
  }

  .command-hero-content {
    padding: 88px 0 76px;
  }

  .command-hero h1 {
    font-size: 42px;
  }

  .command-hero p {
    font-size: 18px;
  }

  .command-actions,
  .command-split,
  .command-quote-layout,
  .command-duo {
    grid-template-columns: 1fr;
  }

  .command-actions {
    display: grid;
    gap: 14px;
    max-width: 320px;
  }

  .command-features,
  .command-products,
  .command-apps,
  .command-process,
  .command-form {
    grid-template-columns: 1fr;
  }

  .command-form .command-field-wide,
  .command-form button {
    grid-column: auto;
  }

  .command-section-title h2 {
    font-size: 28px;
  }
}

body:not(.elementor-editor-active) .ccm-replaceable-image-source {
  display: none !important;
}

.elementor-editor-active .ccm-replaceable-image-source {
  margin: 10px 0;
  padding: 10px;
  border: 1px dashed #d27a24;
  background: #fff7ef;
}

.elementor-editor-active .ccm-replaceable-image-source::before {
  content: "Editable image - click to replace";
  display: block;
  margin-bottom: 6px;
  color: #9a4a0f;
  font: 600 12px/1.3 Rubik, Arial, sans-serif;
}

.elementor-editor-active .ccm-replaceable-image-source img {
  max-height: 180px;
  object-fit: contain;
}

/* Sitewide color alignment with the homepage palette. */
:root {
  --ink: #173f32;
  --muted: #56655f;
  --line: #dbe4dd;
  --panel: #f4f7f3;
  --brand: #15533f;
  --brand-dark: #063f31;
  --accent: #e5651a;
  --white: #fff;
  --shadow: 0 12px 28px rgba(18, 55, 44, 0.1);
}

body {
  color: var(--ink);
  background: #fbfbf8;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 var(--line);
}

.brand,
.nav-item > a,
.main-nav > a,
.page-content h1,
.page-content h2,
.page-content h3,
.section-heading h2,
.sidebar h2,
.catalog-card h3,
.product-card h3,
.hot-card h3,
.application-detail h3,
.command-section-title h2 {
  color: var(--brand-dark);
}

.nav-item:hover > a,
.main-nav > a:hover,
.mega-col a:hover,
.mega-app-grid a:hover strong,
.sidebar a:hover,
.breadcrumb a,
.article-list span,
.catalog-card a,
.product-card a,
.hot-card a {
  color: var(--accent);
}

.button,
.command-button,
.main-nav > a.nav-quote,
.quote-panel button,
.inline-form button,
.command-form button,
input[type="submit"] {
  color: #fff;
  background: var(--accent);
}

.button:hover,
.command-button:hover,
.main-nav > a.nav-quote:hover,
.quote-panel button:hover,
.inline-form button:hover,
.command-form button:hover,
input[type="submit"]:hover {
  color: #fff;
  background: #bf4f12;
}

.page-hero,
.contact-box,
.mega-cta,
.site-footer,
.footer-main {
  color: #fff;
  background-color: var(--brand-dark);
}

.page-hero {
  background-blend-mode: normal;
}

.section,
.products,
.hot-products,
.accessories,
.technology,
.breadcrumb,
.command-home {
  background-color: #fbfbf8;
}

.catalog-card,
.product-card,
.hot-card,
.review-grid article,
.accessory-grid article,
.application-detail,
.application-quote-card,
.inline-form,
.message-dialog,
.quote-panel,
.command-table,
.mega-menu,
.mega-app-grid a,
.about-clean .about-metric {
  background-color: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.advantage-list li,
.standard-badges span,
.command-table th,
.contact-panel .inline-form,
.about-clean .about-metric {
  background-color: var(--panel);
}

.page-content,
.page-content p,
.sidebar a,
.breadcrumb,
.catalog-card p,
.product-card p,
.hot-card p,
.application-detail p,
.quote-lead,
.mega-col a,
.mega-app-grid span,
.command-table td {
  color: var(--muted);
}

.text-list li::before,
.spec-list li::before {
  background: var(--brand);
}

.command-table th {
  color: var(--brand-dark);
}

input,
textarea,
select {
  color: var(--ink);
  background-color: #fff;
  border-color: #cfdad3;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(31, 122, 76, 0.18);
}

body.page-id-61 .elementor-element-05ba835,
body.page-id-61 .elementor-element-05ba835.e-con {
  background-color: #fbfbf8 !important;
}
