/* =============================================
   AXIA Pharmaceuticals — Static Site Stylesheet
   Modern, Clean, Blue & White Pharma Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Sora:wght@400;600;700;800&display=swap');

:root {
  /* Colours */
  --blue-900: #0a1f44;
  --blue-800: #0d2b5e;
  --blue-700: #1045a0;
  --blue-600: #1a56cc;
  --blue-500: #2d6ef0;
  --blue-400: #5a91f5;
  --blue-100: #deeaff;
  --blue-50:  #f0f6ff;
  --white:    #ffffff;
  --gray-50:  #f7f9fc;
  --gray-100: #eef1f7;
  --gray-200: #d8dfe9;
  --gray-400: #8898b0;
  --gray-700: #374564;
  --gray-900: #111827;

  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Misc */
  --max-width: 1160px;
  --nav-h: 76px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(16,69,160,0.10);
  --shadow-lg: 0 12px 48px rgba(16,69,160,0.16);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--white);
  color: var(--gray-700);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* =========== UTILITIES =========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section       { padding: 96px 0; }
.section-sm    { padding: 64px 0; }
.section-gray  { background: var(--gray-50); }
.section-blue  { background: var(--blue-900); }
.section-mid   { background: var(--blue-50); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.75;
  max-width: 560px;
}
.section-sub.light { color: var(--blue-100); }

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,86,204,0.35);
}
.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,204,0.45);
}
.btn-outline {
  border-color: var(--blue-600);
  color: var(--blue-600);
}
.btn-outline:hover {
  background: var(--blue-600);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--blue-700);
}
.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* =========== NAVBAR =========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--blue-600);
  background: var(--blue-50);
}

/* Dropdown */
.nav-links .has-drop > a::after {
  content: '▾';
  font-size: 10px;
  margin-left: 2px;
}
.drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  list-style: none;
  z-index: 300;
}
.has-drop:hover .drop-menu { display: block; }
.drop-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.drop-menu a:hover { background: var(--blue-50); color: var(--blue-600); }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 24px 28px;
  z-index: 199;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.nav-mobile ul a {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}
.nav-mobile ul a:hover { background: var(--blue-50); color: var(--blue-600); }
.nav-mobile .mobile-sub {
  padding-left: 16px;
  border-left: 2px solid var(--gray-100);
  margin: 4px 0 4px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile .mobile-sub a {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  color: var(--gray-400);
}
.nav-mobile .mobile-sub a:hover { color: var(--blue-600); }

/* =========== MAIN =========== */
main { padding-top: var(--nav-h); }

/* =========== HERO =========== */
.hero {
  position: relative;
  min-height: calc(92vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-900);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  z-index: 0;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-shapes::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,110,240,0.35) 0%, transparent 70%);
}
.hero-shapes::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,69,160,0.4) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,110,240,0.2);
  border: 1px solid rgba(90,145,245,0.3);
  border-radius: 50px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--blue-400);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-badge span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--blue-100);
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--blue-400); }
.hero p {
  font-size: 18px;
  color: var(--blue-100);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Floating stat cards */
.hero-stats {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  min-width: 150px;
}
.stat-card .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-card .num sup { font-size: 18px; }
.stat-card .lbl {
  font-size: 12px;
  color: var(--blue-100);
  margin-top: 4px;
  line-height: 1.4;
}

/* =========== PAGE HERO (inner pages) =========== */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-700) 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: radial-gradient(ellipse at right center, rgba(45,110,240,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--blue-100); }
.page-hero .eyebrow::before { background: var(--blue-400); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 17px;
  color: var(--blue-100);
  max-width: 580px;
  position: relative;
  z-index: 1;
}

/* =========== SERVICE CARDS =========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.service-card p { font-size: 14.5px; color: var(--gray-400); line-height: 1.7; margin-bottom: 20px; }
.service-card .card-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card:hover .card-link { gap: 10px; }

/* =========== ABOUT SPLIT =========== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.split-text .eyebrow { margin-bottom: 10px; }
.split-text p {
  color: var(--gray-400);
  margin-bottom: 18px;
  line-height: 1.8;
}

/* =========== FEATURES / WHY CHOOSE =========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.feature-check {
  width: 36px; height: 36px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 16px;
}
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.feature-item p { font-size: 13.5px; color: var(--gray-400); line-height: 1.6; }

/* =========== STATS STRIP =========== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 64px;
}
.stat-item {
  padding: 40px 32px;
  text-align: center;
  background: rgba(255,255,255,0.04);
}
.stat-item .num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-item .num span { font-size: 28px; }
.stat-item .lbl {
  font-size: 13px;
  color: var(--blue-100);
  margin-top: 8px;
  line-height: 1.5;
}

/* =========== PRODUCTS PAGE =========== */
.product-section { margin-bottom: 72px; }
.product-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-section-title .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 3px 10px;
  border-radius: 50px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--blue-100); }
.product-card-img {
  background: var(--gray-50);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}
.product-card-img img { max-height: 130px; width: auto; object-fit: contain; }
.product-card-body {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--gray-100);
}
.product-card-cat {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 4px;
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}

/* Top brands banner */
.brands-banner {
  background: var(--blue-50);
  border-radius: var(--radius);
  padding: 32px 40px;
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.brands-banner .label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  white-space: nowrap;
}
.brands-scroll {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.brands-scroll img { height: 36px; width: auto; object-fit: contain; }

/* =========== CAREERS =========== */
.career-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.career-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.career-card-img img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.career-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.career-card-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.career-card-body p { font-size: 14px; color: var(--gray-400); margin-bottom: 24px; line-height: 1.7; }
.career-tag {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* =========== VALUES =========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.value-icon { font-size: 32px; margin-bottom: 12px; }
.value-card h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.value-card p { font-size: 12.5px; color: var(--blue-100); line-height: 1.6; }

/* =========== CONTACT =========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(45,110,240,0.12); }
.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-head {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.contact-info > p { color: var(--gray-400); margin-bottom: 8px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--blue-600);
}
.contact-detail-text h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-600);
  margin-bottom: 4px;
}
.contact-detail-text p, .contact-detail-text a {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}
.contact-detail-text a:hover { color: var(--blue-600); }
.contact-map {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--gray-100);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* =========== FOOTER =========== */
footer {
  background: var(--blue-900);
  color: var(--blue-100);
}
.footer-top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img { height: 40px; margin-bottom: 20px; filter: brightness(10); }
.footer-brand p {
  font-size: 14px;
  color: var(--blue-100);
  line-height: 1.75;
  opacity: 0.75;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(222,234,255,0.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(222,234,255,0.45);
}
.footer-bottom a { color: var(--blue-400); }

/* =========== ABOUT PAGE SPECIFIC =========== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.vm-card {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--blue-600);
  border-radius: 2px 0 0 2px;
}
.vm-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.vm-card p { color: var(--gray-700); line-height: 1.75; }

/* =========== SERVICES PAGE =========== */
.service-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-section:last-child { border-bottom: none; }
.service-section-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.service-section-label {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.service-section-label h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-section-content p {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* =========== PILL TABS (products nav) =========== */
.pill-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 6px;
  background: var(--gray-50);
  border-radius: 50px;
  border: 1px solid var(--gray-100);
  width: fit-content;
}
.pill-nav a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  padding: 8px 20px;
  border-radius: 50px;
  transition: all var(--transition);
}
.pill-nav a:hover { color: var(--blue-600); }
.pill-nav a.active {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(26,86,204,0.3);
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  .hero-stats { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .service-section-inner { grid-template-columns: 1fr; gap: 24px; }
  .service-section-label { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section { padding: 64px 0; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split img { height: 300px; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .career-cards { grid-template-columns: 1fr; }
  .career-card { grid-template-columns: 1fr; }
  .career-card-img img { height: 200px; }
  .vm-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .brands-banner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .pill-nav { border-radius: var(--radius); width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
