/* ═══════════════════════════════════════════════════
   PharmaCore Theme — Main Stylesheet
   Aesthetic: Clinical Precision × Refined Authority
   Fonts: DM Serif Display + DM Sans
   Palette: Deep Navy, Clinical White, Teal accent
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&family=Space+Mono&display=swap');

:root {
  --navy:       #0B1E3D;
  --navy-mid:   #162C52;
  --navy-light: #1E3A6E;
  --teal:       #00A896;
  --teal-d:     #007A6B;
  --teal-l:     #B2E8E2;
  --silver:     #E8EEF5;
  --silver2:    #C8D5E8;
  --white:      #FFFFFF;
  --off-white:  #F5F8FC;
  --text:       #1A2840;
  --text-mid:   #4A5568;
  --text-light: #718096;
  --gold:       #C9A84C;
  --gold-l:     #F0DFA0;
  --danger:     #C0392B;
  --warn:       #E67E22;
  --success:    #27AE60;

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;

  --shadow-sm:  0 2px 8px rgba(11,30,61,.08);
  --shadow-md:  0 8px 32px rgba(11,30,61,.12);
  --shadow-lg:  0 20px 60px rgba(11,30,61,.18);

  --transition: all 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Layout ── */
.pc-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.pc-container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.pc-section { padding: 100px 0; }
.pc-section-sm { padding: 64px 0; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.15; color: var(--navy); }
p { line-height: 1.75; color: var(--text-mid); }

.pc-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal);
  font-family: 'DM Sans', sans-serif; margin-bottom: 14px;
}
.pc-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--teal); flex-shrink: 0;
}
.pc-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; color: var(--navy); line-height: 1.1;
}
.pc-title em { font-style: italic; color: var(--teal); }
.pc-title-white { color: var(--white) !important; }
.pc-title-white em { color: var(--teal-l) !important; }
.pc-lead { font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--text-mid); max-width: 640px; }
.pc-lead-white { color: rgba(255,255,255,0.7) !important; }

/* ── Divider ── */
.pc-divider { width: 48px; height: 2px; background: var(--teal); margin: 20px 0 28px; }
.pc-divider-center { margin: 20px auto 28px; }

/* ── Buttons ── */
.pc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 36px; border-radius: var(--r-sm); transition: var(--transition);
}
.pc-btn-primary { background: var(--teal); color: var(--white); }
.pc-btn-primary:hover { background: var(--teal-d); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,168,150,.25); color: var(--white); }
.pc-btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.pc-btn-outline:hover { background: var(--teal); color: var(--white); }
.pc-btn-white { background: var(--white); color: var(--navy); }
.pc-btn-white:hover { background: var(--silver); color: var(--navy); }
.pc-btn-ghost-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.pc-btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }

/* ── Cards ── */
.pc-card {
  background: var(--white); border: 1px solid var(--silver);
  border-radius: var(--r-lg); padding: 36px 32px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.pc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--teal-l); }
.pc-card-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--off-white); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 24px; transition: var(--transition);
}
.pc-card:hover .pc-card-icon { background: var(--teal-l); }
.pc-card-title { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.pc-card-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ── Reveal animations ── */
.pc-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.pc-reveal.visible { opacity: 1; transform: translateY(0); }
.pc-reveal-d1 { transition-delay: .1s; }
.pc-reveal-d2 { transition-delay: .2s; }
.pc-reveal-d3 { transition-delay: .3s; }
.pc-reveal-d4 { transition-delay: .4s; }

/* ══════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════ */
#pc-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--silver); transition: var(--transition);
}
#pc-header.scrolled { box-shadow: var(--shadow-md); }
.pc-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.pc-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.pc-logo-mark {
  width: 40px; height: 40px; background: var(--navy); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.pc-logo-mark svg { width: 22px; height: 22px; fill: var(--teal); }
.pc-logo-name { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--navy); letter-spacing: .5px; }
.pc-logo-name span { color: var(--teal); }

/* Main nav */
.pc-nav { display: flex; align-items: center; gap: 4px; }
.pc-nav-item { position: relative; }
.pc-nav-link {
  display: flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 8px 14px; border-radius: var(--r-sm); transition: var(--transition);
}
.pc-nav-link:hover, .pc-nav-link.active { color: var(--teal); background: rgba(0,168,150,.06); }
.pc-nav-link svg { width: 14px; height: 14px; transition: transform .25s; }
.pc-nav-item:hover .pc-nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.pc-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--silver);
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  min-width: 240px; padding: 8px; opacity: 0; pointer-events: none;
  transform: translateY(8px); transition: var(--transition); z-index: 100;
}
.pc-nav-item:hover .pc-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.pc-dropdown-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 400; color: var(--text-mid);
  padding: 10px 14px; border-radius: var(--r-sm); transition: var(--transition);
}
.pc-dropdown-link:hover { background: var(--off-white); color: var(--teal); }
.pc-dropdown-link .pc-dd-icon { font-size: 16px; }

.pc-nav-cta { margin-left: 12px; }
.pc-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.pc-hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); display: block; }

/* ══════════════════════════════════════════════
   PAGE HEADER (inner pages)
   ══════════════════════════════════════════════ */
.pc-page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #163d6e 100%);
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.pc-page-header::before {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300A896' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.pc-page-header-content { position: relative; z-index: 1; }
.pc-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.pc-breadcrumb a { font-size: 13px; color: rgba(255,255,255,.5); transition: var(--transition); }
.pc-breadcrumb a:hover { color: var(--teal-l); }
.pc-breadcrumb .sep { font-size: 13px; color: rgba(255,255,255,.25); }
.pc-breadcrumb .current { font-size: 13px; color: rgba(255,255,255,.8); font-weight: 500; }
.pc-page-header h1 { color: var(--white); font-size: clamp(36px, 5vw, 64px); margin-bottom: 16px; }
.pc-page-header p { color: rgba(255,255,255,.65); font-size: 17px; font-weight: 300; max-width: 560px; }
.pc-page-header-deco {
  position: absolute; right: 7%; top: 50%; transform: translateY(-50%);
  font-size: 180px; opacity: 0.04; font-family: 'Space Mono', monospace; color: var(--white);
  pointer-events: none; user-select: none;
}

/* ══════════════════════════════════════════════
   HOME: HERO
   ══════════════════════════════════════════════ */
#pc-hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; background: var(--navy);
  position: relative; overflow: hidden; padding-top: 72px;
}
.pc-hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,168,150,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,168,150,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.pc-hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,150,.12) 0%, transparent 70%);
  right: 5%; top: 10%; pointer-events: none;
}
.pc-hero-left { padding: 80px 0 80px 7%; position: relative; z-index: 2; }
.pc-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,168,150,.12); border: 1px solid rgba(0,168,150,.25);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 32px;
}
.pc-hero-badge span { font-size: 12px; font-weight: 500; color: var(--teal-l); letter-spacing: 1.5px; text-transform: uppercase; }
.pc-hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(46px, 5.5vw, 80px);
  color: var(--white); line-height: 1.05; margin-bottom: 24px;
}
.pc-hero-title em { font-style: italic; color: var(--teal-l); }
.pc-hero-lead { font-size: 17px; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.8; max-width: 480px; margin-bottom: 44px; }
.pc-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.pc-hero-stats { display: flex; gap: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.pc-hero-stat-num { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--teal-l); line-height: 1; display: block; }
.pc-hero-stat-label { font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; display: block; }
.pc-hero-right { position: relative; z-index: 2; height: 100vh; display: flex; align-items: center; justify-content: center; padding-right: 7%; }
.pc-hero-visual {
  width: 420px; height: 420px; position: relative;
}
.pc-hero-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(0,168,150,.15);
  animation: pc-spin 30s linear infinite;
}
.pc-hero-ring:nth-child(1) { inset: 0; }
.pc-hero-ring:nth-child(2) { inset: 30px; animation-duration: 20s; animation-direction: reverse; border-style: dashed; }
.pc-hero-ring:nth-child(3) { inset: 60px; animation-duration: 40s; }
.pc-hero-center {
  position: absolute; inset: 90px;
  background: rgba(0,168,150,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,168,150,.2);
}
.pc-hero-center svg { width: 80px; height: 80px; fill: var(--teal); opacity: .7; }
.pc-hero-float-tag {
  position: absolute; background: var(--white);
  border-radius: var(--r-md); padding: 10px 14px;
  box-shadow: var(--shadow-md); font-size: 12px; font-weight: 500; color: var(--navy);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.pc-hero-float-tag .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
@keyframes pc-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── Highlights strip ── */
.pc-highlights-strip { background: var(--off-white); border-top: 1px solid var(--silver); border-bottom: 1px solid var(--silver); }
.pc-highlights-inner { display: flex; gap: 0; }
.pc-highlight-item {
  flex: 1; display: flex; align-items: center; gap: 16px;
  padding: 28px 32px; border-right: 1px solid var(--silver);
  transition: var(--transition);
}
.pc-highlight-item:last-child { border-right: none; }
.pc-highlight-item:hover { background: var(--white); }
.pc-highlight-icon { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--teal-l); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.pc-highlight-text strong { font-size: 15px; font-weight: 600; color: var(--navy); display: block; }
.pc-highlight-text span { font-size: 13px; color: var(--text-light); }

/* ── Therapeutic areas ── */
.pc-areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
.pc-area-card {
  background: var(--white); border: 1px solid var(--silver);
  border-radius: var(--r-lg); padding: 32px 24px;
  transition: var(--transition); position: relative; overflow: hidden;
  cursor: pointer;
}
.pc-area-card::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.pc-area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-l); }
.pc-area-card:hover::after { transform: scaleX(1); }
.pc-area-icon { font-size: 40px; margin-bottom: 16px; line-height: 1; display: block; }
.pc-area-name { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.pc-area-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.pc-area-count { font-size: 11px; font-weight: 600; color: var(--teal); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 14px; }

/* ── About teaser ── */
.pc-about-teaser { background: var(--navy); padding: 100px 0; position: relative; overflow: hidden; }
.pc-about-teaser::before {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 50%;
  background: url("data:image/svg+xml,%3Csvg width='400' height='600' viewBox='0 0 400 600' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='350' cy='300' r='280' fill='none' stroke='%2300A896' stroke-opacity='0.06' stroke-width='1'/%3E%3Ccircle cx='350' cy='300' r='200' fill='none' stroke='%2300A896' stroke-opacity='0.06' stroke-width='1'/%3E%3Ccircle cx='350' cy='300' r='120' fill='none' stroke='%2300A896' stroke-opacity='0.06' stroke-width='1'/%3E%3C/svg%3E") right center/contain no-repeat;
}
.pc-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.pc-about-list { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.pc-about-list-item { display: flex; gap: 16px; align-items: flex-start; }
.pc-about-list-num { font-family: 'Space Mono', monospace; font-size: 13px; color: var(--teal); background: rgba(0,168,150,.1); border: 1px solid rgba(0,168,150,.2); width: 36px; height: 36px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pc-about-list-text strong { font-size: 15px; font-weight: 600; color: var(--white); display: block; margin-bottom: 4px; }
.pc-about-list-text span { font-size: 13px; color: rgba(255,255,255,.5); }
.pc-about-img-placeholder {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl); height: 460px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; color: rgba(255,255,255,.2);
  font-size: 13px; font-style: italic; position: relative; overflow: hidden;
}
.pc-about-img-placeholder::before { content: "📸"; font-size: 48px; opacity: .3; font-style: normal; }

/* ── News/awards strip ── */
.pc-awards-strip { background: var(--off-white); border-top: 1px solid var(--silver); }
.pc-awards-inner { display: flex; gap: 48px; align-items: center; padding: 32px 0; flex-wrap: wrap; }
.pc-awards-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); white-space: nowrap; flex-shrink: 0; }
.pc-award-badge { display: flex; align-items: center; gap: 10px; opacity: .5; transition: var(--transition); }
.pc-award-badge:hover { opacity: 1; }
.pc-award-badge svg { width: 28px; height: 28px; fill: var(--navy); }
.pc-award-name { font-size: 13px; font-weight: 600; color: var(--navy); }

/* ══════════════════════════════════════════════
   COMPANY PROFILE — inner pages
   ══════════════════════════════════════════════ */
.pc-company-nav {
  background: var(--white); border-bottom: 1px solid var(--silver);
  position: sticky; top: 72px; z-index: 800;
}
.pc-company-nav-inner { display: flex; overflow-x: auto; gap: 0; }
.pc-company-nav-link {
  padding: 16px 22px; font-size: 13px; font-weight: 500;
  color: var(--text-mid); white-space: nowrap; border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.pc-company-nav-link:hover, .pc-company-nav-link.active { color: var(--teal); border-bottom-color: var(--teal); }

/* About Us two-col */
.pc-about-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.pc-about-sidebar { position: sticky; top: 160px; }
.pc-sidebar-card {
  background: var(--off-white); border: 1px solid var(--silver);
  border-radius: var(--r-lg); padding: 32px 28px; margin-bottom: 20px;
}
.pc-sidebar-card-title { font-family: 'DM Serif Display', serif; font-size: 17px; color: var(--navy); margin-bottom: 16px; }
.pc-sidebar-list { display: flex; flex-direction: column; gap: 12px; }
.pc-sidebar-list-item { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-mid); padding-bottom: 12px; border-bottom: 1px solid var(--silver); }
.pc-sidebar-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.pc-sidebar-list-item strong { color: var(--navy); font-weight: 600; }

/* Story timeline */
.pc-timeline { position: relative; padding-left: 40px; }
.pc-timeline::before { content: ""; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--teal), var(--silver)); }
.pc-timeline-item { position: relative; margin-bottom: 48px; }
.pc-timeline-dot {
  position: absolute; left: -40px; top: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.pc-timeline-dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.pc-timeline-year { font-family: 'Space Mono', monospace; font-size: 13px; color: var(--teal); font-weight: 400; margin-bottom: 6px; }
.pc-timeline-title { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.pc-timeline-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* People grid */
.pc-people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pc-person-card { border-radius: var(--r-lg); overflow: hidden; background: var(--white); border: 1px solid var(--silver); transition: var(--transition); }
.pc-person-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pc-person-photo {
  height: 280px; background: linear-gradient(135deg, var(--silver) 0%, var(--silver2) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 64px; opacity: .4;
  position: relative;
}
.pc-person-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,30,61,.7) 0%, transparent 50%);
}
.pc-person-info { padding: 22px 24px; }
.pc-person-name { font-family: 'DM Serif Display', serif; font-size: 19px; color: var(--navy); margin-bottom: 4px; }
.pc-person-title { font-size: 12px; font-weight: 600; color: var(--teal); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.pc-person-bio { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* R&D section */
.pc-rd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pc-rd-card {
  background: var(--white); border: 1px solid var(--silver); border-radius: var(--r-lg); padding: 36px 32px;
  position: relative; overflow: hidden; transition: var(--transition);
}
.pc-rd-card:hover { box-shadow: var(--shadow-md); }
.pc-rd-number { font-family: 'Space Mono', monospace; font-size: 72px; color: var(--silver); position: absolute; top: 16px; right: 24px; line-height: 1; }
.pc-rd-icon { font-size: 36px; margin-bottom: 20px; }
.pc-rd-title { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.pc-rd-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* Mission/Vision */
.pc-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pc-mv-card-mission { background: var(--navy); }
.pc-mv-card-vision { background: var(--teal); }
.pc-mv-card { border-radius: var(--r-xl); padding: 52px 44px; }
.pc-mv-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.pc-mv-label::before { content: ""; width: 24px; height: 1px; background: rgba(255,255,255,.3); }
.pc-mv-title { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.pc-mv-text { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.8; }
.pc-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.pc-value-item { text-align: center; padding: 32px 20px; background: var(--off-white); border-radius: var(--r-lg); border: 1px solid var(--silver); transition: var(--transition); }
.pc-value-item:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.pc-value-icon { font-size: 32px; margin-bottom: 14px; }
.pc-value-name { font-family: 'DM Serif Display', serif; font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.pc-value-desc { font-size: 12px; color: var(--text-light); }

/* Environmental */
.pc-env-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pc-env-card { border-radius: var(--r-lg); padding: 36px 28px; border: 1px solid var(--silver); transition: var(--transition); }
.pc-env-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pc-env-stat-num { font-family: 'DM Serif Display', serif; font-size: 48px; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.pc-env-stat-label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-bottom: 16px; }

/* Caution/Alert */
.pc-caution-box {
  background: #FFF9F0; border: 1px solid rgba(230,126,34,.25);
  border-radius: var(--r-lg); padding: 32px 36px; display: flex; gap: 20px; align-items: flex-start;
}
.pc-caution-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.pc-caution-title { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--warn); margin-bottom: 10px; }
.pc-caution-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* Manufacturing */
.pc-facility-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.pc-facility-card { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--silver); }
.pc-facility-img { height: 220px; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 48px; opacity: .3; }
.pc-facility-body { padding: 24px 26px; }
.pc-facility-name { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.pc-facility-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pc-facility-spec { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; background: var(--off-white); color: var(--teal); border: 1px solid var(--teal-l); }

/* ══════════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════════ */
.pc-products-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.pc-filter-btn { padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--text-mid); border: 1.5px solid var(--silver); transition: var(--transition); cursor: pointer; background: var(--white); }
.pc-filter-btn:hover, .pc-filter-btn.active { border-color: var(--teal); color: var(--teal); background: rgba(0,168,150,.05); }
.pc-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pc-product-card { border-radius: var(--r-lg); overflow: hidden; background: var(--white); border: 1px solid var(--silver); transition: var(--transition); display: flex; flex-direction: column; }
.pc-product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--teal-l); }
.pc-product-img { height: 200px; background: linear-gradient(135deg, var(--off-white), var(--silver)); display: flex; align-items: center; justify-content: center; font-size: 56px; position: relative; }
.pc-product-category { position: absolute; top: 14px; left: 14px; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; background: var(--navy); color: var(--teal-l); }
.pc-product-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.pc-product-generic { font-size: 11px; color: var(--teal); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.pc-product-name { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.pc-product-indication { font-size: 13px; color: var(--text-light); line-height: 1.6; flex: 1; }
.pc-product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--silver); }
.pc-product-strength { font-size: 12px; font-weight: 600; color: var(--text-mid); font-family: 'Space Mono', monospace; }
.pc-product-link { font-size: 12px; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 4px; }
.pc-product-link:hover { color: var(--teal-d); }

/* Product detail */
.pc-product-detail-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.pc-product-sidebar { position: sticky; top: 160px; }
.pc-product-img-main { background: var(--off-white); border-radius: var(--r-xl); height: 320px; display: flex; align-items: center; justify-content: center; font-size: 88px; margin-bottom: 20px; border: 1px solid var(--silver); }
.pc-product-meta-card { background: var(--white); border: 1px solid var(--silver); border-radius: var(--r-lg); padding: 24px; }
.pc-product-meta-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--silver); font-size: 13px; }
.pc-product-meta-row:last-child { border-bottom: none; }
.pc-product-meta-key { color: var(--text-light); font-weight: 400; }
.pc-product-meta-val { color: var(--navy); font-weight: 600; font-family: 'Space Mono', monospace; font-size: 12px; text-align: right; max-width: 55%; }
.pc-product-content h3 { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 14px; }
.pc-product-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--silver); }
.pc-product-section:last-child { border-bottom: none; }
.pc-product-section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.pc-chem-structure { background: var(--off-white); border: 1px solid var(--silver); border-radius: var(--r-md); padding: 32px; text-align: center; font-family: 'Space Mono', monospace; color: var(--text-light); font-size: 13px; margin: 16px 0; line-height: 2; }

/* Side effects tables */
.pc-se-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.pc-se-table th { background: var(--navy); color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 12px 16px; text-align: left; font-family: 'DM Sans', sans-serif; }
.pc-se-table td { padding: 12px 16px; font-size: 13px; color: var(--text-mid); border-bottom: 1px solid var(--silver); }
.pc-se-table tr:nth-child(even) td { background: var(--off-white); }
.pc-se-table tr:hover td { background: var(--teal-l); }
.pc-freq-badge { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; }
.pc-freq-common { background: #FDE8E8; color: #C0392B; }
.pc-freq-uncommon { background: #FEF0CD; color: #B7770D; }
.pc-freq-rare { background: #E8F5EE; color: #27AE60; }

/* Dosage table */
.pc-dosage-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.pc-dosage-table th { background: var(--teal); color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 12px 16px; text-align: left; font-family: 'DM Sans', sans-serif; }
.pc-dosage-table td { padding: 12px 16px; font-size: 13px; color: var(--text-mid); border-bottom: 1px solid var(--silver); vertical-align: top; }
.pc-dosage-table tr:nth-child(even) td { background: var(--off-white); }

/* Alert boxes */
.pc-alert { border-radius: var(--r-md); padding: 16px 20px; margin: 16px 0; display: flex; gap: 12px; font-size: 13px; line-height: 1.6; }
.pc-alert-icon { font-size: 18px; flex-shrink: 0; }
.pc-alert-warn { background: #FFF9F0; border: 1px solid rgba(230,126,34,.3); color: var(--warn); }
.pc-alert-danger { background: #FEF0F0; border: 1px solid rgba(192,57,43,.3); color: var(--danger); }
.pc-alert-info { background: #EFF8FF; border: 1px solid rgba(0,168,150,.2); color: var(--teal-d); }

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.pc-contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.pc-contact-info-group { margin-bottom: 36px; }
.pc-contact-info-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.pc-contact-info-line { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-mid); margin-bottom: 8px; }
.pc-contact-info-icon { font-size: 16px; flex-shrink: 0; width: 22px; text-align: center; }
.pc-contact-form-card { background: var(--white); border: 1px solid var(--silver); border-radius: var(--r-xl); padding: 48px 40px; box-shadow: var(--shadow-md); }
.pc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pc-form-group { margin-bottom: 20px; }
.pc-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.pc-form-group input,
.pc-form-group select,
.pc-form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--off-white); border: 1.5px solid var(--silver);
  border-radius: var(--r-sm); font-size: 14px; color: var(--text);
  transition: var(--transition); font-family: 'DM Sans', sans-serif;
  resize: vertical;
}
.pc-form-group input:focus,
.pc-form-group select:focus,
.pc-form-group textarea:focus {
  outline: none; border-color: var(--teal);
  background: var(--white); box-shadow: 0 0 0 3px rgba(0,168,150,.1);
}
.pc-map-placeholder {
  background: var(--silver); border-radius: var(--r-xl); height: 360px; margin-top: 40px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: var(--text-light); font-size: 14px;
  border: 1px solid var(--silver2); overflow: hidden;
}
.pc-map-embed { width: 100%; height: 360px; border-radius: var(--r-xl); border: 1px solid var(--silver); margin-top: 40px; overflow: hidden; }
.pc-map-embed iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%); }
.pc-branch-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.pc-branch-card { background: var(--off-white); border: 1px solid var(--silver); border-radius: var(--r-lg); padding: 24px 22px; transition: var(--transition); }
.pc-branch-card:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.pc-branch-tag { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; display: block; }
.pc-branch-name { font-family: 'DM Serif Display', serif; font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.pc-branch-addr { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
#pc-footer { background: var(--navy); padding: 72px 0 0; }
.pc-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.pc-footer-brand-text { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.8; margin-top: 16px; max-width: 280px; }
.pc-footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.pc-footer-link { display: block; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 10px; transition: var(--transition); }
.pc-footer-link:hover { color: var(--teal-l); padding-left: 4px; }
.pc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.pc-footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.pc-footer-legal { display: flex; gap: 20px; }
.pc-footer-legal a { font-size: 12px; color: rgba(255,255,255,.25); transition: var(--transition); }
.pc-footer-legal a:hover { color: var(--teal-l); }

/* ══════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════ */
.pc-text-center { text-align: center !important; }
.pc-text-teal { color: var(--teal) !important; }
.pc-bg-navy { background: var(--navy) !important; }
.pc-bg-off { background: var(--off-white) !important; }
.pc-mt-sm { margin-top: 20px; }
.pc-mt-md { margin-top: 40px; }
.pc-mt-lg { margin-top: 64px; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  #pc-hero { grid-template-columns: 1fr; min-height: auto; }
  .pc-hero-right { display: none; }
  .pc-hero-left { padding: 60px 5%; }
  .pc-about-grid, .pc-about-content-grid, .pc-product-detail-layout, .pc-contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .pc-about-sidebar, .pc-product-sidebar { position: static; }
  .pc-areas-grid { grid-template-columns: repeat(2,1fr); }
  .pc-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .pc-nav { display: none; }
  .pc-nav-cta { display: none; }
  .pc-hamburger { display: flex; }
  .pc-container, .pc-container-wide { padding: 0 20px; }
  .pc-section { padding: 64px 0; }
  .pc-areas-grid, .pc-people-grid, .pc-products-grid, .pc-branch-cards, .pc-values-grid, .pc-env-grid, .pc-mv-grid, .pc-rd-grid, .pc-facility-grid { grid-template-columns: 1fr; }
  .pc-highlights-inner { flex-direction: column; }
  .pc-hero-stats { flex-direction: column; gap: 20px; }
  .pc-form-row { grid-template-columns: 1fr; }
  .pc-footer-grid { grid-template-columns: 1fr; }
  .pc-footer-bottom { flex-direction: column; text-align: center; }
}
