/* =========================================================
   Health Care Lab — Premium Design System
   Color: deep teal + warm gold
   ========================================================= */

:root {
  /* Brand */
  --primary-50:  #E6F4F6;
  --primary-100: #C3E4E9;
  --primary-200: #8DCBD5;
  --primary-400: #2BA0AE;
  --primary-500: #118A99;
  --primary-600: #0B7285;
  --primary-700: #0A5C6B;
  --primary-800: #084A57;
  --primary-900: #063A45;

  /* Accent */
  --accent-50:  #FEF6E6;
  --accent-100: #FDE9BD;
  --accent-300: #FBC976;
  --accent-500: #F59E0B;
  --accent-600: #D97706;
  --accent-700: #B45309;

  /* Coral for highlights/CTA */
  --coral-500: #FB6F4D;
  --coral-600: #E55A3A;

  /* Neutrals */
  --ink-900: #0B1220;
  --ink-800: #111827;
  --ink-700: #1F2937;
  --ink-600: #374151;
  --ink-500: #4B5563;
  --ink-400: #6B7280;
  --ink-300: #9CA3AF;
  --ink-200: #E5E7EB;
  --ink-100: #F3F4F6;
  --ink-50:  #F8FAFC;

  /* Semantic */
  --bg: #ffffff;
  --bg-soft: #F6FAFB;
  --bg-tint: #EFF7F9;
  --text: #0F1B2D;
  --text-soft: #4B5563;
  --text-muted: #6B7280;
  --border: #E2E8F0;
  --border-soft: #EEF2F4;
  --success: #10B981;
  --success-50: #ECFDF5;
  --danger:  #EF4444;

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(11,114,133,0.06);
  --shadow-sm: 0 4px 12px rgba(11,114,133,0.06), 0 1px 2px rgba(11,114,133,0.04);
  --shadow:    0 12px 32px -8px rgba(11,114,133,0.12), 0 4px 8px -2px rgba(11,114,133,0.05);
  --shadow-lg: 0 32px 64px -16px rgba(8,74,87,0.18), 0 8px 24px -8px rgba(8,74,87,0.08);
  --shadow-xl: 0 48px 96px -24px rgba(8,74,87,0.24);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;

  --gradient-primary: linear-gradient(135deg, #0B7285 0%, #118A99 50%, #2BA0AE 100%);
  --gradient-accent:  linear-gradient(135deg, #F59E0B 0%, #FB6F4D 100%);
  --gradient-hero:    linear-gradient(135deg, #063A45 0%, #0B7285 60%, #118A99 100%);
  --gradient-soft:    linear-gradient(180deg, #F6FAFB 0%, #ffffff 100%);

  --font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
}

/* =========================================================
   Reset & Base
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--primary-600); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-700); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, select, textarea { font-family: inherit; font-size: 1rem; }

::selection { background: var(--primary-600); color: white; }

/* Subtle grain overlay for premium feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

main, header, footer, section { position: relative; z-index: 2; }

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-soft); }
p.lead { font-size: 1.18rem; line-height: 1.65; color: var(--text-soft); max-width: 60ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary-50);
  color: var(--primary-700);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--primary-100);
  margin-bottom: 16px;
}

.eyebrow.accent { background: var(--accent-50); color: var(--accent-700); border-color: var(--accent-100); }
.eyebrow.coral { background: #FFF1ED; color: var(--coral-600); border-color: #FFD7C8; }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================================================
   Layout
   ========================================================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-tight { max-width: 980px; }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }

@media (max-width: 768px) {
  section { padding: 64px 0; }
  section.tight { padding: 48px 0; }
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-title p { font-size: 1.1rem; color: var(--text-soft); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  letter-spacing: -0.01em;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 1.5px solid transparent;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary-600);
  color: white;
  box-shadow: 0 6px 16px -4px rgba(11,114,133,0.35);
}
.btn-primary:hover {
  background: var(--primary-700);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(11,114,133,0.45);
}

.btn-accent {
  background: var(--accent-500);
  color: white;
  box-shadow: 0 6px 16px -4px rgba(245,158,11,0.4);
}
.btn-accent:hover {
  background: var(--accent-600);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(245,158,11,0.5);
}

.btn-coral {
  background: var(--coral-500);
  color: white;
  box-shadow: 0 6px 16px -4px rgba(251,111,77,0.4);
}
.btn-coral:hover {
  background: var(--coral-600);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(251,111,77,0.5);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 6px 16px -4px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover {
  background: #1DAB54;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: white;
  color: var(--primary-700);
  border-color: var(--ink-200);
}
.btn-outline:hover {
  border-color: var(--primary-500);
  color: var(--primary-700);
  background: var(--primary-50);
}

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

.btn-light {
  background: white;
  color: var(--primary-700);
}
.btn-light:hover { background: var(--primary-50); color: var(--primary-800); }

.btn-lg { padding: 18px 32px; font-size: 1.05rem; border-radius: 14px; }
.btn-sm { padding: 10px 16px; font-size: 0.85rem; border-radius: 10px; }
.btn-block { width: 100%; }

/* =========================================================
   Top bar
   ========================================================= */
.topbar {
  background: var(--ink-900);
  color: var(--ink-200);
  font-size: 0.82rem;
  padding: 9px 0;
  position: relative;
  z-index: 60;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar a { color: var(--ink-200); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--accent-300); }
.topbar svg { width: 14px; height: 14px; }

.topbar-left, .topbar-right { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.topbar-right { font-weight: 600; gap: 12px; }
.topbar-right .report-link {
  color: var(--accent-300);
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  transition: all 0.2s;
}
.topbar-right .report-link:hover {
  color: white;
  background: var(--accent-500);
  border-color: var(--accent-500);
}
.topbar-right .whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4ADE80;
  padding: 5px 12px 5px 8px;
  border-radius: 999px;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  transition: all 0.2s;
  white-space: nowrap;
}
.topbar-right .whatsapp-link:hover {
  color: #052E1A;
  background: #4ADE80;
  border-color: #4ADE80;
}
.topbar-right .whatsapp-link svg { color: #25D366; }
.topbar-right .whatsapp-link:hover svg { color: #052E1A; }

@media (max-width: 768px) {
  .topbar-inner { gap: 8px; }
  .topbar-left, .topbar-right { gap: 10px; font-size: 0.78rem; }
  .topbar { padding: 7px 0; }
  .topbar-left a:nth-child(2) { display: none; }  /* hide email on small screens */
  .topbar-right .whatsapp-link span { display: none; }  /* hide number, show icon only */
  .topbar-right .whatsapp-link { padding: 6px 8px; }
  .topbar-right .report-link span { display: none; }  /* hide "View Reports" text, show icon only */
  .topbar-right .report-link { padding: 6px 8px; }
  .topbar-right .report-link::after { content: " Reports"; display: none; }
  .topbar-right .report-link svg + span { display: none; }
}

/* =========================================================
   Header / Nav
   ========================================================= */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border-soft);
  transition: all 0.2s;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-logo-img-sm {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-logo-img-lg {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-text { line-height: 1.1; }
.brand-text .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  display: block;
}
.brand-text .tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-700);
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--primary-700); background: var(--primary-50); }
.nav-links a.active { color: var(--primary-700); background: var(--primary-50); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ink-50);
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 51;
  transition: background 0.2s;
}
.nav-toggle:hover { background: var(--primary-50); }
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-800);
  position: relative;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-toggle span::before { content: ""; position: absolute; top: -7px; }
.nav-toggle span::after { content: ""; position: absolute; top: 7px; }

.nav-toggle.active { background: var(--primary-50); }
.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { top: 0; transform: rotate(45deg); background: var(--primary-700); }
.nav-toggle.active span::after { top: 0; transform: rotate(-45deg); background: var(--primary-700); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8,74,87,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 48;
}
.nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(360px, 86vw);
    background: white;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 96px 22px 28px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 50;
    visibility: hidden;
  }
  .nav-links.open { transform: translateX(0); visibility: visible; }
  .nav-links a {
    padding: 14px 16px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-soft);
    border-radius: 0;
    flex-shrink: 0;
  }
  .nav-links a.btn { padding: 14px 18px; border: 1.5px solid var(--ink-200); margin-top: 8px; flex-shrink: 0; }
  .nav-actions .btn { display: none; }
  body.nav-open { overflow: hidden; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: var(--gradient-hero);
  color: white;
  padding: 120px 0 140px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(245,158,11,0.18), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(43,160,174,0.3), transparent 50%);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%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");
  z-index: -1;
  opacity: 0.5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
}

.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--accent-300);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-300);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
  color: white;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
}

.hero h1 .accent {
  background: linear-gradient(135deg, #FBC976 0%, #FB6F4D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-actions .btn-primary {
  background: var(--accent-500);
  color: white;
  box-shadow: 0 8px 24px -6px rgba(245,158,11,0.55);
}
.hero-actions .btn-primary:hover {
  background: var(--accent-600);
  box-shadow: 0 16px 32px -8px rgba(245,158,11,0.6);
}

.hero-actions .btn-outline {
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  color: white;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust-item svg { width: 18px; height: 18px; color: var(--accent-300); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-card {
  position: absolute;
  background: white;
  color: var(--ink-800);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-50);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-icon svg { width: 24px; height: 24px; }

.hero-card-text { line-height: 1.25; }
.hero-card-title { font-weight: 800; font-size: 1.1rem; color: var(--ink-900); font-family: var(--font-display); }
.hero-card-sub { font-size: 0.82rem; color: var(--text-muted); }

.hero-card.report {
  top: 8px; left: 0;
  animation: floatA 6s ease-in-out infinite;
}
.hero-card.home {
  top: 8px; right: 0;
  animation: floatB 7s ease-in-out infinite;
}
.hero-card.cert {
  bottom: 70px; left: 0;
  animation: floatA 8s ease-in-out infinite reverse;
}
.hero-card.xmed {
  bottom: 8px; right: 0;
  animation: floatB 6.5s ease-in-out infinite reverse;
}

.hero-card.xmed .hero-card-icon { background: linear-gradient(135deg, #CFFAFE, #A5F3FC); color: #0E7490; }
.hero-card.home .hero-card-icon { background: var(--accent-50); color: var(--accent-700); }
.hero-card.cert .hero-card-icon { background: #ECFDF5; color: #047857; }

@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.hero-screen {
  position: absolute;
  inset: 80px 18% 16% 18%;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  z-index: 0;
}

.hero-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  z-index: 0;
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #F1F5F9;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  z-index: 1;
}

.screen-bar span {
  width: 11px; height: 11px; border-radius: 50%;
}
.screen-bar span:nth-child(1) { background: #FF5F56; }
.screen-bar span:nth-child(2) { background: #FFBD2E; }
.screen-bar span:nth-child(3) { background: #27C93F; }

.screen-url {
  margin-left: 12px;
  padding: 4px 12px;
  background: white;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}

.screen-body {
  padding: 20px;
  position: relative;
  z-index: 1;
}

.screen-report {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.screen-report-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed var(--border-soft);
  font-size: 0.78rem;
}

.screen-report-id { font-family: var(--font-mono); color: var(--primary-600); font-weight: 600; }
.screen-report-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--success-50);
  color: var(--success);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
}
.screen-report-status::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
}

.screen-test-row {
  display: grid;
  grid-template-columns: 1fr 60px 70px;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-soft);
}
.screen-test-row:last-child { border-bottom: none; }

.screen-test-name { color: var(--ink-700); font-weight: 500; }
.screen-test-value { font-weight: 700; color: var(--ink-900); font-family: var(--font-mono); }
.screen-test-flag {
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.screen-test-flag.ok { background: var(--success-50); color: var(--success); }
.screen-test-flag.low { background: #FEF3C7; color: #B45309; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 80px; }
  .hero-visual { min-height: 400px; max-width: 480px; margin: 0 auto; }
  .hero { padding: 80px 0 100px; }
}
@media (max-width: 640px) {
  .hero { padding: 56px 0 80px; }
  .hero-card { padding: 14px; min-width: 160px; }
  .hero-card-icon { width: 38px; height: 38px; }
  .hero-card-title { font-size: 0.95rem; }
  .hero-card-sub { font-size: 0.74rem; }
  .hero-screen { inset: 60px 6% 8% 6%; }
}

/* =========================================================
   Stats strip
   ========================================================= */
.stats-strip {
  background: white;
  padding: 0;
  margin-top: -64px;
  position: relative;
  z-index: 3;
}

.stats-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  padding: 36px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--primary-700);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-num .suffix { color: var(--accent-500); }
.stat-label {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-top: 6px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-card { grid-template-columns: repeat(2, 1fr); padding: 24px 16px; }
  .stats-strip { margin-top: -40px; }
}

/* =========================================================
   Service cards
   ========================================================= */
.service-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-50), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary-50);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--primary-600);
  color: white;
  transform: scale(1.05);
}

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-soft);
  font-size: 0.96rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-700);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.service-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.service-link:hover svg { transform: translateX(4px); }
.service-link:hover { color: var(--primary-800); }

.service-card.accent .service-icon { background: var(--accent-50); color: var(--accent-700); }
.service-card.accent:hover .service-icon { background: var(--accent-500); color: white; }
.service-card.coral .service-icon { background: #FFF1ED; color: var(--coral-600); }
.service-card.coral:hover .service-icon { background: var(--coral-500); color: white; }

/* =========================================================
   Why us section
   ========================================================= */
.why-section {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--primary-100), transparent 70%);
  opacity: 0.5;
  z-index: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-list { display: grid; gap: 22px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--primary-600);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -2px rgba(11,114,133,0.3);
}
.why-check svg { width: 16px; height: 16px; }

.why-item h4 { margin: 0 0 4px; font-size: 1.1rem; }
.why-item p { margin: 0; color: var(--text-soft); font-size: 0.95rem; }

.why-visual {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  position: relative;
}

.why-big-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.05em;
}

.why-big-label {
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 24px;
}

.why-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.why-pill {
  padding: 6px 14px;
  background: var(--primary-50);
  color: var(--primary-700);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid var(--primary-100);
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-big-num { font-size: 4rem; }
}

/* =========================================================
   xMed EMR section
   ========================================================= */
.xmed-section {
  background: linear-gradient(135deg, #063A45 0%, #0B7285 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.xmed-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0z' fill='none'/%3E%3Cpath d='M20 0v40M0 20h40' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
}

.xmed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.xmed-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.xmed-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #CFFAFE, #67E8F9);
  color: #0E7490;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.xmed-logo-img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.xmed-logo-img-lg {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.xmed-brand-text { line-height: 1.2; }
.xmed-eyebrow {
  font-size: 0.78rem;
  color: var(--accent-300);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.xmed-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
}

.xmed-content h2 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 16px;
}

.xmed-content h2 .accent {
  background: linear-gradient(135deg, #FBC976, #FB6F4D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.xmed-content > p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 56ch;
}

.xmed-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.xmed-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.xmed-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: var(--accent-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.xmed-feature-icon svg { width: 18px; height: 18px; }

.xmed-feature h4 { margin: 0 0 4px; color: white; font-size: 1rem; }
.xmed-feature p { margin: 0; color: rgba(255,255,255,0.7); font-size: 0.85rem; }

.xmed-visual {
  position: relative;
  perspective: 1200px;
}

.xmed-screen {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(4deg);
}

.xmed-screen-bar {
  background: #F1F5F9;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.xmed-screen-bar span {
  width: 11px; height: 11px; border-radius: 50%;
}
.xmed-screen-bar span:nth-child(1) { background: #FF5F56; }
.xmed-screen-bar span:nth-child(2) { background: #FFBD2E; }
.xmed-screen-bar span:nth-child(3) { background: #27C93F; }
.xmed-screen-bar .xmed-url {
  margin-left: 12px;
  padding: 4px 12px;
  background: white;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}

.xmed-screen-body { padding: 24px; }

.xmed-report-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--border-soft);
}
.xmed-report-id {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary-600);
  font-size: 0.9rem;
}
.xmed-report-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--success-50);
  color: var(--success);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
}

.xmed-report-title { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--ink-900); margin-bottom: 14px; }

.xmed-test-row {
  display: grid;
  grid-template-columns: 1fr 60px 80px;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.88rem;
}
.xmed-test-row:last-of-type { border-bottom: none; }
.xmed-test-name { color: var(--ink-700); }
.xmed-test-value { font-weight: 700; color: var(--ink-900); font-family: var(--font-mono); text-align: right; }
.xmed-test-flag {
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.xmed-test-flag.ok { background: var(--success-50); color: var(--success); }
.xmed-test-flag.low { background: #FEF3C7; color: #B45309; }

.xmed-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.xmed-float {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  pointer-events: auto;
  animation: floatA 5s ease-in-out infinite;
}
.xmed-float svg { width: 22px; height: 22px; color: var(--primary-600); }
.xmed-float strong { display: block; color: var(--ink-900); font-weight: 700; }
.xmed-float span { color: var(--text-muted); font-size: 0.78rem; }

.xmed-float-1 { top: 20px; right: -16px; animation-delay: 0s; }
.xmed-float-2 { bottom: 60px; left: -24px; animation-delay: 1.2s; }

@media (max-width: 1024px) {
  .xmed-grid { grid-template-columns: 1fr; gap: 64px; }
  .xmed-features { grid-template-columns: 1fr; }
  .xmed-float-1 { right: 8px; }
  .xmed-float-2 { left: 8px; }
}

/* =========================================================
   Process section
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: white;
  border: 2px solid var(--primary-200);
  color: var(--primary-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.process-step:hover .process-num {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
  transform: scale(1.05);
}

.process-step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; color: var(--text-soft); margin: 0; }

@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Package cards
   ========================================================= */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pkg-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pkg-card.featured {
  background: var(--gradient-primary);
  color: white;
  border: none;
  transform: scale(1.02);
}
.pkg-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.pkg-card.featured h3,
.pkg-card.featured .pkg-price-num { color: white; }
.pkg-card.featured .pkg-tagline,
.pkg-card.featured .pkg-tests li,
.pkg-card.featured .pp-label { color: rgba(255,255,255,0.85); }
.pkg-card.featured .pkg-tests li::before { background: var(--accent-300); }
.pkg-card.featured .pkg-icon { background: rgba(255,255,255,0.15); color: white; }

.pkg-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 10px;
  background: var(--accent-500);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pkg-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary-50);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pkg-icon svg { width: 26px; height: 26px; }

.pkg-card h3 { font-size: 1.35rem; margin-bottom: 4px; }
.pkg-tagline { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 18px; }

.pkg-tests {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.pkg-tests li {
  padding: 7px 0 7px 24px;
  font-size: 0.92rem;
  color: var(--text-soft);
  position: relative;
  border-bottom: 1px dashed var(--border-soft);
}
.pkg-tests li:last-child { border-bottom: none; }
.pkg-tests li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 14px;
  background: var(--primary-600);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 11.08V12a10 10 0 11-5.93-9.14'/%3E%3Cpath d='M22 4L12 14.01l-3-3'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 11.08V12a10 10 0 11-5.93-9.14'/%3E%3Cpath d='M22 4L12 14.01l-3-3'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pkg-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}

.pkg-card.featured .pkg-price { border-top-color: rgba(255,255,255,0.15); }

.pkg-price .pp-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; }
.pkg-price .pkg-price-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1;
}

.pkg-card.featured .pkg-price-num { color: var(--accent-300); }
.pkg-card.featured .pp-amt-currency { color: rgba(255,255,255,0.7); }

@media (max-width: 1024px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } .pkg-card.featured { transform: none; } }
@media (max-width: 640px)  { .pkg-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Testimonials
   ========================================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.testi-stars { color: var(--accent-500); margin-bottom: 14px; display: flex; gap: 2px; }
.testi-stars svg { width: 18px; height: 18px; fill: currentColor; }

.testi-text { color: var(--text-soft); font-size: 0.98rem; line-height: 1.6; margin-bottom: 20px; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--ink-900); font-size: 0.95rem; }
.testi-role { font-size: 0.82rem; color: var(--text-muted); }

@media (max-width: 1024px) { .testi-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; } }

/* =========================================================
   Test picker
   ========================================================= */
.picker-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: flex-start;
}

.picker-main {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.picker-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.picker-search {
  flex: 1;
  min-width: 220px;
  position: relative;
}
.picker-search input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  background: var(--ink-50);
  transition: all 0.2s;
}
.picker-search input:focus {
  outline: none;
  border-color: var(--primary-500);
  background: white;
  box-shadow: 0 0 0 4px rgba(11,114,133,0.1);
}
.picker-search svg {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: var(--text-muted);
}

.picker-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.cat-chip {
  padding: 8px 16px;
  background: var(--ink-50);
  color: var(--ink-700);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid transparent;
}
.cat-chip:hover { background: var(--primary-50); color: var(--primary-700); }
.cat-chip.active {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
}

.test-list {
  display: grid;
  gap: 8px;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 6px;
}

.test-list::-webkit-scrollbar { width: 6px; }
.test-list::-webkit-scrollbar-track { background: var(--ink-50); }
.test-list::-webkit-scrollbar-thumb { background: var(--ink-200); border-radius: 3px; }
.test-list::-webkit-scrollbar-thumb:hover { background: var(--ink-300); }

.test-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--ink-50);
  border: 1.5px solid transparent;
  border-radius: 10px;
  transition: all 0.15s;
  cursor: pointer;
}
.test-row:hover { background: var(--primary-50); border-color: var(--primary-100); }
.test-row.selected { background: var(--primary-50); border-color: var(--primary-500); }

.test-row-check {
  width: 22px; height: 22px;
  border: 2px solid var(--ink-300);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: white;
  transition: all 0.15s;
}
.test-row.selected .test-row-check {
  background: var(--primary-600);
  border-color: var(--primary-600);
}
.test-row.selected .test-row-check::after {
  content: "";
  width: 6px; height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.test-row-info { flex: 1; min-width: 0; }
.test-row-name {
  font-weight: 600;
  color: var(--ink-800);
  font-size: 0.92rem;
  line-height: 1.3;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.test-row-dept {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.test-row-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary-700);
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Cart sidebar */
.picker-cart {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 130px);
  display: flex;
  flex-direction: column;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.cart-title { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--ink-900); margin: 0; }
.cart-count {
  background: var(--primary-100);
  color: var(--primary-700);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  margin: 0 -8px;
  padding: 0 8px;
  max-height: 280px;
}

.cart-empty {
  text-align: center;
  padding: 32px 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.cart-empty svg { width: 40px; height: 40px; opacity: 0.4; margin: 0 auto 12px; }

.cart-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-soft);
  font-size: 0.86rem;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-name { flex: 1; color: var(--ink-700); line-height: 1.35; }
.cart-item-price { font-weight: 700; color: var(--ink-900); white-space: nowrap; font-family: var(--font-display); }
.cart-item-remove {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink-100);
  color: var(--ink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.cart-item-remove:hover { background: var(--coral-500); color: white; }
.cart-item-remove svg { width: 12px; height: 12px; }

.cart-summary {
  padding-top: 16px;
  margin-top: 12px;
  border-top: 2px solid var(--ink-100);
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
}
.cart-total-label { font-weight: 700; color: var(--ink-800); font-size: 1rem; }
.cart-total-amt {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-700);
  letter-spacing: -0.02em;
}
.cart-total-amt .currency { font-size: 0.95rem; color: var(--text-muted); margin-right: 2px; font-weight: 600; }

.cart-actions {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.cart-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .picker-layout { grid-template-columns: 1fr; }
  .picker-cart { position: static; max-height: none; }
  .cart-items { max-height: 240px; }
}

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: 64px 48px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(245,158,11,0.25), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(43,160,174,0.3), transparent 40%);
  pointer-events: none;
}

.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: white; font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 60ch; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 640px) { .cta-banner { padding: 40px 24px; } }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--ink-900);
  color: var(--ink-200);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500), var(--coral-500));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .brand-logo { box-shadow: none; }
.footer-brand .name { color: white; }
.footer-brand .tagline { color: var(--ink-300); }

.footer p { color: var(--ink-300); font-size: 0.92rem; max-width: 36ch; }

.footer h5 {
  color: white;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin: 0 0 16px;
}

.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a {
  color: var(--ink-300);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.footer a:hover { color: var(--accent-300); }

.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: var(--ink-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--primary-600);
  color: white;
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-300);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent-300); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: var(--ink-300); }
.footer-contact-item a:hover { color: var(--accent-300); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--ink-400);
}
.footer-bottom a { color: var(--ink-400); }
.footer-bottom a:hover { color: var(--accent-300); }
.footer-bottom-links { display: flex; gap: 18px; }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Floating WhatsApp button
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(37,211,102,0.5);
  transition: all 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
  background: #1DAB54;
  color: white;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.4;
  animation: ripple 1.8s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* =========================================================
   Subpage hero
   ========================================================= */
.subhero {
  background: var(--gradient-hero);
  color: white;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245,158,11,0.15), transparent 50%);
}
.subhero h1 { color: white; margin-bottom: 12px; position: relative; z-index: 1; }
.subhero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 60ch; position: relative; z-index: 1; }
.subhero .eyebrow {
  background: rgba(255,255,255,0.1);
  color: var(--accent-300);
  border-color: rgba(255,255,255,0.15);
  position: relative; z-index: 1;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.6; }

/* =========================================================
   Cards: team, values
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  box-shadow: var(--shadow);
  border: 4px solid white;
}

.team-avatar.alt-1 { background: linear-gradient(135deg, #FB6F4D, #F59E0B); }
.team-avatar.alt-2 { background: linear-gradient(135deg, #0B7285, #2BA0AE); }
.team-avatar.alt-3 { background: linear-gradient(135deg, #7C3AED, #C084FC); }
.team-avatar.alt-4 { background: linear-gradient(135deg, #047857, #10B981); }
.team-avatar.alt-5 { background: linear-gradient(135deg, #B45309, #F59E0B); }

.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-role { color: var(--primary-600); font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; }
.team-quals { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .team-grid { grid-template-columns: 1fr; } }

/* =========================================================
   About / values
   ========================================================= */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.value-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--primary-50);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.value-icon svg { width: 30px; height: 30px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { font-size: 0.95rem; }

@media (max-width: 1024px) { .value-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* Story layout */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-img {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
}
.story-img-badge .num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--primary-700); line-height: 1; }
.story-img-badge .label { font-size: 0.82rem; color: var(--text-soft); }

@media (max-width: 1024px) { .story-grid { grid-template-columns: 1fr; gap: 36px; } .story-img { max-width: 480px; margin: 0 auto; } }

/* =========================================================
   Locations page
   ========================================================= */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.loc-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.loc-card-main {
  background: var(--gradient-primary);
  color: white;
  border: none;
  box-shadow: var(--shadow-lg);
}

.loc-card-main .loc-addr,
.loc-card-main .loc-dist { color: rgba(255,255,255,0.85); }
.loc-card-main .loc-hours { color: rgba(255,255,255,0.9); }
.loc-card-main .loc-icon { background: rgba(255,255,255,0.15); color: white; }
.loc-card-main .loc-badge { background: var(--accent-500); color: white; }
.loc-card-main .loc-link {
  color: white;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
}
.loc-card-main .loc-link:hover {
  background: white;
  color: var(--primary-700);
  border-color: white;
}

.loc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.loc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-50);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-icon svg { width: 22px; height: 22px; }

.loc-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--primary-100);
  color: var(--primary-700);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.loc-badge-soft {
  background: var(--ink-100);
  color: var(--text-muted);
}

.loc-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.loc-addr {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 4px;
  line-height: 1.5;
}

.loc-dist {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.loc-hours {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 14px;
  padding: 8px 0;
  border-top: 1px dashed var(--border-soft);
}
.loc-hours svg { width: 14px; height: 14px; color: var(--primary-600); }

.loc-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: auto;
  padding: 10px 14px;
  background: var(--ink-50);
  color: var(--primary-700);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  transition: all 0.2s;
}
.loc-link:hover {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
}
.loc-link svg { width: 14px; height: 14px; }

@media (max-width: 1024px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .loc-grid { grid-template-columns: 1fr; } }

/* Locations preview (home page) */
.loc-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.loc-mini {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.2s;
}
.loc-mini:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.loc-mini-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-900);
  line-height: 1.2;
}
.loc-mini-addr {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.4;
}
.loc-mini .tag {
  align-self: flex-start;
  font-size: 0.7rem;
}

@media (max-width: 1024px) { .loc-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .loc-preview-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Reports page
   ========================================================= */
.reports-card {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.reports-card::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--primary-100), transparent 70%);
}

.reports-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 24px -6px rgba(11,114,133,0.4);
}
.reports-icon svg { width: 38px; height: 38px; }

.reports-card h2 { font-size: 1.75rem; margin-bottom: 8px; position: relative; z-index: 1; }
.reports-card > p { color: var(--text-soft); margin-bottom: 28px; position: relative; z-index: 1; }

.reports-steps {
  display: grid;
  gap: 14px;
  text-align: left;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.reports-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: var(--ink-50);
  border-radius: 12px;
}
.reports-step-num {
  width: 32px; height: 32px;
  background: var(--primary-600);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.reports-step-text strong { display: block; color: var(--ink-900); margin-bottom: 2px; }
.reports-step-text span { color: var(--text-muted); font-size: 0.9rem; }

.reports-cta { position: relative; z-index: 1; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { padding: 8px 0; }
.contact-info h2 { font-size: 2rem; margin-bottom: 12px; }
.contact-info > p { color: var(--text-soft); margin-bottom: 32px; }

.contact-list { display: grid; gap: 18px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.contact-item:hover { border-color: var(--primary-200); box-shadow: var(--shadow-sm); }
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-50);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; }
.contact-item .label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact-item .value { font-weight: 700; color: var(--ink-900); font-size: 1rem; margin-top: 2px; display: block; }
.contact-item a.value { color: var(--ink-900); }
.contact-item a.value:hover { color: var(--primary-700); }
.contact-item .sub { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

.contact-form {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-form > p { color: var(--text-soft); margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; color: var(--ink-700); font-size: 0.9rem; margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  background: var(--ink-50);
  transition: all 0.2s;
  color: var(--ink-900);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  background: white;
  box-shadow: 0 0 0 4px rgba(11,114,133,0.1);
}
.form-field textarea { min-height: 100px; resize: vertical; }

.map-frame {
  margin-top: 32px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* =========================================================
   Page intro / text
   ========================================================= */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) { .intro-grid { grid-template-columns: 1fr; gap: 36px; } }

.intro-features { display: grid; gap: 20px; margin-top: 24px; }
.intro-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.intro-feature .check {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: var(--success-50);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-feature .check svg { width: 14px; height: 14px; }
.intro-feature h4 { margin: 0 0 4px; font-size: 1rem; }
.intro-feature p { margin: 0; color: var(--text-soft); font-size: 0.92rem; }

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* =========================================================
   Counter animation
   ========================================================= */
.counter { display: inline-block; }

/* =========================================================
   Tag / chip
   ========================================================= */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--primary-50);
  color: var(--primary-700);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid var(--primary-100);
  margin-right: 6px;
  margin-bottom: 4px;
}

.tag.accent { background: var(--accent-50); color: var(--accent-700); border-color: var(--accent-100); }
.tag.coral { background: #FFF1ED; color: var(--coral-600); border-color: #FFD7C8; }

/* =========================================================
   Utility
   ========================================================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.hide-mobile { display: initial; }
@media (max-width: 768px) { .hide-mobile { display: none; } }
.show-mobile { display: none; }
@media (max-width: 768px) { .show-mobile { display: initial; } }

/* Selection in nav for current page */
.nav-links a.active { color: var(--primary-700); background: var(--primary-50); }

/* Print friendly */
@media print {
  .nav-wrap, .topbar, .wa-float, .footer, .cta-banner { display: none !important; }
  body::before { display: none; }
  .hero, .subhero { background: white !important; color: black !important; }
  .hero h1, .subhero h1 { color: black !important; }
}
