/* ============================================================
   industry.css — Shared stylesheet for all Agentic AI pages
   Covers: Healthcare, Hospitals, Diagnostics, Yoga & Wellness,
           Recruitment, Education, Real Estate, Manufacturing,
           Insurance, Travel
   ============================================================ */

/* Google Fonts are loaded in each HTML <head> */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --primary:        #373ab7;
  --primary-dark:   #2b2e96;
  --primary-light:  #4284ff;
  --primary-lighter:#6aa3ff;
  --bg-white:       #ffffff;
  --bg-light:       #f4f6ff;
  --bg-lighter:     #eef1ff;
  --border:         #dde2f5;
  --text-dark:      #0d0f2e;
  --text-body:      #3a3d5c;
  --text-muted:     #6b6f99;
  --shadow-sm:      0 2px 12px rgba(55,58,183,0.08);
  --shadow-md:      0 6px 28px rgba(55,58,183,0.14);
  --shadow-lg:      0 16px 48px rgba(55,58,183,0.18);
  --primary-faint:  rgba(55,58,183,0.08);
  --primary-faint2: rgba(66,132,255,0.1);
  --radius:         16px;
  --btn-radius:     10px;
  --container:      1280px;
  --font:           'Poppins', sans-serif;
  --hero-bg:        radial-gradient(1000px 560px at 70% 24%, rgba(74,112,224,0.45), transparent 60%),
                    linear-gradient(140deg, #0a1442 0%, #15246a 55%, #0c1a55 100%);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  padding: 90px 2rem;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%234284ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-content { text-align: center; }

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(66,132,255,0.18);
  border: 1px solid rgba(66,132,255,0.35);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #6aa3ff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Hero Typography */
h1 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
}
h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--primary-lighter), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  text-align: center;
}

/* Hero Buttons */
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  justify-content: center;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number { font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label  { font-size: .75rem; color: rgba(255,255,255,.65); margin-top: 4px; font-weight: 400; }

/* ── Metric Bar (Hospitals variant) ────────────────────────── */
.metric-bar {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  justify-content: center;
  flex-wrap: wrap;
}
.metric {
  background: rgba(66,132,255,.15);
  border: 1px solid rgba(66,132,255,.25);
  border-radius: 12px;
  padding: 1rem 1.3rem;
  text-align: center;
}
.metric-val { font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; }
.metric-lab { font-size: .72rem; color: rgba(255,255,255,.65); margin-top: 4px; font-weight: 400; }

/* ── Hero Visual — Agent Flow Card (Healthcare / Industry pages) */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.agent-flow { display: flex; flex-direction: column; gap: .8rem; }
.agent-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: .9rem 1rem;
  border-radius: 10px;
  background: rgba(66,132,255,.1);
  border: 1px solid rgba(66,132,255,.2);
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  transition: all .3s;
  animation: fadeSlide .5s ease both;
}
.agent-step:nth-child(1) { animation-delay: .1s; }
.agent-step:nth-child(2) { animation-delay: .2s; }
.agent-step:nth-child(3) { animation-delay: .3s; }
.agent-step:nth-child(4) { animation-delay: .4s; }
.agent-step:nth-child(5) { animation-delay: .5s; }
.agent-step.active { background: rgba(66,132,255,.22); border-color: rgba(66,132,255,.5); color: #fff; }
.step-icon {
  width: 32px; height: 32px;
  background: rgba(66,132,255,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.active .step-icon { background: var(--primary-light); }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); margin-left: auto; }
.active .step-dot { background: #4ade80; animation: pulse 1.5s infinite; }
.card-title {
  font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem;
}

/* ── Hero Visual — Bed Dashboard (Hospitals) ───────────────── */
.dash-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 430px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.dash-title  { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.7); }
.live-badge  { background: rgba(74,222,128,.15); border: 1px solid rgba(74,222,128,.3); color: #4ade80; font-size: .7rem; font-weight: 600; padding: 3px 9px; border-radius: 6px; display: flex; align-items: center; gap: 5px; }
.live-dot    { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse 1.5s infinite; }
.bed-grid    { display: grid; grid-template-columns: repeat(8,1fr); gap: 5px; margin-bottom: 1.2rem; }
.bed         { width: 100%; aspect-ratio: 1; border-radius: 5px; }
.bed.occupied  { background: var(--primary-light); }
.bed.available { background: rgba(66,132,255,.15); border: 1px solid rgba(66,132,255,.2); }
.bed.cleaning  { background: rgba(251,191,36,.3);  border: 1px solid rgba(251,191,36,.4); }
.bed.reserved  { background: rgba(74,222,128,.2);  border: 1px solid rgba(74,222,128,.3); }
.bed-legend    { display: flex; gap: 1rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.legend-item   { display: flex; align-items: center; gap: 5px; font-size: .7rem; color: rgba(255,255,255,.65); }
.legend-dot    { width: 10px; height: 10px; border-radius: 3px; }
.capacity-bar-wrap { margin-bottom: 1rem; }
.cap-label { display: flex; justify-content: space-between; font-size: .75rem; color: rgba(255,255,255,.65); margin-bottom: 5px; }
.cap-bar   { height: 8px; background: rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; }
.cap-fill  { height: 100%; background: linear-gradient(90deg, var(--primary-light), var(--primary-lighter)); border-radius: 4px; }

/* ── Hero Visual — Scan Card (Diagnostics) ─────────────────── */
.scan-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.scan-header     { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.scan-title      { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.7); }
.analyzing-badge { background: rgba(251,191,36,.15); border: 1px solid rgba(251,191,36,.3); color: #fbbf24; font-size: .7rem; font-weight: 600; padding: 3px 9px; border-radius: 6px; display: flex; align-items: center; gap: 5px; }
.analyzing-dot   { width: 6px; height: 6px; background: #fbbf24; border-radius: 50%; animation: pulse 1s infinite; }
.scan-image-mock {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0a1442 0%, #1a2a6a 50%, #0d1d5a 100%);
  border-radius: 10px; margin-bottom: 1.2rem;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.scan-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(66,132,255,.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(66,132,255,.07) 1px, transparent 1px);
  background-size: 20px 20px;
}
.scan-overlay    { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.scan-circle     { width: 100px; height: 100px; border: 2px solid rgba(66,132,255,.5); border-radius: 50%; position: relative; animation: scanRotate 3s linear infinite; }
.scan-circle::before { content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; background: var(--primary-light); border-radius: 50%; }
.scan-crosshair  { width: 60px; height: 60px; position: absolute; }
.scan-crosshair::before, .scan-crosshair::after { content: ''; position: absolute; background: rgba(66,132,255,.7); }
.scan-crosshair::before { width: 100%; height: 1px; top: 50%; }
.scan-crosshair::after  { width: 1px; height: 100%; left: 50%; }
.finding-list { display: flex; flex-direction: column; gap: .6rem; }
.finding      { display: flex; align-items: center; gap: 10px; padding: .7rem .9rem; border-radius: 8px; font-size: .82rem; animation: slideIn .4s ease both; }
.finding:nth-child(1) { animation-delay: .1s; background: rgba(74,222,128,.08);  border: 1px solid rgba(74,222,128,.2); }
.finding:nth-child(2) { animation-delay: .2s; background: rgba(251,191,36,.08); border: 1px solid rgba(251,191,36,.2); }
.finding:nth-child(3) { animation-delay: .3s; background: rgba(66,132,255,.08);  border: 1px solid rgba(66,132,255,.2); }
.finding-icon  { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .75rem; flex-shrink: 0; }
.finding:nth-child(1) .finding-icon { background: rgba(74,222,128,.2); }
.finding:nth-child(2) .finding-icon { background: rgba(251,191,36,.2); }
.finding:nth-child(3) .finding-icon { background: rgba(66,132,255,.2); }
.finding-text  { flex: 1; }
.finding-label { font-weight: 600; color: #fff; }
.finding-sub   { font-size: .73rem; color: rgba(255,255,255,.6); }
.confidence    { font-size: .75rem; font-weight: 600; margin-left: auto; }
.finding:nth-child(1) .confidence { color: #4ade80; }
.finding:nth-child(2) .confidence { color: #fbbf24; }
.finding:nth-child(3) .confidence { color: #6aa3ff; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  background: var(--primary); color: #fff;
  padding: .85rem 2rem; border-radius: var(--btn-radius);
  font-weight: 600; font-size: .95rem; text-decoration: none;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; font-family: var(--font); box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-white {
  background: #fff; color: var(--primary);
  padding: .85rem 2rem; border-radius: var(--btn-radius);
  font-weight: 600; font-size: .95rem; text-decoration: none;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; font-family: var(--font);
}
.btn-white:hover { background: var(--bg-lighter); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,.12); color: #fff;
  padding: .85rem 2rem; border-radius: var(--btn-radius);
  font-weight: 600; font-size: .95rem; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.3); font-family: var(--font);
  display: inline-flex; align-items: center; gap: 8px; transition: all .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }

/* ── Section Scaffolding ────────────────────────────────────── */
section { padding: 90px 2rem; }
.container { max-width: var(--container); margin: 0 auto; }
.section-label {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--primary);
  margin-bottom: .8rem; display: block; text-align: center;
}
h2 {
  font-family: var(--font); font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-dark); line-height: 1.2;
  margin-bottom: 1rem; text-align: center;
}
h3 { text-align: center; }
h4 { text-align: left; }
.section-desc {
  color: var(--text-muted); font-size: 1rem;
  max-width: 620px; line-height: 1.75;
  text-align: center; margin: 0 auto;
}
.section-header { margin-bottom: 3.5rem; text-align: center; }
.white-section   { background: var(--bg-white); }
.light-section   { background: var(--bg-light); }
.lighter-section { background: var(--bg-lighter); }

/* ── Cards Grid (6-up) ─────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: all .3s; box-shadow: var(--shadow-sm); text-align: center;
}
.card:hover { border-color: var(--primary-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px; background: var(--primary-faint2);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 1.2rem; border: 1px solid var(--border);
}
.card h3 { font-weight: 600; font-size: 1rem; color: var(--text-dark); margin-bottom: .6rem; }
.card p  { color: var(--text-muted); font-size: .88rem; line-height: 1.65; }

/* ── Features Grid (3-up, Hospitals variant) ───────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.feat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: all .3s; box-shadow: var(--shadow-sm); text-align: center;
}
.feat-card:hover { border-color: var(--primary-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-icon {
  width: 52px; height: 52px; background: var(--primary-faint2);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1.2rem; border: 1px solid var(--border);
}
.feat-card h3 { font-weight: 600; font-size: 1rem; color: var(--text-dark); margin-bottom: .6rem; }
.feat-card p  { color: var(--text-muted); font-size: .88rem; line-height: 1.65; }
.feat-tag {
  display: inline-block; background: var(--primary-faint); color: var(--primary);
  font-size: .7rem; font-weight: 600; padding: 3px 8px; border-radius: 5px; margin-top: 1rem;
}

/* ── Modalities Grid (Diagnostics variant) ─────────────────── */
.modalities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.modality-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: all .3s; text-align: center; box-shadow: var(--shadow-sm);
}
.modality-card:hover { border-color: var(--primary-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.modality-icon {
  width: 52px; height: 52px; background: var(--primary-faint2);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1.2rem; border: 1px solid var(--border);
}
.modality-card h3 { font-weight: 600; font-size: 1rem; color: var(--text-dark); margin-bottom: .6rem; }
.modality-card p  { color: var(--text-muted); font-size: .88rem; line-height: 1.65; margin-bottom: 1rem; }
.accuracy-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(22,163,74,.1); border: 1px solid rgba(22,163,74,.25);
  border-radius: 6px; padding: 4px 10px; font-size: .75rem; color: #16a34a; font-weight: 600;
}

/* ── Use Cases Grid ─────────────────────────────────────────── */
.use-cases-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.use-case {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm); text-align: center; transition: all .3s;
}
.use-case:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.use-case-tag {
  display: inline-block; background: var(--primary-faint); color: var(--primary);
  font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 6px;
  margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .06em;
}
.use-case h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: .6rem; }
.use-case p  { color: var(--text-muted); font-size: .88rem; line-height: 1.65; }
.use-case ul { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: .4rem; text-align: left; }
.use-case ul li { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; color: var(--text-muted); }
.use-case ul li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Departments Grid (Hospitals) ───────────────────────────── */
.dept-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.dept-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm); position: relative;
  overflow: hidden; text-align: center; transition: all .3s;
}
.dept-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.dept-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.dept-icon        { font-size: 2rem; margin-bottom: 1rem; }
.dept-card h3     { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: .6rem; }
.dept-card p      { color: var(--text-muted); font-size: .88rem; line-height: 1.65; margin-bottom: 1rem; }
.dept-metrics     { display: flex; gap: 1rem; justify-content: center; }
.dept-metric      { text-align: center; background: var(--primary-faint); border-radius: 8px; padding: .5rem .8rem; }
.dept-metric-val  { font-size: 1.1rem; font-weight: 700; color: var(--primary); }
.dept-metric-lab  { font-size: .7rem; color: var(--text-muted); }

/* ── Comparison Table (Hospitals) ───────────────────────────── */
.comparison-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.comparison-table th            { background: var(--primary); color: #fff; font-size: .88rem; font-weight: 600; padding: 1rem 1.5rem; text-align: left; }
.comparison-table th:first-child{ background: var(--text-dark); color: rgba(255,255,255,.85); }
.comparison-table td            { padding: 1rem 1.5rem; font-size: .88rem; color: var(--text-muted); border-bottom: 1px solid var(--border); background: #fff; }
.comparison-table td:first-child{ font-weight: 600; color: var(--text-dark); }
.comparison-table td.yes        { color: #16a34a; font-weight: 600; }
.comparison-table td.no         { color: #dc2626; }
.comparison-table td.partial    { color: #d97706; }
.comparison-table tr:last-child td { border-bottom: none; }

/* ── ROI Grid (Hospitals) ───────────────────────────────────── */
.roi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.roi-card {
  text-align: center; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm); transition: all .3s;
}
.roi-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.roi-number { font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.roi-desc   { font-size: .85rem; color: var(--text-muted); margin-top: .5rem; line-height: 1.5; }

/* ── Pipeline Steps (Diagnostics) ───────────────────────────── */
.pipeline { display: flex; flex-direction: column; gap: 1px; max-width: 800px; margin: 0 auto; }
.pipeline-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  padding: 1.5rem 2rem; transition: all .2s;
}
.pipeline-step:first-child { border-radius: 16px 16px 0 0; }
.pipeline-step:last-child  { border-radius: 0 0 16px 16px; }
.pipeline-step:hover       { border-color: var(--primary-light); background: var(--bg-light); }
.pipeline-step-num {
  width: 40px; height: 40px; background: var(--primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; flex-shrink: 0; font-size: .9rem; box-shadow: var(--shadow-sm);
}
.pipeline-content h3 { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: .4rem; text-align: left; }
.pipeline-content p  { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.pipeline-time {
  margin-left: auto; background: var(--primary-faint); color: var(--primary);
  font-size: .75rem; font-weight: 600; padding: 4px 10px;
  border-radius: 6px; white-space: nowrap; align-self: flex-start;
}

/* ── Specialty Section (Diagnostics) ────────────────────────── */
.specialty-content       { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.specialty-detail h3     { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: .8rem; text-align: left; }
.specialty-detail p      { color: var(--text-muted); font-size: .95rem; line-height: 1.75; margin-bottom: 1.5rem; }
.specialty-list          { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.specialty-list li       { display: flex; align-items: flex-start; gap: 8px; font-size: .9rem; color: var(--text-muted); }
.specialty-list li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.specialty-metrics       { background: var(--bg-lighter); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; }
.spec-metric             { margin-bottom: 1.2rem; }
.spec-metric:last-child  { margin-bottom: 0; }
.spec-metric-top         { display: flex; justify-content: space-between; font-size: .85rem; margin-bottom: 5px; }
.spec-metric-label       { color: var(--text-muted); font-weight: 500; }
.spec-metric-val         { color: var(--primary); font-weight: 700; }
.spec-bar                { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.spec-fill               { height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: 4px; }

/* ── Trust Grid (Diagnostics) ───────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.trust-card {
  text-align: center; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm); transition: all .3s;
}
.trust-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.trust-icon    { font-size: 2rem; margin-bottom: 1rem; }
.trust-card h3 { font-size: .95rem; font-weight: 600; color: var(--text-dark); margin-bottom: .5rem; }
.trust-card p  { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ── How It Works — Steps Flow ──────────────────────────────── */
.steps-flow { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.steps-flow::before {
  content: ''; position: absolute;
  top: 28px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-faint2)); z-index: 0;
}
.step-card   { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 56px; height: 56px; background: var(--primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; color: #fff;
  margin: 0 auto 1.2rem; box-shadow: var(--shadow-md);
}
.step-card h3 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; color: var(--text-dark); }
.step-card p  { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ── Benefits Section ───────────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.benefit-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.4rem; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; box-shadow: var(--shadow-sm); transition: all .3s;
}
.benefit-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 40px; height: 40px; background: var(--primary-faint);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.benefit-text h4 { font-size: .9rem;  font-weight: 700; margin-bottom: .3rem; color: var(--text-dark); }
.benefit-text p  { font-size: .83rem; color: var(--text-muted); line-height: 1.55; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all .2s;
}
.faq-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.faq-q {
  padding: 1.3rem 1.5rem; font-weight: 600; font-size: .95rem;
  color: var(--text-dark); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--primary); flex-shrink: 0; }
.faq-a { padding: 0 1.5rem 1.3rem; color: var(--text-muted); font-size: .9rem; line-height: 1.75; }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section { background: var(--hero-bg); text-align: center; padding: 100px 2rem; }
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; margin-bottom: 1.2rem; }
.cta-section p  { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(66,132,255,.18); border: 1px solid rgba(66,132,255,.35);
  padding: 6px 14px; border-radius: 100px;
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.95);
  margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: .06em;
}

/* ── Related Pages ──────────────────────────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.related-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  text-decoration: none; transition: all .3s;
  box-shadow: var(--shadow-sm); text-align: center;
}
.related-card:hover { border-color: var(--primary-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-card-tag   { font-size: .72rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .7rem; }
.related-card h3    { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: .5rem; }
.related-card p     { font-size: .86rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.related-card-arrow { margin-top: 1rem; color: var(--primary); font-size: .9rem; font-weight: 600; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.3); }
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(15px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scanRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Responsive: Tablet ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-visual         { display: none; }
  .cards-grid          { grid-template-columns: 1fr 1fr; }
  .features-grid       { grid-template-columns: 1fr 1fr; }
  .modalities-grid     { grid-template-columns: 1fr 1fr; }
  .use-cases-grid      { grid-template-columns: 1fr; }
  .steps-flow          { grid-template-columns: 1fr 1fr; }
  .steps-flow::before  { display: none; }
  .benefits-grid       { grid-template-columns: 1fr; }
  .related-grid        { grid-template-columns: 1fr; }
  .dept-grid           { grid-template-columns: 1fr; }
  .roi-grid            { grid-template-columns: repeat(2,1fr); }
  .trust-grid          { grid-template-columns: repeat(2,1fr); }
  .specialty-content   { grid-template-columns: 1fr; }
}

/* ── Responsive: Mobile ─────────────────────────────────────── */
@media (max-width: 600px) {
  .cards-grid      { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr; }
  .modalities-grid { grid-template-columns: 1fr; }
  .hero-stats      { flex-wrap: wrap; gap: 1.5rem; }
  .metric-bar      { gap: 1rem; }
}

/* ── Hero Banner Image ─────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero-banner-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  pointer-events: none;
}
.hero-grid,
.hero-glow,
.hero-glow2 { position: absolute; pointer-events: none; }
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, #0a1442 0%, #0a1442 40%, rgba(10,20,66,0.55) 58%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
