:root {
  --green-900: #163b21;
  --green-800: #1f5a2e;
  --green-700: #28733d;
  --green-600: #328849;
  --green-100: #e7f5e9;
  --cream: #fff8e8;
  --cream-strong: #f5e9c8;
  --orange: #ef9f38;
  --text: #1f2d24;
  --muted: #647064;
  --white: #ffffff;
  --border: #dce8dc;
  --shadow: 0 20px 60px rgba(22, 59, 33, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 232, 0.86);
  border-bottom: 1px solid rgba(220, 232, 220, 0.8);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-900);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(40, 115, 61, 0.22);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--green-700);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(40, 115, 61, 0.2);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  gap: 5px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--green-900);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 80px;
  background:
    radial-gradient(circle at 10% 10%, rgba(50, 136, 73, 0.18), transparent 30%),
    linear-gradient(135deg, #fff8e8 0%, #eff8df 58%, #dcefd7 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  content: "";
  background: rgba(40, 115, 61, 0.08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 64px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  color: var(--green-900);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 14px;
  color: var(--green-900);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: 21px;
  line-height: 1.3;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: #405343;
  font-size: 19px;
}

.hero-actions,
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible,
.nav-button:hover,
.nav-button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  box-shadow: 0 16px 28px rgba(40, 115, 61, 0.22);
}

.button.secondary {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(40, 115, 61, 0.18);
}

.button.full {
  width: 100%;
}

.trust-list {
  margin-top: 26px;
}

.trust-list span {
  padding: 9px 14px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(40, 115, 61, 0.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero-card {
  position: relative;
  min-height: 460px;
  padding: 34px;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #e3f4d5 100%);
  border: 1px solid rgba(40, 115, 61, 0.12);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.image-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.produce-illustration {
  position: absolute;
  inset: 42px 34px 116px;
  transform: rotate(-10deg);
}

.produce-illustration span {
  position: absolute;
  left: 20%;
  display: block;
  width: 36px;
  height: 300px;
  background: linear-gradient(90deg, #2f8a48, #79bd4f 55%, #d7ec85);
  border-radius: 999px;
  box-shadow: inset -8px 0 20px rgba(22, 59, 33, 0.16), 0 16px 30px rgba(40, 115, 61, 0.2);
  transform-origin: bottom center;
}

.produce-illustration span::before {
  position: absolute;
  top: -34px;
  left: 50%;
  width: 54px;
  height: 54px;
  content: "";
  background: #226d39;
  border-radius: 55% 45% 60% 40%;
  transform: translateX(-50%) rotate(25deg);
}

.produce-illustration span:nth-child(2) {
  left: 38%;
  height: 330px;
  transform: rotate(8deg);
}

.produce-illustration span:nth-child(3) {
  left: 55%;
  height: 305px;
  transform: rotate(-6deg);
}

.produce-illustration span:nth-child(4) {
  left: 70%;
  height: 285px;
  transform: rotate(12deg);
}

.hero-card-content {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(40, 115, 61, 0.12);
  border-radius: 26px;
  backdrop-filter: blur(12px);
}

.hero-card-content p {
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 800;
}

.hero-card-content strong {
  display: block;
  color: var(--green-900);
  font-size: 28px;
  line-height: 1.2;
}

.hero-card-content span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: 88px 0;
  background: var(--white);
}

.section.muted {
  background: var(--green-100);
}

.showcase-section {
  background: linear-gradient(135deg, #ffffff, #f6f2df);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: 44px;
}

.showcase-grid img {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

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

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

.product-card,
.feature-card,
.step-card,
.shipping-grid article,
.contact-card,
.lead-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 36px rgba(22, 59, 33, 0.08);
}

.product-card {
  overflow: hidden;
}

.product-visual {
  height: 170px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.42), transparent 22%),
    linear-gradient(135deg, #2f8a48, #8ecf55);
}

.product-visual::after {
  display: block;
  width: 68%;
  height: 120px;
  margin: 26px auto 0;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(22, 59, 33, 0.88) 0 8px, rgba(126, 186, 74, 0.9) 8px 18px);
  border-radius: 999px 999px 28px 28px;
  transform: rotate(-10deg);
}

.visual-two {
  background: linear-gradient(135deg, #f3b956, #5fae46);
}

.visual-three {
  background: linear-gradient(135deg, #1f5a2e, #8ecf55);
}

.visual-four {
  background: linear-gradient(135deg, #6fa044, #f0d27b);
}

.product-body {
  padding: 24px;
}

.product-body p,
.product-body li,
.feature-card p,
.step-card p,
.shipping-grid p,
.contact-card p,
.site-footer p {
  color: var(--muted);
}

.product-body ul {
  padding-left: 18px;
  margin: 18px 0 22px;
}

.text-link {
  color: var(--green-700);
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--green-900);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 46px;
}

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

.feature-card,
.step-card,
.shipping-grid article {
  padding: 26px;
}

.feature-card span,
.step-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-weight: 900;
}

.shipping-panel {
  padding: 44px;
  background:
    radial-gradient(circle at right top, rgba(239, 159, 56, 0.2), transparent 26%),
    linear-gradient(135deg, #f9f7e8, #eef8e6);
  border: 1px solid var(--border);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

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

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

.notice {
  margin: 24px 0 0;
  padding: 16px 18px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.72);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.customers-section {
  background: var(--green-900);
}

.customers-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 42px;
}

.customers-grid h2,
.customers-grid .eyebrow {
  color: var(--white);
}

.customer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.customer-tags span {
  padding: 13px 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 900;
}

.contact-section {
  background: linear-gradient(135deg, var(--cream), #e9f5df);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-card,
.lead-form {
  padding: 34px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.contact-methods div {
  padding: 16px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
}

.contact-methods span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-methods strong {
  display: block;
  margin-top: 3px;
  color: var(--green-900);
  font-size: 18px;
}

.qr-placeholder {
  display: grid;
  min-height: 220px;
  padding: 22px;
  place-items: center;
  color: var(--green-900);
  background:
    linear-gradient(90deg, rgba(40, 115, 61, 0.08) 50%, transparent 50%),
    linear-gradient(rgba(40, 115, 61, 0.08) 50%, transparent 50%);
  background-size: 24px 24px;
  border: 2px dashed rgba(40, 115, 61, 0.28);
  border-radius: var(--radius-md);
  text-align: center;
}

.qr-placeholder div {
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-sm);
  font-size: 22px;
  font-weight: 900;
}

.qr-placeholder img {
  width: 190px;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(22, 59, 33, 0.12);
}

.qr-placeholder p {
  margin: 0;
  font-weight: 800;
}

.qr-image {
  gap: 14px;
  background: #f5fbef;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-weight: 900;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--text);
  background: #fbfef8;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(50, 136, 73, 0.12);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--green-800);
  font-weight: 900;
}

.form-message.error {
  color: #b4462e;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #0f2817;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-size: 20px;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

  .menu-toggle {
    display: flex;
  }

  .nav-button {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: 66px;
    right: 20px;
    left: 20px;
    display: grid;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid transparent;
    border-radius: 22px;
    box-shadow: var(--shadow);
    transition: max-height 0.22s ease, padding 0.22s ease, border-color 0.22s ease;
  }

  .nav-menu.open {
    max-height: 260px;
    padding: 18px 20px;
    border-color: var(--border);
  }

  .hero-grid,
  .split-grid,
  .showcase-grid,
  .contact-grid,
  .customers-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-card,
  .image-card img {
    min-height: 390px;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    font-size: 16px;
  }

  .hero {
    padding: 48px 0 56px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 17px;
  }

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

  .hero-card,
  .image-card img {
    min-height: 330px;
  }

  .hero-card {
    padding: 0;
    border-radius: 28px;
  }

  .produce-illustration {
    inset: 32px 20px 104px;
  }

  .produce-illustration span {
    width: 26px;
    height: 225px;
  }

  .produce-illustration span:nth-child(2) {
    height: 248px;
  }

  .produce-illustration span:nth-child(3) {
    height: 230px;
  }

  .produce-illustration span:nth-child(4) {
    height: 212px;
  }

  .hero-card-content {
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 18px;
  }

  .hero-card-content strong {
    font-size: 22px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .product-grid,
  .feature-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .shipping-panel,
  .contact-card,
  .lead-form {
    padding: 24px;
    border-radius: 24px;
  }

  .customer-tags span {
    width: 100%;
    text-align: center;
  }
}
