:root {
  --ink: #17212b;
  --ink-soft: #56616d;
  --navy: #121c26;
  --gold: #ffb800;
  --gold-dark: #d99600;
  --red: #ef2b2d;
  --cream: #fff9eb;
  --paper: #ffffff;
  --surface: #f7f7f5;
  --line: #e4e6e8;
  --shadow: 0 18px 45px rgba(17, 27, 37, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Noto Sans SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 76px;
  border-bottom: 1px solid rgba(228, 230, 232, 0.85);
  background: rgba(255, 255, 255, 0.96);
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(19, 28, 37, 0.06);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-logo {
  width: 174px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: 2px;
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  color: #3d4853;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link[aria-expanded="true"] {
  color: #111a22;
  background: #f5f5f3;
}

.chevron {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  width: 410px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: 0.16s ease;
}

.nav-group.open .dropdown,
.nav-group:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-label {
  margin: 0 7px 10px;
  color: #8a9198;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.dropdown-card {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 9px;
  border-radius: 8px;
}

.dropdown-card:hover {
  background: var(--cream);
}

.dropdown-icon {
  position: relative;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border-radius: 7px;
  background: #fff2c9;
}

.dropdown-icon::before {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 13px;
  height: 13px;
  content: "";
  border: 2px solid var(--gold-dark);
  border-radius: 3px;
}

.dropdown-card strong {
  display: block;
  overflow: hidden;
  color: #28323b;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dropdown-card small {
  color: #8a9299;
  font-size: 9px;
}

.dropdown-empty {
  padding: 10px;
  color: #858d94;
  font-size: 12px;
}

.dropdown-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding: 12px 7px 0;
  border-top: 1px solid var(--line);
  color: #936700;
  font-size: 10px;
  font-weight: 800;
}

.dealer-dropdown {
  width: 340px;
}

.dealer-dropdown > p {
  margin: 0 7px 12px;
  color: #747d85;
  font-size: 13px;
  line-height: 1.65;
}

.dealer-country-list {
  max-height: 230px;
  overflow-y: auto;
}

.dealer-country-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 7px;
  color: #3f4b55;
  font-size: 14px;
  font-weight: 600;
}

.dealer-country-list a:hover {
  background: var(--cream);
}

.country-code {
  display: inline-grid;
  width: 30px;
  height: 22px;
  place-items: center;
  border: 1px solid #ead8a8;
  border-radius: 5px;
  color: #8f6500;
  background: #fffaf0;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.language-select {
  display: flex;
  align-items: center;
  gap: 4px;
}

.globe {
  color: #717b83;
  font-size: 16px;
}

.language-select select {
  width: 76px;
  border: 0;
  outline: 0;
  color: #4b555e;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: 0.16s ease;
}

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

.button-small {
  min-height: 38px;
  padding-inline: 15px;
  font-size: 10px;
}

.button-primary {
  color: #1d1a12;
  background: var(--gold);
  box-shadow: 0 8px 18px rgba(214, 151, 0, 0.16);
}

.button-primary:hover {
  background: #ffc52d;
}

.button-outline {
  border-color: #cfd3d6;
  color: #26313a;
  background: #fff;
}

.button-outline:hover {
  border-color: #9ea5ab;
}

.button-white {
  color: #1f2830;
  background: #fff;
}

/* Home */
.home-hero {
  padding-top: 76px;
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}

.simple-hero {
  padding: 142px 0 82px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fff 0%, #fff 55%, #fffbf2 100%);
}

.simple-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 80px;
}

.simple-kicker {
  display: block;
  margin-bottom: 16px;
  color: #a06d00;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.simple-hero h1 {
  max-width: 600px;
  margin: 0;
  color: #121b23;
  font-size: clamp(44px, 5vw, 67px);
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 1.05;
}

.simple-hero-copy > p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #5c6670;
  font-size: 16px;
  line-height: 1.75;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 31px;
}

.simple-contact-line {
  display: flex;
  gap: 8px;
  margin-top: 29px;
  color: #7c858d;
  font-size: 10px;
}

.simple-contact-line a {
  color: #303b44;
  font-weight: 700;
}

.simple-product-card {
  overflow: hidden;
  border: 1px solid #29333c;
  border-radius: 12px;
  background: var(--navy);
  box-shadow: 0 28px 60px rgba(18, 28, 38, 0.16);
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 12 / 5;
  background: var(--navy);
}

.hero-carousel-track,
.hero-carousel-slide {
  position: absolute;
  inset: 0;
}

.hero-carousel-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.48s ease, transform 0.7s ease;
  pointer-events: none;
}

.hero-carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-carousel-link {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.hero-carousel-empty {
  display: grid;
  place-items: center;
  background: linear-gradient(120deg, #101a24, #1c2a36);
}

.hero-carousel-empty img {
  width: min(32vw, 360px);
}

.hero-carousel::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24%;
  content: "";
  background: linear-gradient(transparent, rgba(10, 19, 27, 0.28));
  pointer-events: none;
}

.hero-carousel-controls {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 14px;
  display: flex;
  gap: 6px;
}

.hero-carousel-controls button {
  width: 32px;
  height: 32px;
  display: grid;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: #fff;
  background: rgba(14, 25, 34, 0.58);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 12px;
  transition: background 0.16s ease, border-color 0.16s ease;
}

.hero-carousel-controls button:hover,
.hero-carousel-controls button:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(14, 25, 34, 0.82);
  outline: 0;
}

.hero-carousel-dots {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: 50%;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.hero-carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-carousel-dots button.is-active {
  width: 22px;
  background: var(--gold);
}

.product-showcase {
  padding: 82px 0 94px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.product-showcase-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr) auto;
  gap: 42px;
  margin-bottom: 38px;
}

.product-showcase-heading .simple-kicker {
  display: block;
  margin-bottom: 8px;
  color: #a36f00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-showcase-heading h2 {
  margin: 0;
  color: #17212a;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.product-showcase-heading > p {
  margin: 0;
  color: #69727a;
  font-size: 16px;
  line-height: 1.75;
}

.product-showcase-heading > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #d8dce0;
  border-radius: 5px;
  color: #26323c;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.product-showcase-heading > a:hover {
  border-color: #c8a64b;
  background: var(--cream);
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 18px;
}

.home-product-card {
  min-width: 0;
}

.home-product-media {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid #e9e9e6;
  background: #f5f5f3;
}

.home-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.home-product-card:hover .home-product-media img {
  transform: scale(1.025);
}

.home-product-media > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 16px;
  color: #1b1b19;
  background: var(--gold);
  font-size: 35px;
  font-weight: 800;
}

.home-product-card-body {
  padding: 17px 2px 0;
}

.home-product-card-body small {
  display: block;
  overflow: hidden;
  margin-bottom: 7px;
  color: #9a700b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-product-card-body h3 {
  margin: 0;
  color: #25313a;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.home-product-card-body h3 a:hover {
  color: #9b6b00;
}

.home-product-card-body p {
  display: -webkit-box;
  min-height: 63px;
  overflow: hidden;
  margin: 10px 0 14px;
  color: #737c83;
  font-size: 13px;
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-product-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #303b44;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.home-product-link span {
  color: #b47e00;
  transition: transform 0.18s ease;
}

.home-product-link:hover span {
  transform: translateX(3px);
}

.simple-product-top {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.simple-product-top img {
  width: 155px;
}

.simple-product-top > span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: 4px;
  color: #ffc531;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.simple-product-body {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  min-height: 350px;
  padding: 42px;
}

.simple-device {
  display: grid;
  aspect-ratio: 0.88;
  place-items: center;
  align-content: center;
  border: 1px solid #3a454f;
  border-radius: 16px;
  background: #1e2933;
  box-shadow: inset 0 0 0 8px #16212a, 0 18px 36px rgba(0, 0, 0, 0.25);
}

.simple-device > span {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 18px;
  color: #1c1b18;
  background: var(--gold);
  font-size: 46px;
  font-weight: 800;
}

.simple-device small {
  margin-top: 17px;
  color: #8d98a1;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #55d39b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.status-dot::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: #55d39b;
}

.simple-product-info h2 {
  margin: 14px 0 24px;
  color: #fff;
  font-size: 27px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.simple-product-info ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.simple-product-info li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #aeb6bd;
  font-size: 10px;
}

.simple-product-info li::before {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: #1f1c14;
  background: var(--gold);
  font-size: 8px;
  font-weight: 900;
}

.simple-quick-links {
  border-bottom: 1px solid var(--line);
}

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

.simple-quick-grid > a {
  min-height: 118px;
  display: grid;
  align-items: center;
  grid-template-columns: 38px 1fr 22px;
  gap: 12px;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
}

.simple-quick-grid > a:first-child {
  border-left: 1px solid var(--line);
}

.simple-quick-grid > a:hover {
  background: var(--cream);
}

.simple-quick-grid > a > span {
  color: #bd880c;
  font-size: 12px;
  font-weight: 800;
}

.simple-quick-grid strong {
  display: block;
  color: #252f38;
  font-size: 16px;
}

.simple-quick-grid small {
  display: block;
  margin-top: 3px;
  color: #858d94;
  font-size: 13px;
}

.simple-quick-grid b {
  color: #8a9197;
  font-size: 18px;
}

.simple-section {
  padding: 96px 0;
}

.simple-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  margin-bottom: 42px;
}

.simple-heading h2,
.simple-download-intro h2,
.simple-help-card h2,
.simple-dealer h2 {
  margin: 0;
  color: #17212a;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.simple-heading > p,
.simple-download-intro > p,
.simple-help-card > div > p {
  margin: 0;
  color: #69727a;
  font-size: 16px;
  line-height: 1.75;
}

.simple-section .simple-kicker,
.simple-dealer .simple-kicker {
  font-size: 11px;
}

.simple-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.simple-feature-card {
  min-height: 340px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.simple-feature-card:hover {
  background: #fffdf7;
}

.simple-feature-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  color: #8e6500;
  background: #fff2c9;
  font-size: 12px;
  font-weight: 800;
}

.simple-feature-image {
  height: 110px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 7px;
}

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

.simple-feature-card h3 {
  margin: 40px 0 11px;
  color: #28323a;
  font-size: 21px;
}

.simple-feature-image + h3 {
  margin-top: 0;
}

.simple-feature-card p {
  min-height: 84px;
  margin: 0 0 24px;
  color: #6c757d;
  font-size: 15px;
  line-height: 1.7;
}

.simple-feature-card > a,
.simple-text-link {
  color: #895f00;
  font-size: 13px;
  font-weight: 800;
}

.simple-downloads {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.simple-download-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 95px;
}

.simple-download-intro > p {
  max-width: 410px;
  margin-top: 20px;
}

.simple-download-intro .simple-text-link {
  display: inline-block;
  margin-top: 25px;
}

.simple-resource-list {
  border-top: 1px solid #cfd3d6;
}

.simple-resource-list > a {
  min-height: 118px;
  display: grid;
  align-items: center;
  grid-template-columns: 42px 1fr 28px;
  gap: 14px;
  border-bottom: 1px solid #cfd3d6;
}

.simple-resource-list > a:hover {
  padding-inline: 10px;
  background: #fff;
}

.simple-resource-list > a > span {
  color: #a97700;
  font-size: 12px;
  font-weight: 800;
}

.simple-resource-list strong {
  display: block;
  color: #313a42;
  font-size: 17px;
}

.simple-resource-list small {
  display: block;
  margin-top: 4px;
  color: #7a838a;
  font-size: 14px;
  line-height: 1.55;
}

.simple-resource-list b {
  color: #8b9399;
  font-size: 17px;
}

.simple-help-card {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.55fr;
  gap: 80px;
  padding: 52px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
}

.simple-help-card > div > p {
  max-width: 620px;
  margin-top: 18px;
}

.simple-help-actions {
  display: grid;
  gap: 9px;
}

.simple-help-actions .button {
  margin-bottom: 5px;
}

.simple-help-actions > a:not(.button) {
  color: #56616a;
  font-size: 13px;
  text-align: center;
}

.simple-dealer {
  padding: 63px 0;
  color: #fff;
  background: var(--navy);
}

.simple-dealer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.simple-dealer .simple-kicker {
  color: #ffc532;
}

.simple-dealer h2 {
  color: #fff;
  font-size: 35px;
}

/* Footer */
.site-footer {
  position: relative;
  color: #9ba4ab;
  background: #0b131a;
}

.footer-orbit {
  display: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  padding-block: 68px 50px;
}

.brand-footer .brand-logo {
  width: 170px;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  color: #858f97;
  font-size: 11px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 10px;
}

.footer-links a {
  display: block;
  margin: 9px 0;
  color: #89939a;
  font-size: 10px;
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid #273039;
  color: #677179;
  font-size: 8px;
}

/* Inner pages */
.page-hero,
.article-header {
  padding: 135px 0 68px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.page-hero h1,
.article-header h1 {
  max-width: 800px;
  margin: 0;
  color: #17212a;
  font-size: clamp(39px, 5vw, 57px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.page-hero p,
.article-header p {
  max-width: 650px;
  margin: 19px 0 0;
  color: #69727a;
  font-size: 14px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #9a6b00;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 20px;
  height: 2px;
  background: var(--gold);
}

.back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #69727a;
  font-size: 10px;
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

.listing-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 210px 1fr;
  gap: 55px;
}

.category-sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 3px;
  padding: 13px;
  border: 1px solid var(--line);
  background: #fff;
}

.category-sidebar > span {
  padding: 7px 9px 11px;
  color: #979da2;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-sidebar a {
  padding: 9px;
  border-radius: 5px;
  color: #5f6971;
  font-size: 10px;
  font-weight: 600;
}

.category-sidebar a:hover,
.category-sidebar a.active {
  color: #5d4300;
  background: #fff3d0;
}

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

.listing-group + .listing-group {
  margin-top: 60px;
}

.listing-group-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.listing-group-heading h2 {
  margin: 0;
  color: #2a343c;
  font-size: 22px;
}

.listing-group-heading span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #855e00;
  background: #fff2c9;
  font-size: 9px;
  font-weight: 800;
}

.listing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.listing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.listing-card:hover {
  box-shadow: 0 12px 32px rgba(18, 27, 35, 0.07);
}

.listing-media,
.listing-placeholder {
  display: grid;
  height: 175px;
  place-items: center;
  overflow: hidden;
  background: #f6f3e9;
}

.listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-placeholder span {
  display: grid;
  width: 65px;
  height: 65px;
  place-items: center;
  border-radius: 10px;
  color: #1d1a13;
  background: var(--gold);
  font-size: 28px;
  font-weight: 800;
}

.listing-card-body {
  padding: 22px;
}

.listing-category {
  color: #9a6d00;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-card h3 {
  margin: 7px 0 9px;
  color: #2b343c;
  font-size: 17px;
}

.listing-card p {
  min-height: 60px;
  margin: 0 0 18px;
  color: #6f787f;
  font-size: 10px;
}

.text-link {
  color: #8b6200;
  font-size: 9px;
  font-weight: 800;
}

.empty-state {
  display: grid;
  min-height: 230px;
  place-items: center;
  align-content: center;
  gap: 9px;
  border: 1px dashed #d6d8da;
  color: #7f878d;
  background: #fafaf8;
  text-align: center;
}

.empty-state span {
  color: #b88100;
  font-size: 32px;
}

.empty-state h2 {
  margin: 0;
  font-size: 14px;
}

.article-header-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.62fr;
  gap: 70px;
}

.article-image {
  position: relative;
  display: block;
  height: 280px;
  overflow: hidden;
  border: 1px solid #ded7c5;
  cursor: zoom-in;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.article-image:hover img {
  transform: scale(1.018);
}

.article-image-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 4px;
  color: #fff;
  background: rgba(6, 16, 26, 0.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.article-body {
  max-width: 850px;
  padding-block: 75px 100px;
}

.article-content {
  margin-bottom: 32px;
  color: #56616a;
  font-size: 14px;
  line-height: 1.95;
}

.article-content h2 {
  margin: 1.45em 0 0.55em;
  color: #202b34;
  font-size: 28px;
  line-height: 1.3;
}

.article-content h3 {
  margin: 1.25em 0 0.5em;
  color: #29343d;
  font-size: 21px;
  line-height: 1.35;
}

.article-content p {
  margin: 0 0 1em;
}

.article-content ul,
.article-content ol {
  margin: 0 0 1.2em;
  padding-left: 1.5em;
}

.article-content blockquote {
  margin: 1.4em 0;
  padding: 16px 20px;
  border-left: 4px solid var(--gold);
  color: #59636b;
  background: var(--cream);
}

.article-content a {
  color: #8b6200;
  font-weight: 700;
  text-decoration: underline;
}

.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 26px auto;
  border: 1px solid #e1e3e4;
  border-radius: 8px;
  background: #f5f5f3;
}

.country-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #fafaf8;
}

.country-filter label {
  color: #404b54;
  font-size: 14px;
  font-weight: 700;
}

.select-wrap {
  position: relative;
  min-width: 260px;
}

.select-wrap select {
  width: 100%;
  min-height: 42px;
  padding: 0 36px 0 12px;
  border: 1px solid #ccd0d3;
  border-radius: 5px;
  outline: 0;
  color: #3e4952;
  background: #fff;
  appearance: none;
  font-size: 13px;
}

.select-wrap span {
  position: absolute;
  top: 50%;
  right: 13px;
  pointer-events: none;
  transform: translateY(-50%);
}

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

.dealer-card {
  min-height: 305px;
  padding: 25px;
  border: 1px solid var(--line);
  background: #fff;
}

.dealer-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}

.dealer-country-code {
  display: grid;
  width: 39px;
  height: 29px;
  place-items: center;
  color: #875f00;
  background: #fff2c9;
  font-size: 9px;
  font-weight: 800;
}

.dealer-badge {
  color: #3e8c72;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.dealer-card h2 {
  margin: 0;
  color: #2b353d;
  font-size: 21px;
  line-height: 1.35;
}

.dealer-location {
  margin: 5px 0 14px;
  color: #9b6c00;
  font-size: 13px;
  font-weight: 700;
}

.dealer-card address {
  min-height: 72px;
  color: #737c83;
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
}

.dealer-contact {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.dealer-contact a {
  color: #505c64;
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.dealer-empty {
  grid-column: 1 / -1;
}

@media (max-width: 1050px) {
  .nav-wrap {
    gap: 14px;
  }

  .brand {
    min-width: 174px;
  }

  .brand-logo {
    width: 154px;
  }

  .nav-link {
    padding-inline: 6px;
    font-size: 9px;
  }

  .language-select {
    display: none;
  }

  .simple-hero-grid {
    gap: 42px;
  }

  .simple-product-body {
    gap: 28px;
    padding: 32px;
  }

  .product-showcase-heading {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.75fr) auto;
    gap: 26px;
  }

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

@media (max-width: 880px) {
  .site-header {
    height: 68px;
  }

  .home-hero {
    padding-top: 68px;
  }

  .hero-carousel {
    aspect-ratio: 16 / 9;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    margin-left: auto;
    padding: 10px;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: #333e47;
  }

  .primary-nav {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 18px 24px 90px;
    overflow-y: auto;
    background: #fff;
  }

  .primary-nav.mobile-open {
    display: block;
  }

  .nav-group {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .nav-link {
    width: 100%;
    height: 54px;
    justify-content: space-between;
    padding-inline: 0;
    font-size: 11px;
  }

  .dropdown {
    position: static;
    display: none;
    width: auto;
    padding: 3px 0 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-group.open .dropdown,
  .nav-group.open:hover .dropdown {
    display: block;
    transform: none;
  }

  .nav-group:hover .dropdown {
    display: none;
  }

  .dropdown-label {
    display: none;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
  }

  .nav-actions {
    margin-left: 0;
  }

  .nav-actions .button-small {
    display: none;
  }

  .language-select {
    display: flex;
  }

  .simple-hero-grid,
  .simple-heading,
  .simple-download-layout,
  .simple-help-card,
  .article-header-inner {
    grid-template-columns: 1fr;
  }

  .simple-hero-grid {
    gap: 50px;
  }

  .simple-heading {
    gap: 15px;
  }

  .product-showcase-heading {
    align-items: start;
    grid-template-columns: 1fr auto;
    gap: 14px 28px;
  }

  .product-showcase-heading > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
  }

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

  .simple-download-layout {
    gap: 45px;
  }

  .simple-help-card {
    gap: 35px;
  }

  .listing-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .category-sidebar {
    position: static;
    display: flex;
    overflow-x: auto;
  }

  .category-sidebar > span {
    display: none;
  }

  .category-sidebar a {
    white-space: nowrap;
  }

  .dealer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 30px, 1160px);
  }

  .brand-logo {
    width: 142px;
  }

  .language-select select {
    width: 31px;
    color: transparent;
  }

  .language-select option {
    color: #303a42;
  }

  .simple-hero {
    padding: 115px 0 65px;
  }

  .hero-carousel {
    aspect-ratio: 3 / 2;
  }

  .hero-carousel-controls {
    right: 10px;
    bottom: 10px;
  }

  .hero-carousel-dots {
    bottom: 21px;
  }

  .simple-hero h1 {
    font-size: 43px;
  }

  .simple-hero-copy > p {
    font-size: 14px;
  }

  .simple-product-body {
    grid-template-columns: 1fr;
  }

  .simple-device {
    max-width: 210px;
    width: 100%;
    margin-inline: auto;
  }

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

  .product-showcase {
    padding: 62px 0 70px;
  }

  .product-showcase-heading {
    display: block;
    margin-bottom: 30px;
  }

  .product-showcase-heading h2 {
    font-size: 34px;
  }

  .product-showcase-heading > p {
    margin-top: 14px;
    font-size: 15px;
  }

  .product-showcase-heading > a {
    margin-top: 20px;
  }

  .home-product-grid {
    gap: 30px 12px;
  }

  .home-product-card-body {
    padding-top: 13px;
  }

  .home-product-card-body h3 {
    font-size: 14px;
    line-height: 1.4;
  }

  .home-product-card-body p {
    min-height: 42px;
    margin: 8px 0 12px;
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .home-product-link {
    font-size: 10px;
  }

  .simple-quick-grid > a,
  .simple-quick-grid > a:first-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .simple-section {
    padding: 70px 0;
  }

  .simple-heading h2,
  .simple-download-intro h2,
  .simple-help-card h2 {
    font-size: 34px;
  }

  .simple-feature-grid,
  .listing-grid,
  .dealer-grid {
    grid-template-columns: 1fr;
  }

  .simple-help-card {
    padding: 32px 24px;
  }

  .simple-dealer .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .simple-dealer h2 {
    font-size: 30px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-block: 55px 40px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .page-hero,
  .article-header {
    padding: 112px 0 56px;
  }

  .page-hero h1,
  .article-header h1 {
    font-size: 40px;
  }

  .article-image {
    height: 220px;
  }

  .country-filter {
    align-items: stretch;
    flex-direction: column;
  }

  .select-wrap {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
