:root {
  --green: #20a866;
  --green-dark: #08744b;
  --green-soft: #eafff3;
  --text: #17221c;
  --muted: #62726b;
  --line: #e0ebe5;
  --card: #ffffff;
  --bg: #f8fbf8;
  --shadow: 0 12px 28px rgba(20, 80, 46, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); background: var(--bg); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.topbar { position: sticky; top: 0; z-index: 20; background: #fff; border-bottom: 1px solid var(--line); }
.topbar-inner { display: flex; align-items: center; gap: 26px; max-width: 1280px; min-height: 72px; margin: 0 auto; padding: 0 22px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--green-dark); white-space: nowrap; }
.logo-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 8px; color: #fff; background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.primary-nav { display: flex; align-items: center; gap: 20px; flex: 1; font-size: 15px; }
.primary-nav > a { display: inline-flex; align-items: center; min-height: 38px; padding: 0 4px; white-space: nowrap; }
.contact-link,.cta-button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 20px; border-radius: 8px; color: #fff; font-weight: 700; background: var(--green); }
.menu-toggle { display: none; }
.home-content { background: #fff; }
.hero { max-width: 1380px; min-height: 430px; margin: 0 auto; display: grid; place-items: center; padding: 54px clamp(28px, 5vw, 72px); background: linear-gradient(90deg, rgba(242,255,245,.98) 0%, rgba(255,255,255,.94) 55%, rgba(255,255,255,.68) 100%), url('/assets/hero-dashboard.jpg') right center/auto 100% no-repeat; }
.hero-overlay { width: min(940px, 100%); text-align: left; margin-right: auto; }
.eyebrow { margin: 0 0 12px; color: var(--green-dark); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero h1 { max-width: 930px; margin: 0; font-size: clamp(44px, 5vw, 64px); line-height: 1.08; letter-spacing: 0; text-wrap: balance; }
.hero h1 span { display: block; white-space: nowrap; }
.hero p:not(.eyebrow) { max-width: 650px; margin: 16px 0 26px; color: var(--muted); font-size: 20px; line-height: 1.6; }
.categories,.popular-products,.features,.faq-section,.quick-panels { max-width: 1180px; margin: 0 auto; padding: 54px 22px; }
.categories h2,.popular-products h2,.features h2,.faq-section h2 { margin: 0 0 26px; text-align: center; font-size: clamp(28px, 4vw, 40px); letter-spacing: 0; }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.category-grid a { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 82px; padding: 14px 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: var(--shadow); font-weight: 700; }
.category-grid a img { width: 30px; height: 30px; object-fit: contain; flex: 0 0 auto; }
.category-grid a span { min-width: 0; overflow-wrap: anywhere; }
.quick-panels { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; padding-top: 8px; }
.quick-panel { border: 1px solid var(--line); border-radius: 8px; padding: 24px; background: #fff; box-shadow: var(--shadow); }
.quick-panel h2 { margin: 0 0 18px; font-size: 24px; }
.pill-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.pill-grid a { padding: 11px 12px; border-radius: 8px; background: var(--green-soft); color: var(--green-dark); font-weight: 700; text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card { display: block; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--card); box-shadow: var(--shadow); content-visibility: auto; contain-intrinsic-size: 250px 280px; }
.thumb { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: linear-gradient(135deg, #f6fff9, #9ce5b8); }
.product-card strong { display: block; min-height: 54px; padding: 14px 14px 4px; line-height: 1.35; }
.product-card em { display: block; padding: 0 14px 16px; color: var(--green-dark); font-style: normal; font-weight: 800; }
.features { text-align: center; background: #f9fffb; max-width: none; }
.features > * { max-width: 900px; margin-left: auto; margin-right: auto; }
.features-text { color: #4e5d55; font-size: 17px; line-height: 1.85; }
.faq-section { max-width: 920px; }
.faq-section h2 { text-align: left; }
.faq-section details { margin-top: 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.faq-section summary { cursor: pointer; padding: 18px; font-weight: 800; }
.faq-section p { margin: 0; padding: 0 18px 18px; color: var(--muted); line-height: 1.7; }
.footer { padding: 32px 22px; text-align: center; color: var(--muted); background: #f2f8f4; border-top: 1px solid var(--line); }
.footer p { max-width: 960px; margin: 8px auto; line-height: 1.7; }
@media (max-width: 900px) {
  .topbar-inner { flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; margin-left: auto; padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
  .primary-nav { display: none; flex-basis: 100%; flex-direction: column; align-items: stretch; padding-bottom: 14px; }
  .primary-nav.open { display: flex; }
  .contact-link { display: none; }
  .hero { min-height: 360px; background: linear-gradient(135deg, #f2fff5 0%, #fff 48%, #ecfff2 100%); }
  .hero-overlay { text-align: center; margin: 0 auto; }
  .hero h1 { margin-left: auto; margin-right: auto; font-size: clamp(36px, 9vw, 54px); }
  .hero h1 span { white-space: normal; }
  .hero p:not(.eyebrow) { margin-left: auto; margin-right: auto; font-size: 17px; }
  .category-grid,.product-grid,.quick-panels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .category-grid,.product-grid,.quick-panels,.pill-grid { grid-template-columns: 1fr; }
  .hero { min-height: 300px; }
}
