:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #5f6c69;
  --line: #dce6df;
  --surface: #f7faf7;
  --surface-strong: #ffffff;
  --green: #0b6b57;
  --green-soft: #d9f1e9;
  --blue: #285c8f;
  --amber: #c98220;
  --coral: #c95c45;
  --shadow: 0 24px 70px rgba(26, 41, 37, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(247, 250, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-size: 13px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--green);
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.language-picker select,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
}

.language-picker select {
  min-width: 132px;
  padding: 9px 12px;
}

.hero {
  display: grid;
  min-height: calc(100svh - 69px);
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 4vw, 56px) 42px;
  background:
    linear-gradient(130deg, rgba(217, 241, 233, 0.92), rgba(247, 250, 247, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, var(--surface) 100%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.22;
}

.hero-text {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.15;
}

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

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

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 40px 0 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-metrics dt {
  font-weight: 850;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(11, 107, 87, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(11, 107, 87, 0.14), transparent 45%),
    linear-gradient(315deg, rgba(201, 92, 69, 0.16), transparent 38%),
    #ffffff;
  box-shadow: var(--shadow);
}

.visual-topline {
  display: flex;
  justify-content: space-between;
  margin: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(11, 107, 87, 0.12);
}

.store-map {
  position: absolute;
  inset: 80px 26px 148px;
  border: 1px solid rgba(40, 92, 143, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(40, 92, 143, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 92, 143, 0.09) 1px, transparent 1px);
  background-size: 44px 44px;
}

.node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid white;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(23, 33, 31, 0.18);
}

.node.active {
  background: var(--green);
}

.node.warning {
  background: var(--amber);
}

.route {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: rgba(11, 107, 87, 0.3);
  transform-origin: left center;
}

.route-a {
  left: 22%;
  top: 36%;
  width: 210px;
  transform: rotate(-8deg);
}

.route-b {
  left: 30%;
  top: 70%;
  width: 190px;
  transform: rotate(-26deg);
}

.route-c {
  left: 55%;
  top: 45%;
  width: 170px;
  transform: rotate(34deg);
}

.visual-status {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.visual-status div {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.visual-status span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.visual-status strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid,
.audience-grid,
.supplier-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.audience-grid article,
.approval-paths article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  padding: 24px;
}

.feature-card p,
.audience-grid p,
.approval-paths p,
.panel-copy p {
  margin: 0;
  color: var(--muted);
}

.icon-chip {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #eef6f3;
}

.panel-copy {
  max-width: 700px;
}

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

.process-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(11, 107, 87, 0.2);
  border-radius: 8px;
  background: white;
}

.process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.process-list p {
  margin: 0;
  font-weight: 760;
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.supplier-headline {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(11, 107, 87, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(217, 241, 233, 0.9), rgba(255, 255, 255, 0.92) 58%),
    #ffffff;
  box-shadow: var(--shadow);
}

.supplier-headline h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
}

.supplier-headline p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.supplier-feature-grid div {
  min-height: 134px;
  padding: 20px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}

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

.supplier-feature-grid strong {
  font-size: 18px;
}

.supplier-feature-grid span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.equipment-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 780;
}

.approval-paths {
  display: grid;
  gap: 14px;
}

.audience-section {
  background: #ffffff;
}

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

.contact-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
  background:
    linear-gradient(150deg, rgba(40, 92, 143, 0.1), transparent 46%),
    #17211f;
  color: white;
}

.contact-copy {
  max-width: 640px;
}

.contact-copy .eyebrow,
.contact-copy p {
  color: #b9d7cf;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 46px;
  padding: 11px 12px;
}

.lead-form textarea {
  resize: vertical;
}

.form-button {
  width: fit-content;
}

.form-note,
.form-output {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-output {
  display: block;
  padding: 14px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--ink);
  white-space: pre-wrap;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: white;
}

.site-footer p {
  margin: 0;
}

[dir="rtl"] .site-header,
[dir="rtl"] .hero,
[dir="rtl"] .intro,
[dir="rtl"] .split-section,
[dir="rtl"] .ecosystem-layout,
[dir="rtl"] .contact-section {
  direction: rtl;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .language-picker {
    justify-self: start;
  }

  .hero,
  .intro,
  .split-section,
  .ecosystem-layout,
  .supplier-headline,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

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

@media (max-width: 720px) {
  .hero-metrics,
  .visual-status,
  .feature-grid,
  .supplier-feature-grid,
  .audience-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .store-map {
    inset: 72px 18px 210px;
  }

  .visual-status {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .button,
  .form-button {
    width: 100%;
  }
}
