:root {
  --bg: #f7f8f2;
  --soft: #edf2e8;
  --green: #3e6b3a;
  --green-dark: #31592e;
  --text: #24311f;
  --muted: #65705f;
  --border: #dce4d4;
  --white: #fff;
  --shadow: 0 16px 35px rgba(64, 91, 55, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 248, 242, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-row,
.footer-row,
.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-row { min-height: 76px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--green);
  font-size: 22px;
}

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

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

.nav { display: flex; gap: 22px; font-size: 14px; font-weight: 700; }
.nav a:hover { color: var(--green); }

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 95% 0%, rgba(160,196,126,.26), transparent 34%);
}

.hero-grid,
.two-col,
.contacts-box {
  display: grid;
  gap: 42px;
}

.hero-grid {
  grid-template-columns: 1.08fr .92fr;
  padding: 82px 0 88px;
}

.hero-copy { align-self: center; }

.eyebrow,
.section-kicker {
  color: #5d7e56;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  background: rgba(255,255,255,.78);
  border: 1px solid #d4dfca;
  border-radius: 999px;
}

h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 20px; font-size: clamp(42px, 6vw, 66px); line-height: 1.05; letter-spacing: -.04em; }
h2 { margin: 8px 0 18px; font-size: clamp(30px, 4vw, 42px); line-height: 1.12; letter-spacing: -.03em; }
h3 { margin: 14px 0 10px; font-size: 19px; line-height: 1.3; }
.lead { max-width: 720px; color: var(--muted); font-size: 19px; line-height: 1.72; }

.hero-actions,
.quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions { margin-top: 30px; }
.quick-points { margin-top: 30px; color: #54624e; font-size: 14px; }
.quick-points span { margin-right: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 21px;
  border-radius: 16px;
  font-weight: 800;
  transition: .2s ease;
}

.btn-small { padding: 11px 15px; border-radius: 12px; font-size: 14px; }
.btn-primary { background: var(--green); color: white; box-shadow: 0 8px 18px rgba(62,107,58,.20); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-light { background: white; color: #365830; border: 1px solid #cfd9c7; }
.btn-light:hover { border-color: #aebea3; background: #fbfcf8; }
.btn-white { background: white; color: var(--green); white-space: nowrap; }
.btn-block { display: flex; width: 100%; margin-top: 12px; }

.hero-card-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: min(100%, 430px);
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
}

.product-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 8px 16px;
}
.product-head small { color: #6f8468; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.product-head h2 { margin: 6px 0 0; font-size: 28px; }
.package-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 16px; background: #f6f8f1; font-size: 24px; }

.bag {
  padding: 18px;
  border-radius: 22px;
  background: #6b4b31;
}

.bag-label {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 15px;
  color: white;
  background: #765338;
}

.bag-top { color: #e5f0dd; font-weight: 800; letter-spacing: .14em; }
.bag-percent { font-size: 54px; font-weight: 900; line-height: 1; }
.bag-title { font-size: 20px; font-weight: 800; }
.bag-note { margin-top: 8px; color: rgba(255,255,255,.73); font-size: 14px; }

.section { padding: 72px 0; }
.section-soft { background: var(--soft); }

.two-col { grid-template-columns: .85fr 1.15fr; }

.muted { color: var(--muted); }
.small-text { margin: 15px 4px 4px; font-size: 13px; }
.tiny { margin-top: 16px; font-size: 12px; }

.benefit-grid,
.use-grid,
.delivery-grid {
  display: grid;
  gap: 16px;
}

.benefit-grid { grid-template-columns: repeat(2, 1fr); }
.use-grid { grid-template-columns: repeat(4, 1fr); margin-top: 30px; }
.delivery-grid { grid-template-columns: repeat(3, 1fr); }

.card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white;
  box-shadow: 0 6px 14px rgba(64,91,55,.04);
}

.use-icon,
.feature-icon { font-size: 28px; }
.feature-card { padding: 26px; }

.cta { padding: 64px 0; background: #365d32; color: white; }
.cta p { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,.75); }
.cta h2 { max-width: 810px; }
.section-kicker-light { color: #cbe0bf; }

.faq-item {
  margin-bottom: 12px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: white;
}
.faq-item summary { cursor: pointer; font-weight: 800; }
.faq-item p { margin: 12px 0 0; }

.contacts-box {
  grid-template-columns: 1fr .9fr;
  padding: 34px;
  border: 1px solid #d4dfcd;
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
}

.contact-list { display: grid; gap: 15px; margin-top: 24px; }
.contact-list div { display: grid; gap: 4px; }
.contact-list a, .contact-list span { color: var(--muted); }

.order-card { padding: 24px; border-radius: 22px; background: #eff4eb; }

.site-footer { border-top: 1px solid var(--border); }
.footer-row { min-height: 76px; color: #75806f; font-size: 14px; }

@media (max-width: 850px) {
  .nav { display: none; }
  .hero-grid,
  .two-col,
  .contacts-box { grid-template-columns: 1fr; }
  .hero-grid { padding: 58px 0 68px; }
  .use-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-grid { grid-template-columns: 1fr; }
  .cta-row { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand small { display: none; }
  .brand strong { font-size: 16px; }
  .btn-small { padding: 10px 12px; font-size: 13px; }
  h1 { font-size: 42px; }
  .lead { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .benefit-grid,
  .use-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .contacts-box { padding: 20px; }
  .footer-row { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
}
