/* ============================================================
   WELNEET LIMITED — main.css
   Single source of truth for all styles.
   Version: 2.0 | 2026
   ============================================================ */

/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1a3a6b;
  --navy-dark:   #0f2449;
  --green:       #2d7a35;
  --green-light: #3a9944;
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --gray:        #6b7280;
  --light-gray:  #e5e7eb;
  --text:        #111827;
  --wa:          #25d366;
  --mint:        #7ec8a4;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 16px 48px rgba(15,36,73,0.18);
  --transition:  all 0.2s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.sec-tag   { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 10px; display: block; }
.sec-title { font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: var(--navy-dark); line-height: 1.15; margin-bottom: 14px; }
.sec-sub   { font-size: 17px; color: var(--gray); max-width: 540px; line-height: 1.75; margin-bottom: 48px; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.pad     { padding: 80px 6%; }
.pad-alt { padding: 80px 6%; background: var(--off-white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 6%; }

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  background: var(--navy-dark);
  position: sticky; top: 0; z-index: 200;
  padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-svg { width: 38px; height: 38px; flex-shrink: 0; }
.nav-brand-name { color: white; font-size: 13px; font-weight: 800; letter-spacing: 1px; line-height: 1.2; }
.nav-brand-tag  { color: var(--mint); font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: #cbd5e1; text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-links a:hover   { color: white; background: rgba(255,255,255,0.1); }
.nav-links a.active  { color: white; }
.nav-cta {
  background: var(--wa) !important; color: white !important;
  border-radius: var(--radius-sm) !important; font-weight: 700 !important;
  padding: 8px 16px !important;
}
.nav-cta:hover { background: #1db954 !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; cursor: pointer;
  background: rgba(255,255,255,0.08); border: none;
  border-radius: var(--radius-sm); padding: 8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px;
  transition: var(--transition); transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer — must fully override the base nav element styles */
.nav-drawer {
  display: none;
  position: fixed !important;
  top: 64px !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  height: calc(100vh - 64px) !important;
  background: var(--navy-dark); z-index: 199;
  padding: 24px 6%;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 4px;
  overflow-y: auto;
  border-bottom: none;
}
.nav-drawer.open { display: flex; }
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 198;
  background: rgba(0,0,0,0.45);
}
.nav-overlay.open { display: block; }
.nav-drawer a {
  color: #cbd5e1; text-decoration: none; font-size: 16px; font-weight: 500;
  padding: 14px 16px; border-radius: var(--radius-md);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  width: 100%;
}
.nav-drawer a:hover, .nav-drawer a.active { color: white; background: rgba(255,255,255,0.08); }
.nav-drawer .drawer-cta {
  margin-top: 12px; background: var(--wa); color: white !important;
  text-align: center; font-weight: 700; border-radius: var(--radius-md);
  border: none;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1a5279 100%);
  padding: 88px 6% 96px; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(45,122,53,0.1); pointer-events: none;
}
.hero-tag {
  display: inline-block; background: rgba(45,122,53,0.25);
  border: 1px solid rgba(126,200,164,0.35); color: var(--mint);
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero h1 {
  color: white; font-size: clamp(38px, 6vw, 68px); font-weight: 900;
  line-height: 1.04; margin-bottom: 22px; max-width: 680px;
}
.hero h1 em { color: var(--mint); font-style: normal; }
.hero p { color: #94a3b8; font-size: 18px; line-height: 1.75; max-width: 540px; margin-bottom: 38px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta { color: #475569; font-size: 13px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-meta span { display: flex; align-items: center; gap: 5px; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 60px 6% 64px;
}
.page-hero-tag { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--mint); margin-bottom: 12px; }
.page-hero h1 { color: white; font-size: clamp(32px, 5vw, 54px); font-weight: 900; line-height: 1.1; margin-bottom: 14px; }
.page-hero p  { color: #94a3b8; font-size: 17px; max-width: 560px; line-height: 1.7; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-wa {
  background: var(--wa); color: white; text-decoration: none;
  padding: 14px 28px; border-radius: var(--radius-md); font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover { background: #1db954; transform: translateY(-2px); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3); color: white; text-decoration: none;
  padding: 14px 28px; border-radius: var(--radius-md); font-weight: 600; font-size: 15px;
  transition: var(--transition);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

.btn-white {
  background: white; color: var(--green); text-decoration: none;
  padding: 14px 28px; border-radius: var(--radius-md); font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
}
.btn-white:hover { background: #f0fdf4; transform: translateY(-2px); }

.btn-outline-w {
  border: 2px solid rgba(255,255,255,0.45); color: white; text-decoration: none;
  padding: 14px 28px; border-radius: var(--radius-md); font-weight: 600; font-size: 15px;
  transition: var(--transition);
}
.btn-outline-w:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: white; border-bottom: 1px solid var(--light-gray);
}
.stat { padding: 28px 20px; text-align: center; border-right: 1px solid var(--light-gray); }
.stat:last-child { border-right: none; }
.stat-icon  { font-size: 24px; margin-bottom: 8px; }
.stat-num   { font-size: 26px; font-weight: 900; color: var(--navy-dark); line-height: 1; }
.stat-label { font-size: 12px; color: var(--gray); margin-top: 4px; font-weight: 500; }

/* ── CATEGORY CARDS (homepage) ────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card {
  background: var(--navy-dark); border-radius: var(--radius-lg); padding: 36px 28px;
  text-decoration: none; display: block; position: relative; overflow: hidden;
  transition: var(--transition);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cat-card::before {
  content: ''; position: absolute; bottom: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,0.04);
}
.cat-icon  { font-size: 38px; margin-bottom: 18px; display: block; }
.cat-count { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--mint); margin-bottom: 8px; }
.cat-name  { font-size: 22px; font-weight: 800; color: white; margin-bottom: 12px; }
.cat-desc  { font-size: 14px; color: #94a3b8; line-height: 1.65; margin-bottom: 22px; }
.cat-link  { font-size: 13px; font-weight: 700; color: var(--mint); }

/* ── WHY CARDS ────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-card { background: white; border: 1px solid var(--light-gray); border-radius: var(--radius-md); padding: 30px; }
.why-icon  { width: 50px; height: 50px; background: var(--navy-dark); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.why-title { font-size: 17px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.why-desc  { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── STEPS SECTION ────────────────────────────────────────── */
.steps-sec { padding: 80px 6%; background: var(--navy-dark); }
.steps-sec .sec-tag   { color: var(--mint); }
.steps-sec .sec-title { color: white; }
.steps-sec .sec-sub   { color: #64748b; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md); padding: 36px 24px; text-align: center;
}
.step-num {
  width: 50px; height: 50px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: white; margin: 0 auto 18px;
}
.step-title { font-size: 17px; font-weight: 700; color: white; margin-bottom: 10px; }
.step-desc  { font-size: 14px; color: #94a3b8; line-height: 1.7; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, #1f6b2a, #2d7a35, #1a5a23); padding: 72px 6%; text-align: center; }
.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: white; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── PRODUCT GRID ─────────────────────────────────────────── */
.badges {
  background: var(--off-white); border-bottom: 1px solid var(--light-gray);
  padding: 20px 6%; display: flex; gap: 12px; flex-wrap: wrap;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 1px solid var(--light-gray); border-radius: 100px;
  padding: 6px 14px; font-size: 13px; font-weight: 500; color: var(--navy);
}
.prod-section { padding: 64px 6%; }
.prod-section:nth-child(even) { background: var(--off-white); }
.sec-header { margin-bottom: 36px; }
.sec-sub-sm { font-size: 15px; color: var(--gray); margin-top: 8px; line-height: 1.6; }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prod-card {
  background: white; border: 1px solid var(--light-gray); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition); display: flex; flex-direction: column;
}
.prod-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.prod-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center;
  background: #f0f4f8; display: block;
}
/* Images always visible — no JS-gated opacity trick */
.prod-img { animation: imgFadeIn 0.4s ease both; }
@keyframes imgFadeIn { from { opacity: 0; } to { opacity: 1; } }
.prod-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8f0fe, #dbeafe);
  display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.prod-body  { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.prod-cat   { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.prod-name  { font-size: 17px; font-weight: 800; color: var(--navy-dark); margin-bottom: 8px; line-height: 1.3; }
.prod-desc  { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 14px; flex: 1; }
.prod-pack  {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--off-white); border: 1px solid var(--light-gray);
  border-radius: 6px; padding: 4px 10px; font-size: 12px; font-weight: 600;
  color: var(--navy); margin-bottom: 16px;
}
.prod-quote {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--wa); color: white; text-decoration: none;
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 13px; transition: var(--transition);
}
.prod-quote:hover { background: #1db954; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.section     { padding: 72px 6%; }
.section-alt { padding: 72px 6%; background: var(--off-white); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.prose p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }

.info-box { background: var(--navy-dark); border-radius: var(--radius-lg); padding: 32px; }
.info-row {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.info-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.info-icon  { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.info-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mint); margin-bottom: 4px; }
.info-val   { font-size: 15px; font-weight: 600; color: white; }
.info-val a { color: white; text-decoration: none; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.val-card  { background: white; border: 1px solid var(--light-gray); border-radius: var(--radius-md); padding: 28px; }
.val-icon  { font-size: 32px; margin-bottom: 14px; }
.val-title { font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.val-desc  { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── CONTACT / ORDER FORM ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { background: white; border: 1px solid var(--light-gray); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.contact-icon  { font-size: 32px; margin-bottom: 14px; }
.contact-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.contact-val   { font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.contact-sub   { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.contact-btn   {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy-dark); color: white; text-decoration: none;
  padding: 9px 18px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  transition: var(--transition);
}
.contact-btn.green { background: var(--wa); }
.contact-btn:hover { opacity: 0.85; }

/* Order form */
.order-form-wrap {
  background: white; border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg); padding: 40px;
  max-width: 780px; margin: 0 auto;
}
.order-form-wrap h2 { font-size: 26px; font-weight: 800; color: var(--navy-dark); margin-bottom: 6px; }
.order-form-wrap .form-sub { font-size: 15px; color: var(--gray); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px; border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm); font-size: 14px; color: var(--text);
  font-family: inherit; background: white; transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,58,107,0.08); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group .field-hint { font-size: 12px; color: var(--gray); }

/* Product selector inside form */
.product-selector { border: 1.5px solid var(--light-gray); border-radius: var(--radius-sm); overflow: hidden; }
.product-selector-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-bottom: 1px solid var(--light-gray);
  font-size: 14px;
}
.product-selector-item:last-child { border-bottom: none; }
.product-selector-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--navy); }
.product-selector-item label { flex: 1; cursor: pointer; color: var(--text); }
.product-selector-item .qty-input {
  width: 70px; padding: 4px 8px; border: 1px solid var(--light-gray);
  border-radius: 4px; font-size: 13px; text-align: center;
}

.form-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px; background: var(--wa); color: white;
  border: none; border-radius: var(--radius-md); font-size: 16px; font-weight: 700;
  cursor: pointer; transition: var(--transition); margin-top: 8px;
}
.form-submit:hover { background: #1db954; transform: translateY(-1px); }

.form-note {
  text-align: center; font-size: 13px; color: var(--gray); margin-top: 14px;
  line-height: 1.6;
}
.form-note a { color: var(--green); text-decoration: underline; }

/* Payment badges row */
.payment-badges {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 16px; justify-content: center;
}
.payment-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--off-white); border: 1px solid var(--light-gray);
  border-radius: 6px; padding: 5px 12px; font-size: 12px; font-weight: 600; color: var(--gray);
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--navy-dark); padding: 60px 6% 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { color: white; font-size: 17px; font-weight: 800; letter-spacing: 1px; margin-bottom: 4px; }
.footer-tag   { color: var(--mint); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-desc  { font-size: 14px; color: #64748b; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-contact a {
  display: flex; align-items: center; gap: 8px;
  color: #94a3b8; text-decoration: none; font-size: 14px;
  margin-bottom: 9px; transition: var(--transition);
}
.footer-contact a:hover { color: white; }
.footer-col-title { color: white; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul    { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a  { color: #64748b; text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 13px; color: #475569; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--mint); text-decoration: none; }

/* ── 3D PRODUCT CARD ANIMATIONS ──────────────────────────── */

/* Perspective wrapper — desktop only */
@media (min-width: 769px) {
  .prod-grid { perspective: 1200px; }
}

/* prod-card base — NO preserve-3d here.
   preserve-3d disables overflow:hidden on iOS Safari which
   breaks card clipping, image containment and rounded corners. */
.prod-card {
  position: relative;
  will-change: transform, opacity;
}

/* Scroll-in entrance — desktop: 3D rotateX flip */
@media (min-width: 769px) {
  .prod-card.reveal {
    opacity: 0;
    transform: perspective(900px) rotateX(14deg) translateY(36px) scale(0.96);
    transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
                transform 0.65s cubic-bezier(0.22,1,0.36,1);
  }
  .prod-card.reveal.visible {
    opacity: 1;
    transform: perspective(900px) rotateX(0deg) translateY(0) scale(1);
  }
}

/* Scroll-in entrance — mobile: flat translateY, no 3D distortion */
@media (max-width: 768px) {
  .prod-card.reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
  }
  .prod-card.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 3D tilt on hover — desktop only, applied by JS mousemove */
.prod-card.tilt {
  transition: transform 0.12s ease, box-shadow 0.2s ease !important;
}

/* Shine overlay — desktop only (not worth the complexity on touch) */
@media (min-width: 769px) {
  .prod-card::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
  }
  .prod-card:hover::after { opacity: 1; }
}

/* Product image zoom — desktop hover only */
@media (min-width: 769px) {
  .prod-card:hover .prod-img {
    transform: scale(1.04);
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  }
}
.prod-img { transition: transform 0.35s ease; }

/* ── HERO FLOATING ANIMATION ──────────────────────────────── */
@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInScale {
  0%   { opacity: 0; transform: scale(0.94); }
  100% { opacity: 1; transform: scale(1); }
}
.hero-tag       { animation: floatUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.hero h1        { animation: floatUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
.hero p         { animation: floatUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.4s both; }
.hero-btns      { animation: floatUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.5s both; }
.hero-meta      { animation: floatUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.65s both; }

/* ── STAT COUNTER PULSE ───────────────────────────────────── */
@keyframes popIn {
  0%   { transform: scale(0.7); opacity: 0; }
  70%  { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
.stat.reveal.visible .stat-num {
  animation: popIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}

/* ── CATEGORY CARD 3D HOVER ───────────────────────────────── */
.cat-card {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s ease !important;
}
.cat-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 28px 56px rgba(15,36,73,0.30) !important;
}

/* ── PARTICLE / GRADIENT BLOB BACKGROUND ON HERO ─────────── */
.hero::before {
  content: '';
  position: absolute; bottom: -60px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,122,53,0.12) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes pulse {
  0%   { transform: scale(1) translateY(0); opacity: 0.6; }
  100% { transform: scale(1.15) translateY(-20px); opacity: 1; }
}

/* ── STEP CARD ANIMATED NUMBER ────────────────────────────── */
.step-num {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.step-card:hover .step-num {
  transform: scale(1.15) rotate(-5deg);
}

/* ── SMOOTH NAV ENTRY ─────────────────────────────────────── */
/* Scoped to the top nav only — NOT the mobile drawer (also a <nav>) */
nav:not(.nav-drawer) {
  animation: slideDown 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes slideDown {
  from { transform: translateY(-64px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ── WA FLOAT ─────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 58px; height: 58px; background: var(--wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition); z-index: 99; font-size: 26px;
}
.wa-float:hover { transform: scale(1.1); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .cat-grid    { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }
  .steps-grid  { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .two-col     { grid-template-columns: 1fr; gap: 36px; }
  .form-row    { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-row   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .prod-grid { grid-template-columns: 1fr; }
  .order-form-wrap { padding: 20px 16px; }

  /* Product catalog mobile fixes */
  .prod-section { padding: 40px 5%; }
  .sec-header { margin-bottom: 20px; }
  .prod-grid { gap: 16px; }

  /* Card body tighter on mobile */
  .prod-body { padding: 16px; }
  .prod-name { font-size: 15px; }
  .prod-desc { font-size: 13px; margin-bottom: 12px; }
  .prod-pack { font-size: 11px; padding: 3px 8px; margin-bottom: 12px; }
  .prod-quote { padding: 11px 14px; font-size: 14px; }

  /* Disable JS tilt on touch — no mouse to track */
  .prod-card.tilt { transition: var(--transition) !important; }
  .prod-card.tilt:not(:hover) { transform: none !important; box-shadow: none !important; }

  /* Badges row wraps tidily */
  .badges { padding: 14px 5%; gap: 8px; }
  .badge { font-size: 12px; padding: 5px 11px; }

  /* Product selector in order form */
  .product-selector-item { flex-wrap: wrap; gap: 8px; padding: 10px 12px; }
  .product-selector-item label { min-width: 0; flex: 1 1 60%; font-size: 13px; }
  .product-selector-item .qty-input { width: 60px; flex-shrink: 0; }

  /* Form rows stack */
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 5% 56px; }
  .pad, .pad-alt, .section, .section-alt { padding: 48px 5%; }
  .steps-sec { padding: 48px 5%; }
  .cta-banner { padding: 48px 5%; }
  .hero h1 { font-size: clamp(30px, 8vw, 44px); }
  .page-hero { padding: 40px 5% 48px; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 38px); }

  /* Single column stats on very small phones */
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 18px 10px; }
  .stat-num { font-size: 22px; }

  /* Product card full bleed on tiny screens */
  .prod-section { padding: 32px 4%; }
  .prod-card { border-radius: 12px; }
  .prod-body { padding: 14px; }

  /* CTA buttons stack */
  .hero-btns { flex-direction: column; }
  .cta-btns  { flex-direction: column; align-items: center; }
  .btn-wa, .btn-white, .btn-outline, .btn-outline-w { width: 100%; justify-content: center; text-align: center; }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

/* Tablet — 2-col product grid */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet portrait — collapse multi-col grids */
@media (max-width: 900px) {
  .cat-grid     { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .two-col      { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-row    { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; gap: 0; }
}

/* Mobile — 768px and below */
@media (max-width: 768px) {
  /* Nav */
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }

  /* Stats */
  .stats { grid-template-columns: repeat(2, 1fr); }

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

  /* Product grid: single column */
  .prod-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Product sections: tighter padding */
  .prod-section { padding: 40px 5%; }
  .sec-header   { margin-bottom: 20px; }

  /* Product card body: smaller text, less padding */
  .prod-body  { padding: 16px; }
  .prod-name  { font-size: 15px; }
  .prod-desc  { font-size: 13px; margin-bottom: 12px; }
  .prod-pack  { font-size: 11px; padding: 3px 8px; margin-bottom: 12px; }
  .prod-quote { padding: 11px 14px; font-size: 14px; }

  /* Disable JS tilt — no mouse on touch screens */
  .prod-card.tilt { transition: var(--transition) !important; }
  .prod-card.tilt { transform: none !important; box-shadow: none !important; }

  /* Badges row */
  .badges { padding: 14px 5%; gap: 8px; }
  .badge  { font-size: 12px; padding: 5px 11px; }

  /* Order form */
  .order-form-wrap { padding: 20px 16px; }

  /* Product selector in order form: wrap on small screens */
  .product-selector-item { flex-wrap: wrap; gap: 8px; padding: 10px 12px; }
  .product-selector-item label     { min-width: 0; flex: 1 1 60%; font-size: 13px; }
  .product-selector-item .qty-input { width: 60px; flex-shrink: 0; }
}

/* Small phones — 480px and below */
@media (max-width: 480px) {
  /* Spacing */
  .hero       { padding: 48px 5% 56px; }
  .page-hero  { padding: 40px 5% 48px; }
  .pad, .pad-alt       { padding: 48px 5%; }
  .section, .section-alt { padding: 48px 5%; }
  .steps-sec  { padding: 48px 5%; }
  .cta-banner { padding: 48px 5%; }

  /* Typography */
  .hero h1    { font-size: clamp(28px, 8vw, 40px); }
  .page-hero h1 { font-size: clamp(24px, 7vw, 34px); }

  /* Stats: tighter */
  .stat     { padding: 18px 10px; }
  .stat-num { font-size: 20px; }

  /* Product cards */
  .prod-section { padding: 32px 4%; }
  .prod-card    { border-radius: 12px; }
  .prod-body    { padding: 14px; }
  .prod-img     { aspect-ratio: 3/2; }

  /* Buttons: full width and stacked */
  .hero-btns { flex-direction: column; }
  .cta-btns  { flex-direction: column; align-items: stretch; }
  .btn-wa, .btn-white, .btn-outline, .btn-outline-w {
    width: 100%; justify-content: center; text-align: center;
  }
}
