:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #63706b;
  --line: #d8dfda;
  --surface: #f7f8f5;
  --panel: #ffffff;
  --green: #0f6b52;
  --green-dark: #0a4638;
  --gold: #d99a27;
  --steel: #34445a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(11, 20, 18, 0.76);
  color: #fff;
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  min-width: 56px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav {
  gap: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
}

.header-action {
  padding: 0 16px;
  background: var(--gold);
  color: #1c1609;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.26) 62%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56), transparent 48%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  padding: 120px 0 76px clamp(18px, 5vw, 72px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.hero-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-actions,
.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--green);
  color: #fff;
}

.button.secondary {
  border-color: currentColor;
  color: inherit;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-strip span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: #fff;
  color: var(--steel);
  font-weight: 800;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: start;
}

.intro > p,
.product p,
.product li {
  color: var(--muted);
}

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

.product {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #eef2ee;
  border-radius: 6px;
}

.product ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

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

.product-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: 20px;
  padding: 0 16px;
  border: 1px solid var(--green);
  border-radius: 6px;
  color: var(--green-dark);
  font-weight: 800;
}

.product-page .hero {
  min-height: 76vh;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
}

.product-detail img {
  width: 100%;
  min-height: 360px;
  object-fit: contain;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-panel {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-panel h2,
.detail-panel h3 {
  margin-bottom: 14px;
}

.detail-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.detail-panel li + li {
  margin-top: 8px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.spec {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
}

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

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.application-layout img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.application-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.application-list span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-left: 4px solid var(--green);
  background: #fff;
  border-radius: 6px;
  color: var(--steel);
  font-weight: 700;
}

.application-list a {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-left: 4px solid var(--green);
  background: #fff;
  border-radius: 6px;
  color: var(--steel);
  font-weight: 700;
}

.dealer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: start;
}

.brand-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
  padding-top: 18px;
}

.brand-panel {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-panel p {
  margin-bottom: 20px;
  color: var(--muted);
}

.button.dark,
.button.secondary.dark {
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.dealer-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.dealer-panel {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(29, 52, 64, 0.08);
}

.dealer-panel h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.dealer-panel ul {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
}

.dealer-panel li + li {
  margin-top: 8px;
}

.languages {
  padding-top: 18px;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.language-grid span,
.language-grid a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--steel);
  font-weight: 800;
}

.language-page .hero {
  min-height: 78vh;
}

.language-page .hero-content {
  width: min(900px, calc(100% - 36px));
}

.language-page .section h2 {
  max-width: 900px;
}

.language-page .contact-actions {
  align-items: flex-start;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .hero-content {
  padding-left: 0;
  padding-right: clamp(18px, 5vw, 72px);
}

html[dir="rtl"] .contact-actions {
  justify-content: flex-start;
}

html[dir="rtl"] .text-link {
  text-align: left;
}

.contact {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 28px;
  align-items: center;
  padding: 40px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 8px;
}

.contact h2 {
  max-width: 720px;
  margin-bottom: 12px;
}

.contact p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  justify-content: flex-end;
}

.text-link {
  width: 100%;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  text-align: right;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.86rem;
  }

  .header-action {
    min-height: 38px;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 150px 0 48px 18px;
  }

  h1 {
    font-size: clamp(2.7rem, 17vw, 4.6rem);
  }

  .intro,
  .product-grid,
  .application-layout,
  .dealer-section,
  .brand-section,
  .product-detail,
  .spec-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .language-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 52px 0;
  }

  .product {
    padding: 20px;
  }

  .product img {
    height: 220px;
  }

  .application-layout img {
    min-height: 300px;
  }

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

  .contact {
    display: grid;
    padding: 28px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .text-link {
    text-align: left;
  }
}
