:root {
  color-scheme: light;
  --green: #00a86b;
  --green-dark: #00794f;
  --charcoal: #1f2937;
  --ink: #111827;
  --muted: #667085;
  --line: #e6edf0;
  --paper: #ffffff;
  --soft: #f5faf7;
  --mint: #dff8ec;
  --gold: #f4b740;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(17, 24, 39, .12);
  --font-head: "Poppins", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
body.dark {
  color-scheme: dark;
  --paper: #0f141c;
  --soft: #151d26;
  --ink: #f8fafc;
  --charcoal: #f5f7fb;
  --muted: #b7c1cc;
  --line: rgba(255,255,255,.14);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.eyebrow { color: var(--green); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--charcoal); line-height: 1.08; margin: 0 0 16px; letter-spacing: 0; }
h1 { font-size: clamp(3rem, 8vw, 7.2rem); }
h2 { font-size: clamp(2rem, 4.8vw, 4.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 18px; color: var(--muted); }
.lead { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 760px; }
.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }
.grid { display: grid; gap: 24px; }
.two { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 900; }
.brand img { width: 134px; height: auto; }
.navlinks { display: flex; align-items: center; gap: 24px; font-weight: 750; color: var(--charcoal); }
.navlinks a { position: relative; font-size: .95rem; }
.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width .25s ease;
}
.navlinks a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn, .menu-btn {
  min-width: 44px;
  width: auto;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--charcoal);
  border-radius: var(--radius);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.menu-btn { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  min-height: 48px;
  padding: 0 22px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #fff; background: linear-gradient(135deg, var(--green), var(--green-dark)); box-shadow: 0 16px 34px rgba(0,168,107,.28); }
.btn.secondary { background: var(--charcoal); color: var(--paper); }
.btn.ghost { border: 1px solid var(--line); background: var(--paper); color: var(--charcoal); }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(0,168,107,.15), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}
body.dark .hero { background: linear-gradient(180deg, #111820 0%, #0f141c 100%); }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 42px; align-items: center; }
.hero-copy { padding: 48px 0; }
.hero h1 span { color: var(--green); display: block; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0; }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 620px; }
.pill {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  color: var(--charcoal);
  text-align: center;
}
.hero-media { position: relative; min-height: 520px; }
.product-stage {
  position: absolute;
  inset: 7% -6% 3% 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: perspective(1100px) rotateY(-7deg) rotateX(2deg);
  background: #fff;
}
.product-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 44%;
  transform: scale(1.28);
  transform-origin: right center;
}
.float-chip {
  position: absolute;
  z-index: 2;
  background: var(--paper);
  color: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-weight: 900;
  box-shadow: 0 12px 36px rgba(31,41,55,.12);
  animation: float 4s ease-in-out infinite;
}
.float-chip.one { top: 14%; left: -4%; }
.float-chip.two { right: -1%; top: 24%; animation-delay: .7s; }
.float-chip.three { left: 12%; bottom: 10%; animation-delay: 1.2s; }

.trustbar {
  background: var(--charcoal);
  color: #fff;
  padding: 20px 0;
}
.trustbar .container { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 850; }
.trust-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(0,168,107,.16); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(31,41,55,.06);
}
.feature-card { padding: 30px; min-height: 214px; }
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--mint);
  display: grid;
  place-items: center;
  color: var(--green-dark);
  font-weight: 950;
  margin-bottom: 22px;
}
.product-card { overflow: hidden; }
.product-img { height: 230px; background: #f7faf9; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 46%; transition: transform .5s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-body { padding: 22px; }
.price-row, .rating-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { color: var(--green); font-weight: 950; font-size: 1.2rem; }
.rating { color: var(--gold); font-weight: 900; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }

.demo {
  background: linear-gradient(135deg, #101820, #1f2937);
  color: #fff;
  overflow: hidden;
}
.demo h2, .demo h3 { color: #fff; }
.demo p { color: rgba(255,255,255,.76); }
.video-box {
  min-height: 390px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
}
.video-box img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; object-position: 72% 48%; opacity: .82; }
.play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--green);
  font-size: 2rem;
  box-shadow: 0 0 0 18px rgba(255,255,255,.18);
  cursor: pointer;
}
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.compare div { padding: 18px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); }

.stats { background: var(--soft); }
.stat { text-align: center; padding: 28px 18px; }
.stat strong { display: block; font-family: var(--font-head); font-size: clamp(2.1rem, 4vw, 3.4rem); color: var(--green); line-height: 1; }
.stat span { color: var(--muted); font-weight: 850; }

.testimonial-shell { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .45s ease; }
.testimonial { min-width: 100%; padding: 34px; }
.avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--mint); display: grid; place-items: center; color: var(--green-dark); font-weight: 950; }
.slider-controls { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }

.recipe-card { overflow: hidden; }
.recipe-card .product-img { height: 185px; }
.tag { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 999px; background: var(--mint); color: var(--green-dark); font-weight: 850; font-size: .82rem; }

.split-band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}
.distributor-panel {
  background: linear-gradient(135deg, var(--green), #044c36);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px;
}
.distributor-panel h2, .distributor-panel p { color: #fff; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { padding-left: 30px; position: relative; color: var(--muted); }
.check-list li::before { content: "OK"; position: absolute; left: 0; top: 0; color: var(--green); font-size: .78rem; font-weight: 950; }
.distributor-panel .check-list li { color: rgba(255,255,255,.86); }
.distributor-panel .check-list li::before { color: #fff; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > button,
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 900;
  color: var(--charcoal);
  cursor: pointer;
}
.faq-a { display: none; padding: 0 0 22px; }
.faq-item.open .faq-a { display: block; }

.form {
  display: grid;
  gap: 14px;
}
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  min-height: 50px;
  padding: 13px 14px;
}
.form textarea { min-height: 132px; resize: vertical; }
.form-note { font-size: .88rem; color: var(--muted); }

.page-hero {
  padding: 88px 0 66px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--paper) 74%, transparent), var(--paper)),
    url("../images/banner-1.png") center/cover;
}
.breadcrumbs { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.filterbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { border: 1px solid var(--line); background: var(--paper); color: var(--charcoal); border-radius: 999px; padding: 10px 14px; font-weight: 850; cursor: pointer; }
.chip.active { background: var(--green); color: #fff; border-color: var(--green); }

.gallery { display: grid; gap: 14px; }
.gallery-main { min-height: 430px; overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 46%; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td { border-bottom: 1px solid var(--line); padding: 14px 0; }
.spec-table td:first-child { font-weight: 900; color: var(--charcoal); }

.footer {
  background: #101820;
  color: #fff;
  padding: 70px 0 26px;
}
.footer h3, .footer h4 { color: #fff; }
.footer p, .footer a { color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer-links { display: grid; gap: 10px; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-weight: 900;
}
.copyright { border-top: 1px solid rgba(255,255,255,.12); margin-top: 42px; padding-top: 22px; color: rgba(255,255,255,.62); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  gap: 10px;
}
.float-action {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0,168,107,.28);
}
.float-action.call { background: var(--charcoal); }
#backToTop { opacity: 0; pointer-events: none; transition: opacity .2s ease; }
#backToTop.show { opacity: 1; pointer-events: auto; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
