:root {
  --bg: #f5f7f4;
  --surface: #ffffff;
  --surface-soft: #eef3ed;
  --surface-warm: #fbf7ef;
  --ink: #17211c;
  --muted: #66736b;
  --subtle: #8a948d;
  --line: #e0e7df;
  --primary: #244b39;
  --primary-dark: #173326;
  --secondary: #b8872d;
  --secondary-soft: #f4e7c9;
  --shadow-sm: 0 10px 26px rgba(23, 33, 28, 0.06);
  --shadow-md: 0 24px 70px rgba(23, 33, 28, 0.11);
  --radius: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 0%, rgba(36, 75, 57, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.container,
.site-header-inner,
.footer-inner {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(224, 231, 223, 0.8);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(36, 75, 57, 0.2);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  text-decoration: none;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 52%, rgba(238, 243, 237, 0.92) 100%),
    repeating-linear-gradient(90deg, rgba(36, 75, 57, 0.04) 0 1px, transparent 1px 40px);
}

.hero::after {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: -180px;
  width: 520px;
  height: 520px;
  content: "";
  background: linear-gradient(145deg, rgba(36, 75, 57, 0.08), rgba(184, 135, 45, 0.08));
  border: 1px solid rgba(36, 75, 57, 0.08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  min-height: 690px;
  padding: clamp(72px, 9vw, 120px) 0;
}

.hero-content {
  max-width: 710px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--secondary);
}

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

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

h1 {
  max-width: 700px;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.05;
}

h2 {
  max-width: 680px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
}

h3 {
  font-size: 21px;
  line-height: 1.25;
}

.hero-text,
.section-heading > p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button,
.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button.primary,
.email-link {
  color: #ffffff;
  background: var(--primary);
  border: 1px solid var(--primary);
  box-shadow: 0 16px 34px rgba(36, 75, 57, 0.2);
}

.button.primary:hover,
.email-link:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.button.secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.button.secondary:hover {
  background: #ffffff;
  border-color: rgba(36, 75, 57, 0.24);
  box-shadow: var(--shadow-sm);
}

.hero-panel {
  position: relative;
}

.flow-card {
  position: relative;
  display: grid;
  gap: 32px;
  padding: clamp(28px, 4vw, 40px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.flow-card::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 250px;
  height: 250px;
  content: "";
  background: radial-gradient(circle, rgba(36, 75, 57, 0.12), transparent 70%);
}

.flow-card-header,
.flow-visual,
.flow-list {
  position: relative;
  z-index: 1;
}

.panel-label {
  display: block;
  margin-bottom: 12px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.flow-card-header strong {
  display: block;
  max-width: 380px;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.08;
}

.flow-visual {
  display: grid;
  grid-template-columns: 52px 1fr 52px 1fr 52px;
  gap: 12px;
  align-items: center;
  padding: 20px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.flow-node {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--primary);
  background: #ffffff;
  border: 1px solid rgba(36, 75, 57, 0.16);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 900;
}

.flow-visual i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(36, 75, 57, 0.18), var(--secondary), rgba(36, 75, 57, 0.18));
}

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

.flow-list div {
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.flow-list small {
  display: block;
  margin-bottom: 6px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.flow-list strong {
  display: block;
  line-height: 1.35;
}

.trust {
  padding: 20px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

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

.trust-grid div {
  padding: 20px 22px;
  background: var(--surface-warm);
  border: 1px solid #efe5d1;
  border-radius: var(--radius);
}

.trust-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-grid strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

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

.section-heading > p {
  max-width: 660px;
  margin: 18px 0 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  position: relative;
  min-height: 236px;
  padding: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card:hover {
  border-color: rgba(36, 75, 57, 0.24);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  content: "";
  background: rgba(184, 135, 45, 0.08);
  border-radius: 50%;
}

.card-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  background:
    linear-gradient(135deg, var(--secondary-soft), #ffffff);
  border: 1px solid #eadcbd;
  border-radius: 10px;
}

.card-icon::before {
  display: block;
  width: 18px;
  height: 18px;
  margin: 11px;
  content: "";
  border: 2px solid var(--primary);
  border-radius: 50%;
}

.card h3,
.card p {
  position: relative;
  z-index: 1;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.split {
  background: var(--surface-soft);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

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

.product-list span {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}

.product-list small {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--primary);
  background: var(--secondary-soft);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

.logistics {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.logistics::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38%;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(238, 243, 237, 0.9)),
    repeating-linear-gradient(0deg, rgba(36, 75, 57, 0.04) 0 1px, transparent 1px 36px);
}

.logistics .container {
  position: relative;
  z-index: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.steps div {
  min-height: 148px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.steps span {
  display: block;
  margin-bottom: 22px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 900;
}

.steps strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
}

.contact {
  background: var(--surface-soft);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(32px, 5vw, 48px);
  background:
    linear-gradient(135deg, #ffffff, #ffffff 58%, var(--surface-warm));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.contact-card p {
  max-width: 620px;
  margin: 14px 0 0;
}

.email-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
  }

  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .nav {
    width: 100%;
    gap: 16px;
    overflow-x: auto;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .trust-grid,
  .card-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .email-link {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .container,
  .site-header-inner,
  .footer-inner {
    width: min(100% - 32px, var(--container));
  }

  h1 {
    font-size: 38px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .flow-visual {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .flow-visual i {
    width: 2px;
    height: 28px;
  }

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