/* ============================================
   SHR HOME STYLES
   Homepage-specific: hero, social proof,
   steps, features, pricing, FAQ, who-it's-for.
   ============================================ */

/* === HERO === */
.hero { padding: 72px 0 88px; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 72px; align-items: center; }
.hero__heading-wrap { grid-column: 1 / -1; text-align: center; }
.hero__eyebrow-wrap {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 16px;
}
.hero__eyebrow-wrap .eyebrow { margin-bottom: 0; }
.hero__headline {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #334155;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__line {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__marker {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px currentColor;
  animation: markerPulse 2.5s ease-in-out infinite;
}
.hero__marker--physician { color: #38bdf8; background: #38bdf8; animation-delay: 0s; }
.hero__marker--nutrition { color: #2563eb; background: #2563eb; animation-delay: 0.4s; }
.hero__marker--trainer { color: #a78bfa; background: #a78bfa; animation-delay: 0.8s; }
@keyframes markerPulse {
  0%, 100% { box-shadow: 0 0 8px currentColor; transform: scale(1); }
  50% { box-shadow: 0 0 18px currentColor, 0 0 4px currentColor; transform: scale(1.2); }
}
.hero__sub {
  font-size: 1.0625rem; color: var(--text-2); line-height: 1.75;
  margin-bottom: 20px; max-width: 520px;
  letter-spacing: 0.005em;
}
.hero__actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Hero CTA Pulse & Arrow Animation */
@keyframes heroPulse {
  0% { box-shadow: 0 1px 2px rgba(37,99,235,0.3), 0 4px 12px rgba(37,99,235,0.2), 0 0 0 0 rgba(37,99,235,0.35); }
  70% { box-shadow: 0 1px 2px rgba(37,99,235,0.3), 0 4px 12px rgba(37,99,235,0.2), 0 0 0 14px rgba(37,99,235,0); }
  100% { box-shadow: 0 1px 2px rgba(37,99,235,0.3), 0 4px 12px rgba(37,99,235,0.2), 0 0 0 0 rgba(37,99,235,0); }
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}
.hero__actions .btn-primary {
  animation: heroPulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero__actions .btn-primary:hover {
  animation: none;
  box-shadow: 0 2px 4px rgba(37,99,235,0.3), 0 8px 20px rgba(37,99,235,0.25), 0 16px 40px rgba(37,99,235,0.15), 0 0 24px rgba(37,99,235,0.2);
}
.hero-arrow {
  display: inline-block;
  margin-left: 2px;
  animation: arrowBounce 1.5s ease-in-out infinite;
}
.hero__actions .btn-primary:hover .hero-arrow {
  animation: arrowBounce 0.6s ease-in-out infinite;
}
.hero__actions .btn-secondary {
  font-weight: 700;
}
.hero__actions .btn-secondary:hover {
  box-shadow: 0 4px 16px rgba(37,99,235,0.25), 0 8px 32px rgba(37,99,235,0.12);
}
.hero__visual { display: flex; flex-direction: column; }
.hero__visual-caption { margin-top: 14px; font-size: 0.8125rem; color: var(--text-3); text-align: center; }

/* === HERO TEXT GLASS PANEL === */
.hero__text {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 24px;
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(15,23,42,0.04), 0 1px 3px rgba(15,23,42,0.03);
}

/* === TRUST STRIP === */
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.trust-strip__item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; color: var(--text-2);
  padding: 6px 14px; border-radius: 100px;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.12);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.trust-strip__item:hover {
  background: rgba(37,99,235,0.10);
  border-color: rgba(37,99,235,0.25);
  color: var(--brand);
}
.trust-strip__item svg { flex-shrink: 0; color: var(--brand); }

/* === HERO FUTURISTIC === */
.hero--futuristic { position: relative; overflow: hidden; background: linear-gradient(180deg, #dbeafe 0%, #e8eeff 15%, #f1f5ff 35%, var(--bg-1) 65%); }
.hero--futuristic::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(ellipse 80% 50% at 25% 0%, rgba(37,99,235,0.10) 0%, transparent 60%), radial-gradient(ellipse 60% 40% at 75% 0%, rgba(99,102,241,0.08) 0%, transparent 60%); }

/* 3D Mesh Grid Background */
.hero-mesh {
  position: absolute; left: -50%; right: -50%; top: 0; bottom: -80%; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50'%3E%3Cline x1='50' y1='0' x2='50' y2='50' stroke='%232563eb' stroke-width='1' opacity='0.18'/%3E%3Cline x1='0' y1='50' x2='50' y2='50' stroke='%232563eb' stroke-width='1' opacity='0.18'/%3E%3Ccircle cx='50' cy='50' r='1.8' fill='%232563eb' opacity='0.35'/%3E%3C/svg%3E");
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
}
.hero-mesh::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 30%, transparent 0%, transparent 50%, rgba(219,234,254,0.9) 100%),
    linear-gradient(to bottom, transparent 0%, transparent 65%, rgba(255,255,255,1) 100%);
}
.hero-mesh::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(219,234,254,1) 0%, transparent 15%, transparent 85%, rgba(219,234,254,1) 100%);
}
.hero--futuristic > .container { position: relative; z-index: 1; }
.hero--futuristic h1 { color: var(--text-1); letter-spacing: -0.035em; }
.hero--futuristic .hero__sub { color: var(--text-2); }
.hero--futuristic .eyebrow { color: #fff; }
.hero__highlight { background: linear-gradient(90deg, #38bdf8 0%, #2563eb 40%, #a78bfa 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero--futuristic .hero__visual-caption { color: var(--text-3); }
.hero--futuristic .btn-secondary { color: #1e3a8a; border-color: rgba(37,99,235,0.2); }
.hero--futuristic .btn-secondary:hover { border-color: transparent; color: #fff; }
.hero--futuristic .trust-strip__item { color: var(--text-3); }
.hero--futuristic .trust-strip__item svg { color: var(--text-3); }

/* === REPORT CARD (hero visual) === */
.report-card { position: relative; background: var(--bg-1); border: 1px solid transparent; border-radius: var(--r3); overflow: hidden; box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 4px 16px rgba(15,23,42,0.06), 0 16px 48px rgba(15,23,42,0.06), 0 0 0 1px rgba(37,99,235,0.12), 0 4px 24px rgba(37,99,235,0.06); }
.rc__header { background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 13px 18px; display: flex; justify-content: space-between; align-items: center; }
.rc__header-brand { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700; color: var(--text-1); }
.rc__header-icon { width: 18px; height: 18px; background: var(--brand); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rc__header-date { font-size: 0.6875rem; color: var(--text-3); font-weight: 500; }
.rc__patient { padding: 11px 18px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.rc__patient-name { font-size: 0.8125rem; font-weight: 600; color: var(--text-1); }
.rc__patient-meta { font-size: 0.625rem; color: var(--text-3); margin-top: 2px; }
.rc__panels-tag { font-size: 0.625rem; font-weight: 600; background: var(--brand-light); color: var(--brand); padding: 3px 9px; border-radius: 100px; }
.rc__body { padding: 14px 18px 6px; }
.rc__section-label { font-size: 0.5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 12px; }
.rc__score-row { display: flex; align-items: center; gap: 9px; padding: 6px 0; border-bottom: 1px solid var(--bg-3); position: relative; }
.rc__score-row:last-child { border-bottom: none; }
.rc__dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.rc__dot--green { background: var(--c-optimal); } .rc__dot--blue { background: var(--c-good); } .rc__dot--amber { background: var(--c-caution); }
.rc__organ { font-size: 0.6875rem; font-weight: 500; color: var(--text-1); width: 68px; flex-shrink: 0; }
.rc__bar-track { flex: 1; height: 3px; background: var(--bg-3); border-radius: 2px; }
.rc__bar-fill { height: 3px; border-radius: 2px; width: var(--w, 0%); transition: width 1s cubic-bezier(0.22, 1, 0.36, 1); }
.rc__bar-fill--green { background: var(--c-optimal); } .rc__bar-fill--blue { background: var(--c-good); } .rc__bar-fill--amber { background: var(--c-caution); }
.rc__bar-fill.no-width { width: 0 !important; transition: none; }
.rc__score { font-size: 0.6875rem; font-weight: 600; color: var(--text-1); width: 22px; text-align: right; flex-shrink: 0; }
.rc__score.counting { color: #38bdf8; text-shadow: 0 0 8px rgba(56,189,248,0.5); }
.rc__score.counted { color: var(--text-1); text-shadow: none; transition: color 0.5s ease 0.2s, text-shadow 0.5s ease 0.2s; }
.rc__status { font-size: 0.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; width: 48px; text-align: right; flex-shrink: 0; }
.rc__status--green { color: var(--c-optimal); } .rc__status--blue { color: var(--c-good); } .rc__status--amber { color: var(--c-caution); }
.rc__footer { padding: 11px 18px; border-top: 1px solid var(--border); background: var(--bg-2); }
.rc__footer-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.rc__tag { font-size: 0.5625rem; color: var(--text-3); background: var(--bg-1); border: 1px solid var(--border); padding: 3px 7px; border-radius: 3px; font-weight: 500; transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.35s ease, transform 0.35s ease; cursor: pointer; }
.rc__tag:hover:not(.tag-active) { background: var(--bg-2); border-color: var(--brand); color: var(--brand); }
.rc__tag.tag-active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Scan beam */
.rc__body--scan { position: relative; overflow: hidden; min-height: 180px; }
.rc__scan-beam { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0.4) 20%, rgba(56,189,248,1) 50%, rgba(56,189,248,0.4) 80%, transparent 100%); box-shadow: 0 0 12px 2px rgba(56,189,248,0.3), 0 0 30px 4px rgba(56,189,248,0.1); pointer-events: none; z-index: 10; opacity: 0; }
.rc__scan-beam.scanning { animation: rcScanDown 2.8s ease-in-out infinite; }
.rc__scan-beam.done { opacity: 0 !important; transition: opacity 0.4s ease; }
@keyframes rcScanDown {
  0%   { top: 0;    opacity: 0; }
  5%   { opacity: 1; }
  50%  { top: 100%; opacity: 0.8; }
  51%  { opacity: 0; top: 100%; }
  52%  { top: 0; opacity: 0; }
  57%  { opacity: 1; }
  95%  { opacity: 0.8; }
  100% { top: 100%; opacity: 0; }
}
.rc__scan-beam::after { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 40px; background: linear-gradient(180deg, rgba(56,189,248,0.10) 0%, transparent 100%); pointer-events: none; }

/* AI processing overlay */
.rc__ai-indicator { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 12; display: flex; flex-direction: column; align-items: center; gap: 12px; opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.rc__ai-indicator.active { opacity: 1; }
.rc__ai-indicator.fade-out { opacity: 0; transition: opacity 0.8s ease; }
.rc__ai-ring { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(56,189,248,0.12); border-top-color: rgba(56,189,248,0.9); position: relative; animation: aiSpin 0.9s linear infinite; }
.rc__ai-ring::before { content: ''; position: absolute; inset: 4px; border-radius: 50%; border: 1.5px solid rgba(56,189,248,0.06); border-bottom-color: rgba(56,189,248,0.6); animation: aiSpin 1.5s linear infinite reverse; }
.rc__ai-ring::after { content: ''; position: absolute; inset: 10px; border-radius: 50%; background: radial-gradient(circle, rgba(56,189,248,0.15) 0%, transparent 70%); animation: aiCorePulse 2s ease-in-out infinite; }
@keyframes aiSpin { to { transform: rotate(360deg); } }
@keyframes aiCorePulse { 0%, 100% { opacity: 0.4; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.1); } }
.rc__ai-label { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(56,189,248,0.75); text-shadow: 0 0 10px rgba(56,189,248,0.3); }
.rc__ai-dots { display: flex; gap: 4px; }
.rc__ai-dots span { width: 3px; height: 3px; border-radius: 50%; background: rgba(56,189,248,0.7); animation: aiDotPulse 1.4s ease-in-out infinite; }
.rc__ai-dots span:nth-child(2) { animation-delay: 0.25s; }
.rc__ai-dots span:nth-child(3) { animation-delay: 0.5s; }
@keyframes aiDotPulse { 0%, 100% { opacity: 0.2; transform: scale(0.7); } 50% { opacity: 1; transform: scale(1.4); } }

/* Floating particles */
.rc__ai-particles { position: absolute; inset: 0; pointer-events: none; z-index: 9; overflow: hidden; }
.rc__ai-particle { position: absolute; border-radius: 50%; background: rgba(56,189,248,0.7); box-shadow: 0 0 6px rgba(56,189,248,0.5); opacity: 0; }
.rc__ai-particle.float { animation: particleFloat linear forwards; }
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  15%  { opacity: 0.9; transform: translateY(-5px) scale(1); }
  85%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-50px) scale(0.2); }
}

/* Data stream */
.rc__data-stream { position: absolute; inset: 0; pointer-events: none; z-index: 8; overflow: hidden; opacity: 0; transition: opacity 0.6s ease; }
.rc__data-stream.active { opacity: 1; }
.rc__data-stream.fade-out { opacity: 0; transition: opacity 1s ease; }
.rc__data-stream-col { position: absolute; top: -100%; font-family: 'Courier New', monospace; font-size: 7px; color: rgba(56,189,248,0.12); line-height: 1.3; writing-mode: vertical-lr; animation: streamFall linear infinite; }
@keyframes streamFall { from { transform: translateY(0); } to { transform: translateY(200%); } }

/* Row reveal animations */
.rc__score-row.row-hidden, .rc__bio-card.row-hidden, .rc__kv-row.row-hidden { opacity: 0; transform: translateY(6px); }
.rc__score-row.row-reveal { animation: rowRevealIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes rowRevealIn {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.rc__score-row.row-reveal::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(56,189,248,0.08) 0%, rgba(56,189,248,0.02) 100%);
  border-radius: 3px; animation: rowFlash 0.8s ease-out forwards;
}
@keyframes rowFlash { 0% { opacity: 1; } 100% { opacity: 0; } }

/* Section label + footer tags - hidden during scan */
.rc__body--scan .rc__section-label { opacity: 0; transition: opacity 0.4s ease; }
.report-card.scan-done .rc__body--scan .rc__section-label { opacity: 1; }
.rc__footer-tags .rc__tag { opacity: 0; transform: translateY(4px); }
.report-card.scan-done .rc__footer-tags .rc__tag { opacity: 1; transform: translateY(0); }
.report-card.scan-done .rc__footer-tags .rc__tag:nth-child(1) { transition-delay: 0.05s; }
.report-card.scan-done .rc__footer-tags .rc__tag:nth-child(2) { transition-delay: 0.12s; }
.report-card.scan-done .rc__footer-tags .rc__tag:nth-child(3) { transition-delay: 0.19s; }
.report-card.scan-done .rc__footer-tags .rc__tag:nth-child(4) { transition-delay: 0.26s; }

/* Card glow */
.report-card.scanning { animation: cardScanPulse 3s ease-in-out infinite; }
@keyframes cardScanPulse {
  0%, 100% { box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 4px 16px rgba(15,23,42,0.06), 0 16px 48px rgba(15,23,42,0.06), 0 0 0 1px rgba(37,99,235,0.12), 0 4px 24px rgba(37,99,235,0.06); }
  50% { box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 4px 16px rgba(15,23,42,0.06), 0 16px 48px rgba(15,23,42,0.06), 0 0 0 1px rgba(37,99,235,0.3), 0 4px 36px rgba(37,99,235,0.12), 0 0 60px rgba(37,99,235,0.05); }
}
.report-card.scan-done { animation: none; box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 4px 16px rgba(15,23,42,0.06), 0 16px 48px rgba(15,23,42,0.06), 0 0 0 1px rgba(37,99,235,0.12), 0 4px 24px rgba(37,99,235,0.06); transition: box-shadow 0.6s ease; }

/* Row/content fade out for cycling */
.rc__score-row.row-fade-out, .rc__bio-card.row-fade-out, .rc__kv-row.row-fade-out {
  animation: rowFadeOut 0.35s ease forwards;
}
@keyframes rowFadeOut {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-6px); }
}

/* Biological Age special layout */
.rc__bio-header { display: flex; justify-content: center; align-items: flex-end; gap: 20px; padding: 10px 0 14px; }
.rc__bio-col { text-align: center; }
.rc__bio-label { font-size: 0.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 4px; }
.rc__bio-value { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.rc__bio-value--chrono { color: var(--text-2); }
.rc__bio-value--bio { color: var(--c-optimal); }
.rc__bio-arrow { font-size: 1.1rem; color: var(--text-3); margin-bottom: 4px; }
.rc__bio-delta { font-size: 0.625rem; font-weight: 700; color: var(--c-optimal); background: rgba(34,197,94,0.08); padding: 3px 8px; border-radius: 100px; margin-top: 8px; display: inline-block; }
.rc__bio-card { opacity: 0; transform: translateY(6px); }
.rc__bio-card.row-reveal { animation: rowRevealIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* Key-value row layout */
.rc__kv-row { display: flex; align-items: center; gap: 9px; padding: 5px 0; border-bottom: 1px solid var(--bg-3); opacity: 0; transform: translateY(6px); }
.rc__kv-row:last-child { border-bottom: none; }
.rc__kv-row.row-reveal { animation: rowRevealIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.rc__kv-row.row-reveal::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(56,189,248,0.08) 0%, rgba(56,189,248,0.02) 100%);
  border-radius: 3px; animation: rowFlash 0.8s ease-out forwards;
}
.rc__kv-icon { width: 18px; height: 18px; border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.625rem; }
.rc__kv-icon--green { background: rgba(34,197,94,0.1); color: var(--c-optimal); }
.rc__kv-icon--blue { background: rgba(37,99,235,0.08); color: var(--c-good); }
.rc__kv-icon--amber { background: rgba(245,158,11,0.1); color: var(--c-caution); }
.rc__kv-name { font-size: 0.6875rem; font-weight: 500; color: var(--text-1); flex: 1; }
.rc__kv-meta { font-size: 0.5625rem; color: var(--text-3); text-align: right; flex-shrink: 0; max-width: 90px; }
.rc__kv-badge { font-size: 0.5rem; font-weight: 700; padding: 2px 6px; border-radius: 3px; flex-shrink: 0; text-transform: uppercase; letter-spacing: 0.05em; }
.rc__kv-badge--green { background: rgba(34,197,94,0.1); color: var(--c-optimal); }
.rc__kv-badge--blue { background: rgba(37,99,235,0.08); color: var(--c-good); }
.rc__kv-badge--amber { background: rgba(245,158,11,0.1); color: var(--c-caution); }

/* === SOCIAL PROOF STRIP (NEW) === */
.social-proof-strip { padding: 56px 0; background: var(--bg-1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; text-align: center; }
.proof-metric__number { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; color: var(--brand); letter-spacing: -0.03em; line-height: 1; }
.proof-metric__label { font-size: 0.8125rem; font-weight: 600; color: var(--text-2); margin-top: 8px; letter-spacing: -0.01em; }

/* === HOW IT WORKS === */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1060px; margin: 56px auto 0; position: relative; counter-reset: step-counter; }
.steps-grid--4 { grid-template-columns: repeat(4, 1fr); max-width: 1280px; }
@media (max-width: 1024px) { .steps-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .steps-grid--4 { grid-template-columns: 1fr; } }
.step-card {
  text-align: center; padding: 48px 32px 40px; background: #ffffff; border-radius: 24px; position: relative;
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.2), box-shadow 0.4s ease, border-color 0.4s ease;
  border: 1.5px solid rgba(226,232,240,0.8);
  overflow: visible;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 8px 32px rgba(15,23,42,0.06);
  counter-increment: step-counter;
}
.step-card::before {
  content: ''; position: absolute; top: -1.5px; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, #2563eb, #38bdf8, #a78bfa);
  border-radius: 0 0 4px 4px;
  opacity: 0; transition: opacity 0.4s ease;
}
.step-card:hover::before { opacity: 1; }
.step-card::after {
  content: counter(step-counter);
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 2;
}
.step-card:hover::after { transform: translateX(-50%) scale(1.15); box-shadow: 0 6px 20px rgba(37,99,235,0.4); }
.step-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(37,99,235,0.10), 0 24px 64px rgba(15,23,42,0.07); border-color: rgba(37,99,235,0.18); }
.step-card__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
  border: 1.5px solid rgba(37,99,235,0.1);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px;
  transition: all 0.4s ease; position: relative;
}
.step-card:hover .step-card__icon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
  transform: scale(1.08);
}
.step-card__icon svg { color: var(--brand); transition: color 0.3s ease; width: 26px; height: 26px; }
.step-card:hover .step-card__icon svg { color: #fff; }
.step-card__title { font-size: 1.125rem; font-weight: 700; margin-bottom: 18px; letter-spacing: -0.015em; color: var(--text-1); }
.step-card__desc { font-size: 0.9375rem; color: var(--text-2); line-height: 1.65; }
.step-card__bullets {
  list-style: none; padding: 0; margin: 0; text-align: left;
  display: flex; flex-direction: column; gap: 12px;
}
.step-card__bullets li {
  font-size: 0.875rem; color: var(--text-2); line-height: 1.6;
  padding-left: 24px; position: relative;
}
.step-card__bullets li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  box-shadow: 0 0 6px rgba(37,99,235,0.25);
}
.step-card__bullets li strong { color: var(--text-1); font-weight: 600; }

/* === WHAT YOU GET === */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 1100px; margin: 0 auto; }
.feat-card {
  background: #ffffff;
  border: 2px solid rgba(226,232,240,0.8);
  border-radius: 18px;
  padding: 32px 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
  box-shadow: 0 2px 4px rgba(15,23,42,0.03), 0 8px 24px rgba(15,23,42,0.04);
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  opacity: 0; transition: opacity 0.35s ease;
}
.feat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(37,99,235,0.10), 0 28px 64px rgba(15,23,42,0.06);
  border-color: rgba(37,99,235,0.25);
}
.feat-card:hover::before { opacity: 1; }
.feat-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff, #e0e7ff);
  border: 1.5px solid rgba(37,99,235,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.35s ease;
}
.feat-card:hover .feat-card__icon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}
.feat-card__icon svg { color: var(--brand); width: 24px; height: 24px; transition: color 0.3s; }
.feat-card:hover .feat-card__icon svg { color: #fff; }
.feat-card__title { font-size: 1.0625rem; font-weight: 700; color: var(--text-1); line-height: 1.3; }
.feat-card__desc { font-size: 0.8125rem; color: var(--text-2); line-height: 1.65; }
a.feat-card { text-decoration: none; color: inherit; cursor: pointer; }
.feat-card__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(37,99,235,0.04));
  border: 1.5px solid rgba(37,99,235,0.15);
  color: var(--brand); font-size: 1.125rem; font-weight: 700;
  margin-top: auto;
  opacity: 0; transform: translateX(-4px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feat-card:hover .feat-card__arrow {
  opacity: 1; transform: translateX(0);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}

/* === WHO IT'S FOR (NEW) === */
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1060px; margin: 0 auto; }
.persona-card {
  background: #ffffff;
  border: 2px solid rgba(226,232,240,0.8);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 4px rgba(15,23,42,0.03), 0 8px 24px rgba(15,23,42,0.04);
}
.persona-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(37,99,235,0.10), 0 24px 64px rgba(15,23,42,0.07);
  border-color: rgba(37,99,235,0.25);
}
.persona-card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, #eff6ff, #e0e7ff);
  border: 1.5px solid rgba(37,99,235,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}
.persona-card:hover .persona-card__icon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}
.persona-card__icon svg { color: var(--brand); width: 24px; height: 24px; transition: color 0.3s; }
.persona-card:hover .persona-card__icon svg { color: #fff; }
.persona-card__title { font-size: 1.125rem; font-weight: 700; color: var(--text-1); margin-bottom: 8px; }
.persona-card__desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1060px; margin: 48px auto 0; }
.pricing-card {
  background: linear-gradient(160deg, #f0f5ff 0%, #e8f0fe 50%, #f5f8ff 100%);
  border: 2px solid rgba(147,180,230,0.35);
  border-radius: 22px;
  padding: 44px 36px 40px;
  display: flex; flex-direction: column;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 6px rgba(59,108,181,0.04), 0 10px 32px rgba(59,108,181,0.06);
  position: relative; overflow: visible;
}
.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 36px rgba(37,99,235,0.10), 0 32px 72px rgba(15,23,42,0.08);
  border-color: rgba(37,99,235,0.2);
}
.pricing-card--featured {
  background: linear-gradient(150deg, #0f172a 0%, #1e1b4b 40%, #1e3a8a 100%);
  border: 2px solid rgba(99,102,241,0.4);
  box-shadow: 0 12px 32px rgba(30,64,175,0.2), 0 24px 72px rgba(30,64,175,0.25);
  color: #fff;
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-12px); }
.pricing-card__badge { display: inline-block; align-self: flex-start; background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; margin-bottom: 14px; box-shadow: 0 2px 8px rgba(34,197,94,0.25); }
.pricing-card__name { font-size: 0.9375rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-3); margin-bottom: 16px; }
.pricing-card--featured .pricing-card__name { color: rgba(255,255,255,0.5); }
.pricing-card__mrp { display: none; }
.pricing-card--featured .pricing-card__mrp { display: none; }
.pricing-card__price { font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.pricing-card--featured .pricing-card__price { color: #fff; text-shadow: 0 2px 12px rgba(99,102,241,0.3); }
.pricing-card__per { font-size: 0.875rem; color: var(--text-3); margin-bottom: 4px; }
.pricing-card--featured .pricing-card__per { color: rgba(255,255,255,0.45); }
.pricing-card__gst { font-size: 0.75rem; color: var(--text-3); margin-bottom: 12px; font-weight: 500; opacity: 0.7; }
.pricing-card--featured .pricing-card__gst { color: rgba(255,255,255,0.35); }
.pricing-card__savings { display: none; }
.pricing-card__discount-tag { display: none; }
.pricing-card--featured .pricing-card__discount-tag { display: none; }
.pricing-card__popular-ribbon { position: absolute; top: -2px; right: 24px; background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 14px 9px; border-radius: 0 0 10px 10px; box-shadow: 0 4px 16px rgba(217,119,6,0.3); }
.pricing-card__divider { height: 1.5px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin-bottom: 28px; }
.pricing-card--featured .pricing-card__divider { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent); }
.pricing-card__features { list-style: none; margin-bottom: 32px; flex: 1; }
.pricing-card__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; padding: 5px 0; line-height: 1.45; color: var(--text-1); }
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.85); }
.pricing-card__features li svg { flex-shrink: 0; margin-top: 3px; color: #22c55e; width: 16px; height: 16px; }

/* === B2B TEASER === */
.b2b-teaser { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1000px; margin: 48px auto 0; padding: 32px 36px; background: linear-gradient(135deg, #f8fafc, #eff6ff); border: 2px solid rgba(37,99,235,0.12); border-radius: 18px; box-shadow: 0 4px 16px rgba(37,99,235,0.04); transition: border-color 0.3s, box-shadow 0.3s; }
.b2b-teaser:hover { border-color: rgba(37,99,235,0.25); box-shadow: 0 8px 28px rgba(37,99,235,0.08); }
.b2b-teaser p { font-size: 0.9375rem; color: var(--text-2); margin-top: 4px; }
.b2b-teaser strong { font-size: 1rem; color: var(--text-1); }

/* === FAQ === */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 720px; margin: 40px auto 0; }
.faq-item { border-bottom: 1.5px solid var(--border); transition: border-color 0.25s ease; }
.faq-item:first-child { border-top: 1.5px solid var(--border); }
.faq-item:hover { border-color: rgba(37,99,235,0.15); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; cursor: pointer; font-size: 1rem; font-weight: 600; color: var(--text-1); background: none; border: none; width: 100%; text-align: left; font-family: var(--font); min-height: 52px; gap: 16px; transition: color 0.2s ease; }
.faq-q:hover { color: var(--brand); }
.faq-q svg { flex-shrink: 0; transition: transform 0.25s ease, color 0.25s ease; color: var(--text-3); }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--brand); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; font-size: 0.9375rem; color: var(--text-2); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 24px; }


/* === CONTACT STRIP (simplified) === */
.contact-strip { text-align: center; padding: 32px 0; }
.contact-strip p { font-size: 0.9375rem; color: var(--text-2); }
.contact-strip a { color: var(--brand); text-decoration: none; font-weight: 600; }
.contact-strip a:hover { text-decoration: underline; }

/* === RESPONSIVE (homepage components) === */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 52px; }
  .hero__sub { max-width: 100%; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .persona-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; gap: 20px; }
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { order: -1; transform: none; }
  .pricing-card--featured:hover { transform: translateY(-8px); }
  .b2b-teaser { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__actions .btn { justify-content: center; text-align: center; }
  .hero__actions .btn-primary { animation: heroPulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
  .trust-strip { justify-content: center; }
  .trust-strip__item { white-space: normal; text-align: center; justify-content: center; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .hero__text { padding: 28px 24px; border-radius: 20px; }
  .hero__headline { align-items: center; text-align: center; }
  .hero__heading-wrap { text-align: center; }
  .report-card { font-size: 0.9375rem; }
  .hero__visual-caption { font-size: 0.75rem; margin-top: 10px; }
  .steps-grid { margin-top: 40px; gap: 36px; }
  .proof-metrics { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 640px) {
  .hero { padding: 44px 0 52px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card { padding: 28px 22px; gap: 12px; border-radius: 14px; }
  .feat-card__arrow { opacity: 1; transform: translateX(0); }
  .feat-card__title { font-size: 0.9375rem; }
  .feat-card__desc { font-size: 0.8125rem; }
  .hero__visual { max-width: 360px; }
  .hero__line { gap: 8px; font-size: 0.95em; }
  .hero__marker { width: 8px; height: 8px; }
  .hero__text { padding: 24px 20px; border-radius: 18px; }
  .hero__sub { font-size: 0.9375rem; line-height: 1.65; margin-bottom: 16px; }
  .trust-strip { gap: 8px; margin-top: 18px; }
  .trust-strip__item { font-size: 0.6875rem; padding: 5px 12px; }
  .step-card { padding: 36px 24px 32px; border-radius: 20px; }
  .step-card__icon { width: 52px; height: 52px; }
  .step-card__bullets li { font-size: 0.8125rem; padding-left: 20px; }
  .step-card__bullets li::before { width: 6px; height: 6px; top: 7px; }
  .pricing-card { padding: 36px 28px 32px; border-radius: 18px; }
  .pricing-card__price { font-size: 2.25rem; }
  .faq-q { font-size: 0.9375rem; min-height: 48px; padding: 18px 0; }
  .b2b-teaser { padding: 24px 22px; border-radius: 14px; }
  .hero__visual-caption { font-size: 0.6875rem; }
  .steps-grid { margin-top: 32px; gap: 32px; }
  .step-card__icon { margin-bottom: 18px; }
  .proof-metrics { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 480px) {
  .hero { padding: 36px 0 44px; }
  .hero__visual { max-width: 100%; }
  .hero__text { padding: 20px 16px; border-radius: 16px; }
  .hero__sub { font-size: 0.875rem; line-height: 1.6; }
  .hero__line { gap: 6px; font-size: 0.875em; }
  .hero__marker { width: 7px; height: 7px; }
  .hero__highlight { font-size: 1.125em; }
  .hero__eyebrow-wrap { margin-bottom: 10px; }
  .hero-mesh { background-size: 36px 36px; }
  .hero__visual-caption { font-size: 0.625rem; margin-top: 8px; }
  .hero__actions .btn { padding: 12px 20px; font-size: 0.875rem; }
  .steps-grid { margin-top: 28px; gap: 28px; }
  .step-card__icon { margin-bottom: 14px; }
  .rc__body { padding: 10px 14px 4px; }
  .rc__header { padding: 10px 14px; }
  .rc__patient { padding: 8px 14px; }
  .rc__footer { padding: 8px 14px; }
  .rc__organ { width: 56px; font-size: 0.625rem; }
  .rc__score { font-size: 0.625rem; }
  .rc__status { font-size: 0.4375rem; width: 40px; }
  .step-card { padding: 28px 18px 24px; border-radius: 18px; }
  .step-card__icon { width: 46px; height: 46px; }
  .step-card__desc { font-size: 0.875rem; }
  .step-card__title { font-size: 1rem; }
  .step-card::after { width: 24px; height: 24px; font-size: 0.6875rem; top: -12px; }
  .trust-strip { gap: 6px; margin-top: 14px; }
  .trust-strip__item { font-size: 0.6875rem; padding: 4px 10px; }
  .pricing-card { padding: 28px 22px 24px; border-radius: 16px; }
  .pricing-card__price { font-size: 2rem; }
  .pricing-card__features li { font-size: 0.875rem; }
  .feat-card { padding: 22px 18px; border-radius: 12px; }
  .feat-card__icon { width: 44px; height: 44px; border-radius: 10px; }
  .faq-q { font-size: 0.875rem; padding: 16px 0; gap: 12px; }
  .faq-a { font-size: 0.875rem; }
  .b2b-teaser { padding: 24px 22px; border-radius: 14px; }
}

@media (max-width: 360px) {
  .hero { padding: 28px 0 36px; }
  .hero__sub { font-size: 0.8125rem; line-height: 1.55; }
  .hero__text { padding: 16px 14px; border-radius: 14px; }
  .hero__line { gap: 5px; font-size: 0.8em; }
  .hero__marker { width: 6px; height: 6px; }
  .rc__score-row { gap: 6px; padding: 4px 0; }
  .rc__bar-track { height: 2px; }
  .step-card { padding: 24px 14px 20px; border-radius: 16px; }
  .step-card__icon { width: 42px; height: 42px; }
  .step-card::after { width: 22px; height: 22px; font-size: 0.625rem; top: -11px; }
  .step-card__title { font-size: 0.9375rem; }
  .step-card__bullets li { font-size: 0.75rem; gap: 8px; }
  .pricing-card { padding: 24px 18px 22px; }
  .pricing-card__price { font-size: 1.75rem; }
  .pricing-card__features li { font-size: 0.8125rem; gap: 8px; }
  .feat-card { padding: 18px 14px; }
  .feat-card__icon { width: 40px; height: 40px; border-radius: 8px; }
  .trust-strip__item { font-size: 0.625rem; padding: 3px 8px; }
  .faq-q { font-size: 0.8125rem; padding: 14px 0; }
  .proof-metrics { grid-template-columns: 1fr 1fr; gap: 16px; }
}
