/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-900: #0f3d2e;
  --green-700: #1f6f4f;
  --green-600: #2a8f66;
  --green-500: #37a878;
  --green-100: #e6f5ee;
  --green-50: #f3faf6;
  --cream: #fbf9f4;
  --ink: #16241d;
  --ink-soft: #4a5a51;
  --border: #dfe9e2;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1eab54;
  --radius: 16px;
  --shadow: 0 8px 24px rgba(15, 61, 46, 0.08);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--green-900);
  line-height: 1.25;
}

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

img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 12px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head h2 { font-size: 2rem; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--green-600); }

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-700);
}
.btn-outline:hover { background: var(--green-100); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-900);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-700);
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--ink-soft);
}
.logo-location svg { width: 11px; height: 11px; flex-shrink: 0; }

.footer-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-location svg { width: 14px; height: 14px; flex-shrink: 0; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--green-700);
  border-color: var(--green-600);
}
.site-nav a.nav-cta {
  border: none;
  padding: 10px 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0;
  background: linear-gradient(160deg, var(--green-50) 0%, var(--cream) 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.hero-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.home-health-photo {
  position: relative;
}

.home-health-photo-img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 28%;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--green-100);
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 61, 46, 0) 45%, rgba(15, 61, 46, 0.42) 100%);
  pointer-events: none;
}

.hero-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1;
}
.hero-card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 1.4rem;
}
.hero-card p { font-weight: 600; color: var(--green-900); }

/* ---------- Cards / grids ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 1.4rem;
}
.product-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-100);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.product-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.step { text-align: center; }
.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }

.how-it-works { background: var(--green-50); }

/* ---------- CTA ---------- */
.cta-section {
  background: var(--green-900);
  color: var(--white);
}
.cta-inner { text-align: center; max-width: 520px; margin: 0 auto; }
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 56px 0 40px;
  background: var(--green-50);
  text-align: center;
}
.page-hero h1 { font-size: 2.2rem; margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}
.about-text h2 { margin: 28px 0 12px; }
.about-text h2:first-child { margin-top: 0; }
.about-text p { color: var(--ink-soft); margin-bottom: 8px; }

.check-list { list-style: none; margin: 12px 0 20px; }
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--ink-soft);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 700;
}

.about-highlights { display: flex; flex-direction: column; gap: 20px; }
.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.highlight-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 1.3rem;
}
.highlight-card h3 { margin-bottom: 6px; font-size: 1.05rem; }
.highlight-card p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 14px; }

/* ---------- Products detail ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 100px;
}
.product-detail:last-child { border-bottom: none; }
.product-detail.reverse { direction: rtl; }
.product-detail.reverse > * { direction: ltr; }

.product-detail-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.product-detail-icon span:first-child {
  font-size: 2rem;
  color: var(--green-700);
  background: var(--green-100);
  width: 90px;
  height: 90px;
  border-radius: 20px;
  display: grid;
  place-items: center;
}

.product-detail-content h2 { font-size: 1.6rem; margin-bottom: 10px; }
.product-short { color: var(--ink-soft); margin-bottom: 18px; }
.product-detail-content h4,
.product-single-info h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-700);
  margin-bottom: 8px;
  margin-top: 20px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb span { color: var(--green-900); font-weight: 600; }
.breadcrumb svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.5; }

/* ---------- Product single page (marketplace style) ---------- */
.product-single { padding-top: 24px; }
.product-single-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 56px;
  align-items: start;
}
.product-single-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--green-100);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.product-single-media img { width: 100%; height: 560px; object-fit: cover; display: block; }
.product-single-media-fallback {
  width: 100%;
  height: 560px;
  display: grid;
  place-items: center;
  color: var(--green-700);
  font-size: 6rem;
}
.product-single-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-900);
  background: var(--white);
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.product-single-info h1 { font-size: 2.1rem; margin-bottom: 10px; }
.product-single-info .product-short { font-size: 1.05rem; margin-bottom: 24px; }

.price-box {
  background: var(--green-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 28px;
}
.price-box-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 16px;
}
.price-box-value-muted { font-size: 1.2rem; color: var(--ink-soft); font-weight: 600; }
.btn-block { width: 100%; }

.product-info-block {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--border);
}
.product-info-block:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.product-single-info h4 { margin-top: 0; }
.product-description { color: var(--ink-soft); }

@media (max-width: 860px) {
  .product-single-grid { grid-template-columns: 1fr; }
  .product-single-media img,
  .product-single-media-fallback { height: 360px; }
}
.product-note {
  background: var(--green-50);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 20px;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-text { font-style: italic; color: var(--ink-soft); margin-bottom: 16px; }
.testimonial-meta { display: flex; flex-direction: column; gap: 2px; font-size: 0.9rem; }
.testimonial-meta span { color: var(--ink-soft); }

.testimonial-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin-bottom: 16px;
}
.testimonial-video-wrap video,
.testimonial-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.disclaimer-inline {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
}
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--green-900);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--green-600);
  font-weight: 700;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--ink-soft); margin-top: 12px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--green-900);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--green-50);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green-600);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; }

.alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 500;
}
.alert-success { background: #e2f6ea; color: var(--green-900); }
.alert-error { background: #fbe6e6; color: #7a2020; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-phone-number { font-weight: 600; color: var(--green-900); margin-bottom: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,0.85); padding-top: 56px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand p { margin-top: 10px; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-contact h4 { color: var(--white); margin-bottom: 8px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom .disclaimer { margin-top: 6px; max-width: 720px; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  z-index: 200;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-inner,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .home-health-photo { min-height: 320px; order: -1; }
  .home-health-photo-img { height: 320px; }
  .hero-visual { min-height: 320px; order: -1; }
  .hero-image { height: 320px; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail.reverse { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a.nav-cta { width: 100%; text-align: center; }
  .hero h1 { font-size: 2rem; }
}
