/* =====================================================
   SUNSHINE DISTRIBUTORS — style.css
   Premium Pharmaceutical Export Website
   ===================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --bg:            #0F172A;
  --bg-2:          #111827;
  --bg-3:          #1E293B;
  --emerald:       #10B981;
  --emerald-light: #34D399;
  --emerald-dark:  #059669;
  --gold:          #F59E0B;
  --gold-light:    #FCD34D;
  --text-primary:  #F8FAFC;
  --text-secondary:#CBD5E1;
  --text-muted:    #64748B;
  --border:        rgba(255,255,255,0.08);
  --border-hover:  rgba(16,185,129,0.3);

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.5);
  --shadow-glow:   0 0 30px rgba(16,185,129,0.15);
  --shadow-gold:   0 0 30px rgba(245,158,11,0.15);

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;

  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);

  --font:          'Poppins', sans-serif;

  --space-xs:      8px;
  --space-sm:      16px;
  --space-md:      24px;
  --space-lg:      48px;
  --space-xl:      80px;
  --space-2xl:     120px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ===== UTILITY ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-xl) 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-lg);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--emerald);
  border: 1px solid rgba(16,185,129,0.25);
  background: rgba(16,185,129,0.08);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: var(--space-sm);
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: var(--space-sm);
}

.section__desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  color: #fff;
  box-shadow: 0 4px 20px rgba(16,185,129,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16,185,129,0.5);
}

.btn--ghost {
  border: 1.5px solid var(--border-hover);
  color: var(--text-primary);
  background: rgba(16,185,129,0.05);
}
.btn--ghost:hover {
  background: rgba(16,185,129,0.15);
  border-color: var(--emerald);
  transform: translateY(-2px);
}

.btn--call {
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  color: #fff;
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn--call:hover {
  box-shadow: 0 4px 20px rgba(16,185,129,0.4);
  transform: translateY(-1px);
}

.btn--full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal--right { transform: translateX(40px); }
.reveal.revealed {
  opacity: 1;
  transform: translate(0);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  height: 72px;
  gap: var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: auto;
}

.logo__icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
  flex-shrink: 0;
}

.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); }
.logo__tag { font-size: 0.65rem; font-weight: 500; color: var(--emerald); letter-spacing: 0.1em; text-transform: uppercase; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--emerald);
  background: rgba(16,185,129,0.1);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #111827 50%, #0F172A 100%);
}

.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: float 8s ease-in-out infinite;
}
.shape--1 { width: 500px; height: 500px; background: var(--emerald); top: -150px; right: -100px; animation-delay: 0s; }
.shape--2 { width: 350px; height: 350px; background: var(--gold); bottom: -100px; left: -80px; animation-delay: 2s; }
.shape--3 { width: 250px; height: 250px; background: var(--emerald-light); top: 40%; left: 30%; animation-delay: 4s; }
.shape--4 { width: 200px; height: 200px; background: var(--gold-light); top: 20%; left: 5%; animation-delay: 6s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--emerald-light);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-md);
}

.hero__headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero__trust {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.trust__item i { color: var(--emerald); font-size: 0.9rem; }

/* Pharma illustration */
.hero__visual { display: flex; justify-content: center; align-items: center; }

.pharma-illustration {
  position: relative;
  width: 420px;
  height: 420px;
}

.orbit__ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 300px; height: 300px;
  border: 1.5px dashed rgba(16,185,129,0.2);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.orbit__dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 12px var(--emerald);
}
.orbit__dot--1 { top: 50%; left: 50%; margin: -155px 0 0 -5px; animation: orbit1 6s linear infinite; }
.orbit__dot--2 { top: 50%; left: 50%; margin: -155px 0 0 -5px; animation: orbit1 10s linear infinite reverse; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.orbit__dot--3 { top: 50%; left: 50%; margin: -155px 0 0 -5px; animation: orbit1 14s linear infinite; background: #818CF8; box-shadow: 0 0 12px #818CF8; }

@keyframes orbit1 {
  from { transform: rotate(0deg) translateX(0) translateY(-155px); }
  to { transform: rotate(360deg) translateX(0) translateY(-155px); }
}

.pill {
  position: absolute;
  border-radius: 999px;
  animation: floatPill 4s ease-in-out infinite;
}
.pill--1 { width: 60px; height: 24px; background: linear-gradient(90deg, var(--emerald-dark), var(--emerald)); top: 20%; left: 10%; animation-delay: 0s; box-shadow: 0 4px 15px rgba(16,185,129,0.4); }
.pill--2 { width: 45px; height: 18px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); top: 70%; right: 15%; animation-delay: 1.5s; box-shadow: 0 4px 15px rgba(245,158,11,0.4); }
.pill--3 { width: 55px; height: 22px; background: linear-gradient(90deg, #818CF8, #A5B4FC); bottom: 25%; left: 15%; animation-delay: 3s; box-shadow: 0 4px 15px rgba(129,140,248,0.4); }

.capsule {
  position: absolute;
  animation: floatPill 5s ease-in-out infinite;
}
.capsule::before, .capsule::after {
  content: '';
  display: block;
  width: 20px; height: 36px;
  border-radius: 999px;
  position: absolute;
}
.capsule--1 { top: 15%; right: 10%; animation-delay: 0.5s; }
.capsule--1::before { background: var(--emerald); left: 0; }
.capsule--1::after { background: var(--emerald-dark); left: 10px; }
.capsule--2 { bottom: 15%; left: 50%; animation-delay: 2s; }
.capsule--2::before { background: var(--gold); left: 0; }
.capsule--2::after { background: #92400E; left: 10px; }

@keyframes floatPill {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.med-card {
  position: absolute;
  background: rgba(30,41,59,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  animation: floatPill 6s ease-in-out infinite;
}

.med-card--main {
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  width: 200px;
  animation: pulse-glow 3s ease-in-out infinite;
}
.med-card__icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--emerald-dark), var(--emerald)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.med-card__info span { display: block; font-size: 0.7rem; color: var(--text-muted); }
.med-card__info strong { font-size: 0.85rem; font-weight: 700; }

.med-card--2 { top: 8%; right: 8%; padding: 10px 14px; display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; color: var(--gold); animation-delay: 1s; border-color: rgba(245,158,11,0.2); }
.med-card--2 i { color: var(--gold); }
.med-card--3 { bottom: 8%; right: 12%; padding: 10px 14px; display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; color: var(--emerald-light); animation-delay: 2.5s; border-color: rgba(16,185,129,0.2); }
.med-card--3 i { color: var(--emerald-light); }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(16,185,129,0.1); }
  50% { box-shadow: 0 0 40px rgba(16,185,129,0.25); }
}

/* ===== STATS ===== */
.stats {
  padding: var(--space-xl) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.stat__card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat__card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}
.stat__card:hover::before { transform: scaleX(1); }
.stat__card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-glow); }

.stat__icon {
  width: 56px; height: 56px;
  background: rgba(16,185,129,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 1.4rem;
  color: var(--emerald);
  transition: var(--transition);
}
.stat__card:hover .stat__icon { background: rgba(16,185,129,0.2); }

.stat__num {
  display: inline;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--emerald-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat__plus { display: inline; font-size: 2rem; font-weight: 900; color: var(--emerald); -webkit-text-fill-color: var(--emerald); }
.stat__label { margin-top: 8px; font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }

/* ===== ABOUT ===== */
.about { background: var(--bg); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__img-wrapper {
  position: relative;
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about__img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-3) 0%, #162032 50%, var(--bg-2) 100%);
}

.about__img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: radial-gradient(circle at center, rgba(16,185,129,0.08), transparent 70%);
}

.about__img-icon {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 0 40px rgba(16,185,129,0.3);
  margin-bottom: 8px;
}

.about__img-overlay p { font-size: 1.3rem; font-weight: 800; color: var(--text-primary); }
.about__img-overlay span { font-size: 0.82rem; color: var(--emerald); font-weight: 500; letter-spacing: 0.08em; }

.about__badge {
  position: absolute;
  background: rgba(15,23,42,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about__badge--1 { top: 20px; left: -20px; color: var(--gold); border-color: rgba(245,158,11,0.25); }
.about__badge--1 i { color: var(--gold); }
.about__badge--2 { bottom: 30px; right: -20px; color: var(--emerald); border-color: rgba(16,185,129,0.25); }
.about__badge--2 i { color: var(--emerald); }

.about__lead { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: var(--space-sm); line-height: 1.8; }
.about__lead strong { color: var(--text-primary); }
.about__body { font-size: 0.95rem; color: var(--text-muted); margin-bottom: var(--space-lg); line-height: 1.8; }

.about__mvv { display: flex; flex-direction: column; gap: var(--space-sm); }

.mvv__item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mvv__item:hover { border-color: var(--border-hover); }

.mvv__icon {
  width: 40px; height: 40px;
  background: rgba(16,185,129,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald);
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 2px;
}
.mvv__item strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.mvv__item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ===== PRODUCTS ===== */
.products { background: var(--bg-2); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.product__card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.05), rgba(245,158,11,0.03));
  opacity: 0;
  transition: var(--transition);
}
.product__card:hover::before { opacity: 1; }
.product__card:hover {
  border-color: rgba(16,185,129,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(16,185,129,0.1);
}

.product__icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05));
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--emerald);
  margin-bottom: var(--space-sm);
  transition: var(--transition);
}
.product__card:hover .product__icon-wrap {
  background: rgba(16,185,129,0.2);
  box-shadow: 0 0 20px rgba(16,185,129,0.15);
}

.product__card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.product__card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ===== MARKETS ===== */
.markets { background: var(--bg); }

.markets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.market__card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.market__card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), transparent);
  opacity: 0;
  transition: var(--transition);
}
.market__card--gold::after { background: linear-gradient(90deg, var(--gold), transparent); }
.market__card:hover::after { opacity: 1; }
.market__card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-md), var(--shadow-glow); }
.market__card--gold:hover { border-color: rgba(245,158,11,0.3); box-shadow: var(--shadow-md), var(--shadow-gold); }

.market__icon {
  width: 52px; height: 52px;
  background: rgba(16,185,129,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--emerald);
  margin-bottom: var(--space-sm);
}
.market__card--gold .market__icon { background: rgba(245,158,11,0.1); color: var(--gold); }

.market__region { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--emerald); margin-bottom: 8px; }
.market__card--gold .market__region { color: var(--gold); }
.market__card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: var(--space-sm); }
.market__card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: var(--space-sm); line-height: 1.7; }
.market__caps { display: flex; flex-direction: column; gap: 8px; }
.market__caps li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-secondary); }
.market__caps i { color: var(--emerald); font-size: 0.8rem; }
.market__card--gold .market__caps i { color: var(--gold); }

/* ===== WHY US ===== */
.why { background: var(--bg-2); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.why__card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  transition: var(--transition);
  text-align: center;
}
.why__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.why__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05));
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--emerald);
  margin: 0 auto var(--space-sm);
  transition: var(--transition);
}
.why__card:hover .why__icon { background: rgba(16,185,129,0.2); box-shadow: 0 0 25px rgba(16,185,129,0.15); transform: scale(1.05); }

.why__card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why__card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ===== QUALITY ===== */
.quality { background: var(--bg); }

.quality__timeline { display: flex; flex-direction: column; gap: 0; }

.qt__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  position: relative;
  padding-bottom: var(--space-md);
}
.qt__step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--emerald), transparent);
}

.qt__num {
  width: 64px; height: 64px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 20px rgba(16,185,129,0.3);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.qt__card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  transition: var(--transition);
}
.qt__step:hover .qt__card { border-color: var(--border-hover); transform: translateX(4px); }

.qt__icon {
  font-size: 1.2rem;
  color: var(--emerald);
  margin-bottom: 10px;
}
.qt__card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.qt__card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== INDUSTRIES ===== */
.industries { background: var(--bg-2); }

.industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.ind__card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.ind__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.ind__icon {
  width: 56px; height: 56px;
  background: rgba(16,185,129,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--emerald);
  margin: 0 auto var(--space-sm);
  transition: var(--transition);
}
.ind__card:hover .ind__icon { background: rgba(16,185,129,0.2); }
.ind__card span { font-size: 0.88rem; font-weight: 600; color: var(--text-secondary); }

/* ===== FAQ ===== */
.faq { background: var(--bg); }
.faq__container { max-width: 800px; }

.faq__list { display: flex; flex-direction: column; gap: var(--space-xs); }

.faq__item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq__item.open { border-color: rgba(16,185,129,0.3); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md);
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}
.faq__question:hover { color: var(--emerald); }
.faq__item.open .faq__question { color: var(--emerald); }

.faq__chevron {
  flex-shrink: 0;
  color: var(--emerald);
  transition: transform var(--transition);
  font-size: 0.8rem;
}
.faq__item.open .faq__chevron { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__answer p {
  padding: 0 var(--space-md) var(--space-md);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact { background: var(--bg-2); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__intro { color: var(--text-secondary); margin-bottom: var(--space-lg); line-height: 1.8; }

.contact__details { display: flex; flex-direction: column; gap: var(--space-sm); }

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact__item:hover { border-color: var(--border-hover); }

.contact__item-icon {
  width: 40px; height: 40px;
  background: rgba(16,185,129,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact__item .fab.fa-whatsapp { color: #25D366; }
.contact__item:has(.fa-whatsapp) .contact__item-icon { background: rgba(37,211,102,0.1); color: #25D366; }

.contact__item strong { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact__item span, .contact__item a { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.contact__item a:hover { color: var(--emerald); }

/* Form */
.contact__form-wrap {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
}

.contact__form { display: flex; flex-direction: column; gap: var(--space-sm); }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }

.form__group { display: flex; flex-direction: column; gap: 6px; }

.form__group label { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }

.form__group input,
.form__group textarea,
.form__group select {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form__group select { cursor: pointer; }
.form__group textarea { resize: vertical; min-height: 100px; }
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--text-muted); }

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
.form__group input.error,
.form__group textarea.error { border-color: #EF4444; }

.form__note { font-size: 0.78rem; color: var(--text-muted); text-align: center; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding: var(--space-xl) var(--space-md);
}

.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-sm); }
.footer__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: var(--space-md); }

.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 40px; height: 40px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}
.footer__socials a:hover { color: var(--emerald); border-color: rgba(16,185,129,0.3); transform: translateY(-2px); }

.footer__col h4 { font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-primary); margin-bottom: var(--space-sm); }

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); }
.footer__col ul a:hover { color: var(--emerald); padding-left: 4px; }

.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--text-muted); }
.footer__contact-item i { color: var(--emerald); width: 14px; flex-shrink: 0; margin-top: 3px; }
.footer__contact-item a { color: var(--text-muted); transition: var(--transition); }
.footer__contact-item a:hover { color: var(--emerald); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== FLOATING BUTTONS ===== */
.float-btn {
  position: fixed;
  right: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  z-index: 900;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.float-btn--wa {
  bottom: 100px;
  background: #25D366;
  color: #fff;
}
.float-btn--wa:hover { transform: scale(1.1); box-shadow: 0 8px 25px rgba(37,211,102,0.5); }

.float-btn--call {
  bottom: 40px;
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald));
  color: #fff;
}
.float-btn--call:hover { transform: scale(1.1); box-shadow: 0 8px 25px rgba(16,185,129,0.5); }

.float-btn__tooltip {
  position: absolute;
  right: 60px;
  background: rgba(15,23,42,0.95);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
  font-family: var(--font);
}
.float-btn:hover .float-btn__tooltip { opacity: 1; transform: translateX(0); }

.scroll-top {
  position: fixed;
  bottom: 168px;
  right: 24px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  z-index: 900;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--emerald); color: #fff; border-color: transparent; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  box-shadow: var(--shadow-lg);
  max-width: 90vw;
  text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { border-color: rgba(16,185,129,0.4); color: var(--emerald); }
.toast.error { border-color: rgba(239,68,68,0.4); color: #EF4444; }

/* ===== RESPONSIVE ===== */

/* 1280px */
@media (max-width: 1280px) {
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: var(--space-lg); }
}

/* 1024px */
@media (max-width: 1024px) {
  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }

  .nav__menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(15,23,42,0.97);
    backdrop-filter: blur(20px);
    padding: var(--space-md);
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav__menu.open .nav__link { padding: 14px var(--space-sm); font-size: 1rem; }
  .nav__menu.open .nav__cta-mobile {
    display: flex;
    margin-top: var(--space-sm);
  }

  .hero__grid { grid-template-columns: 1fr; text-align: center; gap: var(--space-lg); }
  .hero__content { order: 1; }
  .hero__visual { order: 2; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__sub { margin: 0 auto var(--space-lg); }

  .about__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .about__badge--1 { left: 20px; }
  .about__badge--2 { right: 20px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .markets__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .industries__grid { grid-template-columns: repeat(3, 1fr); }

  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

/* 768px */
@media (max-width: 768px) {
  :root { --space-xl: 60px; --space-2xl: 80px; }
  .section { padding: 60px 0; }

  .hero { padding: 90px 0 50px; }
  .pharma-illustration { width: 300px; height: 300px; }

  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; }

  .form__row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* 425px */
@media (max-width: 425px) {
  .container { padding: 0 var(--space-sm); }

  .hero__headline { font-size: 1.9rem; }
  .hero__ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: column; align-items: center; gap: 12px; }

  .stats__grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .stat__num { font-size: 2.4rem; }

  .products__grid { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: repeat(2, 1fr); }

  .qt__step { grid-template-columns: 56px 1fr; gap: 12px; }
  .qt__num { width: 50px; height: 50px; font-size: 0.9rem; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__col--brand { grid-column: 1; }
}

/* 320px */
@media (max-width: 375px) {
  .hero__headline { font-size: 1.65rem; }
  .section__title { font-size: 1.5rem; }
  .industries__grid { grid-template-columns: 1fr 1fr; gap: var(--space-xs); }
  .stat__card { padding: var(--space-md) var(--space-sm); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.1ms !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
