/* ================================================================
   S2M Lifescience — style.css ULTRA v4
   Completely unique. Dark-accent glassmorphism + white canvas.
   Inspired by: Vercel, Linear, Mercury — NOT old Bootstrap sites.
================================================================= */

/* ── Google Fonts already loaded via HTML ───────────────────── */
/* DM Sans (headings) + Inter (body) */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Brand */
  --blue:        #1A56F0;
  --blue-light:  #4F80FF;
  --blue-dim:    rgba(26, 86, 240, 0.08);
  --teal:        #00D4AA;
  --teal-dim:    rgba(0, 212, 170, 0.08);
  --violet:      #7C3AED;
  --violet-dim:  rgba(124, 58, 237, 0.08);
  --rose:        #F43F5E;

  /* Surface */
  --bg:          #F4F4F4;
  --bg-white:    #FFFFFF;
  --bg-soft:     #F4F6FB;
  --bg-card:     rgba(255, 255, 255, 0.7);
  --bg-dark:     #080C18;
  --bg-dark2:    #0D1224;

  /* Text */
  --ink:         #0A0E1A;
  --ink-muted:   #5A6278;
  --ink-faint:   #9BA3B8;

  /* Borders */
  --line:        rgba(0, 0, 0, 0.07);
  --line-card:   rgba(255, 255, 255, 0.14);

  /* Sizes */
  --nav-h:       72px;
  --max-w:       1180px;
  --r-sm:        8px;
  --r:           14px;
  --r-lg:        20px;
  --r-xl:        28px;
  --r-pill:      999px;

  /* Shadows */
  --sh-xs:  0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.04);
  --sh-sm:  0 4px 12px rgba(0,0,0,.07);
  --sh-md:  0 8px 32px rgba(0,0,0,.10);
  --sh-lg:  0 20px 60px rgba(0,0,0,.12);
  --sh-blue: 0 8px 32px rgba(26,86,240,.25);

  /* Motion */
  --ease:  cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --t: 0.28s;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; text-rendering: optimizeLegibility; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: lining-nums;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── Scroll Progress Bar ────────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--violet));
  z-index: 1000; transition: width .08s linear;
}

/* ── Container ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-dim); padding: 4px 12px;
  border-radius: var(--r-pill); border: 1px solid rgba(26,86,240,.14);
  margin-bottom: 16px;
}
.label::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: labelPulse 2s infinite; }
@keyframes labelPulse { 0%,100%{opacity:.4}50%{opacity:1} }

h2.display {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.04em;
  color: var(--ink);
}
h2.display em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sub {
  font-size: 1.05rem; color: var(--ink-muted);
  line-height: 1.75; max-width: 560px; margin-top: 12px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 14px; letter-spacing: -.01em;
  transition: all var(--t) var(--ease); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: rgba(255,255,255,.12); transition: opacity var(--t);
}
.btn:hover::after { opacity: 1; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--sh-blue); }
.btn-ghost { background: transparent; color: var(--blue); border: 1.5px solid rgba(26,86,240,.25); }
.btn-ghost:hover { background: var(--blue-dim); border-color: var(--blue); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1a1f35; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(10,14,26,.3); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }
.arrow { transition: transform var(--t); }
.btn:hover .arrow { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  height: var(--nav-h); transition: all var(--t) var(--ease);
}
#navbar::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(250, 251, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t);
}
#navbar.scrolled::before { border-bottom-color: var(--line); }
.nav-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 100%;
  margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
  height: clamp(34px, 4.5vw, 46px);
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  transition: transform var(--t) var(--ease);
}
.logo-img:hover { transform: scale(1.02); }

.footer-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-link {
  padding: 7px 14px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; color: var(--ink-muted);
  transition: all var(--t);
}
.nav-link:hover { background: var(--bg-soft); color: var(--ink); }
.nav-cta {
  background: var(--blue); color: #fff !important;
  padding: 8px 18px; border-radius: var(--r-pill);
  margin-left: 8px;
}
.nav-cta:hover { background: #1245CC !important; box-shadow: var(--sh-blue); transform: translateY(-1px); }

/* Dropdown */
.nav-drop { position: relative; }
.drop-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 7px 14px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500; color: var(--ink-muted);
  transition: all var(--t);
}
.drop-btn:hover { background: var(--bg-soft); color: var(--ink); }
.drop-icon { font-size: 10px; transition: transform var(--t); }
.nav-drop:hover .drop-icon { transform: rotate(180deg); }

.drop-panel {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg-white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: 8px; min-width: 200px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.drop-mega {
  min-width: 520px; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; padding: 12px;
}
.nav-drop:hover .drop-panel { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }

.drop-col-label {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint);
  padding: 4px 8px; margin-bottom: 4px;
}
.drop-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: var(--r-sm);
  font-size: 13.5px; color: var(--ink-muted); font-weight: 500;
  transition: all var(--t);
}
.drop-item:hover { background: var(--blue-dim); color: var(--blue); }
.drop-item-icon { font-size: 15px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--r-sm); }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--t); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════════════════════════
   HERO  — Bento-style with floating cards
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh; padding: calc(var(--nav-h) + 48px) 24px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; background: var(--bg);
}

/* Gradient orbs */
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,86,240,.12), transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,170,.10), transparent 70%);
  bottom: 0; left: -80px;
  animation: orbFloat2 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,.08), transparent 70%);
  top: 40%; left: 40%;
  animation: orbFloat3 12s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,20px) scale(1.05)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-30px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(20px,-20px)} 66%{transform:translate(-20px,15px)} }

/* Grid noise texture */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: .025;
  background-image:
    linear-gradient(rgba(26,86,240,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,86,240,1) 1px, transparent 1px);
  background-size: 60px 60px;
}

#hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero-body {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: center;
}

.hero-left { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-white); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--ink-muted);
  width: fit-content; margin-bottom: 24px; box-shadow: var(--sh-xs);
  opacity: 0; transform: translateY(12px);
}
.badge-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: greenPulse 2s infinite; }
@keyframes greenPulse { 0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,.4)} 70%{box-shadow:0 0 0 8px rgba(34,197,94,0)} }

.hero-h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 800; line-height: 1.0; letter-spacing: -.05em;
  color: var(--ink); margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
}
.hero-h1 .grad {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 60%, var(--violet) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200% auto;
  animation: hGradShift 4s ease infinite alternate;
}
@keyframes hGradShift { from{background-position:0% 50%} to{background-position:100% 50%} }

.hero-p {
  font-size: 1.1rem; color: var(--ink-muted); line-height: 1.75;
  max-width: 480px; margin-bottom: 32px;
  opacity: 0; transform: translateY(12px);
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
  opacity: 0; transform: translateY(10px);
}
.hero-pill {
  background: var(--bg-white); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--ink-muted);
  transition: all var(--t); cursor: default; box-shadow: var(--sh-xs);
}
.hero-pill:hover { background: var(--blue-dim); border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
}

/* Right: floating bento cards */
.hero-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  opacity: 0; transform: translateY(24px);
}

.h-card {
  background: var(--bg-white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px;
  box-shadow: var(--sh-sm); transition: all var(--t);
  position: relative; overflow: hidden;
}
.h-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.h-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0; transition: opacity var(--t);
}
.h-card:hover::before { opacity: 1; }

.h-card-icon { font-size: 24px; margin-bottom: 10px; }
.h-card-num {
  font-family: 'DM Sans', sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--ink); line-height: 1;
}
.h-card-label { font-size: 12px; color: var(--ink-faint); font-weight: 500; margin-top: 4px; }
.h-card-span { grid-column: 1 / -1; }

.h-card-dark {
  background: var(--bg-dark); border-color: rgba(255,255,255,.06);
  color: #fff;
}
.h-card-dark .h-card-num,
.h-card-dark .h-card-label { color: rgba(255,255,255,.9); }
.h-card-dark .h-card-label { color: rgba(255,255,255,.5); }

.h-card-teal {
  background: linear-gradient(135deg, #00D4AA, #059669);
  border-color: transparent; color: #fff;
}
.h-card-teal .h-card-num,
.h-card-teal .h-card-label { color: #fff; }
.h-card-teal .h-card-label { opacity: .8; }

.h-card-blue {
  background: var(--blue); border-color: transparent;
}
.h-card-blue .h-card-num { color: #fff; }
.h-card-blue .h-card-label { color: rgba(255,255,255,.7); }

/* Live badge inside card */
.live-row { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.live-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0; animation: greenPulse 2s infinite; }
.live-text { font-size: 11px; color: var(--ink-faint); font-weight: 500; }

/* Tech tags in card */
.mini-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; }
.mini-tag {
  background: rgba(26,86,240,.07); color: var(--blue);
  border-radius: 4px; font-size: 10px; font-weight: 600;
  padding: 2px 7px;
}

/* ══════════════════════════════════════════════════════════════
   MARQUEE TICKER
══════════════════════════════════════════════════════════════ */
.marquee-section {
  background: var(--bg-dark); padding: 20px 0;
  overflow: hidden; border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 32px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.45); letter-spacing: .03em;
  border-right: 1px solid rgba(255,255,255,.06);
  white-space: nowrap;
}
.marquee-item span { color: rgba(255,255,255,.2); }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════════════════════════════
   ABOUT / STORY
══════════════════════════════════════════════════════════════ */
.about-section { padding: 100px 24px; background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  margin-top: 48px;
}
.about-visual { position: relative; }
.about-main-card {
  background: var(--bg-dark); border-radius: var(--r-xl);
  padding: 40px; color: #fff; position: relative; overflow: hidden;
}
.about-main-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(26,86,240,.3), transparent 70%);
  border-radius: 50%;
}
.about-main-card::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(0,212,170,.2), transparent 70%);
  border-radius: 50%;
}
.about-card-rel { position: relative; z-index: 1; }
.about-quote {
  font-family: 'DM Sans', sans-serif; font-size: 1.6rem; font-weight: 700;
  line-height: 1.3; margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.7) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-card-label { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

/* Floating micro cards */
.about-float {
  position: absolute;
  background: var(--bg-white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 12px 16px;
  box-shadow: var(--sh-md); font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  animation: floatCard 5s ease-in-out infinite;
}
.about-float-1 { top: -16px; right: 24px; color: var(--blue); animation-delay: 0s; }
.about-float-2 { bottom: 16px; left: -16px; color: #059669; animation-delay: 2.5s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* Journey pipeline */
.journey-pipe {
  display: flex; align-items: center; gap: 0;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r); padding: 16px 20px; margin-top: 24px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.jp-step {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 0 12px; flex-shrink: 0;
}
.jp-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-white); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all var(--t);
}
.jp-step.active .jp-dot { background: var(--blue); border-color: var(--blue); box-shadow: 0 0 0 4px rgba(26,86,240,.15); }
.jp-step-label { font-size: 10px; font-weight: 600; color: var(--ink-faint); white-space: nowrap; letter-spacing: .04em; }
.jp-step.active .jp-step-label { color: var(--blue); }
.jp-arrow { color: var(--line); font-size: 16px; flex-shrink: 0; }
.jp-arrow.active { color: var(--blue); }

.about-text .sub { max-width: 100%; }
.about-text p { color: var(--ink-muted); line-height: 1.8; margin-bottom: 16px; }
.about-text p strong { color: var(--ink); }

.strengths { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.strength-chip {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r); padding: 14px; transition: all var(--t);
}
.strength-chip:hover { background: var(--bg-white); box-shadow: var(--sh-sm); transform: translateY(-2px); border-color: var(--blue); }
.sc-icon { font-size: 18px; flex-shrink: 0; }
.sc-title { font-size: 13px; font-weight: 700; color: var(--ink); }
.sc-body { font-size: 12px; color: var(--ink-faint); margin-top: 2px; line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════
   PRODUCTS — Horizontal cards with expand
══════════════════════════════════════════════════════════════ */
.products-section { padding: 100px 24px; background: var(--bg-soft); }
.products-tabs {
  display: flex; gap: 6px; margin: 40px 0 32px; flex-wrap: wrap;
}
.prod-tab {
  padding: 8px 18px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; color: var(--ink-muted);
  border: 1px solid var(--line); background: var(--bg-white);
  transition: all var(--t); cursor: pointer;
}
.prod-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: var(--sh-blue); }

.products-board {
  display: grid; grid-template-columns: 280px 1fr; gap: 16px; align-items: start;
}
.prod-list { display: flex; flex-direction: column; gap: 6px; }
.prod-row {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-white); border: 1.5px solid var(--line);
  border-radius: var(--r); padding: 16px 18px;
  cursor: pointer; transition: all var(--t);
}
.prod-row:hover { border-color: var(--blue); box-shadow: var(--sh-sm); }
.prod-row.active { border-color: var(--blue); background: var(--blue-dim); }
.prod-row-icon { font-size: 20px; flex-shrink: 0; }
.prod-row-text { flex: 1; }
.prod-row-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.prod-row-short { font-size: 12px; color: var(--ink-faint); margin-top: 2px; }
.prod-row-arrow { font-size: 16px; color: var(--ink-faint); transition: transform var(--t); }
.prod-row.active .prod-row-arrow { transform: rotate(90deg); color: var(--blue); }

.prod-detail {
  background: var(--bg-white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 36px;
  display: none;
}
.prod-detail.active { display: block; }
.prod-detail-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.prod-detail-icon {
  width: 56px; height: 56px; border-radius: var(--r);
  background: var(--blue-dim); display: flex; align-items: center;
  justify-content: center; font-size: 28px; flex-shrink: 0;
}
.prod-detail-num { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.prod-detail-name { font-family: 'DM Sans', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
.prod-detail-sub { font-size: 14px; color: var(--ink-muted); margin-top: 4px; }
.prod-detail-body { font-size: 14.5px; color: var(--ink-muted); line-height: 1.8; margin-bottom: 24px; }

.prod-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.prod-chip {
  background: var(--blue-dim); color: var(--blue);
  border: 1px solid rgba(26,86,240,.14);
  border-radius: var(--r-pill); font-size: 12px; font-weight: 600; padding: 5px 13px;
}
.prod-chip.teal { background: var(--teal-dim); color: #059669; border-color: rgba(0,212,170,.2); }
.prod-chip.violet { background: var(--violet-dim); color: var(--violet); border-color: rgba(124,58,237,.2); }

.prod-workflow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  background: var(--bg-soft); border-radius: var(--r); padding: 14px 18px;
  margin-bottom: 20px;
}
.pw-step {
  background: var(--bg-white); border: 1px solid var(--line);
  border-radius: 6px; padding: 4px 10px;
  font-size: 12px; font-weight: 600; color: var(--ink);
}
.pw-arr { color: var(--blue); font-weight: 700; font-size: 14px; }

.deploy-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.deploy-tag {
  background: rgba(5,150,105,.07); color: #059669;
  border: 1px solid rgba(5,150,105,.15);
  border-radius: var(--r-pill); font-size: 12px; font-weight: 600; padding: 4px 11px;
}

/* ══════════════════════════════════════════════════════════════
   TECHNOLOGIES — Bento grid
══════════════════════════════════════════════════════════════ */
.tech-section { padding: 100px 24px; background: var(--bg); }
.tech-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 14px; margin-top: 48px;
}
.t-card {
  background: var(--bg-white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px;
  transition: all var(--t); position: relative; overflow: hidden;
}
.t-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.t-card-wide { grid-column: span 2; }
.t-card-tall { grid-row: span 2; }
.t-card-dark { background: var(--bg-dark); border-color: rgba(255,255,255,.06); }
.t-card-blue { background: var(--blue); border-color: transparent; }
.t-card-gradient {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1060 100%);
  border-color: rgba(255,255,255,.06);
}
.t-icon { font-size: 32px; margin-bottom: 14px; }
.t-title {
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.t-card-dark .t-title,
.t-card-blue .t-title,
.t-card-gradient .t-title { color: #fff; }
.t-body { font-size: 13.5px; color: var(--ink-muted); line-height: 1.65; }
.t-card-dark .t-body,
.t-card-gradient .t-body { color: rgba(255,255,255,.6); }
.t-card-blue .t-body { color: rgba(255,255,255,.8); }
.t-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.t-tag {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  border-radius: 4px; font-size: 10px; font-weight: 600; padding: 3px 8px;
}
.t-tag-light {
  background: var(--blue-dim); color: var(--blue);
  border-radius: 4px; font-size: 10px; font-weight: 600; padding: 3px 8px;
}

/* ══════════════════════════════════════════════════════════════
   HEALTHCARE SOLUTIONS
══════════════════════════════════════════════════════════════ */
.solutions-section { padding: 100px 24px; background: var(--bg-soft); }
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 48px; }
.sol-item {
  background: var(--bg-white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px; transition: all var(--t);
  display: flex; flex-direction: column;
}
.sol-item:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--blue); }
.sol-item:hover .sol-item-icon-wrap { background: var(--blue); }
.sol-item:hover .sol-item-icon { filter: grayscale(0); }
.sol-item-icon-wrap {
  width: 44px; height: 44px; border-radius: var(--r);
  background: var(--bg-soft); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; transition: all var(--t);
}
.sol-item-icon { font-size: 22px; }
.sol-item h3 {
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
}
.sol-item p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.sol-link { font-size: 13px; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 4px; }

.partner-models {
  margin-top: 32px; background: var(--bg-dark);
  border-radius: var(--r-xl); padding: 36px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.pm-left { }
.pm-title {
  font-family: 'DM Sans', sans-serif; font-size: 1.4rem; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.pm-sub { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; }
.pm-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pm-chip {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-pill); padding: 7px 16px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7);
  transition: all var(--t);
}
.pm-chip:hover { background: rgba(26,86,240,.3); border-color: rgba(26,86,240,.4); color: #fff; }

/* ══════════════════════════════════════════════════════════════
   MANUFACTURING
══════════════════════════════════════════════════════════════ */
.mfg-section { padding: 100px 24px; background: var(--bg); }
.mfg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.mfg-steps { display: flex; flex-direction: column; gap: 0; }
.mfg-step {
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid var(--line); position: relative;
}
.mfg-step:last-child { border-bottom: none; }
.mfg-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-dim); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0; font-family: 'DM Sans', sans-serif;
  transition: all var(--t);
}
.mfg-step:hover .mfg-step-num { background: var(--blue); color: #fff; }
.mfg-step-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.mfg-step-body { font-size: 13.5px; color: var(--ink-muted); line-height: 1.65; }

.mfg-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mfg-stat {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px; transition: all var(--t);
}
.mfg-stat:hover { background: var(--bg-white); box-shadow: var(--sh-md); transform: translateY(-2px); }
.mfg-stat:first-child { grid-column: 1/-1; background: var(--bg-dark); border-color: rgba(255,255,255,.06); }
.mfg-stat-num {
  font-family: 'DM Sans', sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--blue); line-height: 1;
}
.mfg-stat:first-child .mfg-stat-num { color: #fff; }
.mfg-stat-label { font-size: 12px; color: var(--ink-faint); margin-top: 6px; font-weight: 500; }
.mfg-stat:first-child .mfg-stat-label { color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════════════════════════════
   RESEARCH
══════════════════════════════════════════════════════════════ */
.research-section { padding: 100px 24px; background: var(--bg-soft); }
.research-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 48px; }
.r-card {
  background: var(--bg-white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px; transition: all var(--t);
  display: flex; flex-direction: column;
}
.r-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.r-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 14px;
}
.r-tag-blue { background: var(--blue-dim); color: var(--blue); }
.r-tag-teal { background: var(--teal-dim); color: #059669; }
.r-tag-violet { background: var(--violet-dim); color: var(--violet); }
.r-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.r-card p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.r-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.r-status { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 4px; }
.r-active { background: rgba(34,197,94,.08); color: #16a34a; }
.r-pipeline { background: rgba(124,58,237,.08); color: var(--violet); }
.r-link { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 4px; }

/* ══════════════════════════════════════════════════════════════
   SPIN CAROUSEL — Partners
══════════════════════════════════════════════════════════════ */
.partners-section { padding: 80px 0; background: var(--bg); }
.partners-section .container { padding: 0 24px; margin-bottom: 40px; }
.spin-outer {
  position: relative; overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.spin-track {
  display: flex; gap: 14px; padding: 20px 40px;
  cursor: grab; user-select: none; width: max-content;
}
.spin-track.dragging { cursor: grabbing; }
.spin-slide { flex-shrink: 0; width: 170px; }
.spin-card {
  background: var(--bg-white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px 16px; text-align: center;
  transition: all .4s var(--ease);
}
.spin-slide.active-slide .spin-card {
  background: var(--blue); border-color: var(--blue);
  transform: scale(1.08); box-shadow: var(--sh-blue);
}
.spin-icon { font-size: 28px; margin-bottom: 8px; }
.spin-name { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.spin-sub { font-size: 11px; color: var(--ink-faint); line-height: 1.4; }
.spin-slide.active-slide .spin-name { color: #fff; }
.spin-slide.active-slide .spin-sub { color: rgba(255,255,255,.7); }

.spin-controls {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px;
}
.spin-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-white); border: 1px solid var(--line);
  font-size: 16px; color: var(--ink); box-shadow: var(--sh-xs);
  transition: all var(--t); display: flex; align-items: center; justify-content: center;
}
.spin-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.spin-hint { font-size: 11px; color: var(--ink-faint); letter-spacing: .08em; }

/* ══════════════════════════════════════════════════════════════
   CAREERS
══════════════════════════════════════════════════════════════ */
.careers-section { padding: 100px 24px; background: var(--bg-soft); }
.careers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 40px 0; }
.career-item {
  background: var(--bg-white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px; transition: all var(--t);
}
.career-item:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--blue); }
.career-icon { font-size: 28px; margin-bottom: 12px; }
.career-item h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.career-item p { font-size: 13px; color: var(--ink-muted); line-height: 1.65; }
.careers-cta {
  background: var(--bg-dark); border-radius: var(--r-xl);
  padding: 52px; text-align: center;
}
.careers-cta h3 {
  font-family: 'DM Sans', sans-serif; font-size: 2rem; font-weight: 800;
  color: #fff; margin-bottom: 12px; letter-spacing: -.03em;
}
.careers-cta p { font-size: 15px; color: rgba(255,255,255,.5); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.careers-cta .btn { margin: 6px; }

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq-section { padding: 100px 24px; background: var(--bg); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.faq-sticky { position: sticky; top: calc(var(--nav-h) + 24px); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; transition: all var(--t);
}
.faq-item:hover { border-color: rgba(26,86,240,.2); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; font-size: 14.5px; font-weight: 600; color: var(--ink);
  text-align: left; gap: 16px; cursor: pointer;
}
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--line); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: all var(--t); color: var(--ink-muted); }
.faq-q[aria-expanded="true"] .faq-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a.open { max-height: 320px; }
.faq-a p { padding: 0 20px 16px; font-size: 14px; color: var(--ink-muted); line-height: 1.8; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact-section { padding: 100px 24px; background: var(--bg-dark); position: relative; overflow: hidden; }
.contact-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,86,240,.15), transparent 70%);
  border-radius: 50%;
}
.contact-section::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,170,.1), transparent 70%);
  border-radius: 50%;
}
.contact-inner { position: relative; z-index: 1; }
.contact-section .label { background: rgba(26,86,240,.2); border-color: rgba(26,86,240,.3); }
.contact-section h2.display { color: #fff; }
.contact-section h2.display em {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.contact-section .sub { color: rgba(255,255,255,.55); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; margin-top: 52px; }
.contact-left { }
.contact-details-block { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.c-detail { display: flex; align-items: flex-start; gap: 14px; }
.c-detail-icon {
  width: 40px; height: 40px; border-radius: var(--r); flex-shrink: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.c-detail-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 4px; }
.c-detail-value { font-size: 14px; color: rgba(255,255,255,.8); font-weight: 500; line-height: 1.5; }
.c-detail-value a { color: rgba(255,255,255,.8); transition: color var(--t); }
.c-detail-value a:hover { color: var(--teal); }
.enq-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.enq-tag {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-pill); padding: 5px 13px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5);
  transition: all var(--t); cursor: default;
}
.enq-tag:hover { background: rgba(26,86,240,.25); border-color: rgba(26,86,240,.4); color: #fff; }

/* Form */
.contact-form {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl); padding: 36px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group { display: flex; flex-direction: column; gap: 6px; opacity: 0; transform: translateY(10px); }
.f-group label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase; }
.f-group input, .f-group select, .f-group textarea {
  padding: 11px 14px; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); background: rgba(255,255,255,.05);
  font-size: 14px; color: #fff; font-family: inherit; outline: none;
  transition: all var(--t); resize: vertical;
}
.f-group input::placeholder, .f-group textarea::placeholder { color: rgba(255,255,255,.2); }
.f-group select { color: rgba(255,255,255,.8); }
.f-group select option { background: var(--bg-dark2); color: #fff; }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  border-color: var(--blue); background: rgba(26,86,240,.08);
  box-shadow: 0 0 0 3px rgba(26,86,240,.15);
}
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.form-success {
  text-align: center; padding: 14px; border-radius: var(--r);
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2);
  color: #4ade80; font-size: 14px; font-weight: 600; margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer { background: var(--bg-dark2); padding: 60px 24px 28px; }
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 28px;
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-name { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.footer-brand-tagline { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-addr { font-size: 12px; color: rgba(255,255,255,.3); line-height: 1.7; margin-top: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.f-col h4 { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.f-col ul { display: flex; flex-direction: column; gap: 8px; }
.f-col a { font-size: 13px; color: rgba(255,255,255,.45); transition: color var(--t); }
.f-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-badges { display: flex; gap: 10px; }
.f-badge {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-pill); padding: 4px 12px; font-size: 11px;
  color: rgba(255,255,255,.35); font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media(max-width:1024px){
  .hero-body { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .products-board { grid-template-columns: 1fr; }
  .prod-detail { display: block; }
  .tech-bento { grid-template-columns: repeat(2,1fr); }
  .t-card-wide { grid-column: span 1; }
  .mfg-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .research-grid { grid-template-columns: repeat(2,1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sticky { position: static; }
  .partner-models { grid-template-columns: 1fr; gap: 24px; }

  /* Mobile & Tablet Navigation */
  .hamburger {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    width: 40px; height: 40px; border-radius: var(--r-sm);
    background: var(--bg-soft); border: 1px solid var(--line);
    cursor: pointer; z-index: 1000;
  }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 16px 20px 24px; opacity: 0; pointer-events: none;
    transform: translateY(-10px); transition: all 0.3s var(--ease);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { opacity: 1; pointer-events: all; transform: translateY(0); }
  .nav-link, .drop-btn {
    padding: 12px 16px; border-radius: var(--r-sm);
    font-size: 15px; font-weight: 600; color: var(--ink);
    width: 100%; text-align: left; display: block;
    transition: background 0.2s ease;
  }
  .nav-link:hover { background: var(--bg-soft); }
  .nav-links .nav-cta {
    display: inline-flex; align-items: center; justify-content: center;
    margin: 12px 0 0 0; width: 100%;
    padding: 14px 24px; font-size: 15px; font-weight: 700;
    border-radius: var(--r-pill); background: var(--blue) !important;
    color: #ffffff !important; text-align: center;
    box-shadow: var(--sh-blue);
  }
  .drop-panel, .drop-mega { display: none; }
}
  .sol-grid { grid-template-columns: 1fr; }
  .solutions-section .sol-grid { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr 1fr; }
  .research-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .about-float { display: none; }
  .careers-cta { padding: 32px 24px; }
  .tech-bento { grid-template-columns: 1fr; }
}
@media(max-width:480px){
  .careers-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.6rem; }
  .marquee-section { display: none; }
}

/* CURSOR GLOW */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 600px; height: 600px;
  background: radial-gradient(circle closest-side, rgba(26,86,240,0.06), transparent);
  transform: translate(calc(var(--x) - 50%), calc(var(--y) - 50%));
  pointer-events: none; z-index: 9999; border-radius: 50%;
  transition: opacity 0.3s; opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }
/* ================================================================
   BIOFARMA-INSPIRED HOMEPAGE REDESIGN
================================================================ */

/* HERO */
.bio-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  overflow: hidden;
  background: var(--bg-white);
}
.bio-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.15; /* subtle background */
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.bio-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.bio-hero-text {
  max-width: 800px;
}
.bio-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
  border: 1px solid rgba(26,86,240,0.1);
}
.bio-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 24px;
}
.bio-title span {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bio-desc {
  font-size: 1.25rem;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 40px;
}
.bio-actions {
  display: flex;
  gap: 16px;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 14px; letter-spacing: -.01em;
  transition: all var(--t) var(--ease);
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* STATS SECTION */
.bio-stats {
  padding: 60px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.stat-item {
  text-align: left;
}
.stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span {
  color: var(--blue);
}
.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 8px;
}
.stat-sub {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ECOSYSTEM CARDS */
.bio-ecosystem {
  padding: 120px 0;
  background: var(--bg-soft);
}
.bio-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 800px;
  margin-bottom: 24px;
}
.bio-section-sub {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 600px;
  margin-bottom: 60px;
}
.eco-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.eco-card {
  position: relative;
  height: 400px;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: var(--ink);
  transition: all var(--t) var(--ease);
}
.eco-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.6s var(--ease);
}
.eco-card:hover .eco-bg {
  transform: scale(1.05);
  opacity: 0.4;
}
.eco-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.eco-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.eco-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.eco-link {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.eco-card:hover .eco-link {
  opacity: 1;
}

/* PARTNER SPIN CAROUSEL */
.bio-partners {
  padding: 100px 0;
  background: var(--bg-white);
  overflow: hidden;
}
.partners-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.bio-badge-small {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--ink-faint); margin-bottom: 16px; display: inline-block;
}
.partners-header h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem; font-weight: 700; color: var(--ink);
  margin-bottom: 16px; line-height: 1.1; letter-spacing: -0.02em;
}
.partners-header p {
  color: var(--ink-muted); font-size: 1.05rem;
}

.spin-carousel {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.spin-track {
  display: flex;
  width: max-content;
  animation: spinScroll 30s linear infinite;
}
.spin-track:hover {
  animation-play-state: paused;
}
.spin-group {
  display: flex;
  gap: 24px;
  padding: 0 12px;
}
.partner-logo {
  padding: 24px 40px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  color: var(--ink-faint);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all var(--t);
}
.partner-logo:hover {
  color: var(--blue);
  border-color: var(--blue-light);
  background: var(--bg-white);
  box-shadow: var(--sh-sm);
}

@keyframes spinScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Scrolls exactly one group length assuming two identical groups */
}

/* GLOW BACKGROUND SECTION */
.bio-glow-section {
  position: relative;
  padding: 150px 0;
  background: var(--bg-white);
  overflow: hidden;
}
.glow-blob {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.4;
}
.blob-pink {
  background: var(--rose);
  top: -100px; left: -100px;
  animation: float 10s ease-in-out infinite;
}
.blob-blue {
  background: var(--blue-light);
  bottom: -100px; right: -100px;
  animation: float 12s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 40px); }
}

.glow-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.glow-text h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.glow-text p {
  font-size: 1.1rem; color: var(--ink-muted); margin-bottom: 40px;
}
.glow-image {
  position: relative;
}
.glow-card {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line);
}
.glow-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.glow-card-text {
  padding: 32px;
}
.glow-card-text .date {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--blue);
  margin-bottom: 12px; display: block;
}
.glow-card-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem; font-weight: 700; margin-bottom: 12px;
}
.glow-card-text p {
  color: var(--ink-muted); font-size: 0.95rem; line-height: 1.5;
}

@media (max-width: 900px) {
  .glow-content { grid-template-columns: 1fr; }
  .bio-hero-text { padding-top: 40px; }
}
/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE (BIOFARMA PREMIUM AESTHETIC)
══════════════════════════════════════════════════════════════ */
/* body { background: #ffffff; } - removed to use root --bg */

/* ── 1. HERO ── */
.about-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.about-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(8,16,36,0.9) 0%, rgba(8,16,36,0.3) 100%);
  z-index: 1;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  margin-top: 60px;
}
.about-hero-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 8px 16px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border-radius: 100px; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.3); color: #fff;
}
.about-hero-title {
  font-family: 'DM Sans', sans-serif; font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 800;
  color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 24px; max-width: 700px;
}
.about-hero-desc {
  font-size: 1.25rem; line-height: 1.6; color: rgba(255,255,255,0.9); max-width: 800px;
}

/* ── 2. OUR STORY ── */
.about-story { padding: 120px 0; background: #ffffff; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.story-text h2 { font-family: 'DM Sans', sans-serif; font-size: 2.8rem; font-weight: 800; color: #0b192c; margin-bottom: 32px; letter-spacing: -0.02em; }
.story-text p { font-size: 1.15rem; color: #5a6278; line-height: 1.7; margin-bottom: 24px; }
.story-image-wrap { position: relative; }
.story-image { width: 100%; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.story-accent { position: absolute; bottom: -30px; left: -30px; background: #1a56f0; color: #fff; padding: 30px; border-radius: 20px; box-shadow: 0 20px 40px rgba(26,86,240,0.2); max-width: 250px; }
.story-accent h4 { font-family: 'DM Sans', sans-serif; font-size: 1.5rem; margin-bottom: 8px; }
.story-accent p { font-size: 0.9rem; opacity: 0.9; }

/* ── 3. TIMELINE (Science to Market) ── */
.about-timeline-section { padding: 120px 0; background: #f4f6fb; }
.timeline-header { text-align: center; max-width: 800px; margin: 0 auto 80px; padding: 0 40px; }
.timeline-header h2 { font-family: 'DM Sans', sans-serif; font-size: 3rem; font-weight: 800; color: #0b192c; margin-bottom: 24px; letter-spacing: -0.02em; }
.timeline-header p { font-size: 1.15rem; color: #5a6278; line-height: 1.6; }

.timeline-wrapper { position: relative; max-width: 900px; margin: 0 auto; padding: 0 40px; }
/* The central line */
.timeline-wrapper::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: linear-gradient(to bottom, #1a56f0 0%, #00d4aa 100%);
  transform: translateX(-50%); opacity: 0.3;
}
.timeline-item { position: relative; display: flex; justify-content: space-between; align-items: center; margin-bottom: 60px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-content { width: 45%; background: #ffffff; padding: 30px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.03); position: relative; }
/* The glowing dot */
.timeline-dot {
  position: absolute; left: 50%; top: 50%; width: 20px; height: 20px; background: #ffffff;
  border: 4px solid #1a56f0; border-radius: 50%; transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(26,86,240,0.1); z-index: 2;
}
/* Alternating sides */
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content h3 { font-family: 'DM Sans', sans-serif; font-size: 1.4rem; font-weight: 700; color: #0b192c; }
.timeline-content .step-num { font-size: 11px; font-weight: 700; color: #1a56f0; letter-spacing: 0.15em; margin-bottom: 8px; display: block; text-transform: uppercase; }

/* ── 4. BENTO (Purpose, Vision, Mission) ── */
.about-bento { padding: 70px 0; background: #ffffff; }

/* ── INFOGRAPHIC CARDS (Solutions Page) ── */
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-card {
  background: transparent;
  border: none;
  padding: 16px 0;
  box-shadow: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #1a56f0;
  transition: background 0.3s ease;
}

.info-card:hover .info-icon-wrapper {
  background: #1a56f0;
  color: #ffffff;
}

.info-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b192c;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 1.05rem;
  color: #5a6278;
  line-height: 1.6;
  margin: 0;
}

.info-card.full-width {
  grid-column: 1 / -1;
}
.bento-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.bento-card { background: #f4f6fb; padding: 50px; border-radius: 24px; border: 1px solid rgba(0,0,0,0.04); }
.bento-card.full-width { grid-column: 1 / -1; }
.bento-card h3 { font-family: 'DM Sans', sans-serif; font-size: 2rem; font-weight: 800; color: #0b192c; margin-bottom: 20px; }
.bento-card p { font-size: 1.15rem; color: #5a6278; line-height: 1.7; }
.mission-list { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mission-list li { display: flex; align-items: flex-start; gap: 16px; font-size: 1.05rem; color: #5a6278; line-height: 1.6; }
.mission-list li::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; min-width: 24px; background: #1a56f0; color: #fff; font-size: 12px; font-weight: bold; border-radius: 50%; margin-top: 4px; }

/* ── 5. STRENGTHS ── */
.about-strengths { padding: 120px 0; background: #081024; color: #fff; }
.strengths-header { text-align: center; max-width: 800px; margin: 0 auto 60px; padding: 0 40px; }
.strengths-header h2 { font-family: 'DM Sans', sans-serif; font-size: 3rem; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.02em; }
.strengths-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.strength-card { background: rgba(255,255,255,0.05); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); }
.strength-card h4 { font-family: 'DM Sans', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; color: #fff; }
.strength-card p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.6; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .timeline-wrapper::before { left: 0; }
  .timeline-dot { left: 0; }
  .timeline-content { width: calc(100% - 40px); margin-left: 40px; }
  .timeline-item:nth-child(even) { flex-direction: row; }
  .bento-container { grid-template-columns: 1fr; }
  .mission-list { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------
   SOLUTIONS PAGE
-------------------------------------------------------------- */
.sol-hero { position: relative; width: 100%; height: 60vh; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.sol-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.sol-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(8,16,36,0.9) 0%, rgba(8,16,36,0.3) 100%); z-index: 1; }
.sol-hero-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 40px; margin-top: 60px; }
.sol-intro { padding: 100px 0; background: #ffffff; }
.sol-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.sol-intro-grid h2 { font-family: 'DM Sans', sans-serif; font-size: 2.5rem; font-weight: 800; color: #0b192c; margin-bottom: 24px; letter-spacing: -0.02em; }
.sol-intro-grid p { font-size: 1.15rem; color: #5a6278; line-height: 1.7; margin-bottom: 20px; }
.sol-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.sol-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.05rem; color: #5a6278; }
.sol-list li::before { content: '✓'; color: #fff; background: #1a56f0; font-size: 12px; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: bold; margin-top: 3px; flex-shrink: 0; box-shadow: 0 4px 10px rgba(26, 86, 240, 0.2); }

/* SPIRAL SECTION (MERCURY INSPIRED) */
.premium-teal-box {
  background: linear-gradient(135deg, #0b192c 0%, #1a56f0 100%);
  border: 1px solid rgba(0, 212, 170, 0.3);
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(26, 86, 240, 0.15);
  color: #ffffff;
}
.premium-teal-box h3 {
  color: #ffffff !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}
.premium-teal-box p { color: rgba(255,255,255,0.9) !important; }
.premium-teal-box .sol-list li { color: #ffffff; }
.premium-teal-box .sol-list li::before {
  background: #00d4aa !important;
  color: #0b192c !important;
  box-shadow: 0 4px 12px rgba(0, 212, 170, 0.4);
}
.spiral-section { position: relative; width: 100%; height: 80vh; min-height: 600px; background: #081024; overflow: hidden; display: flex; align-items: center; justify-content: center; }
#spiral-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.8; }
.spiral-text-container { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; text-align: center; width: 100%; padding: 0 20px; }
.spiral-title { font-family: 'DM Sans', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; color: #ffffff; letter-spacing: -0.02em; transition: opacity 0.8s ease, transform 0.8s ease; opacity: 0; transform: translateY(20px); position: absolute; width: 100%; left: 0; top: 50%; transform: translateY(-50%); text-align: center; }
.spiral-title.active { opacity: 1; transform: translateY(-50%) scale(1); }
.spiral-title.exit { opacity: 0; transform: translateY(-50%) scale(0.9); }

/* FOCUS AREA DETAILS */
.focus-details { padding: 120px 0; background: #f4f6fb; }
.focus-header { text-align: center; max-width: 800px; margin: 0 auto 80px; padding: 0 40px; }
.focus-card {
  display: flex;
  flex-direction: column !important;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  margin: 0;
  transition: all 0.3s ease;
}
.focus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
.focus-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.focus-card-content {
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.focus-card-content h3 { font-family: 'DM Sans', sans-serif; font-size: 2.2rem; font-weight: 800; color: #0b192c; margin-bottom: 20px; }
.focus-card-content p { font-size: 1.15rem; color: #5a6278; line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 900px) { .sol-intro-grid { grid-template-columns: 1fr; } .focus-card { flex-direction: column !important; } .focus-card-img, .focus-card-content { width: 100%; } .spiral-title { font-size: 2.5rem; } }

/* ══════════════════════════════════════════════════════════════
   PRODUCTS PAGE STYLES
══════════════════════════════════════════════════════════════ */

/* STICKY JUMP MENU */
.jump-menu-wrapper {
  position: sticky;
  top: 72px; /* Offset by main nav height */
  z-index: 950;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.jump-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
}
.jump-menu a {
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0b192c;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
  background: transparent;
}
.jump-menu a:hover {
  background: rgba(26, 86, 240, 0.05);
  color: #1a56f0;
}

/* PREMIUM BULLET LISTS (PINK DOT) */
.premium-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.premium-list li {
  position: relative;
  padding-left: 28px;
  color: #5a6278;
  font-size: 1.1rem;
  line-height: 1.7;
}
.premium-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: #ff1b6b; /* The requested reddish-pink */
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 27, 107, 0.6);
}

/* WORKFLOW STEPPER */
.workflow-stepper {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0;
}
.workflow-stepper::before {
  content: '';
  position: absolute;
  top: 15px; left: 0; right: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #1a56f0, #ff1b6b);
  opacity: 0.2;
}
.workflow-step {
  position: relative;
  padding: 40px 10px 0 10px;
  text-align: center;
  flex: 1;
}
.workflow-step::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 15px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border: 3px solid #1a56f0;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px rgba(26,86,240,0.3);
  transform: translate(-50%, -50%);
}
.workflow-step:hover::before {
  background: #1a56f0;
  transform: scale(1.2);
  transition: all 0.3s;
}
.workflow-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b192c;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.workflow-step:hover .workflow-title {
  box-shadow: 0 15px 30px rgba(26,86,240,0.15);
  transform: translateY(-8px);
}
.workflow-desc {
  margin-top: 8px;
  color: #5a6278;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* PRODUCT SECTION LAYOUTS */
.prod-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.prod-bg-light { background: #ffffff; }
.prod-bg-gray { background: #f4f6fb; }

/* SUBTLE BACKGROUND SPIRAL TRANSITION */
.bg-spiral-wrapper {
  position: absolute;
  top: 50%;
  right: -20%;
  width: 800px;
  height: 800px;
  transform: translateY(-50%);
  opacity: 0.03; /* Extremely subtle */
  z-index: 0;
  pointer-events: none;
}
.bg-spiral-wrapper svg {
  width: 100%;
  height: 100%;
  animation: slowSpin 60s linear infinite;
}
@keyframes slowSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* SECTION CONTENT WRAPPER */
.prod-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* SPLIT LAYOUT */
.prod-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}
.prod-split h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #0b192c;
  margin-bottom: 24px;
}
.prod-split p {
  font-size: 1.1rem;
  color: #5a6278;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* COMPONENT CARDS */
.prod-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.prod-bento-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.prod-bento-card:hover {
  transform: translateY(-5px);
}
.prod-bento-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0b192c;
  margin-bottom: 16px;
}

/* HIGHLIGHT BANNER */
.prod-banner {
  background: linear-gradient(135deg, #0b192c, #1a56f0);
  border-radius: 24px;
  padding: 60px;
  color: white;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.prod-banner h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.prod-banner p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}
.prod-banner .btn {
  position: relative;
  z-index: 2;
  background: #ff1b6b;
  border: none;
}


.prod-bento-grid { align-items: stretch; }
.prod-bento-card { display: flex; flex-direction: column; }
.prod-bento-card > * { margin-bottom: 16px; }
.prod-bento-card > *:last-child { margin-bottom: 0; flex-grow: 1; }

/* TECHNOLOGIES UPGRADE */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: floatOrb 10s ease-in-out infinite alternate;
}
@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 50px) scale(1.1); }
}

/* Glassmorphism Tree Menu */
.tree-menu-container {
  background: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.05) !important;
}

/* Glowing Branch Lines */
.tree-list li::before, .tree-list li::after {
  transition: all 0.3s ease;
}
.tree-list li:has(.active)::before {
  background: linear-gradient(to bottom, #1a56f0, #ff1b6b);
  box-shadow: 0 0 10px rgba(255, 27, 107, 0.5);
  width: 3px;
}
.tree-list li:has(.active)::after {
  background: #ff1b6b;
  box-shadow: 0 0 10px rgba(255, 27, 107, 0.5);
  height: 3px;
}
.tree-link.active {
  color: #ff1b6b !important;
  text-shadow: 0 0 10px rgba(255, 27, 107, 0.3);
}

/* Glassmorphism Engineering Boxes */
.expertise-item {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}
.expertise-item::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  transition: all 0.5s;
}
.expertise-item:hover::after {
  left: 100%;
}
.expertise-item:hover {
  box-shadow: 0 15px 30px rgba(26,86,240,0.1) !important;
  border-bottom: 3px solid #ff1b6b !important;
}

/* Animated Data Pipeline */
.ecosystem-pipeline {
  position: relative;
}
.eco-arrow {
  position: relative;
  color: transparent !important; /* Hide text arrow */
  width: 2px;
  height: 40px;
  background: rgba(26,86,240,0.2);
  margin: 10px 0 !important;
}
.eco-arrow::after {
  content: '';
  position: absolute;
  top: 0; left: -1px; width: 4px; height: 50%;
  background: #1a56f0;
  box-shadow: 0 0 10px #1a56f0, 0 0 20px #ff1b6b;
  border-radius: 4px;
  animation: dataFlow 1.5s infinite linear;
}
@keyframes dataFlow {
  0% { top: -50%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.eco-node {
  background: rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.eco-node:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(26,86,240,0.2) !important;
  border-color: #ff1b6b !important;
}

/* Stepper Snake Connectors */
.lifecycle-stepper {
  position: relative;
}
.l-step {
  position: relative;
  z-index: 2;
}
.l-step::before {
  content: '';
  position: absolute;
  top: 50%; right: -30px; width: 30px; height: 2px;
  background: rgba(26,86,240,0.2);
  z-index: 1;
}
.l-step:nth-child(even)::before {
  display: none; /* simple grid hack for now */
}
.l-step:hover .l-num {
  background: #ff1b6b !important;
  box-shadow: 0 0 15px rgba(255,27,107,0.4);
  transform: scale(1.1);
  transition: all 0.3s;
}
.prod-bento-card > *:last-child { margin-bottom: 0; flex-grow: 1; }

.bg-spiral-wrapper { position: absolute; top: 0; bottom: 0; margin: auto; width: 1200px; height: 1200px; opacity: 0.15; pointer-events: none; z-index: 0; display: flex; align-items: center; justify-content: center; overflow: visible; }
.bg-spiral-wrapper svg { width: 100%; height: 100%; stroke-width: 1.5; }

.bg-spiral-wrapper { opacity: 0.3 !important; }
.bg-spiral-wrapper svg { stroke-width: 2 !important; }

/* TECHNOLOGIES PAGE */

/* Purpose Grid */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.purpose-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  text-align: center;
  transition: transform 0.3s;
}
.purpose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(26,86,240,0.08);
}
.p-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.purpose-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  margin: 0;
  color: #0b1120;
}

/* Tree Split Layout */
.tech-split-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Sticky Sidebar & Tree */
.tech-sidebar {
  flex: 0 0 300px;
  position: sticky;
  top: 100px;
}
.tree-menu-container {
  font-family: 'Inter', monospace;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.tree-root {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #0b1120;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.tree-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tree-list li {
  position: relative;
  padding-left: 20px;
  margin: 15px 0;
}
/* The vertical line connecting items */
.tree-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: -15px;
  bottom: -15px;
  width: 2px;
  background: #d1d9e6;
}
/* The horizontal branch */
.tree-list li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background: #d1d9e6;
  transform: translateY(-50%);
}
/* For the last item in a group, hide the bottom half of the vertical line */
.tree-list li.tree-gap::before {
  bottom: 50%;
}
.tree-list li.tree-last::before {
  bottom: 50%;
}
.tree-gap {
  height: 20px;
}
.tree-gap::after {
  display: none;
}
.tree-link {
  text-decoration: none;
  color: #5a6278;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s;
  padding-left: 5px;
  display: inline-block;
}
.tree-link:hover, .tree-link.active {
  color: #1a56f0;
  font-weight: 700;
  transform: translateX(5px);
}

/* Content Area */
.tech-content-area {
  flex: 1;
}
.platform-section {
  padding-bottom: 60px;
  padding-top: 60px; /* Offset for anchor links */
  margin-top: -60px;
}
.platform-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0b1120;
  margin-bottom: 20px;
}
.platform-section p {
  color: #5a6278;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.highlight-text {
  font-weight: 600;
  color: #1a56f0 !important;
}
.split-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}
.platform-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #e2e8f0;
  font-style: italic;
  color: #8c9bba;
}
.platform-divider {
  border: 0;
  height: 1px;
  background: #e2e8f0;
  margin: 0 0 40px 0;
}

/* Ecosystem Pipeline */
.ecosystem-pipeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.eco-node {
  background: #fff;
  border: 2px solid #1a56f0;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  color: #1a56f0;
  box-shadow: 0 10px 20px rgba(26,86,240,0.1);
  text-align: center;
  min-width: 280px;
  position: relative;
  z-index: 2;
}
.eco-final {
  background: linear-gradient(135deg, #1a56f0 0%, #ff1b6b 100%);
  color: #fff;
  border: none;
}

/* FAQ Accordion specific fixes */
.faq-details summary::-webkit-details-marker {
  display: none;
}
.faq-details summary {
  list-style: none; /* For Firefox/Other */
}


/* Diverse Environments Tags */
.env-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.env-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.env-tag:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Expertise Grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.expertise-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: #0b1120;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border-bottom: 3px solid #1a56f0;
  transition: transform 0.3s;
}
.expertise-item:hover {
  transform: translateY(-5px);
}

/* Lifecycle Stepper */
.lifecycle-stepper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.l-step {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8fafc;
  padding: 15px;
  border-radius: 12px;
  transition: background 0.3s;
}
.l-step:hover {
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.l-num {
  background: #1a56f0;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.l-name {
  font-weight: 600;
  color: #0b1120;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
  .tech-split-layout {
    flex-direction: column;
  }
  .tech-sidebar {
    position: static;
    margin-bottom: 40px;
    width: 100%;
  }
}

/* RESOURCES PAGE CSS */

/* Infinite Marquee */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: #0b1120;
  padding: 40px 0;
  position: relative;
  display: flex;
}
.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}
.marquee-content:hover {
  animation-play-state: paused;
}
.marquee-item {
  height: 250px;
  width: 400px;
  object-fit: cover;
  margin: 0 15px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* CSS Swirl Animation */
.css-swirl-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #0b1120;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.05);
}
.css-swirl {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, #1a56f0 40%, #ff1b6b 60%, transparent 100%);
  animation: swirl-spin 3s linear infinite;
  filter: blur(20px);
}
.css-swirl::after {
  content: '';
  position: absolute;
  top: 10%; left: 10%; width: 80%; height: 80%;
  background: #0b1120;
  border-radius: 50%;
}
@keyframes swirl-spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.5); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Accordion FAQ */
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.faq-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #0b192c;
  font-size: 1.1rem;
}
.faq-header:hover {
  background: #f8fafc;
}
.faq-body {
  padding: 0 20px 20px 20px;
  color: #5a6278;
  line-height: 1.7;
  display: none;
}
.faq-item.active .faq-body {
  display: block;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-icon {
  transition: transform 0.3s ease;
  color: #1a56f0;
  font-size: 1.5rem;
}
