:root {
  --bg-clinical: #f5f8f7;
  --card-bg: #ffffff;
  --text-main: #0f1c18;
  --text-muted: #4e655d;
  --pharma-emerald: #0b6651;
  --pharma-accent: #10b981;
  --pharma-light: #e6f4f0;
  --border-line: #cde2dc;
  --shadow-sm: 0 2px 8px rgba(11, 102, 81, 0.06);
  --shadow-md: 0 6px 20px rgba(11, 102, 81, 0.1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-clinical);
  color: var(--text-main);
  line-height: 1.6;
}
header {
  background: #ffffff;
  border-bottom: 2px solid var(--pharma-emerald);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  font-size: 19px;
  font-weight: 800;
  color: var(--pharma-emerald);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  margin-right: 24px;
}
.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--pharma-emerald);
}
.cta-btn {
  background: var(--pharma-emerald);
  color: #fff !important;
  padding: 10px 22px;
  flex-shrink: 0;
  white-space: nowrap;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(11, 102, 81, 0.2);
  transition: all 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.cta-btn:hover {
  background: #084c3c;
  transform: translateY(-1px);
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 20px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-line);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
}
.hero-text h1 {
  font-size: 38px;
  color: var(--pharma-emerald);
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero-text p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.hero-img img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  border: 3px solid #fff;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 25px;
}
.badge-clean {
  display: inline-block;
  background: var(--pharma-light);
  color: var(--pharma-emerald);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
footer {
  background: #0d1a16;
  color: #b1c7bf;
  padding: 45px 20px 25px;
  margin-top: 60px;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-grid h4 { color: #fff; margin-bottom: 14px; font-size: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid a { color: #b1c7bf; text-decoration: none; font-size: 14px; }
.footer-grid a:hover { color: #fff; }
.copyright {
  max-width: 1160px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  text-align: center;
  color: #7b958c;
}
@media (max-width: 1120px) {
  .header-container { gap: 16px; padding: 12px 16px; }
  .logo { margin-right: 12px; font-size: 18px; }
  .nav-links { gap: 10px; }
  .nav-links a { font-size: 12px; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}