@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display&display=swap');

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: #1e2d22; background: #fff; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── CSS VARIABLES ─── */
:root {
  --green-dark:   #0f4a2a;
  --green-mid:    #1a7a45;
  --green-base:   #2a9d5c;
  --green-light:  #52c788;
  --green-pale:   #e8f7ef;
  --green-mist:   #f2fbf5;
  --gold:         #d4a017;
  --gold-light:   #f5e6b0;
  --red-accent:   #e63946;
  --text-dark:    #0d1f13;
  --text-mid:     #2e4d38;
  --text-soft:    #5a7a63;
  --text-muted:   #8faa96;
  --white:        #ffffff;
  --border:       #d0eadb;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --shadow-sm:    0 2px 12px rgba(15,74,42,.07);
  --shadow-md:    0 6px 28px rgba(15,74,42,.12);
  --shadow-lg:    0 16px 56px rgba(15,74,42,.16);
  --section-pad:  80px 6vw;
  --transition:   .25s ease;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--green-dark);
  padding: 9px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #b8dfc8;
}
.topbar a { color: #b8dfc8; transition: color var(--transition); }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a { font-size: 16px; }
.topbar-announce {
  position: absolute; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--green-dark);
  font-weight: 600; font-size: 12px; padding: 3px 14px;
  border-radius: 20px; letter-spacing: .4px; white-space: nowrap;
}

/* ─── NAV ─── */
.site-nav {
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 999;
  height: 70px;
  box-shadow: var(--shadow-sm);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: var(--green-dark); letter-spacing: -.5px; }
.nav-logo-text span { color: var(--green-base); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-mid); letter-spacing: .2px; transition: color var(--transition); position: relative; padding-bottom: 4px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--green-base); border-radius: 2px; transition: width var(--transition); }
.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--green-mid); color: #fff; padding: 10px 22px; border-radius: 30px; font-size: 14px; font-weight: 600; transition: background var(--transition); }
.nav-cta:hover { background: var(--green-dark); }

/* ─── HERO ─── */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, #0d3b22 0%, #1a6b40 55%, #0f4a2a 100%);
  display: flex; align-items: center;
  padding: 0 6vw;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; width: 100%; position: relative; z-index: 1; }
.hero-content { max-width: 580px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #a8e6c2; font-size: 13px; font-weight: 500; padding: 6px 16px; border-radius: 30px; margin-bottom: 24px; letter-spacing: .4px; }
.hero-badge span { width: 6px; height: 6px; background: var(--green-light); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 4.5vw, 62px); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--green-light); }
.hero p { font-size: 17px; color: #b8dfc8; line-height: 1.8; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--green-light); color: var(--green-dark); padding: 14px 32px; border-radius: 30px; font-weight: 700; font-size: 15px; transition: all var(--transition); }
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border: 2px solid rgba(255,255,255,.4); color: #fff; padding: 13px 28px; border-radius: 30px; font-weight: 600; font-size: 15px; transition: all var(--transition); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.hero-visual { flex-shrink: 0; }
.hero-img-wrap { width: 420px; height: 420px; border-radius: 50%; border: 2px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.04); position: relative; }
.hero-img-wrap img { width: 340px; height: 340px; object-fit: contain; border-radius: 50%; }
.hero-float-card { position: absolute; background: #fff; border-radius: var(--radius-md); padding: 12px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--text-dark); }
.hero-float-card.card-1 { top: 10%; right: -40px; }
.hero-float-card.card-2 { bottom: 15%; left: -50px; }
.hero-float-card .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green-base); flex-shrink: 0; }

/* ─── ABOUT ─── */
.about { padding: var(--section-pad); display: flex; align-items: center; gap: 80px; }
.about-visual { flex-shrink: 0; position: relative; }
.about-img { width: 460px; height: 380px; object-fit: cover; border-radius: var(--radius-lg); }
.about-tag { position: absolute; bottom: -24px; right: -24px; background: var(--green-dark); color: #fff; padding: 20px 24px; border-radius: var(--radius-md); font-family: 'Playfair Display', serif; text-align: center; }
.about-tag strong { font-size: 36px; display: block; color: var(--green-light); }
.about-tag span { font-size: 13px; color: #b8dfc8; }
.about-text .eyebrow { font-size: 13px; font-weight: 600; color: var(--green-base); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 800; color: var(--text-dark); line-height: 1.25; margin-bottom: 20px; }
.about-text p { font-size: 16px; color: var(--text-soft); line-height: 1.85; margin-bottom: 14px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.pillar { background: var(--green-mist); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 18px; }
.pillar h4 { font-size: 14px; font-weight: 600; color: var(--green-dark); margin-bottom: 4px; }
.pillar p { font-size: 13px; color: var(--text-soft); line-height: 1.6; margin: 0; }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--green-dark); padding: 48px 6vw; display: flex; justify-content: space-around; align-items: center; gap: 20px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item h3 { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 800; color: var(--green-light); line-height: 1; }
.stat-item p { font-size: 13px; color: #8fcca4; margin-top: 6px; letter-spacing: .5px; text-transform: uppercase; font-weight: 500; }

/* ─── PRODUCTS ─── */
.products-section { padding: var(--section-pad); background: var(--green-mist); }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green-base); margin-bottom: 10px; }
.section-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--text-dark); margin-bottom: 14px; }
.section-head p { font-size: 16px; color: var(--text-soft); max-width: 560px; margin: 0 auto; line-height: 1.8; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.product-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img { height: 200px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-body { padding: 20px; }
.product-cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green-base); margin-bottom: 8px; }
.product-body h4 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
.product-body p { font-size: 13px; color: var(--text-soft); line-height: 1.6; margin-bottom: 16px; }
.product-tag { display: inline-block; background: var(--green-pale); color: var(--green-dark); font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }

/* ─── MANUFACTURING ─── */
.manufacturing { padding: var(--section-pad); }
.mfg-intro { display: flex; align-items: center; gap: 80px; margin-bottom: 60px; }
.mfg-text { flex: 1; }
.mfg-text .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green-base); margin-bottom: 12px; }
.mfg-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--text-dark); line-height: 1.25; margin-bottom: 18px; }
.mfg-text p { font-size: 16px; color: var(--text-soft); line-height: 1.85; margin-bottom: 12px; }
.mfg-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.mfg-step { padding: 30px 24px; border-right: 1px solid var(--border); transition: background var(--transition); }
.mfg-step:last-child { border-right: none; }
.mfg-step:hover { background: var(--green-mist); }
.step-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 12px; }
.mfg-step h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.mfg-step p { font-size: 13px; color: var(--text-soft); line-height: 1.6; }

/* ─── CERTIFICATIONS ─── */
.certifications { padding: var(--section-pad); background: var(--green-dark); }
.certifications .section-head h2 { color: #fff; }
.certifications .section-head p { color: #8fcca4; }
.certifications .section-head .eyebrow { color: var(--green-light); }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }
.cert-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); padding: 28px 20px; text-align: center; transition: background var(--transition); }
.cert-card:hover { background: rgba(255,255,255,.12); }
.cert-icon { font-size: 36px; margin-bottom: 14px; }
.cert-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cert-card p { font-size: 12px; color: #8fcca4; line-height: 1.5; }

/* ─── DOCTORS / B2B ─── */
.doctors { padding: var(--section-pad); background: var(--green-mist); }
.doctors-inner { display: flex; align-items: center; gap: 80px; }
.doctors-text { flex: 1; }
.doctors-text .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green-base); margin-bottom: 12px; }
.doctors-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--text-dark); line-height: 1.25; margin-bottom: 18px; }
.doctors-text p { font-size: 16px; color: var(--text-soft); line-height: 1.85; margin-bottom: 24px; }
.b2b-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; flex: 1; }
.b2b-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 22px; }
.b2b-card .icon { font-size: 28px; margin-bottom: 12px; }
.b2b-card h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.b2b-card p { font-size: 13px; color: var(--text-soft); line-height: 1.6; }

/* ─── WHY US ─── */
.why-us { padding: var(--section-pad); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.why-left { background: var(--green-dark); padding: 60px 50px; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.why-left .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green-light); margin-bottom: 12px; }
.why-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 2.5vw, 38px); font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 18px; }
.why-left p { font-size: 15px; color: #8fcca4; line-height: 1.85; }
.why-right { background: var(--green-pale); padding: 60px 50px; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; align-items: flex-start; gap: 16px; }
.why-item .check { width: 26px; height: 26px; background: var(--green-base); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; margin-top: 2px; }
.why-item h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.why-item p { font-size: 13px; color: var(--text-soft); line-height: 1.6; }

/* ─── NEWS ─── */
.news { padding: var(--section-pad); background: #fff; }
.news-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 24px; }
.news-card { border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; transition: box-shadow var(--transition); }
.news-card:hover { box-shadow: var(--shadow-md); }
.news-img { height: 200px; background: var(--green-pale); overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 22px; }
.news-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 12px; }
.news-tag { background: var(--green-pale); color: var(--green-dark); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.news-body h3 { font-size: 17px; font-weight: 600; color: var(--text-dark); line-height: 1.45; margin-bottom: 10px; }
.news-card.featured .news-body h3 { font-size: 22px; }
.news-body p { font-size: 13px; color: var(--text-soft); line-height: 1.65; margin-bottom: 14px; }
.news-body a { font-size: 13px; font-weight: 600; color: var(--green-base); }

/* ─── SOCIAL ─── */
.social-section { padding: var(--section-pad); background: var(--green-mist); }
.social-channels { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-top: 40px; }
.social-card { border-radius: var(--radius-md); padding: 28px 20px; text-align: center; transition: transform var(--transition); }
.social-card:hover { transform: translateY(-4px); }
.social-card.yt { background: #ffebeb; border: 1.5px solid #ffd0d0; }
.social-card.li { background: #e8f0ff; border: 1.5px solid #c5d5f5; }
.social-card.ig { background: #fff0f8; border: 1.5px solid #f5d0e8; }
.social-card.fb { background: #ebf0ff; border: 1.5px solid #c5d0f5; }
.social-card.tw { background: #e8f8ff; border: 1.5px solid #c0e8f8; }
.social-icon { font-size: 36px; margin-bottom: 12px; }
.social-card h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.social-card p { font-size: 12px; color: var(--text-soft); margin-top: 4px; }
.social-card .handle { font-size: 12px; font-weight: 600; color: var(--green-base); margin-top: 8px; }
.social-posts { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 40px; }
.social-post { aspect-ratio: 1; background: var(--green-pale); border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.social-post img { width: 100%; height: 100%; object-fit: cover; }
.social-post-overlay { position: absolute; inset: 0; background: rgba(15,74,42,.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); color: #fff; font-size: 22px; }
.social-post:hover .social-post-overlay { opacity: 1; }

/* ─── FOOTER ─── */
.site-footer { background: #070f09; color: #6a9a78; }
.footer-top { padding: 64px 6vw 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 14px; max-width: 280px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: #fff; }
.footer-logo span { color: var(--green-light); }
.footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: #6a9a78; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-newsletter p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 30px; padding: 10px 16px; font-size: 14px; color: #fff; outline: none; font-family: 'DM Sans', sans-serif; }
.newsletter-form input::placeholder { color: #4a7a5a; }
.newsletter-form button { background: var(--green-base); color: #fff; border: none; border-radius: 30px; padding: 10px 18px; font-size: 14px; font-weight: 600; cursor: pointer; transition: background var(--transition); font-family: 'DM Sans', sans-serif; }
.newsletter-form button:hover { background: var(--green-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 6vw; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.footer-bottom a { color: #6a9a78; }
.footer-bottom a:hover { color: var(--green-light); }
.footer-social-icons { display: flex; gap: 12px; }
.footer-social-icons a { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background var(--transition); }
.footer-social-icons a:hover { background: var(--green-dark); }

/* ─── UTILITIES ─── */
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green-base); margin-bottom: 12px; }
.btn-green { display: inline-block; background: var(--green-mid); color: #fff; padding: 13px 30px; border-radius: 30px; font-weight: 600; font-size: 15px; transition: all var(--transition); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.divider { width: 48px; height: 3px; background: var(--green-base); border-radius: 2px; margin: 16px 0 24px; }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about { flex-direction: column; }
  .about-img { width: 100%; }
  .mfg-intro { flex-direction: column; }
  .doctors-inner { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .why-left,.why-right { border-radius: var(--radius-lg); }
  .news-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 50px 5vw; }
  .topbar-announce { display: none; }
  .site-nav { height: 60px; }
  .nav-links { display: none; }
  .hero { min-height: auto; padding: 60px 6vw; }
  .hero-inner { flex-direction: column; }
  .hero-img-wrap { width: 280px; height: 280px; }
  .b2b-cards { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; gap: 30px; padding: 40px 6vw; }
  .social-posts { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .mfg-steps { grid-template-columns: 1fr 1fr; }
  .mfg-step { border-right: none; border-bottom: 1px solid var(--border); }
}