:root {
  --ink: #18221f;
  --muted: #637067;
  --paper: #f6f7f4;
  --panel: #ffffff;
  --line: #d9ded6;
  --green: #17483a;
  --green-2: #246351;
  --gold: #c8872c;
  --wood: #a5642b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px 28px;
  background: rgba(16, 30, 25, .82);
  color: #fff;
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  color: #f0b15a;
}

.brand-mark rect {
  fill: rgba(255,255,255,.08);
  stroke: currentColor;
  stroke-width: 3;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 15px;
}

.nav a {
  color: rgba(255,255,255,.86);
  text-decoration: none;
}

.crm-link {
  color: #ffd18e !important;
  font-weight: 700;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  overflow: hidden;
}

.lang-switch button {
  min-width: 42px;
  height: 34px;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.lang-switch button:first-child { border-left: 0; }
.lang-switch button.active { background: #f0b15a; color: #17231d; }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,24,19,.9), rgba(9,24,19,.55) 46%, rgba(9,24,19,.12));
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 104px);
  padding-top: 72px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: #f0b15a;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 9vw, 116px);
  line-height: .9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 20px;
  line-height: 1.55;
}

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

.primary,
.secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.primary { background: var(--gold); color: #17231d; }
.secondary { border: 1px solid rgba(255,255,255,.34); color: #fff; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats div {
  min-height: 110px;
  padding: 28px 32px;
  background: var(--green);
  color: #fff;
}

.stats strong {
  display: block;
  font-size: 26px;
}

.stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.72);
}

.section {
  padding: 86px clamp(20px, 6vw, 88px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr);
  gap: 52px;
  align-items: start;
}

.section h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.product-list article,
.steps article,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

.product-list span {
  color: var(--gold);
  font-weight: 900;
}

h3 {
  margin: 12px 0 8px;
  font-size: 21px;
}

.product-list p,
.steps p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.process {
  background: #e9ede7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.steps b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 440px);
  gap: 40px;
  align-items: start;
}

.contact-panel a:first-child {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
  text-decoration: none;
}

.contact-panel .primary {
  margin-top: 22px;
  color: #17231d;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 88px);
  background: #101e19;
  color: rgba(255,255,255,.78);
}

footer span:first-child {
  color: #fff;
  font-weight: 900;
}

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

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero { min-height: 820px; }
  .hero-shade { background: rgba(9,24,19,.7); }
  .stats, .split, .steps, .contact { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-header { padding: 12px 16px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand span { font-size: 15px; }
  .lang-switch button { min-width: 36px; }
  .nav { gap: 15px; font-size: 14px; }
  .hero-content { margin-left: 20px; padding-top: 118px; }
  .hero-copy { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .primary, .secondary { width: 100%; }
  .stats div { padding: 22px 20px; }
  .section { padding: 64px 20px; }
  footer { flex-direction: column; }
}
