/* ============================================================
   WELLNESS - Health Awareness Nutrition Center
   Premium 3D CSS Design System
   ============================================================ */

/* Google Fonts are loaded via <link rel="preload"> in HTML for non-blocking delivery */
/* @import removed to avoid render-blocking */

/* Ã¢â€â‚¬Ã¢â€â‚¬ CSS Custom Properties Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
:root {
  --green-900: #0f2d1a;
  --green-800: #1a4a2e;
  --green-700: #1f6b3c;
  --green-600: #2d8a50;
  --green-500: #3aaa63;
  --green-400: #4dc87a;
  --green-300: #7ddb9e;
  --green-200: #b4eec9;
  --green-100: #e0f7e9;
  --green-50:  #f2fdf5;

  --lime-500: #84cc16;
  --lime-400: #a3e635;
  --lime-300: #bef264;

  --cream:    #fefdf8;
  --cream-2:  #f7f5ec;
  --warm-100: #fef9f0;
  --gold:     #f5b942;
  --orange:   #f97316;

  --text-dark:  #1a2e1f;
  --text-mid:   #2d4a35;
  --text-light: #5a7a62;
  --text-muted: #8aab92;

  --glass-bg:     rgba(255,255,255,0.18);
  --glass-border: rgba(255,255,255,0.38);
  --glass-shadow: rgba(61,163,90,0.12);

  --shadow-sm:  0 2px 8px rgba(45,138,80,0.12);
  --shadow-md:  0 8px 32px rgba(45,138,80,0.16);
  --shadow-lg:  0 20px 60px rgba(45,138,80,0.22);
  --shadow-xl:  0 30px 90px rgba(45,138,80,0.28);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;
  --radius-full:9999px;

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;

  --font-body:    'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Reset & Base Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Scrollbar Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--green-400); border-radius: 10px; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Utility Classes Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--green-200);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, var(--green-600), var(--lime-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Premium Buttons Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 60%, var(--lime-500) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(45,138,80,0.4), 0 1px 0 rgba(255,255,255,0.2) inset;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(45,138,80,0.5), 0 1px 0 rgba(255,255,255,0.2) inset;
}

.btn-glass {
  background: var(--glass-bg);
  color: var(--green-700);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

.btn-call {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  box-shadow: 0 4px 20px rgba(245,185,66,0.4);
}
.btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245,185,66,0.5);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Glass Card Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.glass-card {
  background: rgba(255,255,255,0.65);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61,170,99,0.35);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ ===  NAVBAR  === Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(45,138,80,0.12);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 32px;
  gap: 16px;
  flex-wrap: nowrap;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
  min-width: 0;
}
.nav-logo .brand-main {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-700);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-logo .brand-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 7px 11px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links a:hover {
  background: var(--green-100);
  color: var(--green-700);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Compact Book Now button */
.nav-cta .btn {
  padding: 10px 22px;
  font-size: 0.84rem;
  white-space: nowrap;
}

/* Phone pill component */
.nav-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(45,138,80,0.2);
  border-radius: var(--radius-full);
  padding: 9px 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(45,138,80,0.1);
}
.nav-phone-pill:hover {
  background: var(--green-100);
  border-color: var(--green-400);
  box-shadow: 0 4px 16px rgba(45,138,80,0.2);
  transform: translateY(-1px);
}
.nav-phone-pill .npp-icon {
  font-size: 0.9rem;
  line-height: 1;
}
.nav-phone-pill .npp-num {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-700);
  letter-spacing: 0.02em;
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green-700);
  border-radius: 2px;
  transition: var(--transition);
}
/* Hamburger Ã¢â€ â€™ X animation */
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Mobile Menu Panel Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.mobile-menu-panel {
  display: none;
  position: fixed;
  top: 62px;
  left: 0; right: 0;
  z-index: 998;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  padding: 16px 20px 24px;
  gap: 0;
  box-shadow: 0 12px 40px rgba(45,138,80,0.15);
  border-bottom: 2px solid var(--green-200);
  animation: slideDown 0.25s ease forwards;
  max-height: calc(100vh - 62px);
  overflow-y: auto;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mm-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ === HERO Ã¢â‚¬â€œ ULTRA 3D GLASSMORPHISM === Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */

/* Ã¢â€â‚¬Ã¢â€â‚¬ Core section Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #020d06 0%,
    #051a0d 25%,
    #07210f 50%,
    #042712 75%,
    #010b05 100%
  );
  padding: 100px 20px 120px;
}

/* Deep animated background layer */
.hero3d-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 20% 50%, rgba(34,120,60,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 80% 20%, rgba(100,200,80,0.14) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 70% 80%, rgba(45,138,80,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(132,204,22,0.10) 0%, transparent 45%);
  animation: hero3dBgShift 14s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes hero3dBgShift {
  0%   { opacity: 0.7; transform: scale(1) rotate(0deg); }
  100% { opacity: 1;   transform: scale(1.08) rotate(1deg); }
}

/* Perspective grid overlay */
.hero3d-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,200,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,200,90,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(800px) rotateX(12deg);
  transform-origin: center bottom;
  z-index: 0;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 80%);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Floating 3D Orbs Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero3d-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle at 35% 35%,
    rgba(34,197,94,0.22) 0%,
    rgba(16,130,54,0.14) 35%,
    transparent 70%);
  top: -180px; left: -200px;
  filter: blur(50px);
  animation: orb3dDrift 18s ease-in-out infinite alternate;
}
.orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle at 60% 40%,
    rgba(132,204,22,0.18) 0%,
    rgba(80,160,20,0.10) 40%,
    transparent 70%);
  bottom: -100px; right: -100px;
  filter: blur(40px);
  animation: orb3dDrift 22s ease-in-out infinite alternate-reverse;
  animation-delay: -6s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle,
    rgba(77,200,122,0.16) 0%,
    transparent 70%);
  top: 40%; right: 12%;
  filter: blur(30px);
  animation: orb3dDrift 16s ease-in-out infinite alternate;
  animation-delay: -10s;
}
.orb-4 {
  width: 200px; height: 200px;
  background: radial-gradient(circle,
    rgba(255,255,255,0.04) 0%,
    transparent 70%);
  top: 20%; left: 40%;
  filter: blur(20px);
  animation: orb3dDrift 12s ease-in-out infinite alternate;
  animation-delay: -3s;
}
@keyframes orb3dDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, -50px) scale(1.15); }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Floating Nutrient Particles Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero3d-particle {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  animation: h3particleRise linear infinite;
  filter: drop-shadow(0 0 8px rgba(132,204,22,0.4));
}
.p-1  { left: 4%;   bottom: -5%; animation-duration: 16s; animation-delay: 0s;    font-size:1.2rem; }
.p-2  { left: 12%;  bottom: -5%; animation-duration: 20s; animation-delay: -3s; }
.p-3  { left: 22%;  bottom: -5%; animation-duration: 14s; animation-delay: -7s;   font-size:1.6rem; }
.p-4  { left: 32%;  bottom: -5%; animation-duration: 18s; animation-delay: -1s; }
.p-5  { left: 43%;  bottom: -5%; animation-duration: 22s; animation-delay: -5s;   font-size:1rem; }
.p-6  { left: 54%;  bottom: -5%; animation-duration: 17s; animation-delay: -9s;   font-size:1.8rem; }
.p-7  { left: 64%;  bottom: -5%; animation-duration: 19s; animation-delay: -2s; }
.p-8  { left: 74%;  bottom: -5%; animation-duration: 21s; animation-delay: -4s;   font-size:1.3rem; }
.p-9  { left: 83%;  bottom: -5%; animation-duration: 15s; animation-delay: -8s; }
.p-10 { left: 91%;  bottom: -5%; animation-duration: 23s; animation-delay: -6s;   font-size:1.1rem; }
.p-11 { left: 48%;  bottom: -5%; animation-duration: 25s; animation-delay: -11s; }
.p-12 { left: 8%;   bottom: -5%; animation-duration: 13s; animation-delay: -13s;  font-size:0.9rem; }
@keyframes h3particleRise {
  0%   { transform: translateY(0) rotate(0deg) scale(0.6);   opacity: 0; }
  10%  { opacity: 0.55; }
  80%  { opacity: 0.35; }
  100% { transform: translateY(-110vh) rotate(360deg) scale(1.1); opacity: 0; }
}

/* Scanlines */
.hero3d-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Main 3D scene container Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero3d-scene {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  perspective: 1200px;
}

.hero3d-perspective {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Main Glass Hero Card Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero3d-card {
  position: relative;
  background:
    linear-gradient(
      135deg,
      rgba(8, 32, 18, 0.72) 0%,
      rgba(5, 22, 12, 0.65) 50%,
      rgba(10, 38, 20, 0.78) 100%
    );
  backdrop-filter: blur(40px) saturate(200%) brightness(1.1);
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.1);
  border: 1px solid rgba(132, 204, 22, 0.22);
  border-radius: 32px;
  padding: 32px 44px 32px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 0 0 1px rgba(132,204,22,0.08) inset,
    0 40px 100px rgba(0,0,0,0.7),
    0 0 80px rgba(34,197,94,0.08),
    0 2px 0 rgba(255,255,255,0.10) inset;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Top glowing edge */
.h3c-top-glow {
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(132,204,22,0.6) 25%,
    rgba(255,255,255,0.5) 50%,
    rgba(132,204,22,0.6) 75%,
    transparent 100%
  );
  filter: blur(1px);
  border-radius: 50%;
}

/* Corner BR decorative triangle */
.h3c-corner-br {
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(225deg, rgba(132,204,22,0.12), transparent);
  border-bottom-right-radius: 32px;
  border-top: 1px solid rgba(132,204,22,0.08);
  border-left: 1px solid rgba(132,204,22,0.08);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Card Header Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.h3c-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.h3c-logo-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(132,204,22,0.1);
  border: 1px solid rgba(132,204,22,0.25);
  border-radius: var(--radius-full);
  padding: 6px 14px;
}
.h3c-logo-icon { display:flex; align-items:center; }
.h3c-logo-text {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(163,230,53,0.9);
}
.h3c-status-row {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
}
.h3c-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80, 0 0 16px rgba(74,222,128,0.5);
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 6px #4ade80, 0 0 12px rgba(74,222,128,0.4); }
  50%      { box-shadow: 0 0 12px #4ade80, 0 0 24px rgba(74,222,128,0.7); }
}
.h3c-live-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.h3c-corner-emblem {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(132,204,22,0.08);
  border: 1px solid rgba(132,204,22,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Card Body Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.h3c-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 32px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ LEFT: Orb Stage Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.h3c-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.h3c-orb-stage {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbital rings */
.h3c-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.r-outer {
  width: 100%; height: 100%;
  border-color: rgba(132,204,22,0.20);
  animation: ringRotateCW 20s linear infinite;
}
.r-mid {
  width: 78%; height: 78%;
  border-color: rgba(34,197,94,0.25);
  border-style: dashed;
  animation: ringRotateCCW 14s linear infinite;
}
.r-inner {
  width: 56%; height: 56%;
  border-color: rgba(163,230,53,0.18);
  animation: ringRotateCW 8s linear infinite;
}
@keyframes ringRotateCW  { from { transform: translate(-50%,-50%) rotate(0deg); }   to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes ringRotateCCW { from { transform: translate(-50%,-50%) rotate(0deg); }   to { transform: translate(-50%,-50%) rotate(-360deg); } }

/* Orbit glowing dots */
.h3c-orbit-dot {
  position: absolute;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lime-400);
  box-shadow: 0 0 10px var(--lime-400), 0 0 20px rgba(163,230,53,0.5);
  top: 50%; left: 50%;
}
.od-1 { animation: orbitDot1 20s linear infinite; }
.od-2 { animation: orbitDot2 14s linear infinite; }
.od-3 { animation: orbitDot3 8s linear infinite; }
@keyframes orbitDot1 {
  from { transform: translate(-50%,-50%) rotate(0deg) translateX(140px) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg) translateX(140px) rotate(-360deg); }
}
@keyframes orbitDot2 {
  from { transform: translate(-50%,-50%) rotate(120deg) translateX(109px) rotate(-120deg); }
  to   { transform: translate(-50%,-50%) rotate(-240deg) translateX(109px) rotate(240deg); }
}
@keyframes orbitDot3 {
  from { transform: translate(-50%,-50%) rotate(240deg) translateX(78px) rotate(-240deg); }
  to   { transform: translate(-50%,-50%) rotate(-120deg) translateX(78px) rotate(120deg); }
}

/* Central fruit sphere */
.h3c-fruit-sphere {
  position: relative;
  width: 180px; height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(132,204,22,0.22);
  box-shadow:
    0 0 0 14px rgba(34,197,94,0.06),
    0 0 0 28px rgba(34,197,94,0.03),
    0 24px 60px rgba(0,0,0,0.55),
    0 0 40px rgba(132,204,22,0.15);
  animation: fruitFloat 6s ease-in-out infinite;
  z-index: 2;
}
.h3c-fruit-sphere img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 35% 25%;
  filter: brightness(1.1) saturate(1.2);
  transition: transform 0.8s ease;
}
.h3c-fruit-sphere:hover img { transform: scale(1.06); }
@keyframes fruitFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-14px) scale(1.02); }
}

/* Fruit inner glow */
.h3c-fruit-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(132,204,22,0.2) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

/* Floating mini-badges */
.h3c-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(5,22,12,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(132,204,22,0.25);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.fb-1 {
  top: 14px; right: 0;
  animation: floatBadge 5s ease-in-out infinite;
}
.fb-2 {
  bottom: 24px; left: -10px;
  animation: floatBadge 6s ease-in-out infinite;
  animation-delay: -2s;
}
.fb-3 {
  bottom: 10px; right: 0;
  animation: floatBadge 4.5s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Natural pill */
.h3c-natural-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(132,204,22,0.07);
  border: 1px solid rgba(132,204,22,0.18);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.h3c-np-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime-400);
  box-shadow: 0 0 8px var(--lime-400);
  animation: livePulse 2s infinite;
  flex-shrink: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RIGHT: Content Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.h3c-right { display: flex; flex-direction: column; gap: 0; }

/* Trust badge */
.h3c-trust-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.25);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 22px;
  width: fit-content;
  overflow: hidden;
}
.h3c-tb-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(251,191,36,0.08), transparent);
  animation: badgeSweep 3s linear infinite;
}
@keyframes badgeSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Main headline */
.h3c-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}
.h3c-line-1,
.h3c-line-2,
.h3c-line-3 {
  display: block;
  overflow: hidden;
}
.h3c-line-1 { animation: h3lineIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.h3c-line-2 { animation: h3lineIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
.h3c-line-3 { animation: h3lineIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.40s both; }
@keyframes h3lineIn {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.h3c-headline em {
  font-style: normal;
  background: linear-gradient(100deg, #a3e635 0%, #4ade80 40%, #fff 55%, #a3e635 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3.5s linear infinite;
}

/* Subtext */
.h3c-subtext {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 460px;
}
.h3c-name {
  color: rgba(163,230,53,0.9);
  font-weight: 700;
}

/* Action buttons */
.h3c-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Primary button */
.h3c-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #22c55e, #84cc16, #4ade80);
  background-size: 200% 200%;
  animation: btnGradShift 4s ease infinite;
  color: #fff;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 6px 28px rgba(34,197,94,0.45),
    0 0 0 1px rgba(132,204,22,0.3) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.h3c-btn-shine {
  position: absolute;
  top: 0; left: -70%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-15deg);
  animation: btnShinePass 4s linear infinite;
}
@keyframes btnShinePass {
  0%   { left: -70%; }
  100% { left: 130%; }
}
@keyframes btnGradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.h3c-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 44px rgba(34,197,94,0.6);
}

/* WhatsApp button */
.h3c-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37,211,102,0.38);
  transition: var(--transition);
}
.h3c-btn-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,0.55); }

/* Ghost / outline button */
.h3c-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.h3c-btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(132,204,22,0.4);
  color: #fff;
  transform: translateY(-2px);
}

/* Stats */
.h3c-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 16px 20px;
  backdrop-filter: blur(12px);
  width: fit-content;
}
.h3c-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px;
}
.h3c-stat-num {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--lime-400);
  line-height: 1;
}
.h3c-stat-lbl {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  white-space: nowrap;
}
.h3c-stat-sep {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Card Footer Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.h3c-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
}
.h3c-footer-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.h3c-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.h3c-call-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(132,204,22,0.07);
  border: 1px solid rgba(132,204,22,0.22);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(163,230,53,0.8);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.h3c-call-chip:hover {
  background: rgba(132,204,22,0.14);
  color: #a3e635;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(132,204,22,0.2);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Floating Bubbles beside card Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero3d-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(5,22,12,0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(132,204,22,0.20);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04) inset;
  z-index: 5;
  white-space: nowrap;
  pointer-events: none;
}
.bub-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(132,204,22,0.08);
  border: 1px solid rgba(132,204,22,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bub-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.bub-key {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}
.bub-1 {
  top: 10%;  left: -30px;
  animation: bubFloat1 6s ease-in-out infinite;
}
.bub-2 {
  bottom: 22%; right: -30px;
  animation: bubFloat2 7s ease-in-out infinite;
}
.bub-3 {
  bottom: 6%;  left: 5%;
  animation: bubFloat3 5s ease-in-out infinite;
}
@keyframes bubFloat1 { 0%,100% { transform: translateY(0); }   50% { transform: translateY(-14px); } }
@keyframes bubFloat2 { 0%,100% { transform: translateY(0); }   50% { transform: translateY(-10px); } }
@keyframes bubFloat3 { 0%,100% { transform: translateY(0); }   50% { transform: translateY(-12px); } }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Scroll cue Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero3d-scroll-cue {
  position: absolute;
  bottom: 115px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0.4;
  animation: scrollCueFade 3s ease-in-out infinite;
}
@keyframes scrollCueFade {
  0%,100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0.6; transform: translateX(-50%) translateY(4px); }
}
.h3sc-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.h3sc-wheel {
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: wheelScroll 1.5s ease infinite;
}
@keyframes wheelScroll {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}
.hero3d-scroll-cue span {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.mm-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid transparent;
}
.mm-link:hover, .mm-link:active {
  background: var(--green-100);
  color: var(--green-700);
}

.mm-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--green-200);
}
.mm-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.92rem;
}


/* -- Bottom wave ---------------------------------------- */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
  z-index: 3;
}
.hero-wave svg { width: 100%; height: 100px; display: block; }

/* -- pulse keyframe (shared) ----------------------------*/
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.7; }
}

/* -- Hero 3D Responsive ---------------------------------*/
@media (max-width: 1100px) {
  .hero3d-card { padding: 28px 30px; }
  .h3c-body { grid-template-columns: 260px 1fr; gap: 36px; }
  .h3c-orb-stage { width: 240px; height: 240px; }
  .h3c-fruit-sphere { width: 155px; height: 155px; }
  .bub-1 { left: -10px; }
  .bub-2 { right: -10px; }
}

@media (max-width: 900px) {
  .h3c-body { grid-template-columns: 1fr; gap: 28px; justify-items: center; }
  .h3c-orb-stage { width: 220px; height: 220px; }
  .h3c-fruit-sphere { width: 140px; height: 140px; }
  .h3c-right { align-items: center; text-align: center; }
  .h3c-trust-badge { margin-left: auto; margin-right: auto; }
  .h3c-subtext { margin-left: auto; margin-right: auto; }
  .h3c-actions { justify-content: center; }
  .h3c-stats { justify-content: center; }
  .hero3d-bubble { display: none; }
  .h3c-headline { font-size: clamp(2rem, 6vw, 3.2rem); }
}

@media (max-width: 640px) {
  #hero { padding: 88px 12px 110px; }
  .hero3d-card { padding: 22px 18px; border-radius: 22px; }
  .h3c-header { gap: 8px; flex-wrap: wrap; }
  .h3c-status-row { display: none; }
  .h3c-orb-stage { width: 180px; height: 180px; }
  .h3c-fruit-sphere { width: 116px; height: 116px; }
  .h3c-headline { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .h3c-stats { padding: 12px 10px; flex-wrap: wrap; gap: 8px; }
  .h3c-stat { padding: 0 10px; }
  .h3c-footer { flex-direction: column; align-items: center; }
  .h3c-footer-tags { justify-content: center; }
  .fb-3 { display: none; }
  .hero3d-scroll-cue { display: none; }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Bottom wave (hero) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
/* Ã¢â€â‚¬Ã¢â€â‚¬ ===  SCROLL TICKER  === Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.ticker-wrap {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ticker-item .sep {
  font-size: 1.2rem;
  color: var(--lime-400);
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ ===  ASSESSMENT FORM  === Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
#assessment {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--green-50) 0%, var(--cream) 50%, var(--warm-100) 100%);
  position: relative;
  overflow: hidden;
}

#assessment::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,138,80,0.06), transparent);
  top: -200px; right: -200px;
}

.assessment-inner {
  max-width: 900px;
  margin: 0 auto;
}

.assessment-card {
  background: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px);
  padding: 56px;
  box-shadow: 0 24px 80px rgba(45,138,80,0.14);
  position: relative;
  overflow: hidden;
}

.assessment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-600), var(--lime-500), var(--green-400));
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.form-grid .full { grid-column: 1/-1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid rgba(45,138,80,0.18);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: rgba(255,255,255,0.85);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(45,138,80,0.12);
  background: #fff;
}
.form-control::placeholder { color: var(--text-muted); }

/* Goal Radio Cards */
.goal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.goal-option input[type="radio"] { display: none; }
.goal-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  border: 1.5px solid rgba(45,138,80,0.15);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.3;
}
.goal-option .goal-icon { font-size: 1.5rem; }
.goal-option input:checked + label,
.goal-option label:hover {
  border-color: var(--green-500);
  background: var(--green-100);
  color: var(--green-700);
  box-shadow: var(--shadow-sm);
}

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 8px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ ===  PROGRAMS  === Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
#programs {
  padding: 96px 0;
  background: var(--cream);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.program-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.program-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--lime-500));
  transform: scaleX(0);
  transition: var(--transition);
}
.program-card:hover::after { transform: scaleX(1); }
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61,170,99,0.3);
}

.program-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s ease;
}
.program-card:hover .program-icon { transform: scale(1.12) rotate(-5deg); }

.program-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.program-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ ===  ABOUT  === Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
#about {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(132,204,22,0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.05) 0%, transparent 40%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  position: relative;
}

.about-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 28px;
  right: -24px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-img-badge .badge-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-600);
  line-height: 1;
}
.about-img-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-content { position: relative; z-index: 1; }
.about-content .badge { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.2); }
.about-content .section-title { color: #fff; }
.about-content .section-title span {
  background: linear-gradient(135deg, var(--lime-400), var(--green-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-content .section-sub { color: rgba(255,255,255,0.75); }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-feature h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.about-feature p  { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

.about-contact-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-top: 12px;
}
.about-contact-bar .phone-icon {
  width: 48px; height: 48px;
  background: var(--lime-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.about-contact-bar .contact-info .label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.about-contact-bar .contact-info .number { font-size: 1.3rem; font-weight: 800; color: #fff; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ ===  LIFESTYLE 3D  === Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
#lifestyle {
  padding: 96px 0;
  background: var(--warm-100);
  overflow: hidden;
  position: relative;
}

.lifestyle-header { text-align: center; margin-bottom: 64px; }

.lifestyle-scene {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lifestyle-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
}

.lifestyle-item {
  background: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.lifestyle-item:nth-child(even) { animation: floatItem1 5s ease-in-out infinite; }
.lifestyle-item:nth-child(odd)  { animation: floatItem2 6s ease-in-out infinite; }
@keyframes floatItem1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes floatItem2 { 0%,100%{transform:translateY(-10px)} 50%{transform:translateY(0)} }

.lifestyle-item:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61,170,99,0.3);
}
.lifestyle-emoji { font-size: 2.8rem; display: block; margin-bottom: 12px; }
.lifestyle-item .li-name { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.lifestyle-item .li-benefit { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ ===  WHY CHOOSE US  === Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
#why-us {
  padding: 96px 0;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-left .section-sub { margin-bottom: 40px; }

.why-stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-stat-card {
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}
.why-stat-card .ws-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-600);
  line-height: 1;
}
.why-stat-card .ws-lbl {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-feature-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(61,170,99,0.25);
}
.why-feature-item .wfi-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green-100), var(--green-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.why-feature-item:hover .wfi-icon { transform: scale(1.12) rotate(-5deg); }
.why-feature-item h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.why-feature-item p  { font-size: 0.86rem; color: var(--text-light); line-height: 1.55; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ ===  WEIGHT CARDS  === Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
#weight-cards {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--green-50) 0%, var(--warm-100) 100%);
}

.weight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.weight-card {
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.weight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: var(--transition);
}
.weight-card:hover::before { opacity: 1; }

.weight-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.weight-card-loss {
  background: linear-gradient(145deg, #1a5c35 0%, #2d8a50 60%, #4dc87a 100%);
}
.weight-card-gain {
  background: linear-gradient(145deg, #1a3a5c 0%, #2d6fa8 60%, #4da8e8 100%);
}

.wc-icon-bg {
  position: absolute;
  top: -20px; right: -20px;
  font-size: 8rem;
  opacity: 0.12;
  transform: rotate(-15deg);
  line-height: 1;
  transition: transform 0.5s ease;
}
.weight-card:hover .wc-icon-bg { transform: rotate(0deg) scale(1.1); }

.wc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  width: fit-content;
}

.weight-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.weight-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 28px;
}

.wc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.wc-feature-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.wc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
  width: fit-content;
}
.wc-cta:hover { background: rgba(255,255,255,0.3); transform: translateX(4px); }

/* Ã¢â€â‚¬Ã¢â€â‚¬ ===  KIDS NUTRITION  === Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
#kids {
  padding: 96px 0;
  background: var(--cream);
  overflow: hidden;
}

.kids-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.kids-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.kids-image-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.kids-floating-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  animation: floatItem1 4s ease-in-out infinite;
}
.kids-floating-badge .kfb-icon { font-size: 1.6rem; }
.kids-floating-badge .kfb-text { font-size: 0.72rem; font-weight: 700; color: var(--text-mid); margin-top: 4px; }

.kids-content .badge { background: #fff3e0; color: #e65100; border-color: #ffcc80; }
.kids-content .section-title span {
  background: linear-gradient(135deg, #e65100, #f57c00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kids-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0;
}
.kids-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff9f5;
  border: 1px solid #ffe0cc;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
}
.kids-benefit:hover { transform: translateX(4px); border-color: #ffb499; }
.kids-benefit .kb-icon { font-size: 1.3rem; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ ===  TESTIMONIALS  === Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
#testimonials {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(132,204,22,0.1) 0%, transparent 40%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}

.testimonials-header { text-align: center; position: relative; z-index: 1; }
.testimonials-header .badge { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.2); }
.testimonials-header .section-title { color: #fff; }
.testimonials-header .section-title span {
  background: linear-gradient(135deg, var(--lime-400), var(--green-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.testi-card {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 20px;
  font-size: 8rem;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.05);
  line-height: 1;
}
.testi-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.13);
  border-color: rgba(132,204,22,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars span { font-size: 1rem; }

.testi-text {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--lime-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-name { font-size: 0.95rem; font-weight: 700; color: #fff; }
.testi-result { font-size: 0.78rem; color: var(--lime-400); font-weight: 600; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ ===  CONTACT  === Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
#contact {
  padding: 96px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-form-card {
  background: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.95);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-600), var(--lime-500), var(--green-400));
}

.contact-info-stack { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-card .ci-icon { font-size: 2rem; margin-bottom: 10px; }
.contact-info-card .ci-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 6px; }
.contact-info-card .ci-value { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.contact-info-card .ci-sub { font-size: 0.82rem; color: var(--text-light); margin-top: 4px; }

.contact-action-card {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.contact-action-card h3 { font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin-bottom: 8px; }
.contact-action-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.contact-action-btns { display: flex; flex-direction: column; gap: 10px; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ ===  FOOTER  === Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
#footer {
  background: var(--green-900);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .fb-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-brand .fb-tag {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-400);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col li + li { margin-top: 10px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition-fast);
}
.footer-col a:hover { color: var(--lime-400); padding-left: 4px; }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-contact-quick {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-contact-quick a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}
.footer-contact-quick a:hover { color: var(--lime-400); }


/* ============================================================
   MANDATORY ASSESSMENT POPUP
   ============================================================ */

/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(2, 20, 8, 0.82);
  backdrop-filter: blur(8px) saturate(1.4);
  -webkit-backdrop-filter: blur(8px) saturate(1.4);
  padding: 0;
  overflow-y: auto;
  animation: overlayIn 0.4s ease both;
}
@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.popup-overlay.closing {
  animation: overlayOut 0.5s ease both;
}
@keyframes overlayOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* Modal card */
.popup-modal {
  width: 100%;
  max-width: 740px;
  background: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.35),
    0 0 0 1px rgba(34,197,94,0.15);
  overflow: hidden;
  animation: modalSlideDown 0.45s cubic-bezier(0.22,1,0.36,1) both;
  margin-bottom: 60px;
  position: relative;
}
@keyframes modalSlideDown {
  from { transform: translateY(-60px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.popup-overlay.closing .popup-modal {
  animation: modalSlideUp 0.45s cubic-bezier(0.55,0,0.78,0) both;
}
@keyframes modalSlideUp {
  from { transform: translateY(0);     opacity: 1; }
  to   { transform: translateY(-60px); opacity: 0; }
}

/* Header */
.popup-header {
  background: linear-gradient(135deg, #166534 0%, #16a34a 60%, #22c55e 100%);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.popup-header-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.popup-header-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 6px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.popup-header-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

/* Sections */
.popup-section {
  padding: 0;
  border-bottom: 1px solid #e8f5e9;
}
.popup-section:last-of-type { border-bottom: none; }

.popup-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #14532d, #166534);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 28px;
}
.ps-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Fields grid */
.popup-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  padding: 24px 28px;
}

.popup-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.popup-field.full { grid-column: 1 / -1; }

.popup-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1f4d2a;
  letter-spacing: 0.02em;
}
.popup-field .req { color: #dc2626; margin-left: 2px; }

.popup-field input[type="text"],
.popup-field input[type="email"],
.popup-field input[type="tel"],
.popup-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d1fae5;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: #1a2e1f;
  background: #f8fffe;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}
.popup-field input:focus,
.popup-field textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
  background: #fff;
}
.popup-field input.field-invalid,
.popup-field textarea.field-invalid {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,0.12);
}

/* Error messages */
.field-error {
  font-size: 0.75rem;
  color: #dc2626;
  font-weight: 500;
  min-height: 16px;
  display: block;
}

/* Radio groups */
.popup-radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 4px 0;
}
.popup-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #2d4a35;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.popup-radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.popup-radio-custom {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid #86efac;
  background: #fff;
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
}
.popup-radio-custom::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #16a34a;
  transition: transform 0.2s cubic-bezier(0.22,1,0.36,1);
}
.popup-radio-label input:checked ~ .popup-radio-custom {
  border-color: #16a34a;
  background: #f0fdf4;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}
.popup-radio-label input:checked ~ .popup-radio-custom::after {
  transform: translate(-50%,-50%) scale(1);
}
.prl-center { justify-content: center; }

/* Goal rows */
.popup-goal-rows { padding: 8px 28px 20px; }
.popup-goal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid #f0fdf4;
}
.popup-goal-row:last-child { border-bottom: none; }
.pgr-label {
  flex: 1;
  font-size: 0.88rem;
  color: #1f4d2a;
  line-height: 1.5;
}
.pgr-label strong { color: #15803d; }
.pgr-options { display: flex; gap: 20px; }

/* Health table */
.popup-section-sub {
  font-size: 0.82rem;
  color: #4a7a52;
  padding: 10px 28px 4px;
}
.popup-health-table { padding: 0 28px 20px; }
.pht-head {
  display: flex;
  align-items: center;
  background: #dcfce7;
  border-radius: 8px 8px 0 0;
  padding: 8px 14px;
  margin-bottom: 0;
}
.pht-col-label {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 700;
  color: #166534;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.pht-col-yn {
  width: 72px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #166534;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.pht-row {
  display: flex;
  align-items: center;
  padding: 9px 14px;
  border-bottom: 1px solid #f0fdf4;
}
.pht-even { background: #fafffe; }
.pht-odd  { background: #fff; }
.pht-row .pht-col-label {
  font-size: 0.86rem;
  font-weight: 500;
  color: #1f4d2a;
  text-transform: none;
  letter-spacing: 0;
}
.pht-err-row {
  padding: 0 14px;
  min-height: 18px;
  background: #fff;
}
.pht-err-row .field-error { font-size: 0.72rem; }

/* Submit area */
.popup-submit-area {
  padding: 24px 28px 28px;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
  border-top: 2px solid #dcfce7;
  text-align: center;
}

.popup-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 60%, #84cc16 100%);
  background-size: 200% 200%;
  animation: popupBtnGrad 4s ease infinite;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(22,163,74,0.4), 0 0 0 1px rgba(132,204,22,0.3) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
@keyframes popupBtnGrad {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.popup-btn-submit:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 40px rgba(22,163,74,0.55);
}
.popup-btn-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}
.psb-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spinnerRot 0.7s linear infinite;
  flex-shrink: 0;
}
.popup-btn-submit.loading .psb-spinner { display: block; }
.popup-btn-submit.loading .psb-text   { opacity: 0.7; }
@keyframes spinnerRot {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Success message */
.popup-success-msg {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #15803d;
  animation: successFadeIn 0.4s ease both;
  text-align: left;
}
.popup-success-msg.visible { display: flex; }
@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Privacy note */
.popup-privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.74rem;
  color: #86a88e;
  margin-top: 12px;
}

/* ── Responsive popup ──────────────────────────── */
@media (max-width: 768px) {
  .popup-header { padding: 20px 20px; gap: 14px; }
  .popup-header-icon { width: 50px; height: 50px; }
  .popup-header-text h2 { font-size: 0.98rem; }
  .popup-fields-grid { grid-template-columns: 1fr; padding: 18px 18px; }
  .popup-field.full { grid-column: 1; }
  .popup-section-header { padding: 10px 18px; }
  .popup-goal-rows { padding: 6px 18px 16px; }
  .popup-goal-row { flex-direction: column; align-items: flex-start; }
  .popup-health-table { padding: 0 18px 16px; }
  .popup-submit-area { padding: 18px 18px 24px; }
  .pht-col-yn { width: 56px; }
}
@media (max-width: 480px) {
  .popup-modal { border-radius: 0; }
  .popup-header-text h2 { font-size: 0.92rem; }
  .popup-btn-submit { font-size: 0.9rem; padding: 14px 24px; }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Floating WhatsApp Button Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  animation: fabPulse 3s ease-in-out infinite;
  transition: var(--transition);
  text-decoration: none;
  color: #fff;
}
.fab-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 48px rgba(37,211,102,0.55);
}
@keyframes fabPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 48px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Success / Alert Message Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.alert-box {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
  margin-top: 16px;
}
.alert-success { background: var(--green-100); color: var(--green-700); border: 1px solid var(--green-300); display: flex; gap: 10px; align-items: center; }

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   RESPONSIVE Ã¢â‚¬â€œ Full Mobile Coverage
   Breakpoints: 1024 | 768 | 480 | 360
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Ã¢â€â‚¬Ã¢â€â‚¬ Tablet: Ã¢â€°Â¤1024px Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 1024px) {

  /* Navbar */
  .nav-links a { font-size: 0.78rem; padding: 6px 9px; }
  .nav-phone-pill .npp-num { font-size: 0.76rem; }

  /* Hero V2 Ã¢â‚¬â€œ Tablet */
  .hero-v2-container { gap: 40px; padding: 110px 28px 60px; }
  .hero-v2-title { font-size: clamp(2.6rem, 5vw, 4rem); }
  .hero-circle-wrap { width: 300px; height: 300px; }
  .hero-halo { width: 340px; height: 340px; }
  .nutrition-wheel { width: 420px; height: 420px; }
  .nw-item { width: 46px; height: 46px; transform: translate(-50%,-50%) rotate(var(--angle)) translateX(210px) rotate(calc(-1 * var(--angle))); }
  .nw-bubble { width: 46px; height: 46px; font-size: 1.2rem; }
  .hero-v2-right { height: 480px; }
  .hv2c-1 { left: -30px; }
  .hv2c-3 { left: -10px; }

  /* Hero (old, kept for fallback) */
  .hero-container { gap: 40px; padding: 110px 24px 60px; }
  .hero-fruit-main { width: 340px; height: 340px; }

  /* Programs */
  .programs-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* About */
  .about-grid { gap: 48px; }
  .about-img-frame img { height: 420px; }

  /* Why Us */
  .why-grid { gap: 40px; }

  /* Kids */
  .kids-grid { gap: 48px; }
  .kids-image-wrap img { height: 380px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-grid { gap: 32px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Mobile: Ã¢â€°Â¤768px Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 768px) {

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Global Ã¢â€â‚¬Ã¢â€â‚¬ */
  .section-pad    { padding: 64px 0; }
  .section-pad-sm { padding: 44px 0; }
  .section-title  { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .section-sub    { font-size: 0.95rem; }
  .container      { padding: 0 18px; }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Navbar Ã¢â€â‚¬Ã¢â€â‚¬ */
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

  .nav-inner {
    height: 62px;
    padding: 0 18px;
  }
  .nav-logo .brand-main { font-size: 0.92rem; }
  .nav-logo .brand-sub  { font-size: 0.55rem; letter-spacing: 0.08em; }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Mobile Menu overlay Ã¢â€â‚¬Ã¢â€â‚¬ */
  #mobile-menu {
    top: 62px !important;
  }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Hero V2 Mobile Ã¢â€â‚¬Ã¢â€â‚¬ */
  .hero-v2-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    padding: 96px 20px 48px;
  }
  .hero-v2-left { display: flex; flex-direction: column; align-items: center; }
  .hero-v2-pill { justify-content: center; }
  .hero-v2-title {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
    align-items: center;
  }
  .hero-v2-sub { margin: 0 auto 28px; text-align: center; font-size: 0.95rem; }
  .hero-v2-actions { justify-content: center; flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-wa, .btn-hero-call { justify-content: center; width: 100%; }
  .hero-v2-stats { width: 100%; justify-content: space-around; padding: 14px 12px; }
  .hv2-stat { padding: 0 8px; }
  .hv2-num { font-size: 1.3rem; }
  .hv2-lbl { font-size: 0.62rem; }

  /* Hero v2 right */
  .hero-v2-right {
    height: 320px;
    order: -1;
  }
  .hero-circle-wrap { width: 260px; height: 260px; }
  .hero-halo { width: 280px; height: 280px; }
  .nutrition-wheel { width: 360px; height: 360px; }
  .nw-item { width: 40px; height: 40px; transform: translate(-50%,-50%) rotate(var(--angle)) translateX(180px) rotate(calc(-1 * var(--angle))); }
  .nw-bubble { width: 40px; height: 40px; font-size: 1rem; }
  .hv2c-1, .hv2c-2, .hv2c-3 { display: none; }
  .leaf-particle { font-size: 0.7rem; opacity: 0.08; }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 96px 18px 48px;
  }

  .hero-eyebrow { font-size: 0.7rem; padding: 7px 14px; margin-bottom: 20px; }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 0.97rem;
    margin: 0 auto 16px;
    max-width: 100%;
  }

  .hero-meta {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
    gap: 8px;
    font-size: 0.82rem;
  }
  .hero-meta .divider { display: none; }

  .hero-actions {
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
  }
  .hero-actions .btn {
    padding: 12px 22px;
    font-size: 0.88rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 24px;
  }
  .hero-stat .num { font-size: 1.5rem; }
  .hero-stat .lbl { font-size: 0.72rem; }

  /* Hero Right Ã¢â‚¬â€œ show fruit but smaller */
  .hero-right {
    height: 260px;
    order: -1; /* fruit above text on mobile */
  }
  .hero-fruit-main { width: 220px; height: 220px; }
  .orbit-1 { width: 220px; height: 220px; }
  .orbit-2 { width: 320px; height: 320px; }
  .hfc-1, .hfc-2, .hfc-3 { display: none; }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Ticker Ã¢â€â‚¬Ã¢â€â‚¬ */
  .ticker-item { font-size: 0.78rem; padding: 0 18px; }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Assessment Form Ã¢â€â‚¬Ã¢â€â‚¬ */
  #assessment { padding: 56px 0; }

  .assessment-card {
    padding: 28px 18px 32px;
    border-radius: var(--radius-lg);
  }
  .assessment-card::before { height: 3px; }

  .form-grid { grid-template-columns: 1fr; gap: 14px; }
  .form-grid .full { grid-column: 1; }

  .goal-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .goal-option label { padding: 12px 8px; font-size: 0.78rem; }
  .goal-option .goal-icon { font-size: 1.3rem; }

  .form-control { padding: 12px 14px; font-size: 0.9rem; }

  .form-submit { padding: 16px; font-size: 0.95rem; }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Programs Ã¢â€â‚¬Ã¢â€â‚¬ */
  .programs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .program-card { padding: 26px 18px; }
  .program-icon { font-size: 2.2rem; margin-bottom: 14px; }
  .program-card h3 { font-size: 1rem; }
  .program-card p  { font-size: 0.83rem; }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ About Ã¢â€â‚¬Ã¢â€â‚¬ */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-frame img { height: 320px; }
  .about-img-badge {
    right: 12px;
    bottom: 18px;
    padding: 14px 16px;
  }
  .about-img-badge .badge-num { font-size: 1.5rem; }
  .about-features { gap: 14px; }
  .about-feature { gap: 12px; }
  .about-contact-bar {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 18px;
  }
  .about-contact-bar .btn { width: 100%; justify-content: center; margin-left: 0; }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Lifestyle Ã¢â€â‚¬Ã¢â€â‚¬ */
  #lifestyle { padding: 56px 0; }
  .lifestyle-items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 100%;
  }
  .lifestyle-item { padding: 22px 14px; }
  .lifestyle-emoji { font-size: 2.2rem; }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Why Us Ã¢â€â‚¬Ã¢â€â‚¬ */
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-stat-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-stat-card { padding: 18px 14px; }
  .why-stat-card .ws-num { font-size: 1.7rem; }
  .why-feature-item { padding: 18px 16px; gap: 14px; }
  .why-feature-item h4 { font-size: 0.92rem; }
  .why-feature-item p  { font-size: 0.82rem; }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Weight Cards Ã¢â€â‚¬Ã¢â€â‚¬ */
  #weight-cards { padding: 56px 0; }
  .weight-grid { grid-template-columns: 1fr; gap: 20px; }
  .weight-card {
    min-height: auto;
    padding: 36px 28px 32px;
  }
  .weight-card h3 { font-size: 1.6rem; }
  .weight-card p  { font-size: 0.88rem; }
  .wc-features { gap: 6px; }
  .wc-feature-tag { font-size: 0.75rem; padding: 4px 12px; }
  .wc-icon-bg { font-size: 6rem; }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Kids Ã¢â€â‚¬Ã¢â€â‚¬ */
  #kids { padding: 56px 0; }
  .kids-grid { grid-template-columns: 1fr; gap: 36px; }
  .kids-image-wrap img { height: 280px; }
  .kids-floating-badge { right: 10px; top: 16px; padding: 10px 14px; }
  .kids-benefits { grid-template-columns: 1fr 1fr; gap: 10px; }
  .kids-benefit { padding: 12px 12px; font-size: 0.82rem; }
  .kids-benefit .kb-icon { font-size: 1.1rem; }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Testimonials Ã¢â€â‚¬Ã¢â€â‚¬ */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { padding: 26px 22px; }
  .testi-text { font-size: 0.88rem; }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Contact Ã¢â€â‚¬Ã¢â€â‚¬ */
  #contact { padding: 56px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-form-card { padding: 32px 22px; }
  .contact-info-stack { gap: 14px; }
  .contact-action-btns .btn { font-size: 0.88rem; padding: 13px 16px; }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ Footer Ã¢â€â‚¬Ã¢â€â‚¬ */
  #footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; } /* brand spans full width */
  .footer-brand p { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 0.78rem;
  }
  .footer-contact-quick { gap: 14px; }

  /* Ã¢â€â‚¬Ã¢â€â‚¬ FAB Ã¢â€â‚¬Ã¢â€â‚¬ */
  .fab-whatsapp {
    width: 52px; height: 52px;
    font-size: 1.3rem;
    bottom: 20px; right: 20px;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Small Mobile: Ã¢â€°Â¤480px Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 480px) {

  /* Global */
  .section-title { font-size: clamp(1.4rem, 7vw, 2rem); }
  .badge { font-size: 0.7rem; padding: 5px 12px; }

  /* Navbar */
  .nav-logo .brand-main { font-size: 0.85rem; }
  .nav-logo .brand-sub  { display: none; }

  /* Hero */
  .hero-container { padding: 90px 16px 40px; gap: 24px; }
  .hero-title { font-size: clamp(1.8rem, 8.5vw, 2.4rem); }
  .hero-right { height: 200px; }
  .hero-fruit-main { width: 175px; height: 175px; }
  .orbit-1 { width: 175px; height: 175px; }
  .orbit-2 { width: 260px; height: 260px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .hero-stat .num { font-size: 1.25rem; }

  /* Programs */
  .programs-grid { grid-template-columns: 1fr; }
  .program-card { padding: 22px 16px; }

  /* Goal grid */
  .goal-grid { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .goal-option label { padding: 10px 6px; font-size: 0.72rem; }
  .goal-option .goal-icon { font-size: 1.1rem; }

  /* Assessment */
  .assessment-card { padding: 22px 14px 26px; }

  /* Lifestyle */
  .lifestyle-items-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lifestyle-item { padding: 18px 10px; }
  .lifestyle-emoji { font-size: 1.8rem; }
  .lifestyle-item .li-name { font-size: 0.8rem; }

  /* Why stat cards */
  .why-stat-cards { grid-template-columns: 1fr 1fr; }

  /* Kids benefits */
  .kids-benefits { grid-template-columns: 1fr; gap: 8px; }
  .kids-image-wrap img { height: 240px; }

  /* Weight cards */
  .weight-card { padding: 28px 20px 24px; }
  .weight-card h3 { font-size: 1.4rem; }

  /* Testimonials Ã¢â‚¬â€œ show one at a time */
  .testi-card { padding: 22px 18px; }
  .testi-text { font-size: 0.85rem; }

  /* Contact */
  .contact-form-card { padding: 24px 16px; }
  .contact-action-card { padding: 24px 16px; }
  .contact-action-card h3 { font-size: 1.2rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand .fb-name { font-size: 1.1rem; }
  .footer-contact-quick { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-col h5 { margin-bottom: 12px; }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Extra Small: Ã¢â€°Â¤360px Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero-container { padding: 86px 14px 36px; }
  .hero-title { font-size: 1.7rem; }
  .hero-actions .btn { font-size: 0.82rem; padding: 11px 14px; }
  .goal-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .weight-card { padding: 24px 16px; }
  .assessment-card { padding: 18px 12px 22px; }
  .form-control { padding: 11px 12px; font-size: 0.85rem; }
  .testi-card { padding: 18px 14px; }
  .about-contact-bar { padding: 14px; }
  .why-feature-item { padding: 14px 12px; }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ AOS Animations Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}
[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}
[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="zoom-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

/* ════════════════════════════════════════════
   PERFORMANCE OPTIMIZATIONS
   ────────────────────────────────────────────
   Smooth 60fps on both desktop and mobile
════════════════════════════════════════════ */

/* ── Compositing hints for animated elements ── */
.hero3d-orb,
.hero3d-particle,
.hero3d-bg-layer,
.ticker-track,
.h3c-ring,
.h3c-orbit-dot {
  will-change: transform, opacity;
}

/* ── Smooth scroll only on capable devices ── */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ── Respect reduced-motion preference ────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero3d-particle { display: none; }
  .hero3d-orb { animation: none; }
  .ticker-track { animation: none; }
}

/* ── Mobile: reduce GPU-heavy effects ─────── */
@media (max-width: 768px) {

  /* Replace heavy backdrop-filter blur with a solid bg on mobile */
  .hero3d-card {
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
  }

  .mobile-menu-panel {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .glass-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  /* Reduce orb sizes & blur on mobile to save GPU */
  .orb-1 { width: 300px; height: 300px; filter: blur(30px); }
  .orb-2 { width: 250px; height: 250px; filter: blur(25px); }
  .orb-3 { width: 180px; height: 180px; filter: blur(20px); }
  .orb-4 { display: none; }

  /* Hide more than 6 particles on mobile */
  .hero3d-particle.p-7,
  .hero3d-particle.p-8,
  .hero3d-particle.p-9,
  .hero3d-particle.p-10,
  .hero3d-particle.p-11,
  .hero3d-particle.p-12 { display: none; }

  /* Reduce drop-shadow on particles */
  .hero3d-particle { filter: none; }

  /* Disable 3D scanlines on mobile (compositor layer waste) */
  .hero3d-scanlines { display: none; }

  /* Faster, lighter AOS transitions on mobile */
  [data-aos="fade-up"],
  [data-aos="fade-right"],
  [data-aos="fade-left"],
  [data-aos="zoom-in"] {
    transition-duration: 0.45s;
  }

  /* Reduce 3D perspective grid GPU cost */
  .hero3d-grid {
    display: none;
  }

  /* Disable paint-intensive orb filter animation on mobile */
  .hero3d-bg-layer {
    animation: none;
    opacity: 0.85;
  }
}

/* ── Touch: no 3D tilt (pointer: coarse = touch) ── */
@media (pointer: coarse) {
  .hero3d-perspective { transform: none !important; }
  .weight-card, .program-card { transform: none !important; }
}

/* ── Lazy-load skeleton shimmer for images ── */
img[loading="lazy"] {
  background: linear-gradient(90deg, var(--green-100) 25%, var(--green-50) 50%, var(--green-100) 75%);
  background-size: 200% 100%;
  animation: imgShimmer 1.5s infinite;
}
img[loading="lazy"].loaded,
img[loading="lazy"]:not([src]) { animation: none; background: none; }
@keyframes imgShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
