/* OpsMed Services Page Styles */
:root {
  --blue-900: #0c1929; --blue-800: #0c4a6e; --blue-700: #075985; --blue-600: #0369a1;
  --blue-500: #0284c7; --blue-400: #38bdf8; --blue-100: #e0f2fe; --blue-50: #f0f9ff;
  --slate-900: #0f172a; --slate-800: #1e293b; --slate-700: #334155; --slate-600: #475569;
  --slate-500: #64748b; --slate-400: #94a3b8; --slate-300: #cbd5e1; --slate-200: #e2e8f0;
  --slate-100: #f1f5f9; --white: #ffffff;
  --green-600: #16a34a; --green-100: #dcfce7; --red-600: #dc2626;
  --radius-md: 10px; --radius-lg: 16px; --radius-xl: 24px;
  --shadow-md: 0 4px 12px rgba(12,25,41,0.08); --shadow-lg: 0 12px 32px rgba(12,25,41,0.12);
  --transition-base: 250ms ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'DM Sans', 'Inter', sans-serif; font-size: 16px; line-height: 1.6; color: var(--slate-800); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; top: 0; left: 0; z-index: 10000; background: var(--blue-600); color: var(--white); padding: 0.75rem 1.5rem; font-weight: 600; width: auto; height: auto; clip: auto; }
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; font-weight: 700; line-height: 1.2; color: var(--slate-900); }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
p { color: var(--slate-600); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section--dark { background: var(--blue-900); color: rgba(255,255,255,0.92); }
.section--light { background: var(--blue-50); }
.section__header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__header p { font-size: 1.1rem; margin-top: 1rem; color: var(--slate-600); }
.section__header--light h2 { color: var(--white); }
.section__header--light p { color: rgba(255,255,255,0.78); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; padding: 1rem 2rem; border-radius: var(--radius-md); border: none; cursor: pointer; transition: all var(--transition-base); text-decoration: none; }
.btn:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; }
.btn--primary { background: var(--blue-600); color: var(--white); box-shadow: 0 4px 14px rgba(3,105,161,0.35); }
.btn--primary:hover { background: var(--blue-800); transform: translateY(-2px); }
.btn--secondary { background: transparent; color: var(--slate-800); border: 2px solid var(--slate-300); }
.btn--secondary:hover { border-color: var(--blue-600); color: var(--blue-600); }
.btn--large { padding: 1.5rem 3rem; font-size: 1.1rem; }

/* Nav (same as home) */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--slate-200); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.nav__logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--blue-600), var(--blue-800)); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.nav__logo-icon svg { width: 22px; height: 22px; color: white; }
.nav__logo-text { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--slate-900); }
.nav__logo-suffix { color: var(--blue-600); }
.nav__links { display: none; list-style: none; gap: 2rem; }
.nav__link { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.95rem; color: var(--slate-600); transition: color 150ms ease; }
.nav__link:hover { color: var(--slate-900); }
.nav__link:focus-visible { outline: 2px solid var(--blue-400); outline-offset: 2px; border-radius: 4px; }
.nav__link--active { color: var(--blue-800) !important; font-weight: 600; }
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__cta-btn { display: none; padding: 0.5rem 1.25rem; background: var(--blue-600); color: var(--white); border-radius: var(--radius-md); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem; transition: all var(--transition-base); text-decoration: none; }
.nav__cta-btn:hover { background: var(--blue-800); }
.nav__social { display: none; gap: 0.5rem; }
.nav__social-link { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 6px; color: var(--slate-500); transition: all 0.2s; }
.nav__social-link:hover { color: var(--blue-600); background: var(--blue-50); }
.nav__mobile-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--slate-700); border-radius: 2px; transition: all 0.3s; }
.nav__mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav__mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (min-width: 1024px) { .nav__links { display: flex; } .nav__cta-btn { display: inline-block; } .nav__social { display: flex; } .nav__mobile-toggle { display: none; } }
@media (max-width: 1023px) { .nav__links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 1.5rem; border-bottom: 1px solid var(--slate-200); box-shadow: var(--shadow-lg); gap: 0; } .nav__links--active { display: flex; } .nav__links li { padding: 0.75rem 0; } .nav__link { font-size: 1.1rem; } }

/* Page Hero */
.page-hero { padding: 8rem 0 4rem; background: linear-gradient(135deg, var(--blue-50), var(--white)); text-align: center; }
.page-hero h1 { max-width: 800px; margin: 0 auto 1rem; }
.page-hero__subtitle { font-size: 1.15rem; color: var(--slate-600); max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* Comparison Table */
.comparison-table { max-width: 800px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--slate-200); }
.comparison-table__header { display: grid; grid-template-columns: 2fr 1fr 1fr; background: var(--blue-800); }
.comparison-table__header .comparison-table__cell { color: white; font-weight: 700; font-family: 'Inter', sans-serif; font-size: 0.9rem; }
.comparison-table__row { display: grid; grid-template-columns: 2fr 1fr 1fr; border-bottom: 1px solid var(--slate-200); }
.comparison-table__row:last-child { border-bottom: none; }
.comparison-table__row:nth-child(even) { background: var(--slate-100); }
.comparison-table__cell { padding: 1rem 1.25rem; font-size: 0.95rem; display: flex; align-items: center; }
.comparison-table__cell--label { color: var(--slate-700); font-weight: 500; }
.comparison-table__cell--vor, .comparison-table__cell--opsmed { justify-content: center; font-weight: 600; }
.check-yes { color: var(--green-600); font-size: 1.2rem; }
.check-no { color: var(--slate-400); }
.comparison-footnote { text-align: center; color: var(--slate-500); font-size: 0.95rem; margin-top: 2rem; font-style: italic; }

/* Implementation Phases */
.phases__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.phase-card { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--slate-200); position: relative; }
.phase-card:hover { box-shadow: var(--shadow-md); }
.phase-card__number { width: 40px; height: 40px; background: var(--blue-600); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.1rem; margin-bottom: 1rem; }
.phase-card h3 { margin-bottom: 0.75rem; }
.phase-card p { font-size: 0.95rem; line-height: 1.6; }
.phase-card strong { color: var(--blue-800); }

/* Tiers */
.tiers__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.tier-card { background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); border: 2px solid var(--slate-200); text-align: center; position: relative; transition: all var(--transition-base); }
.tier-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tier-card--featured { border-color: var(--blue-600); }
.tier-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue-600); color: white; padding: 0.3rem 1rem; border-radius: 99px; font-size: 0.8rem; font-weight: 700; white-space: nowrap; }
.tier-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.tier-card__price { margin-bottom: 1.5rem; }
.tier-card__amount { font-family: 'Inter', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--blue-600); }
.tier-card__unit { font-size: 0.9rem; color: var(--slate-500); display: block; }
.tier-card ul { list-style: none; padding: 0; margin-bottom: 2rem; text-align: left; }
.tier-card li { padding: 0.6rem 0; border-bottom: 1px solid var(--slate-100); color: var(--slate-700); font-size: 0.95rem; }
.tier-card li::before { content: "✓ "; color: var(--green-600); font-weight: 700; }
.tiers-note { text-align: center; color: var(--blue-600); font-weight: 600; font-size: 1rem; margin-top: 2rem; }

/* FHO Features */
.fho-features__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.fho-feature { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 2rem; }
.fho-feature h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.15rem; }
.fho-feature p { color: rgba(255,255,255,0.78); font-size: 0.95rem; line-height: 1.6; }

/* CTA Light */
.cta-section-light { padding: 4rem 0; background: var(--blue-50); }

/* Focus & reduced motion */
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } html { scroll-behavior: auto; } }
