:root {
  --primary: #2f5d3a;
  --primary-dark: #21452b;
  --primary-light: #e8f0e7;
  --accent: #c79a52;
  --cream: #f8f4ec;
  --surface: #fff;
  --text: #263229;
  --muted: #6b756c;
  --border: #e5e0d6;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  line-height: 1.65;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 9999;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}
.announcement {
  background: var(--primary-dark);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  padding: 7px 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: block;
  width: auto;
  height: 78px;
  max-width: 250px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  padding: 10px 13px;
  border-radius: 10px;
  font-weight: 600;
  color: #4b554d;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--primary);
  background: var(--primary-light);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 9px 11px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  transition: 0.2s;
  min-height: 44px;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--cream);
  color: var(--primary);
  border: 1px solid var(--border);
}
.btn-small {
  padding: 9px 14px;
  font-size: 0.92rem;
}
.btn:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(199, 154, 82, 0.45);
  outline-offset: 2px;
}
.hero {
  padding: 76px 0 68px;
  background: linear-gradient(135deg, var(--cream), #fff 58%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 12px;
}
h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 16px;
}
h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
}
h3 {
  font-size: 1.25rem;
}
.lead {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--muted);
  max-width: 650px;
}
.hero-copy .actions,
.cta .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream);
}
.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 6/5;
  object-fit: cover;
}
.section {
  padding: 82px 0;
}
.section-soft {
  background: var(--cream);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}
.section-head > div {
  max-width: 700px;
}
.center {
  text-align: center;
}
.center .lead {
  margin: auto;
}
.grid {
  display: grid;
  gap: 22px;
}
.benefit-grid {
  grid-template-columns: repeat(5, 1fr);
}
.product-grid {
  grid-template-columns: repeat(4, 1fr);
}
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card-body {
  padding: 22px;
}
.benefit {
  padding: 24px;
  text-align: center;
}
.benefit-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.benefit-icon svg {
  width: 24px;
  height: 24px;
}
.product-image,
.blog-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--cream);
}
.blog-image {
  aspect-ratio: 16/10;
}
.product-card {
  transition: 0.22s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card .card-body {
  display: flex;
  flex-direction: column;
  min-height: 250px;
}
.badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.category,
.meta {
  font-size: 0.82rem;
  color: var(--muted);
}
.product-price {
  font-weight: 800;
  font-size: 1.15rem;
  margin: 12px 0;
}
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-media img {
  display: block;
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.check-list li {
  position: relative;
  padding: 8px 0 8px 30px;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}
.quote {
  padding: 26px;
}
.quote strong {
  display: block;
  margin-top: 14px;
  color: var(--primary);
}
.faq {
  max-width: 820px;
  margin: auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 0;
  font-weight: 750;
  color: var(--text);
}
.faq-question span:last-child {
  font-size: 1.4rem;
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s;
}
.faq-answer p {
  margin: 0 0 20px;
  color: var(--muted);
}
.cta {
  padding: 62px 0;
  background: var(--primary);
  color: #fff;
}
.cta .lead {
  color: rgba(255, 255, 255, 0.78);
}
.btn-light {
  background: #fff;
  color: var(--primary);
}
.page-hero {
  padding: 64px 0;
  background: var(--cream);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
}
.search {
  flex: 1;
  min-width: 220px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}
.filter-btn {
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--muted);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.empty-state {
  padding: 50px 20px;
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-md);
  color: var(--muted);
}
.blog-card .card-body {
  min-height: 220px;
}
.blog-card h3 {
  margin-top: 7px;
}
.blog-card .read {
  display: inline-flex;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 800;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
}
.contact-list {
  display: grid;
  gap: 14px;
}
.contact-item {
  padding: 18px;
  background: var(--cream);
  border-radius: var(--radius-md);
}
.contact-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 3px;
}
.form-card {
  padding: 28px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.error {
  font-size: 0.82rem;
  color: #a33;
  margin-top: 5px;
  min-height: 18px;
}
.form-note {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 12px;
}
.site-footer {
  background: #1f2b22;
  color: #e8eee9;
  padding: 54px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
}
.site-footer h3 {
  font-size: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.site-footer a {
  color: #d4ddd6;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #b9c5bc;
}
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  background: #1f9d55;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-weight: 800;
}
.back-top {
  position: fixed;
  right: 20px;
  bottom: 82px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  display: none;
  z-index: 899;
}
.back-top.show {
  display: grid;
  place-items: center;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s,
    transform 0.55s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.prose {
  max-width: 820px;
}
.prose p {
  color: var(--muted);
  font-size: 1.05rem;
}
@media (max-width: 1050px) {
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-actions .btn {
    display: none;
  }
}
@media (max-width: 800px) {
  .header-inner {
    height: 70px;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav {
    position: absolute;
    top: 70px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 13px 14px;
  }
  .hero {
    padding: 52px 0;
  }
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .section {
    padding: 64px 0;
  }
  .section-head {
    display: block;
  }
  .benefit-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    padding: 0;
    display: grid;
    place-items: center;
    font-size: 0;
  }
  .floating-whatsapp:before {
    content: "💬";
    font-size: 21px;
  }
}
@media (max-width: 560px) {
  .container {
    width: calc(100% - 24px);
  }
  .hero-copy .actions,
  .cta .actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .product-grid,
  .benefit-grid,
  .testimonial-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .card-actions .btn {
    width: auto;
  }
  .site-logo {
    height: 88px;
    max-width: 360px;
  }
  .page-hero {
    padding: 48px 0;
  }
  .form-card {
    padding: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .faq-answer {
    transition: none;
  }
}
