/* SmolenskMBBS — Shared Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0d2137; --navy-light: #1a4a7a;
  --gold: #e8a020; --gold-light: #f5c050;
  --bg: #f4f6f9; --white: #ffffff;
  --text: #1a1a2e; --muted: #666; --border: #e2e8f0;
}
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* NAV */
.navbar { background: var(--navy); padding: 0 5%; display: flex; justify-content: space-between; align-items: center; height: 60px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.navbar-logo { color: var(--white); font-size: 18px; font-weight: 800; letter-spacing: -0.5px; }
.navbar-logo span { color: var(--gold); }
.navbar-links { display: flex; gap: 6px; align-items: center; }
.navbar-links a { color: rgba(255,255,255,0.72); font-size: 13px; padding: 6px 10px; border-radius: 5px; transition: color 0.15s, background 0.15s; }
.navbar-links a:hover, .navbar-links a.active { color: #fff; background: rgba(255,255,255,0.07); }
.navbar-links .cta-nav { background: var(--gold); color: var(--navy) !important; font-weight: 700; padding: 7px 16px; border-radius: 20px; margin-left: 6px; }
.navbar-links .cta-nav:hover { background: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: white; border-radius: 2px; display: block; }
.mobile-nav { display: none; flex-direction: column; background: var(--navy); padding: 12px 5% 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.8); font-size: 15px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav .cta-nav { background: var(--gold); color: var(--navy) !important; font-weight: 700; text-align: center; padding: 12px; border-radius: 6px; border-bottom: none; margin-top: 8px; }

/* PAGE HEADER */
.page-header { background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%); color: white; padding: 52px 5% 44px; }
.page-header .section-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 10px; }
.page-header h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.5px; line-height: 1.15; }
.page-header p { font-size: 16px; opacity: 0.8; max-width: 640px; line-height: 1.7; }
.breadcrumb { font-size: 12px; opacity: 0.5; margin-bottom: 14px; }
.breadcrumb a { opacity: 0.7; }
.breadcrumb a:hover { opacity: 1; }

/* SECTIONS */
.section { padding: 56px 5%; }
.section-alt { background: var(--white); }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; display: block; }
h2.section-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.2; letter-spacing: -0.3px; }
.section-sub { font-size: 15px; color: var(--muted); max-width: 600px; line-height: 1.7; }

/* CONTENT */
.content-body { max-width: 760px; }
.content-body h2 { font-size: 22px; font-weight: 800; color: var(--navy); margin: 32px 0 12px; letter-spacing: -0.3px; }
.content-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 24px 0 8px; }
.content-body p { color: #444; line-height: 1.8; margin-bottom: 14px; }
.content-body ul, .content-body ol { margin: 10px 0 16px 20px; }
.content-body li { color: #444; line-height: 1.8; margin-bottom: 6px; }
.content-body strong { color: var(--navy); }
.highlight-box { background: #fffbf0; border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; padding: 18px 20px; margin: 20px 0; }
.highlight-box h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.highlight-box p { font-size: 13px; color: #555; line-height: 1.7; margin: 0; }
.warning-box { background: #fef3f3; border-left: 4px solid #e74c3c; border-radius: 0 8px 8px 0; padding: 18px 20px; margin: 20px 0; }
.warning-box h4 { color: #c0392b; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.warning-box p { font-size: 13px; color: #555; line-height: 1.7; margin: 0; }
.success-box { background: #f0fff6; border-left: 4px solid #27ae60; border-radius: 0 8px 8px 0; padding: 18px 20px; margin: 20px 0; }
.success-box p { font-size: 13px; color: #1a7a40; line-height: 1.7; margin: 0; font-weight: 600; }

/* TABLES */
.table-wrap { overflow-x: auto; margin: 20px 0; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th { background: var(--navy); color: white; padding: 12px 14px; text-align: left; font-weight: 700; font-size: 12px; }
td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: #444; }
tr:hover td { background: #f8f9fb; }
.td-gold { color: var(--gold); font-weight: 800; font-size: 15px; }
.td-green { color: #27ae60; font-weight: 700; }
.td-red { color: #e74c3c; font-weight: 700; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.card { background: var(--white); border-radius: 10px; padding: 22px; border: 1px solid var(--border); border-top: 3px solid var(--navy); }
.card:nth-child(even) { border-top-color: var(--gold); }
.card .icon { font-size: 26px; margin-bottom: 12px; }
.card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* STEP LIST */
.steps { counter-reset: step; margin-top: 24px; }
.step { display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start; }
.step-num { counter-increment: step; min-width: 40px; height: 40px; background: var(--navy); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.step-content h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-content p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.step-content ul { margin: 8px 0 0 16px; }
.step-content li { font-size: 13px; color: #555; line-height: 1.7; }

/* CHECKLIST */
.checklist { list-style: none; margin: 16px 0; padding: 0; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: #444; }
.checklist li::before { content: '✓'; color: #27ae60; font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* STAT CARDS */
.stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 28px; }
.stat-card { background: var(--white); border-radius: 10px; padding: 20px; text-align: center; border: 1px solid var(--border); }
.stat-card .n { font-size: 26px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-card .l { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* BUTTONS */
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 700; font-size: 14px; padding: 12px 26px; border-radius: 6px; display: inline-block; transition: background 0.15s, transform 0.1s; border: none; cursor: pointer; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: white; font-weight: 700; font-size: 14px; padding: 12px 26px; border-radius: 6px; display: inline-block; transition: background 0.15s; border: none; cursor: pointer; }
.btn-navy:hover { background: #0a1a2d; }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); font-weight: 700; font-size: 14px; padding: 11px 24px; border-radius: 6px; display: inline-block; transition: all 0.15s; }
.btn-outline:hover { background: var(--navy); color: white; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--gold), var(--gold-light)); padding: 56px 5%; text-align: center; }
.cta-banner h2 { font-size: clamp(20px,3vw,30px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.cta-banner p { font-size: 15px; color: rgba(13,33,55,0.72); margin-bottom: 24px; }
.cta-note { font-size: 12px; color: rgba(13,33,55,0.55); margin-top: 12px; }

/* FOOTER */
footer { background: #071520; }
.footer-left { color: rgba(255,255,255,0.45); font-size: 12px; line-height: 1.6; padding: 28px 5%; }
.footer-left strong { color: rgba(255,255,255,0.7); }
.footer-links { display: flex; gap: 20px; padding: 28px 5%; }
.footer-links a { color: rgba(255,255,255,0.38); font-size: 12px; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* FLOATING CTA */
.floating-cta { position: fixed; bottom: 24px; right: 24px; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 13px; padding: 13px 20px; border-radius: 30px; box-shadow: 0 4px 20px rgba(232,160,32,0.5); z-index: 999; transition: transform 0.15s; display: flex; align-items: center; gap: 7px; }
.floating-cta:hover { transform: translateY(-2px); }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 28px; }
.blog-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); transition: box-shadow 0.18s; display: block; }
.blog-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.09); }
.blog-img { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 44px; }
.blog-body { padding: 18px; }
.blog-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; color: var(--gold); text-transform: uppercase; }
.blog-title { font-size: 15px; font-weight: 700; color: var(--navy); margin: 6px 0 4px; line-height: 1.4; }
.blog-meta { font-size: 11px; color: #aaa; }
.blog-arrow { font-size: 12px; color: var(--gold); font-weight: 700; margin-top: 10px; display: block; }
.blog-content { max-width: 720px; margin: 0 auto; }
.blog-content h2 { font-size: 22px; font-weight: 800; color: var(--navy); margin: 32px 0 12px; }
.blog-content h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 24px 0 8px; }
.blog-content p { color: #444; line-height: 1.85; margin-bottom: 16px; font-size: 15px; }
.blog-content ul { margin: 10px 0 16px 20px; }
.blog-content li { color: #444; line-height: 1.8; margin-bottom: 6px; font-size: 15px; }
.blog-author { display: flex; align-items: center; gap: 14px; background: var(--white); border-radius: 10px; padding: 18px 20px; border: 1px solid var(--border); margin: 32px 0; }
.blog-author-avatar { width: 52px; height: 52px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.blog-author-info h4 { font-size: 14px; font-weight: 700; color: var(--navy); }
.blog-author-info p { font-size: 12px; color: var(--muted); margin: 0; }

/* TL;DR / KEY FACTS BOX */
.tldr-box { background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%); color: #fff; border-radius: 14px; padding: 24px 28px; margin: 28px 0 0; max-width: 900px; }
.tldr-box h4 { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 14px; }
.tldr-box ul { list-style: none; padding: 0; margin: 0; }
.tldr-box ul li { color: rgba(255,255,255,0.88); font-size: 14px; line-height: 1.6; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; gap: 10px; align-items: flex-start; }
.tldr-box ul li:last-child { border-bottom: none; }
.tldr-box ul li::before { content: '→'; color: var(--gold); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* PAGE JOURNEY NAVIGATION (prev / next) */
.page-journey { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 40px 5% 32px; background: #f0f4fa; border-top: 1px solid #dde5f0; }
.journey-card { background: #fff; border-radius: 12px; padding: 18px 22px; border: 1.5px solid #e2e8f0; display: flex; align-items: center; gap: 14px; text-decoration: none; transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s; }
.journey-card:hover { border-color: var(--navy); box-shadow: 0 4px 16px rgba(13,33,55,0.1); transform: translateY(-2px); }
.journey-card.next { flex-direction: row-reverse; text-align: right; }
.journey-icon { font-size: 22px; flex-shrink: 0; }
.journey-dir { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: #aaa; text-transform: uppercase; margin-bottom: 3px; }
.journey-name { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.35; }
.journey-sub { font-size: 12px; color: #888; margin-top: 2px; }
@media (max-width: 600px) { .page-journey { grid-template-columns: 1fr; } }

/* READING PATH STEPS (homepage) */
.path-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 32px; max-width: 960px; }
.path-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; }
.path-step:not(:last-child)::after { content: '→'; position: absolute; right: -10px; top: 20px; font-size: 18px; color: var(--gold); font-weight: 800; }
.path-num { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 17px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; border: 3px solid var(--gold); flex-shrink: 0; }
.path-step h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.path-step p { font-size: 12px; color: #666; line-height: 1.5; }
.path-step a { color: var(--gold); font-size: 12px; font-weight: 700; margin-top: 8px; display: inline-block; }
@media (max-width: 900px) { .path-steps { grid-template-columns: 1fr 1fr; gap: 24px; } .path-step::after { display: none; } }
@media (max-width: 600px) { .path-steps { grid-template-columns: 1fr; } }

/* GENERIC BUTTON (.btn alias — gold style) */
.btn { background: var(--gold); color: var(--navy); font-weight: 700; font-size: 14px; padding: 12px 26px; border-radius: 6px; display: inline-block; transition: background 0.15s, transform 0.1s; border: none; cursor: pointer; text-decoration: none; }
.btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* RICH FOOTER */
footer .footer-grid { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr; gap: 40px; max-width: 1100px; margin: 0 auto; padding: 48px 5% 32px; }
.footer-logo { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 12px; display: block; }
.footer-logo span { color: var(--gold); }
footer .footer-grid > div > p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 0; }
footer .footer-grid h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
footer .footer-grid ul { list-style: none; padding: 0; margin: 0; }
footer .footer-grid ul li { margin-bottom: 8px; }
footer .footer-grid ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
footer .footer-grid ul li a:hover { color: var(--gold); }
.footer-bottom { background: #040e17; text-align: center; padding: 14px 5%; font-size: 12px; color: rgba(255,255,255,0.3); }

/* BLOG CARD SUB-CLASSES (new pages) */
.blog-card-img { height: 130px; display: flex; align-items: center; justify-content: center; font-size: 44px; background: var(--navy); }
.blog-card-body { padding: 20px; }
.blog-card-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; color: var(--gold); text-transform: uppercase; }
.blog-card-title { font-size: 15px; font-weight: 700; color: var(--navy); margin: 8px 0 6px; line-height: 1.4; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: 13px; color: #666; line-height: 1.65; margin-bottom: 14px; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: #aaa; border-top: 1px solid var(--border); padding-top: 12px; }
.blog-card-read { color: var(--gold); font-weight: 700; font-size: 12px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .cards-grid, .blog-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .floating-cta { bottom: 14px; right: 14px; font-size: 12px; padding: 11px 16px; }
  footer .footer-grid { grid-template-columns: 1fr; gap: 20px; }
}
