:root {
  --ink: #101816;
  --muted: #5d706b;
  --line: #d9e7e2;
  --paper: #ffffff;
  --soft: #f2f8f6;
  --steel: #1e6a62;
  --blue: #087568;
  --orange: #ff6a00;
  --green: #18b984;
  --night: #071411;
  --shadow: 0 22px 60px rgba(7, 20, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  background: var(--paper);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(220, 228, 237, 0.88);
  backdrop-filter: blur(14px);
}

.top-strip {
  background: var(--night);
  color: #ecf3fb;
  font-size: 0.88rem;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 16px;
}

.top-strip a {
  color: #ffffff;
  font-weight: 700;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 246px;
}

.brand__logo {
  width: 124px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.brand small {
  display: block;
  max-width: 126px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.22;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  flex: 1;
}

.nav-links a {
  border-radius: 8px;
  padding: 10px 10px;
  color: #2d3b4c;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
  background: #eaf8f4;
  outline: 0;
}

.nav-links a.is-active {
  color: #ffffff;
  background: var(--blue);
}

.nav-links .nav-cta {
  color: #ffffff;
  background: var(--blue);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: #ffffff;
  background: #075f55;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 2px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3px;
  background: #ffffff;
}

.language-switcher button {
  min-width: 34px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.is-active {
  color: #ffffff;
  background: var(--blue);
  outline: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section-band {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78)),
    linear-gradient(180deg, #eef9f4, #ffffff);
}

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
  padding: 54px 0 74px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: 3.3rem;
  line-height: 1.04;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.2rem;
  line-height: 1.15;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero__lead {
  max-width: 650px;
  color: #425165;
  font-size: 1.14rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.btn--primary {
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 16px 34px rgba(255, 106, 0, 0.22);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #e95d00;
}

.btn--secondary {
  color: var(--blue);
  border-color: #b7d9d2;
  background: #ffffff;
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  box-shadow: 0 12px 28px rgba(8, 117, 104, 0.14);
}

.btn--ghost {
  color: var(--ink);
  border-color: rgba(8, 117, 104, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  box-shadow: 0 12px 28px rgba(7, 20, 17, 0.1);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
  margin: 0;
}

.hero__facts div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.hero__facts dt {
  color: var(--blue);
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1.12;
  white-space: nowrap;
}

.hero__facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__visual {
  position: relative;
  min-height: 454px;
}

.hero__visual--mx {
  min-height: 520px;
}

.mx-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 78%, rgba(24, 185, 132, 0.32), transparent 34%),
    linear-gradient(140deg, #05100e, #0c261f 52%, #101816);
  box-shadow: var(--shadow);
}

.mx-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.04) 75%, transparent 75%, transparent);
  background-size: 34px 34px;
  opacity: 0.18;
}

.mx-visual__screen {
  position: absolute;
  top: 42px;
  right: -18px;
  width: 86%;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.mx-visual__controller {
  position: absolute;
  left: 7%;
  bottom: 34px;
  width: 29%;
  min-width: 155px;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.48));
}

.mx-visual__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(24, 185, 132, 0.52);
  border-radius: 999px;
  padding: 8px 12px;
  color: #eafff8;
  background: rgba(5, 16, 14, 0.78);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.mx-visual__badge--one {
  left: 9%;
  top: 52px;
}

.mx-visual__badge--two {
  right: 8%;
  bottom: 92px;
}

.mx-visual__badge--three {
  left: 34%;
  bottom: 38px;
}

.hero__image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero__image--main {
  aspect-ratio: 16 / 8.6;
}

.hero__image--small {
  position: absolute;
  right: 34px;
  bottom: 0;
  width: 58%;
  aspect-ratio: 16 / 8.8;
  border: 8px solid #ffffff;
}

.quick-links {
  margin-top: -44px;
  position: relative;
  z-index: 2;
}

.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.quick-links a {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(20, 32, 46, 0.09);
}

.quick-links span {
  grid-row: span 2;
  color: var(--orange);
  font-weight: 900;
}

.quick-links strong {
  align-self: end;
  font-size: 1.02rem;
}

.quick-links small {
  color: var(--muted);
}

.section {
  padding: 96px 0;
}

.section--muted {
  background: var(--soft);
}

.section--dark {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(17, 25, 35, 0.98), rgba(25, 45, 64, 0.94)),
    url("assets/product-range-cropped.jpg") center bottom / cover;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.page-intro {
  padding: 86px 0 58px;
}

.page-intro .section-heading {
  margin-bottom: 0;
}

.page-intro h1 {
  margin-right: auto;
  margin-left: auto;
  font-size: 2.8rem;
}

.mx-section {
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(7, 20, 17, 0.98), rgba(9, 45, 37, 0.94)),
    url("assets/zumiu-mx-interface.png") center / cover;
}

.mx-section .section-heading p:not(.eyebrow) {
  color: #c9ddd7;
}

.mx-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 40px;
  align-items: center;
}

.mx-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mx-feature-grid article {
  min-height: 338px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.mx-feature-grid img {
  width: 100%;
  height: 154px;
  object-fit: cover;
  background: #030807;
}

.mx-feature-grid strong,
.mx-feature-grid span {
  display: block;
  padding-right: 18px;
  padding-left: 18px;
}

.mx-feature-grid strong {
  margin-top: 18px;
  margin-bottom: 8px;
  color: #ffffff;
}

.mx-feature-grid span {
  color: #c9ddd7;
  font-size: 0.94rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-btn {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 14px;
  color: var(--muted);
  background: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.filter-btn.is-active,
.filter-btn:hover,
.filter-btn:focus-visible {
  color: #ffffff;
  border-color: var(--blue);
  background: var(--blue);
  outline: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(20, 32, 46, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(20, 32, 46, 0.14);
}

.product-card.is-hidden {
  display: none;
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #e8eef5;
}

.product-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  grid-column: span 2;
  min-height: 340px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 78%, rgba(24, 185, 132, 0.18), transparent 32%),
    linear-gradient(140deg, #06110f, #0b251f 56%, #101816);
}

.product-card--featured img {
  height: 100%;
  min-height: 340px;
  background: #030807;
}

.product-card--featured .product-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-card--featured .product-card__body p {
  color: #c9ddd7;
}

.product-card--featured .product-card__body a {
  color: #70e5bd;
}

.product-card--range img {
  object-position: center bottom;
}

.product-card__body {
  padding: 22px;
}

.product-card__body p {
  color: var(--muted);
}

.product-card__body a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
}

.product-card--text {
  display: flex;
  align-items: end;
  min-height: 300px;
  background:
    linear-gradient(140deg, rgba(8, 117, 104, 0.11), rgba(255, 106, 0, 0.12)),
    #ffffff;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #0f5b43;
  background: rgba(22, 163, 107, 0.13);
  font-size: 0.78rem;
  font-weight: 900;
}

.catalog-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 44px;
  align-items: center;
}

.catalog-hero .section-heading {
  margin-bottom: 0;
}

.catalog-highlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.catalog-highlight div {
  min-height: 142px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(7, 20, 17, 0.08);
}

.catalog-highlight strong,
.catalog-highlight span {
  display: block;
}

.catalog-highlight strong {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.38rem;
  line-height: 1.1;
}

.catalog-highlight span {
  color: var(--muted);
  font-weight: 700;
}

.catalog-nav {
  position: sticky;
  top: 112px;
  z-index: 20;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.catalog-nav__inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
}

.catalog-nav a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 13px;
  color: var(--muted);
  background: #ffffff;
  font-weight: 800;
}

.catalog-nav a:hover,
.catalog-nav a:focus-visible {
  color: #ffffff;
  border-color: var(--blue);
  background: var(--blue);
  outline: 0;
}

.catalog-section {
  scroll-margin-top: 150px;
}

.catalog-section--muted {
  background: var(--soft);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.catalog-grid--wide {
  grid-template-columns: 1fr;
}

.catalog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(20, 32, 46, 0.08);
}

.catalog-card--featured {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 86%, rgba(24, 185, 132, 0.26), transparent 32%),
    linear-gradient(140deg, #06110f, #0b251f 56%, #101816);
}

.catalog-card__media {
  display: grid;
  place-items: center;
  min-height: 232px;
  background: #edf4f1;
}

.catalog-card--featured .catalog-card__media {
  min-height: 430px;
  background: #030807;
}

.catalog-card__media img {
  width: 100%;
  height: 100%;
  min-height: 232px;
  object-fit: contain;
  padding: 16px;
}

.catalog-card--featured .catalog-card__media img {
  min-height: 430px;
  object-fit: cover;
  padding: 0;
}

.catalog-card__media--solid img {
  object-fit: contain;
  padding: 18px;
}

.catalog-card__media--photo img {
  object-fit: cover;
  padding: 0;
}

.catalog-card__media--cutout {
  min-height: 300px;
  background: #f6f7f6;
}

.catalog-card__media--cutout img {
  height: 300px;
  min-height: 300px;
  object-fit: contain;
  padding: 18px;
}

.catalog-card__body {
  padding: 24px;
}

.catalog-card__body p {
  color: var(--muted);
}

.catalog-card--featured .catalog-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.catalog-card--featured .catalog-card__body p,
.catalog-card--featured .spec-list li {
  color: #c9ddd7;
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.spec-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.catalog-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.catalog-cta {
  padding-top: 74px;
  padding-bottom: 74px;
}

.catalog-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.catalog-cta__inner div {
  max-width: 760px;
}

.catalog-cta__inner p:not(.eyebrow) {
  color: var(--muted);
}

.download-section {
  background: #ffffff;
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.download-category + .download-category,
.download-instructions {
  margin-top: 42px;
}

.download-category__heading {
  max-width: 780px;
  margin-bottom: 18px;
}

.download-category__heading p:not(.eyebrow) {
  color: var(--muted);
}

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(8, 117, 104, 0.08), rgba(255, 106, 0, 0.08)),
    #ffffff;
  box-shadow: 0 14px 36px rgba(7, 20, 17, 0.08);
}

.download-card--placeholder {
  background: #ffffff;
}

.download-card p {
  max-width: 760px;
  color: var(--muted);
}

.download-card__comment {
  font-weight: 800;
}

.download-card small {
  display: block;
  color: var(--steel);
  font-weight: 800;
}

.download-category--dynamic {
  margin-top: 44px;
}

.news-section {
  background: #f7faf9;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(20, 32, 46, 0.08);
}

.news-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #edf4f1;
}

.news-card__body {
  padding: 26px;
}

.news-card__body small {
  display: block;
  margin: -4px 0 14px;
  color: var(--muted);
  font-weight: 800;
}

.news-card__body p {
  color: var(--muted);
}

.admin-section {
  background: #f7faf9;
}

.admin-card,
.admin-toolbar {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(20, 32, 46, 0.08);
}

.admin-card {
  padding: 24px;
}

.admin-card--login {
  max-width: 520px;
  margin: 0 auto;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 20px 24px;
}

.admin-toolbar p {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-form label {
  display: grid;
  gap: 7px;
  color: #253445;
  font-weight: 800;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid #b9d2cb;
  border-radius: 8px;
  padding: 11px 12px;
  color: #10231f;
  background: #ffffff;
  font: inherit;
}

.admin-form textarea {
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(8, 117, 104, 0.16);
}

.admin-form__wide {
  grid-column: 1 / -1;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-list__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8fbfa;
}

.admin-list__item span {
  grid-column: 1;
  color: var(--muted);
}

.admin-list__actions {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-empty {
  margin: 0;
  color: var(--muted);
}

.admin-help {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.admin-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-status[data-status="error"] {
  color: #b42318;
}

.form-status[data-status="success"] {
  color: #0f6f4f;
}

.download-instructions {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.download-instructions h2 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.download-instructions ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.download-instructions li + li {
  margin-top: 8px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.application-grid article {
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.application-grid strong,
.application-grid span {
  display: block;
}

.application-grid strong {
  margin-bottom: 8px;
}

.application-grid span {
  color: var(--muted);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
}

.support-panel {
  padding: 34px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(150deg, rgba(7, 20, 17, 0.97), rgba(8, 117, 104, 0.86)),
    url("assets/zumiu-mx-interface.png") center / cover;
}

.support-panel p:not(.eyebrow) {
  color: #e7eff7;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.service-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 900;
  background: var(--steel);
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.maker {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.maker p:not(.eyebrow) {
  color: #dce7f0;
}

.maker__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.maker__stats div {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.maker__stats strong,
.maker__stats span {
  display: block;
}

.maker__stats strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.55rem;
}

.maker__stats span {
  color: #dce7f0;
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-card span {
  color: var(--muted);
}

.contact-card a {
  color: var(--blue);
  font-weight: 800;
}

.contact-people {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.person-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.person-card img {
  width: 112px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  background: #e6efeb;
}

.person-card span,
.person-card strong,
.person-card a {
  display: block;
}

.person-card span {
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.person-card strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.person-card a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #2b3a4b;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cdd8e4;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 117, 104, 0.13);
  outline: 0;
}

.quote-form__wide {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  padding: 42px 0;
  color: #d7e2ec;
  background: var(--night);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 28px;
}

.brand--footer .brand__logo {
  filter: invert(1);
}

.brand--footer small,
.site-footer p {
  color: #aebdca;
}

.site-footer strong,
.site-footer a {
  display: block;
}

.site-footer strong {
  margin-bottom: 12px;
  color: #ffffff;
}

.site-footer a {
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .top-strip {
    display: none;
  }

  .navbar {
    min-height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .language-switcher {
    width: max-content;
    margin: 4px 0 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .split,
  .support-layout,
  .mx-section__grid,
  .maker,
  .contact-grid,
  .catalog-hero__grid,
  .catalog-card--featured {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 32px;
    padding-top: 72px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero__visual {
    min-height: 390px;
  }

  .mx-visual {
    min-height: 470px;
  }

  .quick-links {
    margin-top: 0;
    padding-top: 18px;
  }

  .quick-links__grid,
  .product-grid,
  .catalog-grid,
  .news-grid,
  .admin-grid,
  .maker__stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalog-nav {
    top: 66px;
  }

  .catalog-card--featured .catalog-card__media,
  .catalog-card--featured .catalog-card__media img {
    min-height: 280px;
  }

  .catalog-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-card {
    min-height: auto;
  }

  .product-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .product-card--featured img {
    height: 260px;
    min-height: 260px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .brand {
    min-width: auto;
  }

  .brand__logo {
    width: 112px;
  }

  .navbar .brand small {
    display: none;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.58rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__grid {
    padding-top: 76px;
  }

  .hero__facts,
  .application-grid,
  .catalog-highlight,
  .quote-form,
  .admin-form {
    grid-template-columns: 1fr;
  }

  .hero__facts div {
    padding: 14px;
  }

  .hero__visual {
    min-height: auto;
  }

  .mx-visual {
    min-height: 430px;
  }

  .mx-visual__screen {
    top: 24px;
    right: -34px;
    width: 98%;
  }

  .mx-visual__controller {
    left: 8%;
    width: 38%;
    min-width: 130px;
  }

  .mx-visual__badge {
    font-size: 0.75rem;
  }

  .mx-visual__badge--one {
    left: 8%;
    top: 22px;
  }

  .mx-visual__badge--two {
    right: 7%;
    bottom: 82px;
  }

  .mx-visual__badge--three {
    left: 38%;
    bottom: 28px;
  }

  .hero__image--main,
  .hero__image--small {
    aspect-ratio: 16 / 10;
  }

  .hero__image--small {
    position: static;
    width: 100%;
    margin-top: 12px;
    border: 0;
  }

  .quick-links a {
    grid-template-columns: 1fr;
  }

  .quick-links span {
    grid-row: auto;
  }

  .product-card img {
    height: 205px;
  }

  .product-card--featured img {
    height: 230px;
    min-height: 230px;
  }

  .mx-feature-grid {
    grid-template-columns: 1fr;
  }

  .service-list article {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 20px;
  }

  .download-card,
  .person-card,
  .admin-toolbar,
  .admin-list__item {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    align-items: flex-start;
  }

  .admin-list__actions {
    grid-row: auto;
    grid-column: auto;
    width: 100%;
    justify-content: stretch;
  }

  .admin-list__actions .btn,
  .admin-form__actions .btn {
    width: 100%;
  }

  .news-card img {
    height: 220px;
  }

  .catalog-card__body,
  .catalog-card--featured .catalog-card__body {
    padding: 20px;
  }

  .catalog-card__actions .btn,
  .catalog-cta__inner .btn {
    width: 100%;
  }

  .download-card .btn {
    width: 100%;
  }

  .person-card img {
    width: 100%;
    max-width: 220px;
  }
}
