/* Sucantis Biotech — Pharma Manufacturing */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #0a2430;
  --ink-soft: #134e5e;
  --cyan: #06b6d4;
  --cyan-light: #cffafe;
  --cyan-deep: #0891b2;
  --teal: #0d9488;
  --teal-deep: #0f766e;
  --teal-bright: #14b8a6;
  --mint: #ecfeff;
  --mint-deep: #a5f3fc;
  --sand: #f0fdfa;
  --cream: #f8fffe;
  --white: #ffffff;
  --muted: #5b7280;
  --line: rgba(10, 36, 48, 0.1);
  --accent: #06b6d4;
  --shadow: 0 20px 50px rgba(8, 145, 178, 0.12);
  --radius: 14px;
  --radius-lg: 20px;
  --nav-h: 80px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.68;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ——— Top bar ——— */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; gap: 1.25rem; }

/* ——— Nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 255, 254, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(8, 36, 48, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.brand-logo {
  height: 52px;
  width: auto;
  max-width: min(280px, 60vw);
  object-fit: contain;
}
.site-footer .brand-logo {
  height: 48px;
  max-width: 240px;
  margin-bottom: 0.75rem;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cyan), var(--teal-deep));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.35);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}
.brand-text span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  position: relative;
  padding: 0.45rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
  background: transparent;
}

.nav-cta {
  margin-left: 0.5rem;
  background: linear-gradient(135deg, var(--teal), var(--cyan-deep)) !important;
  color: #fff !important;
  padding: 0.55rem 1.15rem !important;
  border-radius: 999px !important;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal)) !important;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.45);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.2s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--cyan-deep));
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  box-shadow: 0 14px 32px rgba(13, 148, 136, 0.42);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  border-radius: 999px;
}
.btn-outline:hover { background: var(--mint); }
.btn-accent {
  background: var(--accent);
  color: #fff;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - 32px);
  display: flex;
  align-items: flex-end;
  padding: 4rem 0 5rem;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(8, 55, 70, 0.92) 0%, rgba(13, 148, 136, 0.65) 45%, rgba(8, 40, 55, 0.85) 100%),
    url('https://images.unsplash.com/photo-1582719471384-894fbb16e074?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.15;
  background-image: radial-gradient(circle at 20% 80%, rgba(26,154,140,0.5) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(196,92,38,0.25) 0%, transparent 35%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: fadeUp 1s 0.6s var(--ease) both;
  transition: opacity 0.4s;
}
.hero-scroll-cue.is-hidden { opacity: 0; pointer-events: none; }
.hero-scroll-cue span {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}
.hero h1::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--cyan-light), transparent);
  border-radius: 3px;
}
.hero-content { max-width: 640px; }
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  animation: fadeUp 0.9s var(--ease) both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.95);
  animation: fadeUp 0.9s 0.12s var(--ease) both;
}
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 1.75rem;
  font-weight: 300;
  animation: fadeUp 0.9s 0.22s var(--ease) both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.9s 0.32s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ——— Page hero (inner) ——— */
.page-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(8, 48, 55, 0.92), rgba(13, 90, 85, 0.8)),
    url('https://images.unsplash.com/photo-1579165466949-3180a3d881b9?auto=format&fit=crop&w=1600&q=80') center/cover;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 0.6rem;
  animation: fadeUp 0.7s var(--ease) both;
}
.breadcrumb {
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  animation: fadeUp 0.7s var(--ease) both;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.page-hero p {
  max-width: 520px;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  animation: fadeUp 0.7s 0.1s var(--ease) both;
}

/* ——— Sections ——— */
.section { padding: 5.5rem 0; }
.section-alt {
  background: linear-gradient(180deg, var(--mint) 0%, var(--cream) 100%);
}
.section-dark {
  background: linear-gradient(160deg, var(--ink) 0%, #123545 100%);
  color: #fff;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  border-radius: 2px;
}
.section-dark .section-label { color: var(--teal-bright); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.section-dark .section-lead { color: rgba(255,255,255,0.7); }

/* ——— Reveal ——— */
.reveal {
  opacity: 1;
  transform: none;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ——— Stats ——— */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}
.stat {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.65rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(8, 55, 70, 0.12), 0 1px 0 rgba(255,255,255,0.9) inset;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(8, 55, 70, 0.16);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--teal-deep);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
}
.stat span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

/* ——— Feature / specialization ——— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature {
  padding: 0;
}
.feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  background: var(--mint);
  color: var(--teal);
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.feature p { color: var(--muted); font-size: 0.95rem; }

/* ——— About split ——— */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.split-media {
  position: relative;
  min-height: 420px;
  overflow: visible;
}
.split-media::before {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid var(--mint-deep);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.split-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  border-radius: var(--radius-lg);
  animation: subtleFloat 8s ease-in-out infinite alternate;
  box-shadow: var(--shadow);
}
.pull-quote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--cyan);
  background: linear-gradient(90deg, var(--mint), transparent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--teal-deep);
  line-height: 1.45;
}
@keyframes subtleFloat {
  from { transform: scale(1.02); }
  to { transform: scale(1.06) translateY(-8px); }
}
.split-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(11,31,42,0.35));
}
.split-copy p { color: var(--muted); margin-bottom: 1rem; }
.split-copy .btn { margin-top: 0.75rem; }

.checklist {
  margin: 1.25rem 0 1.5rem;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.4rem 0;
  font-weight: 500;
  font-size: 0.95rem;
}
.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ——— Product / division tiles ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  isolation: isolate;
  transition: transform 0.35s var(--ease);
}
.product-tile:hover { transform: translateY(-4px); }
.product-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 20%, rgba(8,40,48,0.9) 100%),
    var(--tile-img) center/cover;
  transition: transform 0.5s var(--ease);
}
.product-tile:hover::before { transform: scale(1.05); }
.product-tile h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.product-tile p { font-size: 0.88rem; opacity: 0.85; }

/* ——— Cert badges ——— */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.cert-badge {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.3s var(--ease);
}
.cert-badge:hover {
  border-color: var(--teal);
  box-shadow: 0 16px 40px rgba(8, 55, 70, 0.12);
  transform: translateY(-3px);
}
.cert-badge .cert-ring {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--teal);
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  padding: 0.5rem;
}
.cert-badge h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.cert-badge p { font-size: 0.85rem; color: var(--muted); }

/* ——— Location ——— */
.location-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.location-info { padding: 2.5rem; }
.location-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.location-info address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.location-map {
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(13,110,110,0.15), rgba(11,31,42,0.2)),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1000&q=80') center/cover;
}

/* ——— Blog ——— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-card-body { padding: 1.35rem 1.35rem 1.5rem; }
.blog-meta {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-card p { font-size: 0.9rem; color: var(--muted); }

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
}
.contact-details h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.contact-item strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}
.contact-item p, .contact-item a {
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-item a:hover { color: var(--teal); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,110,110,0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
.form-success {
  display: none;
  padding: 1rem;
  background: var(--mint);
  color: var(--teal-deep);
  border: 1px solid var(--mint-deep);
  margin-bottom: 1rem;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ——— CTA band ——— */
.cta-band {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  background:
    linear-gradient(115deg, rgba(8, 55, 60, 0.94), rgba(13, 100, 90, 0.88)),
    url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(26, 154, 140, 0.25), transparent);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}
.cta-band p {
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

/* ——— Footer ——— */
.site-footer {
  background: linear-gradient(165deg, #0a2430 0%, #0f3d4a 55%, #0a2830 100%);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.35rem;
}
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.footer-brand-icon {
  flex-shrink: 0;
  width: 44px;
  height: auto;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}
.footer-brand-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: #fff;
}
.footer-brand-legal {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 0.32rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-brand p { font-size: 0.9rem; margin-top: 0; line-height: 1.65; }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-bright); }
.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

/* ——— Misc ——— */
.prose { max-width: 720px; }
.prose p { color: var(--muted); margin-bottom: 1rem; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 2rem 0 0.75rem;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.timeline {
  border-left: 2px solid var(--mint-deep);
  padding-left: 1.5rem;
  margin-top: 1.5rem;
}
.timeline-item {
  position: relative;
  padding-bottom: 1.75rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.9rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--cream);
}
.timeline-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.timeline-item p { color: var(--muted); font-size: 0.92rem; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: all 0.25s var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--teal), var(--cyan-deep));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.28);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.product-item {
  display: flex;
  gap: 1rem;
  padding: 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  align-items: flex-start;
  transition: border-color 0.2s;
}
.product-item:hover { border-color: var(--teal); }
.product-item .dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  flex-shrink: 0;
}
.product-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.product-item p { font-size: 0.85rem; color: var(--muted); }
.product-item .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--mint);
  padding: 0.15rem 0.5rem;
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .feature-grid,
  .product-grid,
  .blog-grid,
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .split,
  .location-block,
  .contact-grid,
  .two-col,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: calc(var(--nav-h) + 32px) 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { padding: 0.75rem; }
  .nav-cta { margin-left: 0; text-align: center; }
  .hero { min-height: 78vh; padding: 3rem 0 4rem; }
  .form-row,
  .product-list { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .stats,
  .feature-grid,
  .product-grid,
  .blog-grid,
  .cert-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
  :root { --nav-h: 68px; }
  .brand-logo { height: 40px; }
}

/* ——— CDMO-style additions ——— */
.hero-tagline {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(165, 243, 252, 0.35);
  border-radius: 999px;
  animation: fadeUp 0.9s var(--ease) both;
}
.hero-logo {
  max-width: min(440px, 92%);
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.22));
  animation: fadeUp 0.9s var(--ease) both;
}
.hero-brand-lockup {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2.5vw, 1.35rem);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s var(--ease) both;
}
.hero-brand-icon {
  flex-shrink: 0;
  width: clamp(72px, 12vw, 98px);
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
}
.hero-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.hero-brand-line {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.02;
  letter-spacing: 0.055em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.hero-brand-line-main {
  font-size: clamp(1.35rem, 3.6vw, 1.95rem);
}
.hero-brand-line-sub {
  font-size: clamp(1.55rem, 4.2vw, 2.25rem);
  margin-top: 0.12rem;
}
.hero-brand-legal {
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 1.45vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  padding-top: 0.5rem;
  margin-top: 0.42rem;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}
.division-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.division-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.division-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
}
.division-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(8, 55, 70, 0.12);
  border-color: var(--mint-deep);
}
.division-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--mint), var(--white));
  border: 1px solid var(--mint-deep);
  border-radius: 14px;
  color: var(--teal);
}
.division-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.division-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
  color: var(--teal-deep);
}
.division-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.division-card ul {
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.division-card li {
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}
.division-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}
.capacity-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.92rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(8, 55, 70, 0.08);
}
.capacity-table th,
.capacity-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.capacity-table th {
  background: linear-gradient(90deg, var(--teal-deep), var(--cyan-deep));
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.capacity-table tr:last-child td { border-bottom: none; }
.capacity-table td strong { color: var(--teal-deep); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.why-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.09);
}
.why-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cyan-light);
  margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.unit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.unit-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(8, 55, 70, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.unit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(8, 55, 70, 0.12);
}
.unit-card-head {
  background: linear-gradient(135deg, var(--teal-deep), var(--cyan-deep));
  color: #fff;
  padding: 1.25rem 1.5rem;
}
.unit-card-head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.unit-card-head span { font-size: 0.82rem; opacity: 0.85; }
.unit-card-body { padding: 1.5rem; }
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.leader-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.leader-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.leader-card .role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}
.leader-card p { font-size: 0.88rem; color: var(--muted); }
.product-search {
  width: 100%;
  max-width: 420px;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(8, 55, 70, 0.05);
}
.product-search:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}
.product-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(8, 55, 70, 0.06);
}
.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 640px;
}
.product-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}
.product-table th {
  background: var(--mint);
  color: var(--teal-deep);
  font-weight: 600;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--mint-deep);
  white-space: nowrap;
}
.product-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.product-table tbody tr:nth-child(even) td {
  background: rgba(245, 250, 249, 0.85);
}
.product-table tr:hover td { background: var(--sand); }
.product-table .form-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  background: var(--cyan-light);
  color: var(--teal-deep);
  border-radius: 3px;
}
.pdf-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--teal-deep);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.pdf-link:hover {
  border-color: var(--cyan);
  background: var(--mint);
}
.filter-group { margin-bottom: 1rem; }
.filter-group-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.product-count {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.license-detail {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* ——— Premium polish ——— */
.division-card .btn-outline::after {
  content: '→';
  margin-left: 0.35rem;
  transition: transform 0.25s var(--ease);
}
.division-card .btn-outline:hover::after {
  transform: translateX(4px);
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  pointer-events: none;
  transition: width 0.08s linear;
}
.hero-cert-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
  animation: fadeUp 1s 0.45s var(--ease) both;
}
.hero-cert-strip span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}
.trust-strip {
  padding: 2.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}
.trust-strip-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.trust-badge {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-deep);
  padding: 0.5rem 1rem;
  background: var(--mint);
  border: 1px solid var(--mint-deep);
  border-radius: 999px;
}
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--cyan-deep));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.5);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.blog-card {
  border-radius: var(--radius-lg);
}
.contact-form {
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(8, 55, 70, 0.06);
}
.location-block {
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(8, 55, 70, 0.06);
}
@media (max-width: 768px) {
  .hero-scroll-cue { display: none; }
  .trust-strip-inner { flex-direction: column; text-align: center; }
  .suc-ai-toggle-label { display: none; }
  .suc-ai-panel { right: 0.75rem; left: 0.75rem; width: auto; max-width: none; }
}

/* ——— Product search & composition ——— */
.product-search-row { margin-bottom: 0.5rem; }
.product-search-row .product-search { max-width: 100%; margin-bottom: 0.35rem; }
.search-hint { font-size: 0.78rem; margin: 0 0 0.75rem; color: var(--muted); }
.composition-cell { font-size: 0.82rem; color: var(--ink-soft); max-width: 280px; }

/* ——— Certification scans ——— */
.cert-docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.cert-doc {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(8, 55, 70, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.cert-doc:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(8, 55, 70, 0.12);
}
.cert-doc a { display: block; background: #f8faf9; }
.cert-doc img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  padding: 0.75rem;
}
.cert-doc figcaption {
  padding: 1rem 1.15rem 1.2rem;
  border-top: 1px solid var(--line);
}
.cert-doc figcaption strong {
  display: block;
  font-family: var(--font-display);
  color: var(--teal-deep);
  margin-bottom: 0.25rem;
}
.cert-doc figcaption span { font-size: 0.82rem; color: var(--muted); }

/* ——— Company profile gallery ——— */
.profile-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.profile-slide {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(8, 55, 70, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.profile-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(8, 55, 70, 0.12);
}
.profile-slide a { display: block; background: #f8faf9; }
.profile-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.profile-slide figcaption {
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid var(--line);
}
.profile-slide figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--teal-deep);
  margin-bottom: 0.2rem;
}
.profile-slide figcaption span { font-size: 0.78rem; color: var(--muted); line-height: 1.45; }

/* ——— Equipment / partner strip ——— */
.partner-strip {
  padding: 2rem 0;
  background: linear-gradient(180deg, var(--sand) 0%, var(--white) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}
.partner-strip-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  width: 100%;
  text-align: center;
  margin-bottom: -0.5rem;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  opacity: 0.88;
  filter: grayscale(0.15);
  transition: opacity 0.25s, filter 0.25s;
}
.partner-logo:hover { opacity: 1; filter: none; }
.partner-logo img {
  max-height: 52px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ——— Sucantis AI + WhatsApp float ——— */
.suc-float-stack {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}
.suc-wa-float {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.suc-wa-float svg { width: 28px; height: 28px; }
.suc-wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}
.suc-ai-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 0.95rem 0.55rem 0.55rem;
  background: linear-gradient(135deg, var(--teal), var(--cyan-deep));
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.suc-ai-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.48);
}
.suc-ai-toggle-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.suc-ai-panel {
  position: fixed;
  right: 1.15rem;
  bottom: 5.5rem;
  width: min(400px, calc(100vw - 1.5rem));
  max-height: min(560px, calc(100vh - 7rem));
  z-index: 96;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(8, 55, 70, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
.suc-ai-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.suc-ai-head {
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, var(--teal-deep), var(--cyan-deep));
  color: #fff;
  position: relative;
}
.suc-ai-head strong { display: block; font-size: 0.95rem; }
.suc-ai-sub { font-size: 0.72rem; opacity: 0.85; }
.suc-ai-close {
  position: absolute;
  top: 0.5rem;
  right: 0.55rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.suc-ai-messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.85rem;
  background: var(--sand);
  min-height: 220px;
}
.suc-ai-msg {
  max-width: 92%;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  font-size: 0.86rem;
  line-height: 1.45;
  margin-bottom: 0.55rem;
}
.suc-ai-msg-bot {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  max-width: 100%;
  width: 100%;
}
.suc-ai-msg-user {
  background: var(--teal);
  color: #fff;
  margin-left: auto;
  max-width: 88%;
  width: auto;
}
.suc-ai-text {
  margin: 0 0 0.5rem;
}
.suc-ai-product-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0.5rem 0 0.65rem;
}
.suc-ai-product-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.suc-ai-product {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 0.1rem 0.5rem;
  padding: 0.55rem 0.65rem;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.suc-ai-product:hover {
  border-color: var(--cyan);
  background: #fff;
  transform: translateX(2px);
}
.suc-ai-product-name {
  grid-column: 1;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--teal-deep);
  line-height: 1.35;
}
.suc-ai-product-comp {
  grid-column: 1;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.35;
}
.suc-ai-product-meta {
  grid-column: 1;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cyan-deep);
}
.suc-ai-product-arrow {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  color: var(--cyan);
  font-weight: 700;
}
.suc-ai-product-btns {
  display: flex;
  gap: 0.35rem;
  padding-left: 0.15rem;
}
.suc-ai-product-btn {
  flex: 1;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--teal-deep);
  border-radius: 8px;
  padding: 0.35rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.suc-ai-product-btn:hover {
  background: var(--mint);
  border-color: var(--cyan);
}
.suc-ai-product-btn-sales {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.suc-ai-product-btn-sales:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
}
.suc-ai-followup {
  margin: 0.65rem 0 0.25rem;
  padding: 0.55rem 0.65rem;
  background: linear-gradient(135deg, rgba(13,110,110,0.08), rgba(6,182,212,0.06));
  border-left: 3px solid var(--cyan);
  border-radius: 0 8px 8px 0;
  font-size: 0.8rem;
  color: var(--teal-deep);
  line-height: 1.45;
}
.suc-ai-quickbar-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  flex-shrink: 0;
  align-self: center;
  margin-right: 0.15rem;
}
.suc-ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
}
.suc-ai-action {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--mint);
  border: 1px solid var(--mint-deep);
  color: var(--teal-deep);
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.suc-ai-action:hover {
  background: var(--cyan-light);
  border-color: var(--cyan);
}
.suc-ai-chips,
.suc-ai-chips-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.suc-ai-chips-inline { margin-top: 0.65rem; }
.suc-ai-chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--teal-deep);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.suc-ai-chip:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.suc-ai-quickbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem 0;
  overflow-x: auto;
  background: #fff;
  border-top: 1px solid var(--line);
  scrollbar-width: thin;
}
.suc-ai-quickbar[hidden] { display: none; }
.suc-ai-quickbar .suc-ai-chips {
  margin: 0;
  flex-wrap: nowrap;
}
.suc-ai-quickbar .suc-ai-chip {
  white-space: nowrap;
  flex-shrink: 0;
}
.suc-ai-typing {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  width: auto !important;
  max-width: 4rem !important;
  padding: 0.75rem 1rem !important;
}
.suc-ai-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: suc-ai-bounce 1.2s infinite ease-in-out;
}
.suc-ai-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.suc-ai-typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes suc-ai-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
  40% { transform: translateY(-5px); opacity: 1; }
}
.suc-ai-form {
  display: flex;
  gap: 0.45rem;
  padding: 0.65rem;
  border-top: 1px solid var(--line);
  background: #fff;
}
.suc-ai-form input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
}
.suc-ai-form button {
  border: none;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 768px) {
  .cert-docs-grid { grid-template-columns: 1fr; }
  .profile-gallery { grid-template-columns: 1fr; }
  .partner-strip-inner { gap: 1.25rem 2rem; }
  .back-to-top { bottom: 5.5rem; }
}
@media (max-width: 960px) {
  .division-grid,
  .why-grid,
  .unit-grid,
  .leadership-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .division-grid,
  .why-grid,
  .unit-grid,
  .leadership-grid { grid-template-columns: 1fr; }
}
