:root {
  --primary: #ff7a00;
  --primary-dark: #e16600;
  --accent: #ffb347;
  --soft: #fff6ed;
  --soft-2: #fff0df;
  --text: #2e2319;
  --muted: #6f5a47;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(255, 122, 0, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #fff7ef 0%, #fffdf9 48%, #ffffff 100%);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 78px 0; }

.bg-icons {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
  opacity: .12;
}
.bg-icons span {
  position: absolute;
  font-size: clamp(18px, 2vw, 30px);
  animation: float 16s linear infinite;
}
.bg-icons span:nth-child(1) { left: 6%; top: 12%; }
.bg-icons span:nth-child(2) { left: 18%; top: 74%; }
.bg-icons span:nth-child(3) { left: 29%; top: 18%; }
.bg-icons span:nth-child(4) { left: 40%; top: 80%; }
.bg-icons span:nth-child(5) { left: 56%; top: 12%; }
.bg-icons span:nth-child(6) { left: 68%; top: 70%; }
.bg-icons span:nth-child(7) { left: 79%; top: 20%; }
.bg-icons span:nth-child(8) { left: 86%; top: 78%; }
.bg-icons span:nth-child(9) { left: 91%; top: 45%; }
.bg-icons span:nth-child(10) { left: 9%; top: 46%; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 122, 0, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}
.logo { height: 58px; width: auto; }
.hero-brandmark { height: 72px; width: auto; margin: 0 0 14px; filter: drop-shadow(0 10px 18px rgba(255,122,0,.16)); }
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: var(--muted);
  font-weight: 500;
}
.nav a:hover { color: var(--primary-dark); }
.menu-btn {
  display: none;
  border: 0;
  background: var(--soft);
  color: var(--primary-dark);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 22px;
}

.hero { padding: 54px 0 30px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}
.badge, .section-tag {
  display: inline-block;
  background: var(--soft-2);
  color: var(--primary-dark);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--primary-dark);
}
.hero-copy p {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 650px;
}
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff9d2e);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary-dark);
  border: 1px solid rgba(255, 122, 0, 0.22);
}
.hero-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.hero-card {
  position: relative;
}
.hero-visual {
  background: linear-gradient(180deg, #fff3e5, #fffaf5);
  border: 1px solid rgba(255,122,0,.12);
  border-radius: 32px;
  padding: 26px;
  box-shadow: var(--shadow);
  min-height: 430px;
  position: relative;
  overflow: hidden;
}
.produce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 80px;
}
.produce-grid div {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,122,0,.10);
  border-radius: 26px;
  min-height: 110px;
  display: grid;
  place-items: center;
  font-size: 44px;
  box-shadow: 0 10px 25px rgba(0,0,0,.04);
}
.floating-card {
  position: absolute;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
}
.orange-card {
  top: 24px;
  left: 24px;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  color: white;
}
.light-card {
  right: 22px;
  bottom: 22px;
  background: white;
  color: var(--primary-dark);
  border: 1px solid rgba(255,122,0,.14);
}

.stats-section { padding: 12px 0 8px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-box {
  background: white;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
  border: 1px solid rgba(255,122,0,.08);
  display: flex;
  flex-direction: column;
}
.stat-box strong { color: var(--primary-dark); font-size: 28px; }
.stat-box span { color: var(--muted); margin-top: 6px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.two-col h2, .section-heading h2, .cta-box h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 14px;
  color: var(--primary-dark);
}
.two-col p, .cta-box p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}
.info-panel {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
  border: 1px solid rgba(255,122,0,.08);
}
.info-item {
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255,122,0,.18);
  font-weight: 600;
}
.info-item:last-child { border-bottom: 0; }

.section-heading { margin-bottom: 28px; }
.section-heading.center { text-align: center; }
.card-grid, .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-card, .feature-item {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
  border: 1px solid rgba(255,122,0,.08);
}
.category-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--soft);
  display: grid;
  place-items: center;
  font-size: 32px;
  margin-bottom: 16px;
}
.category-card h3 { margin: 0 0 10px; color: var(--primary-dark); }
.category-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.feature-item {
  text-align: center;
  font-weight: 700;
  color: var(--primary-dark);
}

.cta-box {
  background: linear-gradient(135deg, #fff0e0, #ffffff);
  padding: 34px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255,122,0,.1);
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,122,0,.08);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-logo { height: 56px; }
.footer-wrap p { color: var(--muted); margin: 10px 0 0; }
.footer-socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-socials a {
  padding: 12px 18px;
  background: var(--soft);
  color: var(--primary-dark);
  border-radius: 999px;
  font-weight: 600;
}

@media (max-width: 920px) {
  .hero-grid, .two-col, .cta-box, .card-grid, .features-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .cta-box, .footer-wrap { flex-direction: column; align-items: flex-start; }
  .nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(255,122,0,.1);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.active { display: flex; }
  .menu-btn { display: inline-block; }
}

@media (max-width: 640px) {
  .logo { height: 48px; }
  .hero-brandmark { height: 56px; }
  .hero { padding-top: 34px; }
  .hero-visual { min-height: 370px; padding: 18px; }
  .produce-grid div { min-height: 85px; font-size: 36px; }
  .btn { width: 100%; }
}
