:root {
  color-scheme: light;
  --bg: #fff8f3;
  --surface: #ffffff;
  --surface-soft: #fff3ed;
  --ink: #252d46;
  --muted: #667085;
  --line: #eadbd4;
  --coral: #ff5259;
  --coral-dark: #df3d44;
  --green: #207c5b;
  --mint: #e4f7ef;
  --gold: #c89b35;
  --shadow: 0 20px 60px rgba(50, 34, 27, 0.12);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 243, 0.9);
  border-bottom: 1px solid rgba(234, 219, 212, 0.75);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(32, 124, 91, 0.18);
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 14px 32px rgba(255, 82, 89, 0.28);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.button.disabled {
  color: #ffffff;
  background: #c8cdd7;
  cursor: default;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(26, 30, 45, 0.82), rgba(26, 30, 45, 0.48), rgba(26, 30, 45, 0.1)),
    url("/assets/fruits-vegetables.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0), var(--bg));
  z-index: -1;
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 112px;
  color: white;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
  color: #fff7e7;
}

.hero h1 {
  margin: 22px 0 14px;
  max-width: 820px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 0;
  font-size: clamp(18px, 2.2vw, 24px);
  color: rgba(255, 255, 255, 0.9);
}

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

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
}

.section-title {
  max-width: 780px;
  margin-bottom: 24px;
}

.section-title h2 {
  margin: 0 0 8px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

.section-title p,
.lead {
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

.card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(58, 38, 32, 0.07);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

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

.icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--mint);
  color: var(--green);
  font-weight: 900;
}

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

.step-number {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  font-weight: 900;
}

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

.category-tile {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 18px;
}

.category-tile img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin: 4px auto 12px;
}

.delivery-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.accent {
  background: linear-gradient(135deg, #fff, #fff0eb);
}

.status {
  border-left: 6px solid var(--gold);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 92px;
}

.legal-nav a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-weight: 700;
}

.content {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.content h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
}

.content h2 {
  margin: 32px 0 10px;
  font-size: 24px;
}

.content p,
.content li {
  color: #4a5568;
}

.content ul {
  padding-left: 20px;
}

.footer {
  margin-top: 40px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nav {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 580px;
    background-position: center;
  }

  .benefits,
  .steps,
  .catalog-strip,
  .delivery-panel,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    display: flex;
    gap: 14px;
    overflow-x: auto;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding: 78px 0 88px;
  }

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

  .page {
    padding: 38px 0;
  }

  .card {
    border-radius: 20px;
  }
}
