﻿:root {
  --pharma-navy: #003C71;
  --pharma-blue: #005EB8;
  --pharma-blue-light: #0077B6;
  --pharma-sky: #00A3E0;
  --pharma-green: #78BE20;
  --pharma-green-dark: #5A9A10;
  --dark: #002855;
  --dark-soft: #1A3A5C;
  --text: #2D3748;
  --text-light: #5A6A7E;
  --bg: #ffffff;
  --bg-light: #F0F4F8;
  --bg-blue-tint: #E8F2FC;
  --border: #D0DCE8;
  --shadow: 0 4px 20px rgba(0, 60, 113, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 60, 113, 0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --header-height: 76px;
  --top-bar-height: 36px;
  --mobile-header-height: calc(var(--header-height) + var(--top-bar-height));
  --mobile-gutter: 15px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

body.is-loading { overflow: hidden; }

/* ========== PAGE LOADER ========== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__spinner {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loader__ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: transparent;
}

.page-loader__ring--outer {
  inset: 0;
  border-width: 3px;
  border-top-color: var(--pharma-blue);
  border-right-color: var(--pharma-green);
  animation: loader-spin 1s linear infinite;
}

.page-loader__ring--inner {
  inset: 10px;
  border-width: 2px;
  border-bottom-color: var(--pharma-sky);
  border-left-color: rgba(0, 60, 113, 0.2);
  animation: loader-spin-reverse 1.4s linear infinite;
}

.page-loader__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  animation: loader-icon-breathe 1.6s ease-in-out infinite;
}

@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

@keyframes loader-spin-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes loader-icon-breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.94); opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__ring--outer,
  .page-loader__ring--inner,
  .page-loader__icon {
    animation: none;
  }

  .page-loader__ring--outer {
    border-color: rgba(0, 94, 184, 0.35);
    border-top-color: var(--pharma-blue);
  }

  .page-loader__ring--inner {
    border-color: rgba(0, 163, 224, 0.25);
    border-bottom-color: var(--pharma-sky);
  }
}

img, svg { display: block; max-width: 100%; }
a { color: var(--pharma-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--pharma-sky); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(26.4px, 3.5vw, 37.6px); }
h3 { font-size: 19.2px; }
.text-center { text-align: center; }

/* Pharma labels */
.pharma-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pharma-blue);
  font-weight: 700;
  font-size: 12.8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.pharma-label::before {
  content: '';
  width: 24px;
  height: 3px;
  background: var(--pharma-green);
  border-radius: 2px;
}
.pharma-label--light { color: rgba(255,255,255,0.9); }
.pharma-label--light::before { background: var(--pharma-green); }

.pharma-badge {
  display: inline-block;
  background: rgba(0, 94, 184, 0.1);
  color: var(--pharma-blue);
  padding: 6.4px 16px;
  border-radius: 50px;
  font-size: 12.8px;
  font-weight: 600;
  border: 1px solid rgba(0, 94, 184, 0.2);
}

/* GXP chips */
.gxp-chip {
  display: inline-block;
  background: rgba(0, 94, 184, 0.12);
  color: var(--pharma-blue);
  font-size: 11.2px;
  font-weight: 700;
  padding: 3.2px 8.8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.gxp-chip--footer { background: rgba(0, 94, 184, 0.1); color: var(--text); }

.gxp-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5.6px 12px;
  border-radius: 6px;
  letter-spacing: 1px;
}

.gxp-badge--light {
  background: white;
  border: 1px solid var(--border);
  color: var(--pharma-navy);
  box-shadow: var(--shadow);
}

.reg-badge {
  background: var(--bg-blue-tint);
  color: var(--pharma-blue);
  font-size: 12.8px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.reg-badge--hero {
  background: white;
  padding: 6px 12px;
  font-size: 11.2px;
  border-radius: 999px;
}
.reg-badge--sm { font-size: 11.2px; padding: 4.8px 9.6px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13.6px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15.2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn--pharma {
  background: var(--pharma-blue);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 94, 184, 0.35);
}
.btn--pharma:hover {
  background: var(--pharma-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 60, 113, 0.4);
  color: white;
}

.btn--pharma-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: white;
}
.btn--pharma-outline:hover {
  background: white;
  color: var(--pharma-blue);
  border-color: white;
}

.btn--pharma-outline-dark {
  background: transparent;
  border: 2px solid var(--pharma-blue);
  color: var(--pharma-blue);
}
.btn--pharma-outline-dark:hover {
  background: var(--pharma-blue);
  color: white;
}

.btn--pharma-white {
  background: white;
  color: var(--pharma-blue);
  font-weight: 700;
}
.btn--pharma-white:hover {
  background: var(--pharma-green);
  color: white;
  transform: translateY(-2px);
}

.btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none !important; }
.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Pharma pattern */
.pharma-pattern {
  color: var(--pharma-blue);
  pointer-events: none;
}

/* ========== HEADER ========== */
.site-header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  transition: box-shadow var(--transition);
}

.site-header-sticky--scrolled {
  box-shadow: var(--shadow-lg);
}

.site-header-sticky--menu-open {
  z-index: 1002;
}

.top-bar-pharma {
  background: var(--pharma-navy);
  color: rgba(255,255,255,0.85);
  font-size: 12.48px;
  padding: 7.2px 0;
  border-bottom: 2px solid var(--pharma-green);
}

.top-bar-pharma__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-pharma__left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-pharma__left a {
  display: flex;
  align-items: center;
  gap: 5.6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.48px;
}

.top-bar-pharma__left a:hover {
  color: var(--pharma-green);
}

.top-bar-pharma__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-pharma__social {
  display: flex;
  gap: 8px;
}
.top-bar-pharma__social a {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.top-bar-pharma__social a:hover { background: var(--pharma-blue); color: white; }

.header-pharma {
  background: white;
  border-bottom: 3px solid var(--pharma-blue);
}

.header-pharma__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

@media (min-width: 769px) {
  .site-header-sticky {
    position: sticky;
    top: 0;
  }

  .site-header-sticky > .nav-pharma {
    position: absolute;
    top: var(--top-bar-height);
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 100%);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    padding: 0 24px 0 240px;
    pointer-events: none;
  }

  .site-header-sticky > .nav-pharma .nav-pharma__list,
  .site-header-sticky > .nav-pharma .nav-pharma__cta {
    pointer-events: auto;
  }
}

.header-pharma__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  display: block;
  height: 58px;
  width: auto;
  object-fit: contain;
}

.site-logo--footer {
  height: 50px;
}

.header-pharma__logo .logo-svg { height: 48px; width: auto; min-width: 200px; }

.nav-pharma { display: flex; align-items: center; gap: 24px; }

.nav-pharma__brand {
  display: none;
}

.nav-pharma__list { display: flex; gap: 2.4px; }

.nav-pharma__list a {
  color: var(--text);
  font-weight: 600;
  font-size: 14.4px;
  padding: 8px 14.4px;
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}

.nav-pharma__list a:hover,
.nav-pharma__list a.active {
  color: var(--pharma-blue);
  background: var(--bg-blue-tint);
}

.nav-pharma__list a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--pharma-green);
  border-radius: 2px;
}

.nav-pharma__cta { padding: 9.6px 20px; font-size: 13.6px; }

.header-pharma__toggle {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--pharma-navy);
  cursor: pointer;
  padding: 0;
}

.header-pharma__toggle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-pharma__toggle .icon-close {
  display: none !important;
}

.header-pharma__toggle.is-open .icon-menu {
  display: none !important;
}

.header-pharma__toggle.is-open .icon-close {
  display: block !important;
}

.header-pharma__toggle.is-open {
  position: relative;
  z-index: 1005;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 40, 85, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity var(--transition);
  touch-action: none;
}

.menu-overlay.is-visible {
  display: block;
  opacity: 1;
}

body.menu-open {
  touch-action: none;
}

html.menu-open {
  touch-action: none;
}

@media (min-width: 769px) {
  body.menu-open {
    overflow: hidden;
  }

  html.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1002;
  }
}

body.menu-open .header-pharma,
body.menu-open .header-pharma__main {
  position: relative;
  z-index: 1003;
}

/* ========== HERO VIDEO BANNER (HOME) ========== */
.hero-video-banner {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 82vh, 920px);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: var(--pharma-navy);
}

.hero-video-banner__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  pointer-events: none;
  filter: saturate(1.2) brightness(0.72) contrast(1.15) hue-rotate(168deg);
  transform: scale(1.06);
}

.hero-video-banner__tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      108deg,
      rgba(0, 40, 85, 0.92) 0%,
      rgba(0, 60, 113, 0.78) 38%,
      rgba(0, 94, 184, 0.42) 62%,
      rgba(0, 40, 85, 0.55) 100%
    );
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-video-banner__earth-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 48% 58% at 72% 46%, rgba(0, 163, 224, 0.38) 0%, transparent 68%),
    radial-gradient(ellipse 36% 42% at 68% 50%, rgba(120, 190, 32, 0.22) 0%, transparent 72%),
    radial-gradient(circle at 74% 44%, rgba(0, 94, 184, 0.28) 0%, transparent 38%);
  pointer-events: none;
}

.hero-video-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 40, 85, 0.55) 0%, rgba(0, 60, 113, 0.18) 48%, rgba(0, 94, 184, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 40, 85, 0.2) 0%, rgba(0, 60, 113, 0.32) 50%, rgba(0, 40, 85, 0.62) 100%);
  pointer-events: none;
}

.hero-video-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  width: 100%;
  padding: clamp(48px, 8vh, 88px) 20px clamp(28px, 4vh, 40px);
}

.hero-video-banner__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-video-banner__label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 94, 184, 0.28);
  border: 1px solid rgba(120, 190, 32, 0.45);
  color: rgba(255, 255, 255, 0.95);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-video-banner__content h1 {
  margin: 0 0 18px;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
}

.hero-video-banner__headline-main {
  display: block;
  color: #fff;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-video-banner__headline-accent {
  display: block;
  margin-top: 0.12em;
  color: var(--pharma-green);
  font-size: clamp(28px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-video-banner__subtitle {
  max-width: 720px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.8vw, 17.5px);
  line-height: 1.75;
}

.hero-video-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.btn--pharma-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn--pharma-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.hero-video-banner__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.hero-video-banner__stats li {
  text-align: center;
  padding: 4px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-video-banner__stats li:last-child {
  border-right: none;
}

.hero-video-banner__stats strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--pharma-green);
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-video-banner__stats span {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.hero-video-banner__tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
}

.hero-video-banner__tile {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.hero-video-banner__tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  border-color: rgba(0, 94, 184, 0.3);
  color: inherit;
}

.hero-video-banner__tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bg-blue-tint) 0%, rgba(120, 190, 32, 0.14) 100%);
  color: var(--pharma-blue);
}

.hero-video-banner__tile-body {
  flex: 1;
  min-width: 0;
}

.hero-video-banner__tile-body strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14.5px;
  color: var(--pharma-navy);
  line-height: 1.25;
}

.hero-video-banner__tile-body span {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.55;
}

.hero-video-banner__tile-arrow {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--pharma-green);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}

.hero-video-banner__tile:hover .hero-video-banner__tile-arrow {
  opacity: 1;
  transform: translateX(0);
}

.hero-pharma--trust-only {
  padding-top: 0;
  background: linear-gradient(180deg, #eef5fb 0%, #ffffff 100%);
}

.hero-pharma--trust-only .hero-pharma__trust {
  margin-top: 0;
  border-top: none;
  border-radius: 0 0 14px 14px;
}

/* ========== HERO (HOME — MODERN) ========== */
.hero-pharma--modern {
  position: relative;
  min-height: auto;
  padding: 32px 0 0;
  overflow: hidden;
  background: linear-gradient(165deg, #f4f8fc 0%, #ffffff 45%, #eef5fb 100%);
}

.hero-pharma__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-pharma__blob--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(0, 94, 184, 0.1) 0%, transparent 68%);
}

.hero-pharma__blob--2 {
  width: 360px;
  height: 360px;
  bottom: 80px;
  left: -100px;
  background: radial-gradient(circle, rgba(120, 190, 32, 0.08) 0%, transparent 70%);
}

.hero-pharma__shell {
  position: relative;
  z-index: 1;
}

.hero-pharma__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 36px;
}

.hero-pharma__copy .pharma-label {
  margin-bottom: 16px;
}

.hero-pharma--modern h1 {
  color: var(--pharma-navy);
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-pharma--modern h1 span {
  color: var(--pharma-blue);
}

.hero-pharma--modern p {
  color: var(--text-light);
  font-size: 16.8px;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 24px;
}

.hero-pharma__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-pharma__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  padding: 16px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-pharma__stats li {
  text-align: center;
  padding: 4px 8px;
  border-right: 1px solid var(--border);
}

.hero-pharma__stats li:last-child {
  border-right: none;
}

.hero-pharma__stats strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--pharma-blue);
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero-pharma__stats span {
  display: block;
  font-size: 10.4px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.35;
}

.hero-pharma__aside {
  position: relative;
}

.hero-pharma__visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.hero-pharma__visual-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.hero-pharma__visual-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--pharma-blue);
}

.hero-pharma__visual-badge strong {
  display: block;
  font-size: 13.6px;
  color: var(--pharma-navy);
  line-height: 1.2;
}

.hero-pharma__visual-badge span {
  font-size: 11.2px;
  color: var(--text-light);
}

.hero-pharma__icon-stack {
  position: absolute;
  top: 20px;
  right: -12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 200px;
}

.hero-pharma__icon-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-size: 11.2px;
  font-weight: 700;
  color: var(--pharma-navy);
  line-height: 1.25;
}

.hero-pharma__icon-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--bg-blue-tint);
  color: var(--pharma-blue);
}

.hero-pharma__services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.hero-pharma__service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.hero-pharma__service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 94, 184, 0.25);
  color: inherit;
}

.hero-pharma__service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bg-blue-tint) 0%, rgba(120, 190, 32, 0.12) 100%);
  color: var(--pharma-blue);
}

.hero-pharma__service-text {
  flex: 1;
  min-width: 0;
}

.hero-pharma__service-text strong {
  display: block;
  font-size: 13.6px;
  color: var(--pharma-navy);
  line-height: 1.2;
}

.hero-pharma__service-text span {
  display: block;
  font-size: 11.2px;
  color: var(--text-light);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-pharma__service-arrow {
  flex-shrink: 0;
  color: var(--pharma-green);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}

.hero-pharma__service-card:hover .hero-pharma__service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.hero-pharma__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  padding: 18px 20px;
  margin-bottom: 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}

.hero-pharma__trust-gxp {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-pharma__trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-pharma__trust-regs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.hero-pharma__trust-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--pharma-navy);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-pharma__trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Legacy hero bg (inner pages) */
.hero-pharma__bg,
.page-hero-pharma__bg,
.cta-pharma__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pharma-bg-preload {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  border: 0;
}

.hero-pharma__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 40, 85, 0.82) 0%, rgba(0, 94, 184, 0.72) 55%, rgba(0, 119, 182, 0.65) 100%);
}

.hero-pharma__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  color: white;
}

/* Regulatory bar */
.regulatory-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.regulatory-bar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.regulatory-bar__label {
  font-weight: 700;
  color: var(--pharma-navy);
  font-size: 13.6px;
  white-space: nowrap;
}

.regulatory-bar__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ========== SECTIONS ========== */
.section-pharma {
  padding: 80px 0;
  position: relative;
}
.section-pharma--white { background: white; }
.section-pharma--light { background: var(--bg-light); }
.section-pharma--blue {
  background: linear-gradient(135deg, var(--pharma-navy) 0%, var(--pharma-blue) 100%);
  color: white;
}
.section-pharma__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  color: var(--pharma-blue);
}
.section-pharma__bg-pattern--light { opacity: 0.06; color: white; }

.section-header-pharma { margin-bottom: 48px; }
.section-header-pharma--center { text-align: center; }
.section-header-pharma--white h2 { color: white; }
.section-header-pharma--white h2 span { color: var(--pharma-green); }
.section-header-pharma p {
  color: var(--text-light);
  margin-top: 12px;
  max-width: 600px;
}
.section-header-pharma--center p { margin-left: auto; margin-right: auto; }

.section-header-pharma h2 span { color: var(--pharma-blue); }

/* Quick services - Pharmazone style */
.quick-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-service-card {
  background: white;
  border: 1px solid var(--border);
  border-top: 4px solid var(--pharma-blue);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
}

.quick-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--pharma-green);
}

.quick-service-card__icon {
  color: var(--pharma-blue);
  margin-bottom: 16px;
}

.quick-service-card__code {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11.2px;
  font-weight: 800;
  color: var(--pharma-green);
  background: rgba(120, 190, 32, 0.12);
  padding: 3.2px 8px;
  border-radius: 4px;
}

.quick-service-card h3 {
  font-size: 16.8px;
  margin-bottom: 9.6px;
  color: var(--pharma-navy);
}

.quick-service-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.quick-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4.8px;
  font-weight: 600;
  font-size: 13.6px;
  color: var(--pharma-blue);
}

/* Stats */
.stats-pharma {
  background: var(--pharma-navy);
  padding: 48px 0;
}

.stats-pharma__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-pharma {
  text-align: center;
  color: white;
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-pharma:last-child { border-right: none; }

.stat-pharma svg { margin: 0 auto 12px; color: var(--pharma-green); opacity: 0.8; }

.stat-pharma strong {
  display: block;
  font-size: 36px;
  color: white;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-pharma span { font-size: 13.6px; opacity: 0.75; }

/* Service cards */
.services-pharma-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-pharma-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-pharma-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--pharma-blue);
  transform: translateY(-4px);
}

.service-pharma-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.service-pharma-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--bg-blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pharma-blue);
  flex-shrink: 0;
}

.service-pharma-card h3, .service-pharma-card h2 {
  font-size: 17.6px;
  color: var(--pharma-navy);
}

.service-pharma-card__tagline {
  color: var(--pharma-blue) !important;
  font-weight: 600;
  font-size: 13.6px;
  margin-bottom: 9.6px !important;
}

.service-pharma-card p {
  color: var(--text-light);
  font-size: 14.4px;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-pharma-card ul { margin-bottom: 20px; }

.service-pharma-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.6px;
  margin-bottom: 5.6px;
  color: var(--text);
}

.service-pharma-card ul li svg { color: var(--pharma-green); flex-shrink: 0; margin-top: 3px; }

.service-pharma-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5.6px;
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}

.services-pharma-grid--large .service-pharma-card { padding: 36px; }

/* About section */
.about-pharma {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-pharma__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-pharma__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-pharma__image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  color: var(--pharma-blue);
  border-left: 4px solid var(--pharma-green);
}

.about-pharma__image-badge strong { display: block; color: var(--dark); font-size: 14.4px; }
.about-pharma__image-badge span { font-size: 12px; color: var(--text-light); }

.about-pharma__content h2 span { color: var(--pharma-blue); }
.about-pharma__content p { color: var(--text-light); margin-bottom: 16px; }

.about-pharma__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--pharma-navy);
  font-weight: 600;
  font-size: 14.4px;
}
.highlight-item svg, .highlight-item .pharma-icon { color: var(--pharma-blue); }

.mission-pharma {
  display: grid;
  gap: 16px;
  margin: 24px 0 32px;
  padding: 20px;
  background: var(--bg-blue-tint);
  border-radius: var(--radius);
  border-left: 4px solid var(--pharma-green);
}

.mission-pharma h4 {
  display: flex;
  align-items: center;
  gap: 6.4px;
  color: var(--pharma-blue);
  font-size: 14.4px;
  margin-bottom: 6.4px;
}
.mission-pharma p { font-size: 14px; margin: 0; }

/* Why Choose Us ΓÇö new layout */
.why-choose-section {
  background: linear-gradient(160deg, var(--bg-light) 0%, white 50%, var(--bg-blue-tint) 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 94, 184, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-choose-section__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.why-choose-section__intro {
  position: sticky;
  top: 120px;
}

.why-choose-section__intro h2 {
  margin-bottom: 16px;
  line-height: 1.2;
}

.why-choose-section__intro h2 span {
  color: var(--pharma-blue);
}

.why-choose-section__intro > p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.75;
}

.why-choose-section__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.why-choose-section__stats strong {
  display: block;
  font-size: 28px;
  color: var(--pharma-blue);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5.6px;
}

.why-choose-section__stats span {
  font-size: 11.52px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-choose-item {
  display: grid;
  grid-template-columns: 48px 56px 1fr;
  gap: 20px;
  align-items: start;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.why-choose-item:hover {
  border-color: var(--pharma-blue);
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
}

.why-choose-item__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--pharma-blue), var(--pharma-green));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}

.why-choose-item:hover .why-choose-item__accent {
  transform: scaleY(1);
}

.why-choose-item__index {
  font-size: 24px;
  font-weight: 800;
  color: var(--bg-blue-tint);
  -webkit-text-stroke: 1px var(--pharma-blue);
  line-height: 1;
  padding-top: 5.6px;
  opacity: 0.6;
}

.why-choose-item:hover .why-choose-item__index {
  color: var(--pharma-blue);
  opacity: 1;
  -webkit-text-stroke: 0;
}

.why-choose-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bg-blue-tint), white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pharma-blue);
  transition: all var(--transition);
}

.why-choose-item:hover .why-choose-item__icon {
  background: linear-gradient(135deg, var(--pharma-blue), var(--pharma-navy));
  color: white;
  border-color: transparent;
}

.why-choose-item__body h3 {
  color: var(--pharma-navy);
  font-size: 16.8px;
  margin-bottom: 6.4px;
}

.why-choose-item__body p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.65;
}

/* Footer credits */
.footer-pharma__copyright {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
}

.footer-credits-link {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.footer-credits-link:hover {
  color: var(--pharma-green);
}

/* Why cards (About page) */
.why-pharma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.why-pharma-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.why-pharma-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.why-pharma-card--light {
  background: white;
  border: 1px solid var(--border);
}
.why-pharma-card--light:hover { box-shadow: var(--shadow); }

.why-pharma-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pharma-green);
  margin-bottom: 16px;
}

.why-pharma-card__icon--blue {
  background: var(--bg-blue-tint);
  color: var(--pharma-blue);
}

.why-pharma-card h3 { color: white; font-size: 16.8px; margin-bottom: 9.6px; }
.why-pharma-card--light h3 { color: var(--pharma-navy); }
.why-pharma-card p { font-size: 14px; opacity: 0.85; }
.why-pharma-card--light p { color: var(--text-light); opacity: 1; }

/* Process Section */
.process-section {
  background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.process-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.process-section__intro h2 {
  margin-bottom: 16px;
}

.process-section__intro h2 span {
  color: var(--pharma-blue);
}

.process-section__intro p {
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 520px;
}

.process-section__phases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-section__phases span {
  background: white;
  border: 1px solid var(--border);
  color: var(--pharma-blue);
  font-size: 12px;
  font-weight: 700;
  padding: 6.4px 13.6px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.process-section__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--pharma-blue);
}

.process-section__visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.process-section__visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 40, 85, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 13.6px;
  color: var(--pharma-green);
  border-left: 4px solid var(--pharma-green);
}

.process-section__visual-badge strong {
  display: block;
  color: white;
  font-size: 15.2px;
}

.process-section__visual-badge span {
  font-size: 12.48px;
  color: rgba(255, 255, 255, 0.75);
}

/* Process Timeline */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  position: relative;
}

.process-timeline__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.process-timeline__node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--pharma-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pharma-blue);
  box-shadow: 0 0 0 6px var(--bg-blue-tint);
  flex-shrink: 0;
  z-index: 1;
  transition: all var(--transition);
}

.process-timeline__item:hover .process-timeline__node {
  background: var(--pharma-blue);
  color: white;
  border-color: var(--pharma-green);
  transform: scale(1.08);
}

.process-timeline__connector {
  width: 3px;
  flex-grow: 1;
  min-height: 40px;
  background: linear-gradient(180deg, var(--pharma-blue), var(--pharma-green));
  opacity: 0.35;
  margin: 4px 0;
}

.process-timeline__card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
  transition: all var(--transition);
  border-left: 4px solid transparent;
}

.process-timeline__item:hover .process-timeline__card {
  box-shadow: var(--shadow-lg);
  border-left-color: var(--pharma-green);
  transform: translateX(6px);
}

.process-timeline__step {
  display: inline-block;
  background: var(--bg-blue-tint);
  color: var(--pharma-blue);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10.4px;
  border-radius: 4px;
  margin-bottom: 9.6px;
  letter-spacing: 1px;
}

.process-timeline__card h3 {
  color: var(--pharma-navy);
  font-size: 18.4px;
  margin-bottom: 8px;
}

.process-timeline__card > p {
  color: var(--text-light);
  font-size: 14.4px;
  margin-bottom: 16px;
  line-height: 1.65;
}

.process-timeline__card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.process-timeline__card ul li {
  display: flex;
  align-items: center;
  gap: 6.4px;
  font-size: 13.12px;
  font-weight: 500;
  color: var(--pharma-navy);
}

.process-timeline__card ul li svg {
  color: var(--pharma-green);
  flex-shrink: 0;
}

/* FAQ */
.faq-pharma { max-width: 800px; margin: 0 auto; }
.faq-pharma--page { max-width: 900px; }

.faq-pharma__item {
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--pharma-blue);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-pharma__item:hover { box-shadow: var(--shadow); }
.faq-pharma__item[open] { border-left-color: var(--pharma-green); }

.faq-pharma__item summary {
  padding: 18.4px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--pharma-navy);
  font-size: 15.2px;
}

.faq-pharma__item summary::-webkit-details-marker { display: none; }

.faq-pharma__item summary::after {
  content: '+';
  font-size: 22.4px;
  color: var(--pharma-blue);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-pharma__item[open] summary::after {
  transform: rotate(45deg);
  color: var(--pharma-green);
}

.faq-pharma__item p {
  padding: 0 24px 18.4px;
  color: var(--text-light);
  font-size: 14.4px;
}

/* CTA section */
.cta-pharma {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-pharma--compact { padding: 64px 0; }

.cta-pharma__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-pharma__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 40, 85, 0.92), rgba(0, 94, 184, 0.88));
}

.cta-pharma__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.cta-pharma__grid--center {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-pharma__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-pharma__text { color: white; }
.cta-pharma__text h2 { color: white; margin-bottom: 16px; }
.cta-pharma__text h2 span { color: var(--pharma-green); }
.cta-pharma__text p { opacity: 0.9; margin-bottom: 24px; }

.cta-pharma__contact {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.cta-pharma__contact strong { display: block; }
.cta-pharma__contact span { font-size: 12.8px; opacity: 0.8; }

/* Page hero */
.page-hero-pharma {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
}

.page-hero-pharma__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-pharma__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 40, 85, 0.9), rgba(0, 94, 184, 0.85));
}

.page-hero-pharma__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  color: white;
}

.page-hero-pharma__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.page-hero-pharma .pharma-badge {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11.2px;
  margin-bottom: 16px;
}

.page-hero-pharma h1 {
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero-pharma h1 strong,
.page-hero-pharma h1 span {
  color: var(--pharma-green);
  font-weight: 800;
}

.page-hero-pharma p {
  font-family: var(--font);
  font-weight: 400;
  opacity: 0.92;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

/* About page */
.about-page-pharma {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.about-page-pharma__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-page-pharma__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-page-pharma__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: white;
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 9.6px;
  font-weight: 600;
  color: var(--pharma-navy);
  font-size: 13.6px;
  box-shadow: var(--shadow);
  color: var(--pharma-blue);
}

.lead-pharma {
  font-size: 18.4px;
  color: var(--pharma-navy) !important;
  font-weight: 500;
  margin-bottom: 20px !important;
}

.about-page-pharma__text p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.mv-pharma {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-pharma__card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--pharma-blue);
}

.mv-pharma__card svg { color: var(--pharma-blue); margin-bottom: 16px; }
.mv-pharma__card h2 { font-size: 21.6px; margin-bottom: 12px; color: var(--pharma-navy); }
.mv-pharma__card p { color: var(--text-light); }

/* Detailed services */
.detailed-pharma {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.detailed-pharma__group {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  border-top: 3px solid var(--pharma-green);
}

.detailed-pharma__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--pharma-blue);
}

.detailed-pharma__header h3 { color: var(--pharma-navy); font-size: 16.8px; }

.detailed-pharma__group ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 6.4px;
  color: var(--text);
}

.detailed-pharma__group ul li svg { color: var(--pharma-green); flex-shrink: 0; margin-top: 4px; }

/* Contact page */
.contact-pharma {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-pharma__lead-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pharma-blue);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.contact-pharma__info > svg,
.contact-pharma__info > .pharma-icon,
.contact-pharma__lead-icon .pharma-icon {
  color: var(--pharma-blue);
}

.contact-pharma__lead-icon .pharma-icon {
  display: block;
}
.contact-pharma__info h2 { color: var(--pharma-navy); margin-bottom: 12px; }
.contact-pharma__info > p { color: var(--text-light); margin-bottom: 32px; }

.contact-pharma__items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.contact-pharma__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-pharma__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg-blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pharma-blue);
  flex-shrink: 0;
}

.contact-pharma__item h4 { font-size: 12.8px; color: var(--text-light); margin-bottom: 3.2px; font-weight: 500; }
.contact-pharma__item a, .contact-pharma__item span { color: var(--pharma-navy); font-weight: 600; }

.contact-pharma__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-pharma__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.contact-pharma__form h2 { color: var(--pharma-navy); margin-bottom: 8px; }
.contact-pharma__form > p { color: var(--text-light); margin-bottom: 24px; }

/* Legal & sitemap */
.legal-pharma { max-width: 800px; margin: 0 auto; }
.legal-pharma h2 { font-size: 20.8px; margin: 32px 0 12px; color: var(--pharma-blue); }
.legal-pharma p, .legal-pharma li { color: var(--text-light); margin-bottom: 12px; }
.legal-pharma ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }

.sitemap-pharma {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.sitemap-pharma__section svg { color: var(--pharma-blue); margin-bottom: 12px; }
.sitemap-pharma__section h2 { font-size: 19.2px; color: var(--pharma-navy); margin-bottom: 16px; }
.sitemap-pharma__section ul li { margin-bottom: 8px; }
.sitemap-pharma__section ul li a { font-weight: 500; }

/* ========== FORMS ========== */
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--pharma-green);
}

.cta-pharma .contact-form {
  background: rgba(255,255,255,0.97);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18.4px;
}

.form-group { display: flex; flex-direction: column; gap: 5.6px; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-weight: 600;
  font-size: 13.6px;
  color: var(--pharma-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15.2px;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pharma-blue);
  box-shadow: 0 0 0 3px rgba(0, 94, 184, 0.12);
  background: white;
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13.6px 16px;
  border-radius: 6px;
  font-size: 14px;
  margin: 16px 0;
}

.form-status--success { background: #EDF7ED; color: #1B5E20; border: 1px solid #A5D6A7; }
.form-status--error { background: #FFEBEE; color: #B71C1C; border: 1px solid #EF9A9A; }

.contact-form .btn { margin-top: 8px; width: 100%; justify-content: center; }

/* ========== FOOTER ========== */
.footer-pharma { background: #fff; color: #000; }

.footer-pharma__top {
  position: relative;
  background: #fff;
  padding: 48px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.footer-pharma__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  color: var(--pharma-blue);
}

.footer-pharma__cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-pharma__cta-icon { color: var(--pharma-green); flex-shrink: 0; }
.footer-pharma__cta h2 { color: #000; font-size: 25.6px; margin-bottom: 6.4px; }
.footer-pharma__cta p { color: rgba(0, 0, 0, 0.75); font-size: 15.2px; }
.footer-pharma__cta .btn--pharma-white {
  background: var(--pharma-blue);
  color: #fff;
}
.footer-pharma__cta .btn--pharma-white:hover {
  background: var(--pharma-green);
  color: #fff;
}

.footer-pharma__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 56px 0 40px;
}

.footer-pharma__brand p {
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.7;
}

.logo-svg--footer { height: 48px; min-width: 200px; }

.footer-pharma__brand .site-logo {
  margin-bottom: 4px;
}

.footer-pharma__gxp {
  display: flex;
  gap: 5.6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-pharma h4 {
  color: #000;
  font-size: 15.2px;
  margin-bottom: 18.4px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pharma-green);
  display: inline-block;
}

.footer-pharma ul li { margin-bottom: 8.8px; }
.footer-pharma ul li a {
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-pharma ul li a:hover { color: var(--pharma-green); }

.footer-pharma__social { display: flex; gap: 9.6px; }

.footer-pharma__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all var(--transition);
}

.footer-pharma__social a:hover { background: var(--pharma-green); color: #fff; }

.footer-pharma__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10.4px;
  font-size: 14px;
}

.footer-pharma__contact svg { color: var(--pharma-green); flex-shrink: 0; margin-top: 3px; }
.footer-pharma__contact a { color: rgba(0, 0, 0, 0.85); }
.footer-pharma__contact a:hover { color: var(--pharma-green); }
.footer-pharma__contact span { color: rgba(0, 0, 0, 0.75); }

.footer-pharma__regs { display: flex; gap: 5.6px; flex-wrap: wrap; margin-top: 16px; }

.footer-pharma__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-pharma__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.12px;
}

.footer-pharma__legal { display: flex; gap: 20px; }
.footer-pharma__legal a { color: rgba(0, 0, 0, 0.6); }
.footer-pharma__legal a:hover { color: var(--pharma-green); }

/* ========== FLOATING BUTTONS ========== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--pharma-navy);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}

.back-to-top--visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--pharma-blue); transform: translateY(-3px); }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: white;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .hero-video-banner__tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-pharma__layout {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

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

  .hero-pharma__icon-stack {
    right: -8px;
    max-width: 170px;
  }
}

@media (max-width: 1024px) {
  .hero-pharma__layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 24px;
  }

  .hero-pharma__aside {
    order: -1;
  }

  .hero-pharma__icon-stack {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: none;
    margin-top: 12px;
    gap: 8px;
  }

  .hero-pharma__icon-chip {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 140px;
    font-size: 10.4px;
  }

  .hero-pharma__visual-image img {
    height: 260px;
  }

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

  .hero-pharma__stats li {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 8px 4px;
  }

  .hero-pharma__stats li:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .quick-services { grid-template-columns: repeat(2, 1fr); }
  .services-pharma-grid { grid-template-columns: repeat(2, 1fr); }
  .about-pharma, .about-page-pharma { grid-template-columns: 1fr; }
  .why-choose-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .why-choose-section__intro { position: static; }
  .process-section__header { grid-template-columns: 1fr; }
  .cta-pharma__grid, .contact-pharma { grid-template-columns: 1fr; }
  .footer-pharma__grid { grid-template-columns: 1fr 1fr; }
  .stats-pharma__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-pharma { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 768px) {
  :root {
    --top-bar-height: 42px;
    --header-height: 64px;
    --mobile-fs-h1: 20px;
    --mobile-fs-h2: 18px;
    --mobile-fs-h3: 16px;
    --mobile-fs-body: 14px;
    --mobile-section-py: 32px;
  }

  .menu-overlay {
    display: none !important;
  }

  .site-header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  body.menu-open .header-pharma,
  body.menu-open .header-pharma__main {
    position: static;
    z-index: auto;
  }

  .container {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .top-bar-pharma__social { display: none; }
  .header-pharma__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1004;
  }

  .site-logo {
    height: 48px;
  }

  .nav-pharma {
    position: absolute;
    top: 100%;
    left: var(--mobile-gutter);
    right: var(--mobile-gutter);
    width: auto;
    height: auto;
    max-height: calc(100dvh - var(--mobile-header-height) - 16px);
    bottom: auto;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 12px;
    gap: 8px;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    visibility: hidden;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-pharma--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-pharma__list {
    flex-direction: column;
    width: 100%;
    gap: 4px;
    flex: 0 0 auto;
    padding-top: 0;
  }

  .nav-pharma__list li {
    width: 100%;
  }

  .nav-pharma__list a {
    display: block;
    width: 100%;
    padding: 12px 13.6px;
    font-size: var(--mobile-fs-body);
    border-radius: 8px;
  }

  .nav-pharma__list a.active::after {
    display: none;
  }

  .nav-pharma__list a.active {
    color: var(--pharma-blue);
    background: var(--bg-blue-tint);
    border-left: 4px solid var(--pharma-green);
    padding-left: calc(16px - 4px);
  }

  .nav-pharma__cta {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
    flex-shrink: 0;
    padding: 12px 16px;
  }

  .quick-services, .services-pharma-grid { grid-template-columns: 1fr; }
  .why-choose-item {
    grid-template-columns: 40px 48px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .why-choose-section__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
    text-align: center;
  }

  .why-choose-section__stats > div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .why-choose-section__stats strong {
    font-size: 22px;
  }

  .why-choose-section__stats span {
    font-size: 10px;
  }

  .footer-pharma__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mv-pharma { grid-template-columns: 1fr; }
  .process-timeline__item { grid-template-columns: 56px 1fr; gap: 16px; }
  .process-timeline__node { width: 48px; height: 48px; }
  .footer-pharma__grid { grid-template-columns: 1fr; }
  .footer-pharma__cta { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .sitemap-pharma { grid-template-columns: 1fr; }
  .regulatory-bar__inner { flex-direction: column; align-items: flex-start; }

  .section-pharma {
    padding-top: var(--mobile-section-py);
    padding-bottom: var(--mobile-section-py);
  }

  .page-hero-pharma {
    padding-top: var(--mobile-section-py);
    padding-bottom: 24px;
  }

  /* Mobile typography & compact spacing */
  body {
    font-size: var(--mobile-fs-body);
    line-height: 1.6;
  }

  h1,
  .hero-pharma h1,
  .page-hero-pharma h1 {
    font-size: var(--mobile-fs-h1);
    line-height: 1.3;
  }

  h2,
  .section-header-pharma h2,
  .footer-pharma__cta h2,
  .blog-card__body h2,
  .blog-single__article h2,
  .mv-pharma__card h2,
  .legal-pharma h2,
  .sitemap-pharma__section h2,
  .faq-pharma__item summary,
  .process-timeline__card h3,
  .cta-pharma__text h2 {
    font-size: var(--mobile-fs-h2);
    line-height: 1.35;
  }

  h3,
  .quick-service-card h3,
  .service-pharma-card h3,
  .why-pharma-card h3,
  .why-choose-item__body h3,
  .about-pharma__content h3,
  .detailed-pharma__header h3,
  .contact-pharma__info h2,
  .footer-pharma h4 {
    font-size: var(--mobile-fs-h3);
    line-height: 1.4;
  }

  h4 {
    font-size: var(--mobile-fs-h3);
  }

  p,
  .hero-pharma p,
  .page-hero-pharma p,
  .section-header-pharma p,
  .footer-pharma__cta p,
  .footer-pharma__brand p,
  .footer-pharma ul li a,
  .footer-pharma__contact span,
  .about-pharma__content p,
  .why-choose-item__body p,
  .service-pharma-card p,
  .quick-service-card p,
  .why-pharma-card p,
  .faq-pharma__item p,
  .contact-pharma__info p,
  .legal-pharma p,
  .legal-pharma li,
  .blog-card__body p,
  .blog-single__content,
  .form-group label,
  .form-group input,
  .form-group select,
  .form-group textarea,
  .contact-form .btn,
  .btn {
    font-size: var(--mobile-fs-body);
  }

  .pharma-label {
    font-size: 10.88px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .pharma-badge {
    font-size: 11.52px;
    padding: 4.8px 12px;
  }

  .section-header-pharma {
    margin-bottom: 20px;
  }

  .section-header-pharma p {
    margin-top: 8px;
  }

  .hero-video-banner__video {
    object-position: center 42%;
    transform: scale(1.12);
  }

  .hero-video-banner__earth-glow {
    background:
      radial-gradient(ellipse 70% 50% at 50% 40%, rgba(0, 163, 224, 0.32) 0%, transparent 70%),
      radial-gradient(ellipse 55% 40% at 50% 42%, rgba(120, 190, 32, 0.18) 0%, transparent 72%);
  }

  .hero-video-banner {
    min-height: auto;
  }

  .hero-video-banner__inner {
    gap: 24px;
    padding: 36px 16px 24px;
  }

  .hero-video-banner__label {
    font-size: 10.5px;
    margin-bottom: 12px;
  }

  .hero-video-banner__headline-main {
    font-size: clamp(22px, 6vw, 30px);
  }

  .hero-video-banner__headline-accent {
    font-size: clamp(24px, 6.5vw, 34px);
  }

  .hero-video-banner__subtitle {
    font-size: var(--mobile-fs-body);
    margin-bottom: 18px;
  }

  .hero-video-banner__actions {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .hero-video-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-video-banner__stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
    gap: 0;
  }

  .hero-video-banner__stats li {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 12px 8px;
  }

  .hero-video-banner__stats li:nth-child(2n) {
    border-right: none;
  }

  .hero-video-banner__stats li:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .hero-video-banner__stats strong {
    font-size: 18px;
  }

  .hero-video-banner__tiles {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-video-banner__tile {
    padding: 14px;
  }

  .hero-video-banner__tile-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .hero-pharma--modern {
    padding-top: 24px;
  }

  .hero-pharma__layout {
    gap: 20px;
    padding-bottom: 20px;
  }

  .hero-pharma__copy .pharma-label {
    margin-bottom: 12px;
    font-size: 11.2px;
  }

  .hero-pharma--modern h1 {
    margin-bottom: 10px;
  }

  .hero-pharma--modern p {
    font-size: var(--mobile-fs-body);
    margin-bottom: 16px;
  }

  .hero-pharma__actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-pharma__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-pharma__stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
    gap: 0;
  }

  .hero-pharma__stats li {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 8px;
  }

  .hero-pharma__stats li:nth-child(2n) {
    border-right: none;
  }

  .hero-pharma__stats li:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .hero-pharma__stats strong {
    font-size: 17.6px;
  }

  .hero-pharma__stats span {
    font-size: 9.6px;
  }

  .hero-pharma__visual-image img {
    height: 220px;
  }

  .hero-pharma__icon-chip {
    flex: 1 1 100%;
    min-width: 0;
  }

  .hero-pharma__services {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    margin-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-pharma__services::-webkit-scrollbar {
    display: none;
  }

  .hero-pharma__service-card {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
    padding: 12px 14px;
  }

  .hero-pharma__service-arrow {
    opacity: 1;
    transform: none;
  }

  .hero-pharma__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px var(--mobile-gutter);
    margin-left: calc(-1 * var(--mobile-gutter));
    margin-right: calc(-1 * var(--mobile-gutter));
  }

  .hero-pharma__trust-divider {
    display: none;
  }

  .hero-pharma__trust-regs {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hero-pharma__blob--1 {
    width: 280px;
    height: 280px;
    top: -60px;
    right: -60px;
  }

  .btn {
    padding: 10.4px 18.4px;
  }

  .regulatory-bar {
    padding: 10.4px 0;
  }

  .stats-pharma {
    padding: 24px 0;
  }

  .stats-pharma__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-pharma {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 12px;
  }

  .stat-pharma:nth-child(2n) {
    border-right: none;
  }

  .stat-pharma:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .stat-pharma strong {
    font-size: 21.6px;
  }

  .stat-pharma span {
    font-size: 12px;
  }

  .quick-services,
  .services-pharma-grid,
  .why-pharma-grid,
  .about-pharma,
  .contact-pharma,
  .cta-pharma__grid,
  .footer-pharma__grid,
  .blog-grid,
  .process-timeline,
  .why-choose-section__grid,
  .mv-pharma,
  .detailed-pharma-grid,
  .faq-pharma,
  .sitemap-pharma {
    gap: 13.6px;
  }

  .quick-service-card,
  .service-pharma-card,
  .why-pharma-card,
  .why-choose-item,
  .about-pharma__image-badge,
  .contact-pharma__card,
  .blog-card__body,
  .blog-single__article,
  .faq-pharma__item,
  .process-timeline__item,
  .mv-pharma__card {
    padding: 16px;
  }

  .footer-pharma__top {
    padding: 28px 0;
  }

  .footer-pharma__grid {
    padding-top: 32px;
    padding-bottom: 24px;
    gap: 24px;
  }

  .footer-pharma__cta {
    gap: 16px;
  }

  .page-hero-pharma h1 {
    margin-bottom: 8px;
  }

  .page-hero-pharma p {
    font-size: var(--mobile-fs-body);
  }

  .why-choose-section__grid {
    gap: 20px;
  }

  .why-choose-item {
    gap: 12px;
    padding: 16px;
  }

  .process-timeline__item {
    gap: 12px;
  }

  .nav-pharma__cta {
    padding: 12px 16px;
    font-size: var(--mobile-fs-body);
  }

  .top-bar-pharma {
    font-size: 10.88px;
    padding: 5.6px 0;
  }

  .top-bar-pharma__left a {
    font-size: 10.88px;
  }

  .site-logo {
    height: 42px;
  }

  .back-to-top {
    left: var(--mobile-gutter);
    bottom: var(--mobile-gutter);
  }

  .whatsapp-float {
    right: var(--mobile-gutter);
    bottom: var(--mobile-gutter);
  }

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

@media (max-width: 480px) {
  .hero-pharma__actions { flex-direction: column; }
  .hero-pharma__actions .btn { width: 100%; justify-content: center; }
}

/* ========== BLOG ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image-wrap {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__image-wrap img,
.blog-card__image-wrap .pharma-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 20px;
}

.blog-card__body time {
  display: block;
  font-size: 12.48px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.blog-card__body h2 {
  font-size: 18.4px;
  margin-bottom: 10.4px;
  line-height: 1.4;
}

.blog-card__body h2 a {
  color: var(--text);
  text-decoration: none;
}

.blog-card__body h2 a:hover { color: var(--pharma-blue); }

.blog-card__body p {
  color: var(--text-light);
  font-size: 14.4px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5.6px;
  color: var(--pharma-blue);
  font-weight: 600;
  font-size: 14.08px;
  text-decoration: none;
}

.blog-empty {
  text-align: center;
  padding: 48px 16px;
  font-family: var(--font);
}

.blog-empty h2 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-empty p {
  font-family: var(--font);
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.65;
}

.blog-pagination,
.site-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.site-pagination__link {
  color: var(--pharma-blue);
  font-weight: 600;
  text-decoration: none;
}

.site-pagination__disabled,
.site-pagination__info {
  color: var(--text-light);
  font-size: 14.4px;
}

.blog-single__container {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 32px;
  align-items: start;
}

.blog-single__article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.blog-single__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-light);
  font-size: 14.08px;
  margin-bottom: 20px;
}

.blog-single__featured {
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-single__featured img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.blog-single__content {
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
}

.blog-single__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}

@media (max-width: 768px) {
  .blog-grid {
    gap: 13.6px;
  }

  .blog-card__body {
    padding: 16px;
  }

  .blog-card__body h2 {
    font-size: var(--mobile-fs-h2);
    margin-bottom: 8px;
  }

  .blog-card__body p {
    font-size: var(--mobile-fs-body);
    margin-bottom: 12px;
  }

  .blog-card__link {
    font-size: var(--mobile-fs-body);
  }

  .blog-single__container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-single__article {
    padding: 16px;
  }

  .blog-single__content {
    font-size: var(--mobile-fs-body);
    line-height: 1.6;
  }

  .blog-single__meta {
    font-size: 12px;
    margin-bottom: 13.6px;
  }

  .blog-single__aside {
    position: static;
  }

  .blog-empty {
    padding: 32px 16px;
  }

  .blog-pagination,
  .site-pagination {
    margin-top: 20px;
  }

  .cta-pharma {
    padding: var(--mobile-section-py) 0;
  }

  .cta-pharma--compact {
    padding: 24px 0;
  }

  .cta-pharma__text p {
    margin-bottom: 16px;
  }

  .faq-pharma__item summary {
    font-size: var(--mobile-fs-h3);
    padding: 13.6px 16px;
  }

  .faq-pharma__item p {
    font-size: var(--mobile-fs-body);
    padding: 0 16px 13.6px;
  }

  .process-timeline__card {
    padding: 16px;
  }

  .process-timeline__card h3 {
    font-size: var(--mobile-fs-h3);
  }

  .process-timeline__card > p,
  .process-timeline__card ul li {
    font-size: var(--mobile-fs-body);
  }

  .detailed-pharma__group {
    padding: 16px;
  }

  .detailed-pharma__group ul li {
    font-size: var(--mobile-fs-body);
  }
}

/* ========== SCROLL REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal--up {
  transform: translateY(36px);
}

.reveal--left {
  transform: translateX(-36px);
}

.reveal--right {
  transform: translateX(36px);
}

.reveal--scale {
  transform: scale(0.94);
}

.reveal--fade {
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-pharma__service-card:hover {
    transform: none;
  }
}
