/* =============================================
   CS GLOBAL MANAGEMENT — MAIN STYLESHEET
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700;800&display=swap');

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

:root {
  --navy:        #0F172A;
  --navy-800:    #1e293b;
  --blue:        #0089CF;
  --blue-dark:   #006fa8;
  --orange:      #f58220;
  --orange-dark: #d96f10;
  --bg:          #F8FAFC;
  --bg-alt:      #EEF4F8;
  --text:        #1a4a7a;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Inter', sans-serif;

  /* Legacy aliases kept for inner pages */
  --red:         #d2232a;
  --light-bg:    #EEF4F8;
  --dark-text:   #1e293b;
  --font:        'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
  background: #fff;
  overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 600; }

/* ---- SCROLL REVEAL ---- */
/* JS adds .will-reveal to opt elements in — so content is always visible if JS fails */
.will-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.will-reveal[data-reveal-delay="1"] { transition-delay: 0.1s; }
.will-reveal[data-reveal-delay="2"] { transition-delay: 0.2s; }
.will-reveal[data-reveal-delay="3"] { transition-delay: 0.3s; }
.will-reveal[data-reveal-delay="4"] { transition-delay: 0.4s; }

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

/* ---- HEADER / NAV ---- */
header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: transform 0.3s ease;
}
header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 92px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 58px;
  width: auto;
  padding-bottom: 6px;
}

.logo-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

nav a:hover {
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.15);
}

/* Contact Us nav item — pill style */
nav li:last-child a {
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
}
nav li:last-child a:hover,
nav li:last-child a:active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Dropdown */
.dropdown { position: relative; padding-bottom: 20px; margin-bottom: -20px; }

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 700;
}

.dropdown > a::after {
  content: '▾';
  font-size: 10px;
  opacity: 0.8;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #0d2a50;
  min-width: 240px;
  border-top: 3px solid var(--blue);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  z-index: 200;
}

.dropdown-menu a {
  display: block;
  padding: 11px 20px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.15s, color 0.15s;
  background: none;
  border-radius: 0;
}

.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:first-child { color: var(--orange); font-weight: 600; }
.dropdown-menu a:hover { background: var(--blue); color: var(--orange); text-decoration: none; }
.dropdown-menu a:active { background: var(--blue); color: var(--orange); }

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(245,130,32,0.3);
}

.btn:hover {
  background: var(--orange-dark);
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245,130,32,0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: none;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  box-shadow: none;
  color: #fff;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: url('../assets/images/vecteezy_industrial-printing-scaled.jpg') center 40% / cover no-repeat;
  padding: 80px 40px;
  overflow: hidden;
}

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

/* Tech grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 25, 60, 0.82) 0%,
    rgba(0, 80, 140, 0.68) 45%,
    rgba(0, 40, 80, 0.25) 75%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero h1 span { color: var(--orange); }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- STATS STRIP ---- */
.stats-strip {
  background: #F1F5F9;
  border-bottom: 1px solid var(--border);
  padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  border-top: 4px solid var(--blue);
  overflow: hidden;
}

/* Grayscale world map underlay */
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/vecteezyspecial-task-map-world-map-background2dp0621_alt-01-scaled-e1758079777278.png') center center / cover no-repeat;
  filter: grayscale(100%);
  opacity: 0.12;
  pointer-events: none;
}

.stats-inner { position: relative; z-index: 1; }

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  cursor: default;
  transition: background 0.2s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg); }

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- SECTION CONTAINERS ---- */
section { padding: 80px 40px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ---- INTRO SECTION ---- */
.intro-section {
  background: var(--bg);
  padding-top: 80px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.intro-text p {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
}

.intro-text p:last-child { margin-bottom: 0; }

.intro-image img {
  border-radius: 12px;
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  object-position: center;
}

.intro-image.large img { max-height: 380px; }

/* Decorated intro image — homepage only */
.intro-image-wrap {
  position: relative;
  padding: 20px 20px 20px 0;
}

/* Blue offset box behind the image */
.intro-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 0;
  bottom: 0;
  background: var(--blue);
  opacity: 0.07;
  border-radius: 16px;
  z-index: 0;
}

/* Orange accent square — bottom-right corner */
.intro-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 72px;
  height: 72px;
  background: var(--orange);
  opacity: 0.18;
  border-radius: 12px;
  z-index: 0;
}

.intro-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 16px 48px rgba(0, 80, 140, 0.14);
  background: var(--bg);
}

/* ---- PROMISE / FEATURES SECTION ---- */
.features-section {
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: default;
}

.feature-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.feature-card .check-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: var(--text);
}

.feature-card strong {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
  font-size: 15.5px;
}

/* ---- SERVICES SECTION ---- */
.services-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Isometric illustration — faint decorative bg, right side */
.services-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 520px;
  height: 520px;
  background: url('../assets/images/vecteezy_industrial-printing-production-isometric-illustration-with_5465989_alt-01-scaled.png') center center / contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.services-section .container { position: relative; z-index: 1; }

/* Invert text colors for dark bg */
.services-section .section-label { color: rgba(255,255,255,0.5); }
.services-section .section-title { color: #fff; }
.services-section .section-lead  { color: rgba(255,255,255,0.6); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, background 0.25s;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--blue);
  background: rgba(0,137,207,0.1);
  box-shadow: 0 0 32px rgba(0,137,207,0.2), 0 4px 16px rgba(0,0,0,0.3);
  transform: translateY(-4px);
  text-decoration: none;
  color: #fff;
}

.service-icon {
  width: 46px;
  height: 46px;
  background: rgba(0,137,207,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}

.service-card:hover .service-icon {
  background: var(--blue);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: #7ec8e8;
  transition: stroke 0.25s;
}

.service-card:hover .service-icon svg {
  stroke: #fff;
}

.service-card span {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.35;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #e06a0a 100%);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal lines for texture */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(255,255,255,0.04) 24px,
    rgba(255,255,255,0.04) 25px
  );
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  color: #fff;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.35;
}

/* For inner pages that don't have .cta-banner-inner */
.cta-banner > h2 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

.cta-banner.orange { background: linear-gradient(135deg, var(--orange) 0%, #e06a0a 100%); }
.cta-banner.purple { background: #6b2d8b; }

/* ---- TABLE/GRID for inner service pages ---- */
.capability-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-top: 22px;
}

.capability-table td:first-child {
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  padding: 18px 20px;
  width: 200px;
  vertical-align: middle;
  border: 2px solid var(--blue);
  border-right: none;
  border-radius: 6px 0 0 6px;
}

.capability-table td:last-child {
  padding: 18px 24px;
  font-size: 14px;
  line-height: 1.6;
  background: #fff;
  border: 2px solid var(--border);
  border-left: none;
  border-radius: 0 6px 6px 0;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #071828 100%);
  padding: 64px 40px 60px;
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture — matches homepage hero */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-breadcrumb {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}

.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.page-hero-breadcrumb a:hover { color: rgba(255,255,255,0.8); }

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.page-hero h2 {
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: var(--font-body);
  line-height: 1.5;
}

/* ---- CONTACT SPLIT LAYOUT ---- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info {
  padding-top: 8px;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.contact-info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,137,207,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
}

.contact-detail-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.contact-detail-text strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-text a {
  color: var(--blue);
}

@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .page-hero { padding: 48px 20px 44px; }
}

/* ---- PRODUCT LIST (General Printing) ---- */
.product-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
  margin-top: 24px;
}

.product-lists ul {
  list-style: none;
  padding: 0;
}

.product-lists ul li {
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

/* ---- CONTACT PAGE ---- */
.contact-section { background: #fff; }

.contact-intro {
  text-align: center;
  margin-bottom: 48px;
}

.contact-intro h1 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
}

.contact-intro p { font-size: 16px; color: var(--text-muted); }

.contact-form-wrap {
  width: 100%;
  padding: 0;
}

.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.contact-form-wrap p.note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy-800);
  font-family: var(--font-head);
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,137,207,0.12);
}

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

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; text-align: center; font-size: 16px; }

/* ---- PHARMA INTRO SPLIT ---- */
.pharma-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.pharma-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 220px;
  background: var(--bg);
}

.pharma-logo-box img { width: 180px; }

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  padding: 56px 40px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-logo img {
  height: 100px;
  width: auto;
  opacity: 0.92;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

.footer-address {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}

.footer-address strong {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-address a {
  color: var(--blue);
  text-decoration: none;
}

.footer-address a:hover { text-decoration: underline; }

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  width: auto;
  height: auto;
  text-decoration: none;
  border-radius: 0;
  transition: opacity 0.2s;
}

.footer-social a:hover { opacity: 0.75; background: none; }

.linkedin-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

.linkedin-label:hover { text-decoration: underline; color: rgba(255,255,255,0.8); }

/* ---- DIVIDER LINE ---- */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-image-wrap { padding: 16px 16px 16px 0; }
  .intro-image-wrap::after { width: 48px; height: 48px; right: -4px; }
  .features-grid { grid-template-columns: 1fr; }
  .product-lists { grid-template-columns: 1fr 1fr; }
  .pharma-intro { grid-template-columns: 1fr; }
  .pharma-logo-box { flex-direction: row; min-width: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-right { text-align: center; }
  .footer-social { justify-content: center; }
}

@media (max-width: 640px) {
  header { padding: 0 20px; }
  .header-inner { height: 76px; }
  section { padding: 56px 20px; }
  .page-hero { padding: 48px 20px 44px; }
  .hero { padding: 60px 20px; min-height: 480px; }
  .hero-container { padding: 0; }
  .cta-banner { padding: 56px 20px; }
  footer { padding: 40px 20px 28px; }
  .product-lists { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .intro-image-wrap::after { display: none; }
  .capability-table { display: block; }
  .capability-table tr { display: flex; flex-direction: column; border-bottom: 1px solid var(--border); padding: 12px 0; }
  .capability-table td { border: none; padding: 2px 0; width: auto !important; font-size: 14px; }
  .capability-table td:first-child { font-weight: 700; color: var(--text); font-size: 14px; }
  nav ul { display: none; }
  nav ul.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px;
    gap: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  nav ul.open li:last-child a {
    border-radius: 6px;
  }
  .hamburger { display: flex; }
  .contact-form-wrap { padding: 0; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { text-align: center; }
  .cta-banner-inner h2 { font-size: clamp(18px, 4vw, 24px); }
}
