:root {
  color-scheme: light;
  --ae-red: #c90000;
  --ae-red-dark: #a60000;
  --ae-green: #06712a;
  --ink: #15191f;
  --text: #242b34;
  --muted: #5f6975;
  --paper: #ffffff;
  --soft: #f3f5f7;
  --soft-2: #e9edf1;
  --line: #d7dde4;
  --dark: #111820;
  --dark-2: #1d2835;
  --shadow: 0 18px 46px rgba(21, 25, 31, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  color: var(--ink);
  font-size: 4.75rem;
  font-weight: 900;
}

h2 {
  color: var(--ae-red);
  font-size: 2.6rem;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 850;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  min-height: 72px;
  gap: 22px;
  padding: 12px 44px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-wordmark {
  width: 224px;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.brand-wordmark-refresh {
  aspect-ratio: 1680 / 390;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: #3f4855;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--ae-green);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  direction: ltr;
  font-size: 0.82rem;
  font-weight: 850;
}

.language-switch a {
  min-width: 38px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.language-switch a:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.language-switch a:last-child {
  margin-left: -1px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.language-switch a:hover,
.language-switch a[aria-current="true"] {
  border-color: var(--ae-green);
  background: var(--ae-green);
  color: #fff;
}

.nav-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 760;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 0.95fr);
  grid-template-areas:
    "copy visual"
    "claims visual";
  gap: 28px 52px;
  align-items: center;
  min-height: 690px;
  padding: 42px 56px 34px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 58%, rgba(243, 245, 247, 0.88) 100%),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--ae-red), var(--ae-green));
}

.hero-copy {
  grid-area: copy;
  max-width: 720px;
}

.hero-subtitle {
  max-width: 690px;
  margin-top: 18px;
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1.22;
  font-weight: 800;
}

.hero-lede {
  max-width: 610px;
  margin-top: 18px;
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.button-primary {
  background: var(--ae-red);
  color: #fff;
  box-shadow: 0 16px 30px rgba(201, 0, 0, 0.22);
}

.button-primary:hover {
  background: var(--ae-red-dark);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ae-green);
  color: var(--ae-green);
}

.button-secondary.dark {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-visual {
  grid-area: visual;
  align-self: center;
  justify-self: center;
  width: min(100%, 680px);
  aspect-ratio: 1672 / 941;
  margin: 0;
  border-radius: var(--radius);
  background: var(--dark);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 34px rgba(21, 25, 31, 0.18));
}

.claim-strip {
  grid-area: claims;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  align-self: end;
  max-width: 820px;
  border: 1px solid var(--line);
  background: var(--line);
}

.claim-strip span {
  min-width: 0;
  padding: 16px 14px;
  background: var(--soft);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
  text-align: center;
}

.detail-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  border-left: 4px solid var(--ae-red);
  background: rgba(255, 255, 255, 0.93);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.section {
  padding: 74px 56px;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-copy {
  max-width: 720px;
}

.section-copy p,
.section-heading p {
  margin-top: 16px;
  font-size: 1.1rem;
}

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

.benefits-section,
.manufacturing-section {
  background: var(--soft);
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

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

.benefit-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 108px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #fff 0%, #f5f6f8 100%);
  box-shadow: 0 8px 24px rgba(21, 25, 31, 0.07);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ae-red);
  color: #fff;
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-list h3 {
  text-transform: uppercase;
}

.benefit-list p {
  max-width: 620px;
  margin-top: 6px;
  color: var(--text);
  font-size: 1.05rem;
}

.two-column,
.proof-layout,
.specs-layout,
.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.78fr);
  gap: 58px;
  align-items: center;
}

.how-section {
  background: var(--paper);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ae-green);
}

.check-list strong {
  color: var(--ink);
}

.media-stack {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

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

.flow-panel {
  display: grid;
  min-height: 640px;
  padding: 18px 18px 54px;
}

.flow-panel img {
  align-self: center;
  justify-self: center;
  width: min(100%, 420px);
  height: auto;
  max-height: 660px;
  object-fit: contain;
}

.flow-panel figcaption {
  align-self: end;
  justify-self: start;
  padding: 8px 11px;
  border-left: 4px solid var(--ae-red);
  background: var(--soft);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.tall-panel {
  min-height: 560px;
}

.tall-panel img {
  object-fit: contain;
  padding: 18px;
}

.proof-section {
  background: var(--dark);
  color: #fff;
}

.proof-section h2 {
  color: #fff;
}

.proof-section p {
  color: #cbd5df;
}

.proof-cards {
  display: grid;
  gap: 12px;
}

.proof-cards article {
  padding: 20px;
  border-left: 5px solid var(--ae-red);
  border-radius: var(--radius);
  background: var(--dark-2);
}

.proof-cards strong,
.proof-cards span {
  display: block;
}

.proof-cards strong {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 850;
}

.proof-cards span {
  margin-top: 8px;
  color: #cbd5df;
  line-height: 1.45;
}

.details-section {
  background: #fff;
}

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

.detail-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(21, 25, 31, 0.08);
}

.detail-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.manufacturing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(21, 25, 31, 0.08);
}

.photo-wide {
  grid-column: span 2;
}

.photo-major {
  grid-column: span 2;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 14px 16px 16px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
}

.specs-section {
  background: #fff;
}

.specs-layout {
  grid-template-columns: minmax(0, 0.7fr) minmax(620px, 1.1fr);
  align-items: start;
}

.spec-highlights {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.spec-highlights span {
  display: block;
  padding: 13px 15px;
  border-left: 4px solid var(--ae-red);
  background: var(--soft);
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.35;
}

.spec-highlights strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.spec-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(21, 25, 31, 0.08);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.25;
}

.spec-table th,
.spec-table td {
  padding: 14px 13px;
  border-left: 1px solid var(--line);
  text-align: start;
  vertical-align: top;
}

.spec-table th:first-child,
.spec-table td:first-child {
  border-left: 0;
}

.spec-table thead th {
  background: var(--dark);
  color: #fff;
  font-weight: 850;
}

.spec-table tbody tr {
  border-top: 1px solid var(--line);
}

.spec-table tbody th {
  color: var(--ink);
  font-weight: 850;
  white-space: nowrap;
}

.spec-table td {
  color: var(--text);
}

.spec-note {
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

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

.company-single {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  text-align: center;
}

.company-single .section-copy {
  max-width: none;
}

.contact-section {
  background: #fff;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
}

.contact-box h2 {
  color: #fff;
  font-size: 2rem;
  text-transform: none;
}

.contact-box p {
  max-width: 700px;
  margin-top: 12px;
  color: #cbd5df;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 56px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer strong {
  color: var(--ink);
  font-size: 1rem;
}

.site-footer p {
  margin-top: 6px;
  font-size: 0.9rem;
}

.site-footer .legal-note {
  max-width: 620px;
  color: #7a8490;
  font-size: 0.78rem;
  line-height: 1.42;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .brand,
[dir="rtl"] h1[dir="ltr"] {
  direction: ltr;
}

[dir="rtl"] .brand-wordmark {
  object-position: left center;
}

[dir="rtl"] .site-nav {
  justify-content: flex-start;
}

[dir="rtl"] .check-list li {
  padding-right: 24px;
  padding-left: 0;
}

[dir="rtl"] .check-list li::before {
  right: 0;
  left: auto;
}

[dir="rtl"] .flow-panel figcaption,
[dir="rtl"] .detail-card figcaption {
  right: 14px;
  left: auto;
  border-right: 4px solid var(--ae-red);
  border-left: 0;
}

[dir="rtl"] .flow-panel figcaption {
  justify-self: end;
}

[dir="rtl"] .proof-cards article,
[dir="rtl"] .spec-highlights span {
  border-right: 5px solid var(--ae-red);
  border-left: 0;
}

[dir="rtl"] .spec-highlights span {
  border-right-width: 4px;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .site-header {
    padding: 12px 24px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 24px;
    min-height: 620px;
    padding: 34px 32px 28px;
  }

  .hero::after {
    left: 32px;
    right: 32px;
  }

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

  .section {
    padding: 62px 32px;
  }

  .benefits-grid,
  .two-column,
  .proof-layout,
  .specs-layout,
  .company-layout {
    grid-template-columns: 1fr;
  }

  .media-stack {
    grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  }

  .flow-panel {
    min-height: 600px;
  }

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

  .photo-major {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 2.48rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-wordmark {
    width: clamp(142px, 44vw, 176px);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 64px 12px auto;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

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

  .language-switch a {
    min-width: 34px;
    padding: 6px 6px;
    font-size: 0.78rem;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "claims";
    min-height: 0;
    gap: 20px;
    padding: 28px 20px 24px;
  }

  .hero::after {
    left: 20px;
    right: 20px;
  }

  .hero-subtitle {
    margin-top: 14px;
    font-size: 1.25rem;
  }

  .hero-lede {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-visual {
    width: 100%;
    justify-self: center;
  }

  .claim-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 20px;
  }

  .benefit-list article {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .benefit-icon {
    width: 54px;
    height: 54px;
  }

  .benefit-icon svg {
    width: 34px;
    height: 34px;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }

  .flow-panel {
    min-height: 560px;
    padding: 14px 14px 50px;
  }

  .flow-panel img {
    width: min(100%, 300px);
    max-height: 520px;
  }

  .tall-panel {
    min-height: 420px;
  }

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

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

  .photo-wide {
    grid-column: auto;
  }

  .photo-major {
    grid-column: auto;
  }

  .spec-table,
  .spec-table thead,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
  }

  .spec-table thead {
    display: none;
  }

  .spec-table tbody tr {
    border-top: 1px solid var(--line);
  }

  .spec-table tbody tr:first-child {
    border-top: 0;
  }

  .spec-table tbody th {
    padding: 13px 14px;
    background: var(--dark);
    color: #fff;
  }

  .spec-table td {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .spec-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 850;
  }

  .contact-box {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .site-footer {
    display: grid;
    padding: 26px 20px;
  }
}
