/* ============================================
   ADAM LABS — Modern website stylesheet
   Brand: red accent on dark slate
   ============================================ */

:root {
  /* Brand */
  --red-50:  #FFF1F2;
  --red-100: #FFE1E3;
  --red-200: #FFC7CB;
  --red-300: #FF9DA4;
  --red-400: #FB6671;
  --red-500: #E11D2A;   /* Adam Labs primary */
  --red-600: #C8141F;
  --red-700: #A30D17;
  --red-800: #7C0B13;

  /* Neutrals */
  --ink-900: #0B1220;
  --ink-800: #0F172A;
  --ink-700: #1E293B;
  --ink-600: #334155;
  --ink-500: #475569;
  --ink-400: #64748B;
  --ink-300: #94A3B8;
  --ink-200: #CBD5E1;
  --ink-100: #E2E8F0;
  --ink-50:  #F1F5F9;
  --paper:   #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-tint: #FBFCFD;

  /* Accent */
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --info:    #2563EB;
  --success: #10B981;
  --warning: #F59E0B;

  /* Type */
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .05);
  --shadow:    0 6px 16px -4px rgba(15, 23, 42, .08), 0 2px 6px -2px rgba(15, 23, 42, .05);
  --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, .12), 0 8px 16px -4px rgba(15, 23, 42, .06);
  --shadow-red: 0 14px 30px -10px rgba(225, 29, 42, .45);

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
  --t-fast: .18s;
  --t:      .25s;
  --t-slow: .45s;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--red-600); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--red-700); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.2;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1em; }

::selection { background: var(--red-500); color: #fff; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide { max-width: var(--container-wide); }

section { padding: 80px 0; }
section.compact { padding: 56px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } section.compact { padding: 40px 0; } }

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: .95rem;
  line-height: 1;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--t) var(--ease);
  user-select: none;
}
.btn svg { width: 18px; height: 18px; flex: 0 0 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red-500);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-600); color: #fff; box-shadow: 0 18px 40px -10px rgba(225,29,42,.55); }

.btn-outline {
  background: #fff;
  color: var(--ink-900);
  border-color: var(--ink-100);
}
.btn-outline:hover { border-color: var(--red-500); color: var(--red-600); }

.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--ink-50); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .55);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: #fff; }

.btn-dark {
  background: var(--ink-900);
  color: #fff;
}
.btn-dark:hover { background: var(--ink-800); color: #fff; }

.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: .875rem; }

.btn-icon-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red-50);
  color: var(--red-600);
  border: none;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.btn-icon-circle:hover { background: var(--red-500); color: #fff; transform: rotate(15deg); }

/* ============== Topbar ============== */
.topbar {
  background: var(--ink-900);
  color: var(--ink-200);
  font-size: .85rem;
  padding: 9px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--ink-200); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; }
.topbar-left, .topbar-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar-pill { background: var(--red-500); color: #fff; padding: 3px 10px; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 768px) { .topbar { display: none; } }

/* ============== Header / Nav ============== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--ink-100);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 0 0 1px var(--ink-100), var(--shadow-sm);
  flex: 0 0 56px;
  overflow: hidden;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--red-500); letter-spacing: -.01em; }
.brand-tag { font-size: .7rem; color: var(--ink-500); letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--ink-700);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
}
.nav-link:hover, .nav-link.active { background: var(--red-50); color: var(--red-600); }
.nav-cta {
  background: var(--red-500);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  margin-left: 6px;
  box-shadow: 0 6px 16px -6px rgba(225,29,42,.55);
}
.nav-cta:hover { background: var(--red-600); color: #fff; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--ink-50);
  border: none;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 22px; height: 2px; background: var(--ink-900); position: relative; transition: all var(--t) var(--ease);
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: rotate(45deg); top: 0; }
.nav-toggle.is-open span::after { transform: rotate(-45deg); top: 0; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 320px; max-width: 90vw;
    background: #fff;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 20px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--t) var(--ease);
    z-index: 99;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-link { padding: 14px 16px; font-size: 1rem; }
  .nav-cta { margin: 8px 0 0; text-align: center; }
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(11,18,32,.5);
    opacity: 0; pointer-events: none;
    transition: opacity var(--t) var(--ease);
    z-index: 98;
  }
  .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
}

/* ============== Hero ============== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #FFF7F7 0%, #FFFFFF 60%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(225,29,42,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(225,29,42,.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-50);
  color: var(--red-600);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 18px;
}
.eyebrow svg { width: 14px; height: 14px; }

.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--red-500); position: relative; }
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 12px;
  background: var(--red-100);
  z-index: -1;
  border-radius: 4px;
}
.hero-lead { font-size: 1.1rem; color: var(--ink-500); margin-bottom: 32px; max-width: 540px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--ink-600); font-weight: 600; }
.trust-item svg { width: 18px; height: 18px; color: var(--red-500); flex: 0 0 18px; }

/* Hero visual */
.hero-visual { position: relative; min-height: 460px; }
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  animation: floatCard 6s ease-in-out infinite;
}
.hero-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red-50);
  color: var(--red-500);
  flex: 0 0 48px;
}
.hero-card-icon svg { width: 24px; height: 24px; }
.hero-card h4 { font-size: 1.05rem; margin: 0 0 2px; }
.hero-card p { margin: 0; color: var(--ink-500); font-size: .85rem; }

.hero-card-1 { top: 30px; right: 0; }
.hero-card-2 { top: 160px; left: 0; animation-delay: -2s; }
.hero-card-3 { bottom: 50px; right: 30px; animation-delay: -4s; }
.hero-card-4 { bottom: 0; left: 60px; animation-delay: -1s; }

.hero-orb {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-100), var(--red-50));
  z-index: 0;
  opacity: .8;
}
.hero-orb::after {
  content: '';
  position: absolute; inset: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-200), var(--red-100));
  opacity: .6;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============== Stats strip ============== */
.stats-strip { padding: 0; margin-top: -40px; position: relative; z-index: 5; }
.stats-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border: 1px solid var(--ink-100);
}
@media (max-width: 768px) { .stats-card { grid-template-columns: repeat(2, 1fr); padding: 20px; } }
.stat { text-align: center; padding: 8px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red-500);
  line-height: 1;
  letter-spacing: -.02em;
  display: block;
}
.stat-label {
  margin-top: 6px;
  color: var(--ink-500);
  font-size: .9rem;
  font-weight: 500;
}

/* ============== Section header ============== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--ink-500); font-size: 1.05rem; }
.section-head .eyebrow { margin: 0 0 14px; }

/* ============== Cards ============== */
.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
  padding: 28px;
  transition: all var(--t) var(--ease);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--ink-200); }

.service-card { position: relative; }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--red-50);
  color: var(--red-500);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all var(--t) var(--ease);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { background: var(--red-500); color: #fff; transform: rotate(-6deg) scale(1.05); }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--ink-500); margin-bottom: 16px; font-size: .95rem; }
.service-card .link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red-600); font-weight: 700; font-size: .9rem;
}
.service-card .link-arrow svg { width: 14px; height: 14px; transition: transform var(--t) var(--ease); }
.service-card:hover .link-arrow svg { transform: translateX(4px); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; align-items: center; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; } }

/* ============== Why us ============== */
.why-section { background: var(--bg-soft); }
.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-check {
  width: 36px; height: 36px;
  flex: 0 0 36px;
  border-radius: 10px;
  background: var(--red-50);
  color: var(--red-500);
  display: inline-flex; align-items: center; justify-content: center;
}
.why-check svg { width: 18px; height: 18px; }
.why-item h4 { margin: 0 0 4px; font-size: 1.05rem; }
.why-item p { margin: 0; color: var(--ink-500); font-size: .93rem; }

.why-visual {
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-800) 100%);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(225,29,42,.3) 0%, transparent 70%);
  border-radius: 50%;
}
.why-visual .big-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--red-400);
  line-height: 1;
  margin-bottom: 8px;
}
.why-visual .big-label { color: var(--ink-200); font-size: 1.1rem; font-weight: 600; margin-bottom: 24px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; }
.badge { background: rgba(255,255,255,.1); color: #fff; padding: 6px 12px; border-radius: 999px; font-size: .82rem; font-weight: 600; border: 1px solid rgba(255,255,255,.15); }

/* ============== xMed EMR section ============== */
.xmed-section {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%);
  color: #fff;
  overflow: hidden;
}
.xmed-section::before {
  content: '';
  position: absolute; top: 20%; right: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(225,29,42,.18) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.xmed-section h2 { color: #fff; }
.xmed-section p { color: var(--ink-200); }
.xmed-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 980px) { .xmed-grid { grid-template-columns: 1fr; gap: 40px; } }
.xmed-brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.xmed-logo {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #06B6D4, #0891B2);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(6,182,212,.6);
}
.xmed-logo svg { width: 28px; height: 28px; }
.xmed-eyebrow { color: var(--ink-300); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.xmed-name { color: #fff; font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }

.xmed-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 28px 0 32px; }
@media (max-width: 640px) { .xmed-features { grid-template-columns: 1fr; } }
.xmed-feature { display: flex; gap: 12px; }
.xf-icon {
  width: 40px; height: 40px; flex: 0 0 40px;
  border-radius: 10px;
  background: rgba(225,29,42,.15);
  color: var(--red-400);
  display: inline-flex; align-items: center; justify-content: center;
}
.xf-icon svg { width: 20px; height: 20px; }
.xmed-feature h4 { color: #fff; margin: 0 0 4px; font-size: 1rem; }
.xmed-feature p { margin: 0; color: var(--ink-300); font-size: .88rem; }

/* xMed visual mock */
.xmed-visual { position: relative; }
.xmed-screen {
  background: #0B1220;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
}
.xmed-screen-bar {
  background: rgba(255,255,255,.04);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.xmed-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.2); }
.xmed-dot:nth-child(1) { background: #FF5F57; }
.xmed-dot:nth-child(2) { background: #FFBD2E; }
.xmed-dot:nth-child(3) { background: #28CA42; }
.xmed-url {
  margin-left: 16px;
  background: rgba(255,255,255,.06);
  padding: 5px 14px;
  border-radius: 6px;
  color: var(--ink-300);
  font-size: .78rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  flex: 1;
}
.xmed-screen-body { padding: 22px; }
.xmed-report-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.xmed-report-id { font-family: ui-monospace, monospace; color: var(--ink-400); font-size: .78rem; }
.xmed-report-status { color: var(--success); font-size: .78rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.xmed-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(16,185,129,.6); animation: pulse 1.6s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,.6); }
  70% { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.xmed-report-name { color: #fff; font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.xmed-report-tests { display: flex; flex-direction: column; gap: 8px; }
.xmed-test-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  align-items: center;
}
.xmed-test-name { color: var(--ink-200); font-size: .92rem; font-weight: 500; }
.xmed-test-value { color: #fff; font-weight: 700; font-family: var(--font-display); }
.xmed-test-flag { font-size: .72rem; font-weight: 700; padding: 3px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.xmed-test-flag.ok { background: rgba(16,185,129,.15); color: #34D399; }
.xmed-test-flag.low { background: rgba(245,158,11,.15); color: #FBBF24; }
.xmed-report-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--ink-400); font-size: .8rem;
}
.xmed-stamp { color: var(--red-400); font-weight: 700; padding: 3px 10px; border: 1px solid var(--red-400); border-radius: 4px; font-size: .7rem; letter-spacing: .1em; }

.xmed-float {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  color: var(--ink-800);
  padding: 10px 14px;
  border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem;
  box-shadow: var(--shadow);
  animation: floatCard 5s ease-in-out infinite;
}
.xmed-float svg { width: 22px; height: 22px; color: var(--red-500); flex: 0 0 22px; }
.xmed-float strong { display: block; color: var(--ink-900); font-size: .9rem; }
.xmed-float span { color: var(--ink-500); font-size: .76rem; }
.xmed-float-1 { top: -18px; left: -18px; animation-delay: -1s; }
.xmed-float-2 { bottom: 60px; right: -20px; animation-delay: -3s; }
.xmed-float-3 { bottom: -10px; left: 30%; animation-delay: -2s; }
@media (max-width: 640px) { .xmed-float { display: none; } }

/* ============== Process steps ============== */
.process { background: var(--bg-soft); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--ink-100);
  position: relative;
  transition: all var(--t) var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--red-200); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px -4px rgba(225,29,42,.4);
}
.step h4 { margin-bottom: 6px; }
.step p { color: var(--ink-500); font-size: .9rem; margin: 0; }

/* ============== Packages ============== */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--ink-100);
  transition: all var(--t) var(--ease);
  position: relative;
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-card.featured {
  border-color: var(--red-500);
  border-width: 2px;
  box-shadow: 0 20px 50px -20px rgba(225,29,42,.35);
}
.pkg-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--red-500);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pkg-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--red-50);
  color: var(--red-500);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pkg-icon svg { width: 26px; height: 26px; }
.pkg-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.pkg-tagline { color: var(--ink-500); font-size: .9rem; margin: 0 0 18px; }
.pkg-tests { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.pkg-tests li {
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-50);
  color: var(--ink-600);
  font-size: .9rem;
  display: flex; align-items: center; gap: 8px;
}
.pkg-tests li::before {
  content: '✓';
  color: var(--red-500);
  font-weight: 700;
  flex: 0 0 16px;
}
.pkg-tests li:last-child { border-bottom: none; }
.pkg-price { display: flex; justify-content: space-between; align-items: end; gap: 12px; }
.pkg-price .pp-label { color: var(--ink-500); font-size: .78rem; }
.pkg-price .pp-amt { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--ink-900); }
.pkg-price .pp-amt s { color: var(--ink-300); font-size: 1rem; font-weight: 500; margin-right: 6px; }

/* ============== Testimonials ============== */
.testi-section { background: var(--bg-soft); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--ink-100); }
.testi-stars { display: flex; gap: 2px; color: #F59E0B; margin-bottom: 14px; }
.testi-stars svg { width: 18px; height: 18px; }
.testi-card p { color: var(--ink-700); font-size: .95rem; font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-400), var(--red-600));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
  flex: 0 0 44px;
}
.testi-name { font-weight: 700; color: var(--ink-900); }
.testi-meta { color: var(--ink-500); font-size: .82rem; }

/* ============== Locations ============== */
.location-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
  padding: 28px;
  text-align: center;
  transition: all var(--t) var(--ease);
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.location-pin {
  width: 52px; height: 52px;
  background: var(--red-50);
  color: var(--red-500);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.location-pin svg { width: 24px; height: 24px; }
.location-card h4 { margin-bottom: 4px; }
.location-card p { color: var(--ink-500); font-size: .9rem; margin: 0 0 12px; }

/* ============== CTA banner ============== */
.cta-banner {
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.9); font-size: 1.05rem; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-light { background: #fff; color: var(--red-600); }
.btn-light:hover { background: var(--red-50); color: var(--red-700); }

/* ============== Accreditations strip ============== */
.accred-strip { padding: 32px 0; background: var(--bg-soft); border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); }
.accred-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.accred-inner h4 { margin: 0; color: var(--ink-700); font-size: .9rem; font-weight: 700; }
.accred-pill {
  background: #fff;
  border: 1px solid var(--ink-100);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-700);
  display: inline-flex; align-items: center; gap: 8px;
}
.accred-pill .ac-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red-500); }

/* ============== Footer ============== */
.footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand-name { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.3rem; }
.footer-brand-tag { color: var(--ink-400); font-size: .82rem; }
.footer p { color: var(--ink-300); font-size: .9rem; }
.footer h5 { color: #fff; font-size: .95rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--ink-300); font-size: .9rem; }
.footer ul a:hover { color: var(--red-400); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: var(--ink-300); font-size: .9rem; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--red-400); flex: 0 0 18px; margin-top: 2px; }
.footer-contact-item a { color: var(--ink-300); }
.footer-contact-item a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--t) var(--ease);
}
.footer-social a:hover { background: var(--red-500); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  margin-top: 50px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--ink-400);
  font-size: .85rem;
}
.footer-bottom a { color: var(--ink-400); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============== WhatsApp float ============== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,.6);
  z-index: 90;
  transition: all var(--t) var(--ease);
  animation: pulse-wa 2.4s infinite;
}
.wa-float:hover { background: var(--whatsapp-dark); color: #fff; transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes pulse-wa {
  0% { box-shadow: 0 10px 30px -6px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.4); }
  70% { box-shadow: 0 10px 30px -6px rgba(37,211,102,.6), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px -6px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============== Page header (inner pages) ============== */
.page-header {
  background: linear-gradient(180deg, #FFF7F7 0%, #FFFFFF 100%);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(225,29,42,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header h1 { margin-bottom: 12px; position: relative; }
.page-header p { color: var(--ink-500); font-size: 1.1rem; max-width: 700px; position: relative; }
.breadcrumb { display: flex; gap: 8px; color: var(--ink-500); font-size: .9rem; margin-bottom: 16px; position: relative; }
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--red-600); }
.breadcrumb span:last-child { color: var(--red-600); font-weight: 600; }

/* ============== Test picker ============== */
.tests-page { padding: 0 0 80px; }
.tests-layout { display: grid; grid-template-columns: 280px 1fr 340px; gap: 28px; align-items: flex-start; }
@media (max-width: 1100px) { .tests-layout { grid-template-columns: 1fr; } }

.tests-sidebar {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
  padding: 24px;
  position: sticky; top: 100px;
}
@media (max-width: 1100px) { .tests-sidebar { position: static; } }
.tests-sidebar h4 { font-size: 1rem; margin-bottom: 14px; }
.dept-list { list-style: none; padding: 0; margin: 0; }
.dept-list li button {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  background: transparent;
  border: 1px solid var(--ink-100);
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .88rem;
  color: var(--ink-700);
  margin-bottom: 6px;
  transition: all var(--t-fast) var(--ease);
  text-align: left;
  font-family: inherit;
  font-weight: 500;
}
.dept-list li button:hover { background: var(--red-50); color: var(--red-600); border-color: var(--red-200); }
.dept-list li button.active { background: var(--red-500); color: #fff; border-color: var(--red-500); }
.dept-list li button .count { font-size: .78rem; opacity: .8; }

.tests-main { min-width: 0; }
.tests-search {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 6px 6px 6px 18px;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.tests-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--ink-800);
  font-family: inherit;
}
.tests-search svg { width: 20px; height: 20px; color: var(--ink-400); }
.tests-search-clear { background: var(--ink-50); border: none; border-radius: 8px; padding: 8px 12px; cursor: pointer; color: var(--ink-500); font-size: .85rem; font-weight: 600; }

.tests-result-meta { color: var(--ink-500); font-size: .9rem; margin-bottom: 14px; }
.tests-list { display: flex; flex-direction: column; gap: 8px; max-height: 70vh; overflow-y: auto; padding-right: 4px; }
.test-row {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  transition: all var(--t-fast) var(--ease);
}
.test-row:hover { border-color: var(--red-200); background: var(--red-50); }
.test-row.selected { background: var(--red-50); border-color: var(--red-500); }
.test-row .test-info { flex: 1; min-width: 0; }
.test-row .test-name { font-weight: 600; color: var(--ink-900); font-size: .95rem; margin: 0 0 2px; }
.test-row .test-dept { color: var(--ink-500); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.test-row .test-price { font-family: var(--font-display); font-weight: 700; color: var(--ink-900); font-size: 1rem; white-space: nowrap; }
.test-row .test-price-prefix { color: var(--ink-500); font-size: .78rem; font-weight: 500; margin-right: 2px; }
.test-add {
  background: var(--red-50);
  border: 1px solid var(--red-200);
  color: var(--red-600);
  width: 36px; height: 36px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex: 0 0 36px;
  transition: all var(--t-fast) var(--ease);
}
.test-add:hover { background: var(--red-500); color: #fff; border-color: var(--red-500); }
.test-add svg { width: 18px; height: 18px; }
.test-row.selected .test-add { background: var(--red-500); color: #fff; border-color: var(--red-500); }

.tests-empty { background: #fff; border: 2px dashed var(--ink-100); border-radius: var(--radius); padding: 40px; text-align: center; color: var(--ink-500); }

.tests-cart {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--ink-100);
  padding: 24px;
  position: sticky; top: 100px;
  box-shadow: var(--shadow);
}
@media (max-width: 1100px) { .tests-cart { position: static; } }
.tests-cart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--ink-100); }
.tests-cart-head h3 { margin: 0; font-size: 1.1rem; display: flex; align-items: center; gap: 8px; }
.tests-cart-head h3 .badge { background: var(--red-500); color: #fff; padding: 2px 9px; border-radius: 999px; font-size: .78rem; font-weight: 700; }
.cart-clear { background: none; border: none; color: var(--ink-500); font-size: .85rem; cursor: pointer; font-family: inherit; }
.cart-clear:hover { color: var(--red-600); }

.cart-items { list-style: none; padding: 0; margin: 0 0 16px; max-height: 280px; overflow-y: auto; }
.cart-items li { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 10px 0; border-bottom: 1px solid var(--ink-50); font-size: .9rem; }
.cart-items li:last-child { border-bottom: none; }
.cart-items .ci-name { color: var(--ink-700); flex: 1; min-width: 0; }
.cart-items .ci-name strong { display: block; color: var(--ink-900); font-weight: 600; }
.cart-items .ci-name small { color: var(--ink-500); font-size: .76rem; }
.cart-items .ci-price { color: var(--ink-900); font-weight: 700; white-space: nowrap; }
.cart-items .ci-remove { background: var(--red-50); border: none; color: var(--red-500); width: 26px; height: 26px; border-radius: 6px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 26px; }
.cart-items .ci-remove:hover { background: var(--red-500); color: #fff; }
.cart-items .ci-remove svg { width: 14px; height: 14px; }
.cart-empty { color: var(--ink-400); text-align: center; padding: 30px 0; font-size: .9rem; }

.cart-total {
  background: linear-gradient(135deg, var(--ink-900), var(--ink-800));
  color: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 14px;
}
.cart-total .ct-label { color: var(--ink-300); font-size: .82rem; }
.cart-total .ct-amt { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.cart-total .ct-amt small { font-size: 1rem; font-weight: 500; color: var(--ink-300); margin-right: 4px; }
.cart-actions { display: flex; flex-direction: column; gap: 8px; }
.cart-actions .btn { width: 100%; }
.cart-note { color: var(--ink-500); font-size: .8rem; text-align: center; margin: 12px 0 0; }

/* ============== Page extras ============== */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-text h2 { margin-bottom: 18px; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 30px 0; }
.about-stat { background: var(--bg-soft); padding: 20px; border-radius: 12px; }
.about-stat .as-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--red-500); line-height: 1; }
.about-stat .as-label { color: var(--ink-600); font-size: .85rem; margin-top: 4px; }

.about-visual {
  background: linear-gradient(135deg, var(--red-50), #fff);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute; top: 20px; right: 20px;
  width: 100px; height: 100px;
  background: var(--red-100);
  border-radius: 50%;
  opacity: .5;
}
.about-icon-large { width: 140px; height: 140px; margin: 0 auto 24px; }
.about-icon-large img { width: 100%; height: 100%; object-fit: contain; }

.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .mission-grid { grid-template-columns: 1fr; } }
.mission-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--ink-100);
  text-align: center;
  transition: all var(--t) var(--ease);
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mission-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--red-50);
  color: var(--red-500);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.mission-icon svg { width: 32px; height: 32px; }
.mission-card h3 { margin-bottom: 10px; }
.mission-card p { color: var(--ink-500); font-size: .92rem; }

/* ============== Contact ============== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: flex-start; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all var(--t) var(--ease);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ci-icon {
  width: 48px; height: 48px; flex: 0 0 48px;
  border-radius: 12px;
  background: var(--red-50);
  color: var(--red-500);
  display: inline-flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 22px; height: 22px; }
.ci-text h4 { margin: 0 0 4px; font-size: 1rem; }
.ci-text p, .ci-text a { margin: 0; color: var(--ink-600); font-size: .9rem; line-height: 1.6; }

.contact-form { background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius); padding: 32px; }
.contact-form h3 { margin-bottom: 6px; }
.contact-form > p { color: var(--ink-500); font-size: .92rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--ink-700); }
.form-group input, .form-group textarea, .form-group select {
  border: 1px solid var(--ink-200);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink-800);
  background: #fff;
  transition: all var(--t-fast) var(--ease);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(225,29,42,.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-success { background: #ECFDF5; border: 1px solid #10B981; color: #065F46; padding: 14px 18px; border-radius: 10px; font-size: .92rem; margin-bottom: 14px; }

.map-frame {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  margin-top: 24px;
}

/* ============== Reports page ============== */
.reports-hero {
  background: linear-gradient(135deg, var(--ink-900), var(--ink-800));
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reports-hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(225,29,42,.18) 0%, transparent 60%);
  border-radius: 50%;
}
.reports-hero h1 { color: #fff; }
.reports-hero p { color: var(--ink-200); font-size: 1.1rem; max-width: 640px; margin: 0 auto 30px; }
.reports-hero .reports-icon {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  border-radius: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 16px 40px -12px rgba(225,29,42,.5);
}
.reports-hero .reports-icon svg { width: 50px; height: 50px; color: #fff; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  position: relative;
}
.step-card .step-num-circle {
  width: 56px; height: 56px;
  background: var(--red-500);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px -6px rgba(225,29,42,.4);
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--ink-500); font-size: .9rem; margin: 0; }

/* ============== Animations ============== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============== Utilities ============== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.hide-mobile { display: initial; }
.show-mobile { display: none; }
@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .show-mobile { display: initial; }
}
