 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #003087;
  --navy-dark:   #001f5c;
  --navy-mid:    #1a4a9e;
  --blue-light:  #e8eef8;
  --blue-pale:   #f0f4fb;
  --blue-bg:     #eaf0f8;
  --accent:      #0057c8;
  --teal:        #00a5b5;
  --gray-100:    #f5f6f8;
  --gray-200:    #e8eaed;
  --gray-400:    #9aa0ab;
  --gray-600:    #5c6370;
  --gray-800:    #2d3139;
  --white:       #ffffff;
  --font-head:   'Source Serif 4', Georgia, serif;
  --font-body:   'Source Sans 3', 'Helvetica Neue', sans-serif;
  --shadow:      0 2px 12px rgba(0,48,135,0.10);
  --shadow-md:   0 4px 24px rgba(0,48,135,0.14);
  --radius:      4px;
}
/* product */
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); font-size: 15px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── LAYOUT HELPERS ── */
.container      { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; border: 2px solid transparent;
}
.btn-primary  { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-mid); }
.btn-outline  { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--blue-light); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--accent);
  transition: gap 0.2s;
}
.arrow-link:hover { gap: 12px; }
.arrow-link .arr-circle {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 13px;
}

/* ── UTILITY BAR ── */
.util-bar { background: var(--navy-dark); padding: 6px 0; font-size: 12px; color: rgba(255,255,255,0.7); }
.util-bar .inner { display: flex; justify-content: space-between; align-items: center; }
.util-links { display: flex; gap: 20px; }
.util-links a { color: rgba(255,255,255,0.75); transition: color 0.15s; }
.util-links a:hover { color: #fff; }

/* ── MAIN NAV ── */
.main-nav { background: var(--white); border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.main-nav .inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { font-family: var(--font-head); font-size: 22px; font-weight: 600; color: var(--navy); letter-spacing: -0.02em; }
.logo span { font-style: italic; font-weight: 300; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a { padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--gray-800); border-radius: var(--radius); transition: background 0.15s, color 0.15s; display: flex; align-items: center; gap: 4px; }
.nav-links a:hover { background: var(--blue-light); color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-icon-btn { width: 36px; height: 36px; border-radius: var(--radius); border: none; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--gray-600); transition: background 0.15s; }
.nav-icon-btn:hover { background: var(--blue-light); }
.btn-login { background: var(--navy); color: #fff; padding: 7px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 600; border: none; cursor: pointer; transition: background 0.2s; }
.btn-login:hover { background: var(--navy-mid); }

/* ── SEARCH BAR ── */
.search-bar { background: var(--gray-100); border-bottom: 1px solid var(--gray-200); padding: 10px 0; }
.search-inner { display: flex; align-items: center; gap: 10px; }
.search-inner input { flex: 1; border: none; background: transparent; font-family: var(--font-body); font-size: 13px; color: var(--gray-800); outline: none; }
.search-inner input::placeholder { color: var(--gray-400); }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 12px 0; font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: 0.4; }

/* ── SAVE TO LIST ── */
.save-row { display: flex; justify-content: flex-end; padding: 6px 0 12px; }
.save-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-400); cursor: pointer; transition: color 0.15s; background: none; border: none; font-family: var(--font-body); }
.save-btn:hover { color: var(--accent); }

/* ── HERO LAYOUT (sidebar + content) ── */
.hero-section { padding: 32px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }

/* Sidebar */
.hero-sidebar {}
.sidebar-label { background: var(--navy); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 2px 2px 0 0; }
.sidebar-card { border: 1px solid var(--gray-200); border-top: none; border-radius: 0 0 4px 4px; overflow: hidden; }
.sidebar-title { background: var(--navy); color: #fff; padding: 12px 14px; }
.sidebar-title h3 { font-family: var(--font-head); font-size: 14px; font-weight: 600; line-height: 1.35; }
.sidebar-nav { list-style: none; }
.sidebar-nav li a { display: flex; align-items: center; gap: 8px; padding: 10px 14px; font-size: 13px; color: var(--gray-800); border-bottom: 1px solid var(--gray-200); transition: background 0.15s, color 0.15s; line-height: 1.3; }
.sidebar-nav li a:hover { background: var(--blue-pale); color: var(--navy); }
.sidebar-nav li.active a { color: var(--navy); font-weight: 600; background: var(--blue-pale); }
.sidebar-nav li:last-child a { border-bottom: none; }
.sidebar-nav li a .sn-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--navy); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.sidebar-nav li a .sn-icon svg { width: 10px; height: 10px; }
.sidebar-nav li.active a .sn-icon { background: var(--accent); }

/* Hero content */
.hero-content {}
.hero-content h1 { font-family: var(--font-head); font-size: 38px; font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 22px; letter-spacing: -0.02em; }
.hero-content h1 sup { font-size: 20px; }
.hero-content p { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 12px; }
.hero-cta { margin-top: 28px; }

/* ── SYSTEM CONFIG SECTION ── */
.config-section { padding: 56px 0; background: var(--white); border-top: 1px solid var(--gray-200); }
.config-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.config-text h2 { font-family: var(--font-head); font-size: 24px; font-weight: 600; color: var(--gray-800); margin-bottom: 18px; }
.config-text h2 sup { font-size: 13px; }
.config-text h4 { font-size: 14px; font-weight: 700; color: var(--gray-800); margin: 20px 0 6px; }
.config-text p { font-size: 14px; color: var(--gray-600); line-height: 1.75; margin-bottom: 10px; }
.config-text strong { color: var(--gray-800); font-weight: 700; }

/* Download card */
.download-card { border: 1px solid var(--gray-200); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); }
.download-card-thumb { background: var(--navy-dark); padding: 0; position: relative; min-height: 200px; display: flex; flex-direction: column; justify-content: flex-end; }
.download-card-thumb-inner { background: linear-gradient(160deg, #001a3d 0%, #003087 60%, #1a5276 100%); padding: 24px 22px 20px; min-height: 200px; display: flex; flex-direction: column; justify-content: space-between; }
.thumb-topbar { display: flex; align-items: flex-start; justify-content: space-between; }
.thumb-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
.thumb-lonza { font-family: var(--font-head); font-size: 14px; font-style: italic; font-weight: 300; color: #fff; }
.thumb-headline { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: #fff; line-height: 1.3; margin-top: 16px; }
.thumb-sub { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 6px; }
.download-card-body { padding: 18px 20px; }
.download-card-body h4 { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--gray-800); margin-bottom: 8px; line-height: 1.35; }
.download-card-body p { font-size: 13px; color: var(--gray-600); line-height: 1.65; margin-bottom: 14px; }
.download-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--accent); transition: gap 0.2s; }
.download-link:hover { gap: 10px; }

/* ── COST SECTION ── */
.cost-section { background: var(--blue-pale); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 56px 0; }
.cost-section h2 { font-family: var(--font-head); font-size: 24px; font-weight: 600; color: var(--gray-800); margin-bottom: 18px; }
.cost-section p { font-size: 14px; color: var(--gray-600); line-height: 1.8; max-width: 820px; }

/* ── BENEFITS SECTION ── */
.benefits-section { padding: 56px 0; background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.benefits-text h2 { font-family: var(--font-head); font-size: 24px; font-weight: 600; color: var(--gray-800); margin-bottom: 22px; }
.benefits-list { list-style: none; }
.benefits-list li { font-size: 14px; color: var(--gray-600); line-height: 1.7; padding: 8px 0 8px 18px; position: relative; border-bottom: 1px solid var(--gray-200); }
.benefits-list li:last-child { border-bottom: none; }
.benefits-list li::before { content: '–'; position: absolute; left: 0; color: var(--navy); font-weight: 700; }
.benefits-list li strong { color: var(--gray-800); font-weight: 700; }

/* ── RESOURCE CARDS ── */
.resources-section { padding: 48px 0 64px; background: var(--gray-100); }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.res-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
.res-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.res-thumb { min-height: 150px; position: relative; }
.res-thumb-inner { width: 100%; height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 14px 16px; }
.res-thumb-inner.blue1 { background: linear-gradient(135deg, #001f5c 0%, #003087 100%); }
.res-thumb-inner.blue2 { background: linear-gradient(135deg, #004080 0%, #0066cc 100%); }
.res-thumb-inner.blue3 { background: linear-gradient(135deg, #0d2b5e 0%, #1a5276 100%); }
.res-type-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,0.6); }
.res-thumb-title { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: #fff; line-height: 1.35; }
.res-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.res-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); margin-bottom: 6px; }
.res-title { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 8px; }
.res-desc { font-size: 13px; color: var(--gray-600); line-height: 1.65; flex: 1; margin-bottom: 16px; }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); color: #fff; padding: 56px 0 24px; }
.footer-logo { font-family: var(--font-head); font-size: 26px; font-style: italic; font-weight: 300; color: #fff; margin-bottom: 40px; letter-spacing: -0.02em; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 48px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.6); padding: 3px 0; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-show { font-size: 13px; color: var(--teal); cursor: pointer; margin-top: 6px; display: inline-block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-legal a:hover { color: #fff; }
.footer-legal .sep { color: rgba(255,255,255,0.2); font-size: 12px; margin: 0 4px; }
.footer-social { display: flex; gap: 8px; }
.soc-btn { width: 32px; height: 32px; border-radius: 4px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; cursor: pointer; transition: background 0.15s; }
.soc-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }
.cookie-bar { background: var(--gray-100); border-top: 1px solid var(--gray-200); padding: 8px 32px; font-size: 12px; color: var(--gray-400); }

/* Chevron SVG helper */
.chev { display: inline-block; width: 10px; height: 10px; margin-left: 2px; opacity: 0.5; }

@media (max-width: 960px) {
  .hero-grid, .config-grid, .benefits-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .resources-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 28px; }
}

/*  About Page   */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1565c0;
  --blue-dark:   #0d47a1;
  --blue-light:  #e8f0fe;
  --teal:        #00acc1;
  --green-cta:   #00897b;
  --green-hover: #00796b;
  --dark-footer: #2d3748;
  --dark-footer2:#1a2332;
  --gray-50:     #f8f9fa;
  --gray-100:    #f1f3f4;
  --gray-200:    #e2e6ea;
  --gray-400:    #9aa3af;
  --gray-600:    #5f6b7a;
  --gray-800:    #1f2937;
  --white:       #ffffff;

  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow:    0 2px 16px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 28px rgba(0,0,0,0.14);
  --radius:    6px;
}

html { scroll-behavior: smooth; }
body  { font-family: var(--font-body); color: var(--gray-800); background: var(--white); font-size: 15px; line-height: 1.6; overflow-x: hidden; }
a     { color: inherit; text-decoration: none; }
img   { display: block; max-width: 100%; }

.container      { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ── UTILITY BAR ── */
.util-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 7px 0;
}
.util-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.util-bar a {
  font-size: 12.5px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}
.util-bar a:hover { color: var(--blue); }
.util-bar a.active { color: var(--blue); font-weight: 600; border-bottom: 2px solid var(--blue); padding-bottom: 1px; }
.util-bar .lang-toggle { display: flex; align-items: center; gap: 5px; }

/* ── MAIN NAV ── */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-star {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--gray-800);
  letter-spacing: -0.01em;
}
.logo-icon {
  display: inline-flex;
  align-items: flex-end;
  margin: 0 1px;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-lims {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: 0.04em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--blue-light); color: var(--blue); }
.nav-links a svg { opacity: 0.45; flex-shrink: 0; }

.btn-demo {
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn-demo:hover { background: var(--blue-dark); }
.btn-demo:active { transform: scale(0.98); }

.nav-search-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: border-color 0.15s, background 0.15s;
}
.nav-search-btn:hover { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }

/* ── FLOATING CONTACT TAB ── */
.contact-tab {
  position: fixed;
  right: -56px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  background: var(--green-cta);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 8px 20px;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  z-index: 300;
  transition: right 0.2s;
  transform-origin: center;
}
/* Keep it visible despite rotation */
.contact-tab-wrap {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 300;
}
.contact-tab-inner {
  background: var(--green-cta);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 10px 14px;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  transition: background 0.15s;
  white-space: nowrap;
}
.contact-tab-inner:hover { background: var(--green-hover); }

/* ── HERO SPLIT ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  align-items: stretch;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px 72px 40px;
  max-width: 620px;
}
.hero-text h1 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 400;
  color: var(--gray-800);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-text p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
}

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Placeholder image fill */
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, #c9d6df 0%, #e2ebf0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-image-placeholder::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='%23b0c4ce' fill-opacity='0.25'%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");
}
/* Team people illustration using CSS shapes */
.hero-people {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 40px 30px 0;
  position: relative;
  z-index: 1;
}
.hero-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.person-head {
  border-radius: 50%;
  background: linear-gradient(145deg, #d4a27f, #b8835a);
  flex-shrink: 0;
}
.person-body {
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}
.p1 .person-head { width: 44px; height: 44px; background: linear-gradient(145deg, #e8c99a, #c9a97a); }
.p1 .person-body { width: 56px; height: 110px; background: #5c8fce; }
.p2 .person-head { width: 52px; height: 52px; background: linear-gradient(145deg, #8d6e63, #6d4c41); }
.p2 .person-body { width: 64px; height: 130px; background: #2c3e6e; }
.p3 .person-head { width: 46px; height: 46px; background: linear-gradient(145deg, #ffcc80, #ffa726); }
.p3 .person-body { width: 58px; height: 120px; background: #4a90a4; }
.p4 .person-head { width: 48px; height: 48px; background: linear-gradient(145deg, #bcaaa4, #a1887f); }
.p4 .person-body { width: 60px; height: 115px; background: #8bc34a; }
.p5 .person-head { width: 44px; height: 44px; background: linear-gradient(145deg, #d7ccc8, #bcaaa4); }
.p5 .person-body { width: 56px; height: 108px; background: #e57373; }

/* ── STATS ROW ── */
.stats-section {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid var(--gray-200);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 400;
  color: var(--gray-800);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-600);
}

/* ── TEAM SECTION ── */
.team-section {
  background: var(--gray-50);
  padding: 72px 0 80px;
}
.team-section h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 400;
  color: var(--gray-800);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  background: transparent;
}
.team-card-photo {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--gray-200);
  position: relative;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.team-card:hover .team-card-photo img { transform: scale(1.04); }

/* Photo placeholders using CSS portrait shapes */
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.photo-bg-1 { background: linear-gradient(180deg, #c8d8e8 0%, #b8ccd8 100%); }
.photo-bg-2 { background: linear-gradient(180deg, #d8cfc8 0%, #c8bfb8 100%); }
.photo-bg-3 { background: linear-gradient(180deg, #c8d4c0 0%, #b8c8b0 100%); }
.photo-head {
  border-radius: 50%;
  background: linear-gradient(145deg, #d4a27f, #c09070);
  flex-shrink: 0;
  margin-bottom: 0;
}
.photo-shoulders {
  border-radius: 60% 60% 0 0;
  width: 110%;
  flex-shrink: 0;
}
.ph1 .photo-head { width: 72px; height: 72px; background: linear-gradient(145deg, #e8c4a0, #d4a07a); }
.ph1 .photo-shoulders { height: 130px; background: #6b8ab0; }
.ph2 .photo-head { width: 76px; height: 76px; background: linear-gradient(145deg, #7a6358, #5c4a40); }
.ph2 .photo-shoulders { height: 130px; background: #3a4a70; }
.ph3 .photo-head { width: 70px; height: 70px; background: linear-gradient(145deg, #e0d0b8, #c8b898); }
.ph3 .photo-shoulders { height: 130px; background: #4a7a6a; }

.team-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.team-card p {
  font-size: 14px;
  color: var(--gray-600);
}

/* ── FOOTER ── */
.footer {
  background: var(--dark-footer);
  color: #fff;
  padding: 52px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

/* Footer logo */
.footer-logo-area {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}
.footer-logo-star {
  font-family: var(--font-head);
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.01em;
}
.footer-logo-lims {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.footer-logo-icon svg { width: 20px; height: 20px; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.soc-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.soc-btn:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-col a.demo-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 4px;
}
.footer-col a.demo-link:hover { color: #fff; }

/* ISO Badges */
.iso-badges {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.iso-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
}
.iso-badge .iso-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  color: rgba(255,255,255,0.8);
  line-height: 1;
}
.iso-badge .iso-num {
  font-size: 8px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  line-height: 1;
}

/* Footer bottom bar */
.footer-bottom {
  background: var(--dark-footer2);
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.85); }
.footer-legal .sep {
  color: rgba(255,255,255,0.2);
  margin: 0 4px;
  font-size: 12px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image-placeholder { min-height: 280px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--gray-200); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-text { padding: 48px 24px; }
  .hero-text h1 { font-size: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 40px; }
  .team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .nav-links { display: none; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}
/* blog page  */
 /* ── Google Fonts ───────────────────────────────────────────── */
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

  /* ── Custom Properties ──────────────────────────────────────── */
  :root {
    --ink:        #1a1410;
    --muted:      #7a6e65;
    --rule:       #d4c8bc;
    --cream:      #f9f5f0;
    --accent:     #b5451b;
    --card-bg:    #ffffff;
    --radius:     4px;
    --col-gap:    2rem;
    --font-head:  'Playfair Display', Georgia, serif;
    --font-body:  'Lora', Georgia, serif;
  }

  /* ── Reset & Base ───────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    background: #fff;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
  }

  /* ── Page Wrapper ───────────────────────────────────────────── */
  .blog-grid-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
  }

  /* ── Page Header ────────────────────────────────────────────── */
  .blog-grid-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--rule);
  }

  .blog-grid-header .kicker {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
  }

  .blog-grid-header h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
  }

  .blog-grid-header .tagline {
    margin-top: 0.75rem;
    color: var(--muted);
    font-style: italic;
    font-size: 1.05rem;
  }

  /* ── Grid ───────────────────────────────────────────────────── */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--col-gap);
  }

  @media (max-width: 900px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 580px) {
    .blog-grid { grid-template-columns: 1fr; }
  }

  /* ── Card ───────────────────────────────────────────────────── */
  .blog-card {
    background: var(--card-bg);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
  }

  .blog-card:hover {
    box-shadow: 0 8px 32px rgba(26,20,16,.12);
    transform: translateY(-3px);
  }

  /* ── Thumbnail ──────────────────────────────────────────────── */
  .blog-card__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--rule);
  }

  .blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .blog-card:hover .blog-card__thumb img {
    transform: scale(1.04);
  }

  /* Placeholder when no featured image */
  .blog-card__thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8ded5 0%, #d4c8bc 100%);
    color: var(--muted);
    font-family: var(--font-head);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* ── Category Badge ─────────────────────────────────────────── */
  .blog-card__category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background:#003087;
    color: #fff!important;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
    text-decoration: none;
  }

  /* ── Card Body ──────────────────────────────────────────────── */
  .blog-card__body {
    padding: 1.4rem 1.5rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .blog-card__meta {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .blog-card__meta time { margin-right: 0.6em; }
  .blog-card__meta .sep { margin: 0 0.3em; opacity: 0.4; }

  .blog-card__title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--ink);
  }

  .blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
  }

  .blog-card__title a:hover { color: var(--accent); }

  .blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
  }

  .blog-card__divider {
    height: 1px;
    background: var(--rule);
    border: none;
    margin: 0;
  }

  .blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.5rem 1rem;
    border-top: 1px solid var(--rule);
  }

  .blog-card__author {
    font-size: 0.78rem;
    color: var(--muted);
    font-style: italic;
  }

  .blog-card__read-more {
    font-size: 0.72rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
  }

  .blog-card__read-more:hover {
    border-color: var(--accent);
  }

  /* ── No Posts ───────────────────────────────────────────────── */
  .blog-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--muted);
    font-style: italic;
    font-size: 1.1rem;
  }

  /* ── Pagination ─────────────────────────────────────────────── */
  .blog-pagination {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    height: 2.4rem;
    padding: 0 ;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--ink);
    text-decoration: none;
    background: var(--card-bg);
	    list-style-type: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
  }

  .blog-pagination .page-numbers:hover,
  .blog-pagination .page-numbers.current {
    background: #003087;
    border-color:#003087;
    color: #fff;
  }

  .blog-pagination .page-numbers.dots {
    background: transparent;
    border-color: transparent;
    cursor: default;
  }
