/* ============================================================
   PUREHEALTHYWAYS.COM — STYLESHEET
   Theme: Natural Wellness | Palette: Forest Green & Crisp White
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --green-deep:    #1a6b3a;
  --green-mid:     #2d8a52;
  --green-bright:  #3aaa66;
  --green-light:   #e8f5ee;
  --green-xlight:  #f2faf5;
  --green-accent:  #4ecb7e;
  --white:         #ffffff;
  --off-white:     #f9fdf9;
  --text-dark:     #1a2e22;
  --text-body:     #3d5245;
  --text-muted:    #7a9585;
  --border:        #d4e9dc;
  --shadow-sm:     0 2px 12px rgba(26, 107, 58, 0.08);
  --shadow-md:     0 8px 32px rgba(26, 107, 58, 0.12);
  --shadow-lg:     0 20px 60px rgba(26, 107, 58, 0.18);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', 'Segoe UI', sans-serif;
  --max-width:     1200px;
  --nav-height:    72px;
}

/* ---- SKIP LINK (accessibility) ---- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--green-deep);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION BASE ---- */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--green-mid);
  background: var(--green-light);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--green-mid);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 107, 58, 0.3);
}
.btn-primary:hover {
  background: var(--green-mid);
  box-shadow: 0 8px 28px rgba(26, 107, 58, 0.4);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0) scale(0.98); box-shadow: 0 2px 10px rgba(26, 107, 58, 0.25); }
.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}
.btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline:active { transform: translateY(0) scale(0.98); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  height: var(--nav-height);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(26, 107, 58, 0.08);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 500;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--green-deep);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.logo-text strong { font-weight: 700; color: var(--green-deep); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding-bottom: 2px;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--green-mid);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--green-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--green-deep); }
.nav-links a.active::after { width: 100%; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 40px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: pulseWA 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--text-dark);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes pulseWA {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 36px rgba(37, 211, 102, 0.7); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100dvh;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(58, 170, 102, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(26, 107, 58, 0.07) 0%, transparent 60%),
    linear-gradient(160deg, #f5fbf7 0%, #edf7f2 55%, #f8fcf9 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}
/* Grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--green-accent);
  opacity: 0.06;
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.shape-2 { width: 300px; height: 300px; bottom: 50px; left: -100px; opacity: 0.04; }
.shape-3 { width: 200px; height: 200px; top: 40%; right: 20%; opacity: 0.08; }
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1px solid var(--border);
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 7px 14px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-title .highlight {
  color: var(--green-deep);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--green-accent));
  border-radius: 4px;
  opacity: 0.5;
}
.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-deep);
  font-family: var(--font-display);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(58, 170, 102, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-img {
  position: relative;
  z-index: 1;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(26, 107, 58, 0.2));
  animation: floatImg 4s ease-in-out infinite;
}
@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}


/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--green-deep);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.trust-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item i { color: var(--green-accent); font-size: 1.1rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-bg {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(26, 107, 58, 0.55) 0%, rgba(45, 138, 82, 0.35) 100%),
    url('https://picsum.photos/seed/herbs-nature/800/600') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.about-img-bg::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: var(--green-mid);
  border-radius: 50%;
  opacity: 0.08;
}
.about-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  border-radius: inherit;
}
.about-badge-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  border: 1px solid var(--border);
}
.about-badge-card i {
  font-size: 2rem;
  color: var(--green-mid);
}
.about-badge-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.5; }
.about-badge-card strong { color: var(--text-dark); }
.about-leaf-decor {
  position: absolute;
  top: -20px; left: -20px;
  width: 80px; height: 80px;
  background: var(--green-light);
  border-radius: 50%;
  border: 3px solid var(--green-bright);
  opacity: 0.6;
}
.about-content .section-tag { display: inline-block; margin-bottom: 16px; }
.about-text { margin-bottom: 20px; line-height: 1.85; color: var(--text-body); }
.about-pillars { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--green-xlight);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-mid);
  transition: var(--transition);
}
.pillar:hover { background: var(--green-light); transform: translateX(4px); }
.pillar > i {
  font-size: 1.4rem;
  color: var(--green-mid);
  margin-top: 2px;
  flex-shrink: 0;
}
.pillar strong { display: block; color: var(--text-dark); margin-bottom: 4px; font-size: 0.95rem; }
.pillar p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { background: var(--off-white); }
/* Admin UI removed — CSS for admin controls has been removed */

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(340px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 107, 58, 0.06);
  border: 1px solid var(--green-light);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(26, 107, 58, 0.16), 0 4px 12px rgba(26, 107, 58, 0.06);
  border-color: var(--green-bright);
}
.product-image-wrap {
  background: var(--green-xlight);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}
.product-image-wrap img {
  max-height: 100%;
  width: 100%;
  max-width: 420px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green-deep);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
}
.product-info { padding: 20px 22px 24px; }
.product-name {
  display: block;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  width: 100%;
  line-height: 1.3;
}
.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-deep);
  font-family: var(--font-display);
  margin-bottom: 16px;
}
.product-price small { font-size: 0.72rem; font-family: var(--font-body); color: var(--text-muted); font-weight: 400; display: block; margin-top: 2px; }
.product-cta {
  display: flex;
  gap: 10px;
}
.product-cta a {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
}
.product-cta .cta-wa {
  background: #25d366;
  color: var(--white);
}
.product-cta .cta-wa:hover { background: #1ebe59; transform: translateY(-1px); }
.product-cta .cta-ask {
  background: var(--green-light);
  color: var(--green-deep);
  border: 1px solid var(--border);
}
.product-cta .cta-ask:hover { background: var(--green-deep); color: var(--white); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.benefit-card {
  background: var(--green-xlight);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid transparent;
  transition: var(--transition);
}
.benefit-card:hover {
  background: var(--white);
  box-shadow: 0 12px 40px rgba(26, 107, 58, 0.12), 0 2px 8px rgba(26, 107, 58, 0.06);
  transform: translateY(-6px);
  border-color: var(--green-bright);
}
.benefit-icon {
  width: 52px; height: 52px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon {
  background: var(--green-mid);
  transform: rotate(-4deg) scale(1.08);
}
.benefit-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.benefit-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* Body Systems */
.systems-section {
  background: linear-gradient(145deg, var(--green-deep) 0%, #1e7a42 50%, var(--green-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.systems-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  border-radius: inherit;
}
.systems-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 36px;
  font-weight: 700;
}
.systems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.system-item {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.system-item:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.system-item i { font-size: 1.5rem; color: var(--green-accent); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 107, 58, 0.07);
  border: 1px solid var(--green-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(26, 107, 58, 0.14);
  border-color: var(--green-bright);
}
/* Screenshot at the top */
.testimonial-img-wrap {
  background: var(--green-xlight);
  overflow: hidden;
  max-height: 240px;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.testimonial-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.testimonial-card:hover .testimonial-img-wrap img { transform: scale(1.03); }

/* Quote body */
.testimonial-body {
  padding: 24px 24px 16px;
  flex: 1;
  position: relative;
}
.testimonial-quote-icon {
  font-size: 1.4rem;
  color: var(--green-bright);
  opacity: 0.6;
  margin-bottom: 10px;
  line-height: 1;
}
.testimonial-quote {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
}

/* Author meta at bottom */
.testimonial-meta {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--green-xlight);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-weight: 700; color: var(--text-dark); font-size: 0.92rem; }
.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-location i { color: var(--green-mid); font-size: 0.7rem; }
.testimonial-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.testimonial-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 1px; }
.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-light);
  color: var(--green-mid);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.testimonial-verified i { font-size: 0.65rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); }
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-intro { color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; }
.contact-channels { display: flex; flex-direction: column; gap: 20px; }
.channel-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--green-xlight);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: var(--text-body);
}
.channel-link:hover {
  background: var(--green-light);
  border-color: var(--green-mid);
  transform: translateX(4px);
}
.channel-icon {
  width: 48px; height: 48px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.channel-icon i { color: var(--white); }
.channel-icon.whatsapp-icon { background: #25d366; }
.channel-link div { display: flex; flex-direction: column; gap: 2px; }
.channel-link strong { color: var(--text-dark); font-size: 0.92rem; }
.channel-link span { color: var(--text-muted); font-size: 0.85rem; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 28px;
  font-weight: 700;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 8px;
}
.required { color: var(--green-mid); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 138, 82, 0.1);
}
.form-group input.error, .form-group textarea.error {
  border-color: #e53e3e;
}
.form-error { display: block; font-size: 0.78rem; color: #e53e3e; margin-top: 5px; min-height: 18px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.btn-loading { display: none; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading { display: flex; align-items: center; gap: 8px; }
.form-success, .form-fail {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  font-size: 0.9rem;
}
.form-success { background: #f0faf5; border: 1px solid #a7d9b8; }
.form-success i { color: var(--green-mid); font-size: 1.3rem; margin-top: 1px; }
.form-fail { background: #fff5f5; border: 1px solid #feb2b2; }
.form-fail i { color: #e53e3e; font-size: 1.3rem; margin-top: 1px; }
.form-success.show, .form-fail.show { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text strong { color: var(--green-accent); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  transition: var(--transition);
}
.footer-whatsapp:hover { background: #1ebe59; transform: translateY(-2px); }
.footer-links h4, .footer-products h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-links ul, .footer-products ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-products a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover, .footer-products a:hover { color: var(--green-accent); padding-left: 4px; }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.footer-contact i { color: var(--green-accent); width: 16px; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact a:hover { color: var(--green-accent); }
.footer-disclaimer {
  font-size: 0.72rem !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.35) !important;
  display: block !important;
  margin-top: 16px !important;
}
.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-website { color: var(--green-accent) !important; font-weight: 600; }

/* Staggered entry for benefit cards */
.benefit-card:nth-child(1) { transition-delay: 0ms; }
.benefit-card:nth-child(2) { transition-delay: 60ms; }
.benefit-card:nth-child(3) { transition-delay: 120ms; }
.benefit-card:nth-child(4) { transition-delay: 180ms; }
.benefit-card:nth-child(5) { transition-delay: 240ms; }
.benefit-card:nth-child(6) { transition-delay: 300ms; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container { gap: 40px; }
  .about-container { gap: 48px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .systems-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }

  /* Nav */
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 28px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-height) + 32px); padding-bottom: 60px; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-img { max-height: 280px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; gap: 20px; }
  .stat-num { font-size: 1.3rem; }
  .hero-subtitle { margin: 0 auto 36px; max-width: 100%; }

  /* Trust */
  .trust-container { gap: 20px; }
  .trust-item { font-size: 0.82rem; }

  /* About */
  .about-container { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 300px; }
  .about-badge-card { bottom: -16px; right: -8px; }

  /* Products */
  .admin-form { grid-template-columns: 1fr; }
  .admin-form .btn { grid-column: 1; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }
  .systems-section { padding: 36px 24px; }
  .systems-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .system-item { padding: 16px 12px; font-size: 0.82rem; }

  /* Contact */
  .contact-container { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 12px; align-items: center; }
  .stat-divider { width: 40px; height: 1px; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .systems-grid { grid-template-columns: 1fr 1fr; }
  .btn { padding: 13px 22px; font-size: 0.9rem; }
  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
}

/* ============================================================
   BUTTON POLISH — Ensure all buttons look sharp everywhere
   ============================================================ */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: inherit;
}
.btn:active::after { opacity: 1; }
.btn i { transition: transform 0.25s ease; }
.btn-primary:hover i { transform: translateX(3px); }

/* Product card buttons */
.product-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
}
.product-cta .cta-wa i { font-size: 1.05rem; }

/* Footer WhatsApp button */
.footer-whatsapp i { font-size: 1.1rem; }

/* Admin add button */
#addProductBtn { margin-top: 8px; }

/* Ensure btn-full has correct height */
.btn-full { padding: 15px 28px; font-size: 1rem; }

/* Submit button loading state */
#submitBtn { min-height: 52px; }
#submitBtn .btn-loading { display: none; align-items: center; gap: 8px; justify-content: center; }
#submitBtn.loading .btn-text { display: none; }
#submitBtn.loading .btn-loading { display: flex; }

/* Channel link buttons hover state refinement */
.channel-link:focus-visible {
  outline: 2px solid var(--green-mid);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

/* ============================================================
   TESTIMONIALS — Mobile responsive additions
   ============================================================ */
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-meta { flex-wrap: wrap; gap: 12px; }
}
@media (max-width: 480px) {
  .testimonial-body { padding: 20px 18px 14px; }
  .testimonial-meta { padding: 14px 18px 18px; }
  .testimonial-quote { font-size: 0.88rem; }
}

/* ============================================================
   ABOUT VISUAL — override duplicate rule (already defined above)
   ============================================================ */

/* ============================================================
   ADMIN PANEL responsive
   ============================================================ */
@media (max-width: 600px) {
  .admin-form { grid-template-columns: 1fr; }
  .admin-form .btn { grid-column: 1; width: 100%; justify-content: center; }
}