/* Tailwind CSS compiled - Production version */
/* This file combines Tailwind utilities with custom styles */

/* Base styles */
body { font-family: 'Lato', sans-serif; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6, .font-heading { font-family: 'Montserrat', sans-serif; }
html { font-size: 18px; }
@media (min-width: 768px) { html { font-size: 19px; } }

/* Tailwind base utilities */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: inherit; line-height: inherit; }

/* Typography */
h1 { font-size: 2.25rem; font-weight: 900; }
h2 { font-size: 1.875rem; font-weight: 900; }
h3 { font-size: 1.5rem; font-weight: 900; }
h4 { font-size: 1.25rem; font-weight: 900; }

/* Flexbox utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Grid utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 767px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.m-0 { margin: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Width and Height */
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-screen { width: 100vw; }
.h-screen { height: 100vh; }

/* Display */
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

/* Positioning */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

/* Background colors */
.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-600 { background-color: #2563eb; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-500 { background-color: #22c55e; }
.bg-orange-600 { background-color: #ea580c; }
.bg-navy-900 { background-color: #0f2a6b; }

/* Text colors */
.text-white { color: #ffffff; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-navy-900 { color: #0f2a6b; }
.text-orange-600 { color: #ea580c; }
.text-blue-700 { color: #1d4ed8; }

/* Border */
.border { border-width: 1px; border-color: #e2e8f0; }
.border-2 { border-width: 2px; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

/* Transitions */
.transition { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Hover states */
.hover\:bg-slate-100:hover { background-color: #f1f5f9; }
.hover\:bg-orange-700:hover { background-color: #c2410c; }
.hover\:text-blue-700:hover { color: #1d4ed8; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }

/* Focus states */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid rgba(234, 88, 12, 0.35);
  outline-offset: 3px;
}

/* Custom components from original CSS */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.bg-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.skip-nav { position: absolute; left: -9999px; top: 4px; z-index: 9999; background: #0f2a6b; color: #fff; padding: 8px 16px; border-radius: 4px; font-weight: 700; text-decoration: none; }
.skip-nav:focus { left: 4px; }
.soft-card { background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.96)); border: 1px solid rgba(226, 232, 240, 0.9); box-shadow: 0 16px 40px rgba(15, 42, 107, 0.06); }
.trust-chip { display: inline-flex; align-items: center; gap: 0.42rem; padding: 0.58rem 0.82rem; border-radius: 9999px; background: #fff; border: 1px solid rgba(226, 232, 240, 0.95); box-shadow: 0 6px 18px rgba(15, 42, 107, 0.04); font-weight: 800; color: #0f2a6b; font-size: 0.82rem; }
.chip-trust { display: inline-flex; align-items: center; gap: 0.55rem; background: rgba(255, 255, 255, 0.82); border: 1px solid rgba(226, 232, 240, 0.95); color: #0f2a6b; padding: 0.8rem 1rem; border-radius: 9999px; font-weight: 800; box-shadow: 0 6px 22px rgba(15, 42, 107, 0.05); }
.section-eyebrow { letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.73rem; font-weight: 900; color: #ea580c; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-body.open { max-height: 500px; }
.faq-icon { transition: transform 0.3s ease; display: inline-block; }
.faq-icon.open { transform: rotate(180deg); }
.pathology-img { filter: grayscale(35%); transition: all 0.5s ease; transform: scale(1); }
.group:hover .pathology-img { filter: grayscale(0%); transform: scale(1.04); }
.hover-lift { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.hover-lift:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15, 42, 107, 0.08); }
.scope-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .scope-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.scope-card { background: rgba(255, 255, 255, 0.96); border: 1px solid rgba(226, 232, 240, 0.95); border-radius: 1.75rem; padding: 1.4rem; box-shadow: 0 10px 28px rgba(15, 42, 107, 0.05); }
.scope-card h3 { color: #0f2a6b; font-weight: 900; margin-bottom: 0.6rem; font-size: 1.05rem; }
.scope-card p { color: #475569; line-height: 1.7; font-weight: 600; }
.screening-card-clickable { cursor: pointer; }
.screening-card-clickable:hover { border-color: rgba(59, 130, 246, 0.28) !important; box-shadow: 0 16px 36px rgba(15, 42, 107, 0.08); transform: translateY(-2px); }
.nav-link.active { background-color: #0f2a6b !important; color: #fff !important; }
.floating-dock { position: fixed; left: 50%; transform: translateX(-50%); bottom: 14px; z-index: 70; background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(14px); border: 1px solid rgba(226, 232, 240, 0.9); box-shadow: 0 18px 50px rgba(15, 42, 107, 0.12); border-radius: 9999px; padding: 0.45rem; max-width: calc(100vw - 2rem); }
.floating-dock a { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.82rem 0.95rem; border-radius: 9999px; font-weight: 900; }
.floating-dock a.primary { background: #ea580c; color: #fff; }
.floating-dock a.secondary { color: #0f2a6b; }
.floating-dock a.secondary:hover { background: #eff6ff; }
.mobile-action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.45rem; padding: 0.7rem 0.7rem calc(0.7rem + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(16px); border-top: 1px solid rgba(226, 232, 240, 0.95); box-shadow: 0 -10px 30px rgba(15, 42, 107, 0.08); }
.mobile-action-bar a { min-width: 0; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.3rem; padding: 0.72rem 0.35rem; border-radius: 1rem; font-weight: 900; font-size: 0.72rem; white-space: nowrap; line-height: 1.1; text-align: center; }
.mobile-action-bar a.primary { background: #ea580c; color: #fff; }
.mobile-action-bar a.secondary { background: #f8fafc; color: #0f2a6b; border: 1px solid rgba(226, 232, 240, 0.95); }
.mobile-action-bar a:active { transform: translateY(1px); }

/* Print styles */
@media print {
  main { box-shadow: none !important; border-radius: 0 !important; margin: 0 !important; }
  a[href]:after { content: " (" attr(href) ")"; font-size: 11px; color: #666; }
  #miniHeader, .fixed, nav, footer, #imageModal { display: none !important; }
  .floating-dock { display: none !important; }
  .trust-strip { display: none !important; }
  .mobile-action-bar { display: none !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { font-size: 17px; }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  main { padding-bottom: 8rem !important; }
  .hero-kpis { justify-content: flex-start; }
  .hero-kpis span { width: 100%; justify-content: flex-start; }
  .mobile-action-bar a span.label-short { display: none; }
  .mobile-action-bar a span.label-full { display: inline; }
  .mobile-action-bar i { flex: 0 0 auto; }
  .mobile-action-bar { display: none !important; }
  #navLinks { padding-bottom: 0.1rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:text-left { text-align: left; }
  .md\:text-center { text-align: center; }
  .md\:mx-0 { margin-left: 0; margin-right: 0; }
  .md\:p-12 { padding: 3rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:flex-row { flex-direction: row; }
}

/* Utility classes */
.container { width: 100%; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }

.scroll-smooth { scroll-behavior: smooth; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

/* Accessibility improvements */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }
