/* =========================================================================
   MED STYLE PROTECT — main.css
   Design system + all component styles. Vanilla CSS, no build step.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
	/* Aceeasi familie cromatica reala cu dentostyleprotect.ro: navy inchis +
	   albastru cyan (buton/link) + verde-oliv (accent secundar din logo).
	   Nu galben - brandul real Dento Style Protect nu foloseste galben. */
	--msp-navy: #123A5E;
	--msp-navy-dark: #0B2740;
	--msp-blue: #2CA0CE;
	--msp-blue-light: #E6F4FA;
	--msp-green: #86AC2D;
	--msp-green-dark: #71941F;
	--msp-green-light: #F0F5E2;
	--msp-text: #67717B;
	--msp-dark: #26313C;
	--msp-light: #F4F6F7;
	--msp-border: #E3E7E9;
	--msp-white: #FFFFFF;

	/* Aceeasi pereche de fonturi si aceeasi distributie ca pe site-ul real:
	   Open Sans pentru titluri (greutate mai usoara, elegant), Poppins pentru
	   text curent si UI. */
	--msp-font-heading: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--msp-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--msp-container: 1240px;
	--msp-content-narrow: 800px;
	--msp-gutter: 32px;

	--msp-radius-card: 16px;
	--msp-radius-btn: 8px;
	--msp-radius-input: 9px;

	--msp-shadow-sm: 0 6px 20px rgba(23, 59, 95, 0.06);
	--msp-shadow-md: 0 10px 35px rgba(23, 59, 95, 0.09);
	--msp-shadow-lg: 0 20px 55px rgba(23, 59, 95, 0.14);

	--msp-section-space: 96px;
	--msp-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (max-width: 1024px) {
	:root { --msp-gutter: 24px; --msp-section-space: 84px; }
}
@media (max-width: 600px) {
	:root { --msp-gutter: 18px; --msp-section-space: 64px; }
}

/* -------------------------------------------------------------------------
   2. RESET
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--msp-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--msp-text);
	background: var(--msp-white);
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: var(--msp-blue); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--msp-font-heading);
	color: var(--msp-navy);
	font-weight: 600;
	line-height: 1.22;
	letter-spacing: -0.01em;
	margin: 0 0 0.6em;
	text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 3.6vw, 3.1rem); font-weight: 400; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.8rem, 2.8vw, 2.35rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.55rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 1.4vw, 1.2rem); font-weight: 600; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------------------
   3. ACCESSIBILITY
   ------------------------------------------------------------------------- */
.screen-reader-text {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.msp-skip-link {
	position: absolute; top: -60px; left: 12px; z-index: 10000;
	background: var(--msp-navy); color: var(--msp-white);
	padding: 12px 20px; border-radius: var(--msp-radius-btn);
	font-family: var(--msp-font-body); font-weight: 600; font-size: 14px;
	transition: top 200ms var(--msp-ease);
}
.msp-skip-link:focus { top: 12px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
	outline: 2.5px solid var(--msp-blue);
	outline-offset: 3px;
	border-radius: 4px;
}

/* -------------------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   ------------------------------------------------------------------------- */
.msp-container {
	max-width: var(--msp-container);
	margin: 0 auto;
	padding: 0 var(--msp-gutter);
}
.msp-content-narrow { max-width: var(--msp-content-narrow); }
.msp-section { padding: var(--msp-section-space) 0; }
.msp-section-tight { padding: calc(var(--msp-section-space) * 0.55) 0; }
.msp-light-bg { background: var(--msp-light); }

.msp-section-heading { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.msp-section-subheading { color: var(--msp-text); font-size: 1.05rem; }

.msp-eyebrow {
	font-family: var(--msp-font-heading);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--msp-blue);
	margin: 0 0 12px;
}

.msp-empty-state {
	background: var(--msp-light);
	border: 1px dashed var(--msp-border);
	border-radius: var(--msp-radius-card);
	padding: 28px 24px;
	text-align: center;
	color: var(--msp-text);
}

/* -------------------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------------------- */
.msp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--msp-font-body);
	font-weight: 600;
	font-size: 14.5px;
	padding: 13px 26px;
	border-radius: var(--msp-radius-btn);
	border: 1.5px solid transparent;
	transition: background-color 220ms var(--msp-ease), color 220ms var(--msp-ease), border-color 220ms var(--msp-ease), box-shadow 220ms var(--msp-ease), transform 120ms var(--msp-ease);
	white-space: nowrap;
}
.msp-btn-lg { padding: 15px 30px; font-size: 15px; }
.msp-btn-block { display: flex; width: 100%; }
.msp-btn:active { transform: scale(0.96); }

.msp-btn-primary { background: var(--msp-navy); color: var(--msp-white); border-color: var(--msp-navy); box-shadow: 0 8px 20px -6px rgba(18, 58, 94, 0.45); }
.msp-btn-primary:hover { background: var(--msp-navy-dark); border-color: var(--msp-navy-dark); color: var(--msp-white); box-shadow: 0 10px 24px -6px rgba(18, 58, 94, 0.55); }

.msp-btn-outline { background: var(--msp-white); color: var(--msp-navy); border-color: var(--msp-navy); }
.msp-btn-outline:hover { background: var(--msp-navy); color: var(--msp-white); }

.msp-btn-green { background: var(--msp-green); color: var(--msp-white); border-color: var(--msp-green); box-shadow: 0 8px 20px -6px rgba(134, 172, 45, 0.5); }
.msp-btn-green:hover { background: var(--msp-green-dark); border-color: var(--msp-green-dark); box-shadow: 0 10px 24px -6px rgba(134, 172, 45, 0.6); }

.msp-btn-arrow { transition: transform 220ms var(--msp-ease); }
.msp-btn:hover .msp-btn-arrow { transform: translateX(3px); }

.msp-link-arrow {
	display: inline-flex; align-items: center; gap: 6px;
	font-family: var(--msp-font-body); font-weight: 600; font-size: 14.5px;
	color: var(--msp-blue);
	position: relative;
}
.msp-link-arrow .msp-icon { width: 16px; height: 16px; transition: transform 220ms var(--msp-ease); }
.msp-link-arrow:hover .msp-icon { transform: translateX(3px); }
.msp-link-arrow::after {
	content: ''; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 0;
	background: var(--msp-blue); transition: width 220ms var(--msp-ease);
}
.msp-link-arrow:hover::after { width: calc(100% - 22px); }

/* -------------------------------------------------------------------------
   6. ICONS
   ------------------------------------------------------------------------- */
.msp-icon { width: 20px; height: 20px; flex-shrink: 0; }
.msp-icon-service { width: 26px; height: 26px; }

/* -------------------------------------------------------------------------
   7. TOP BAR + HEADER
   ------------------------------------------------------------------------- */
.msp-topbar {
	background: var(--msp-navy);
	color: rgba(255,255,255,0.85);
	font-size: 13px;
}
.msp-topbar-inner {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
	gap: 7px 26px;
	padding: 8px 0;
}
.msp-topbar-item { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.msp-topbar-icon { width: 14px; height: 14px; opacity: 0.85; flex-shrink: 0; }
.msp-topbar-phone { color: var(--msp-white); font-weight: 600; }
.msp-topbar-phone:hover { color: var(--msp-green); }

.msp-header {
	position: sticky; top: 0; z-index: 950;
	background: var(--msp-white);
	border-bottom: 1px solid transparent;
	transition: box-shadow 260ms var(--msp-ease), background-color 260ms var(--msp-ease);
}
.msp-header.is-stuck {
	background: rgba(255,255,255,0.95);
	backdrop-filter: saturate(180%) blur(10px);
	-webkit-backdrop-filter: saturate(180%) blur(10px);
	box-shadow: var(--msp-shadow-sm);
}
.msp-header-inner {
	display: flex; align-items: center; gap: 28px;
	height: 84px;
}

.msp-logo { flex-shrink: 0; }
.msp-logo a { display: block; }
.msp-logo-svg { height: 38px; width: auto; }

.msp-nav-primary { flex: 1; display: flex; justify-content: center; }
.msp-nav-list { display: flex; align-items: center; gap: 6px; }
.msp-nav-list a {
	display: inline-block; padding: 10px 14px; position: relative;
	font-family: var(--msp-font-body); font-weight: 500; font-size: 15px;
	color: var(--msp-dark);
}
.msp-nav-list a::after {
	content: ''; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
	background: var(--msp-green); transform: scaleX(0); transform-origin: left;
	transition: transform 220ms var(--msp-ease);
}
.msp-nav-list a:hover { color: var(--msp-blue); }
.msp-nav-list a:hover::after,
.msp-nav-list .current-menu-item a::after { transform: scaleX(1); }
.msp-nav-list .current-menu-item a { color: var(--msp-blue); }

.msp-header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.msp-header-phone {
	display: flex; align-items: center; gap: 8px;
	font-family: var(--msp-font-body); font-weight: 600; font-size: 14.5px;
	color: var(--msp-navy);
}
.msp-header-phone .msp-icon { width: 18px; height: 18px; color: var(--msp-blue); }
.msp-header-phone:hover { color: var(--msp-blue); }

.msp-menu-toggle {
	display: none; position: relative; width: 42px; height: 42px;
	align-items: center; justify-content: center;
	background: var(--msp-light); border: none; border-radius: var(--msp-radius-btn);
}
.msp-menu-toggle .msp-icon-close { display: none; }
.msp-menu-toggle[aria-expanded="true"] .msp-icon-open { display: none; }
.msp-menu-toggle[aria-expanded="true"] .msp-icon-close { display: block; }

/* -------------------------------------------------------------------------
   8. MOBILE MENU
   ------------------------------------------------------------------------- */
.msp-mobile-menu {
	position: fixed; inset: 0; z-index: 900;
	background: var(--msp-white);
	transform: translateX(100%);
	transition: transform 320ms var(--msp-ease);
	overflow-y: auto;
	padding-top: 84px;
}
.msp-mobile-menu.is-open { transform: translateX(0); }
.msp-mobile-menu-inner { padding: 32px var(--msp-gutter) 40px; }
.msp-mobile-nav-list li { border-bottom: 1px solid var(--msp-border); }
.msp-mobile-nav-list a {
	display: block; padding: 16px 4px;
	font-family: var(--msp-font-body); font-weight: 500; font-size: 19px;
	color: var(--msp-navy);
}
.msp-mobile-menu-info { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--msp-border); }
.msp-mobile-menu-phone {
	display: flex; align-items: center; gap: 10px;
	font-family: var(--msp-font-body); font-weight: 600; font-size: 18px;
	color: var(--msp-navy); margin-bottom: 10px;
}
.msp-mobile-menu-info p { font-size: 14px; margin-bottom: 20px; }

.msp-mobile-menu-overlay {
	position: fixed; inset: 0; z-index: 890;
	background: rgba(15, 30, 48, 0.45);
	opacity: 0; visibility: hidden;
	transition: opacity 280ms var(--msp-ease), visibility 280ms var(--msp-ease);
}
.msp-mobile-menu-overlay.is-open { opacity: 1; visibility: visible; }
body.msp-menu-open { overflow: hidden; }

/* -------------------------------------------------------------------------
   9. BREADCRUMBS
   ------------------------------------------------------------------------- */
.msp-breadcrumbs { padding: 18px 0; border-bottom: 1px solid var(--msp-border); }
.msp-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13.5px; }
.msp-breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--msp-border); }
.msp-breadcrumbs li { display: flex; gap: 6px; color: var(--msp-text); }
.msp-breadcrumbs a { color: var(--msp-text); }
.msp-breadcrumbs a:hover { color: var(--msp-blue); }
.msp-breadcrumbs [aria-current="page"] { color: var(--msp-navy); font-weight: 600; }

/* -------------------------------------------------------------------------
   10. HERO
   ------------------------------------------------------------------------- */
.msp-hero { position: relative; padding: 48px 0 64px; overflow: hidden; }
.msp-hero-decor {
	position: absolute; top: -140px; right: -160px; width: 560px; height: 560px;
	background: radial-gradient(circle, var(--msp-blue-light) 0%, rgba(232,241,248,0) 70%);
	border-radius: 50%; pointer-events: none;
}
.msp-hero-inner {
	display: grid; grid-template-columns: 1fr 0.92fr; gap: 60px; align-items: center;
	position: relative;
}
.msp-hero-content { max-width: 560px; }
.msp-hero-subheading { font-size: 1.08rem; color: var(--msp-text); max-width: 480px; }
.msp-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 30px 0 0; }

.msp-hero-visual { position: relative; }
.msp-hero-image {
	border-radius: 28px; overflow: hidden; box-shadow: var(--msp-shadow-lg);
	aspect-ratio: 5 / 4;
	outline: 1px solid rgba(0,0,0,0.08); outline-offset: -1px;
}
.msp-hero-image img,
.msp-placeholder-img { width: 100%; height: 100%; object-fit: cover; }

.msp-hero-float {
	position: absolute; display: flex; align-items: center; gap: 10px;
	background: var(--msp-white); border-radius: var(--msp-radius-card);
	box-shadow: var(--msp-shadow-md); padding: 14px 18px; font-size: 13.5px;
	font-weight: 600; color: var(--msp-navy); line-height: 1.4;
}
.msp-hero-float .msp-icon { color: var(--msp-blue); }
.msp-hero-float-location { bottom: 26px; left: -18px; }

/* -------------------------------------------------------------------------
   11. TRUST BAR
   ------------------------------------------------------------------------- */
.msp-trust-bar { padding: 40px 0; border-top: 1px solid var(--msp-border); border-bottom: 1px solid var(--msp-border); }
.msp-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.msp-trust-item { display: flex; align-items: center; gap: 12px; }
.msp-trust-item .msp-icon { width: 28px; height: 28px; color: var(--msp-blue); flex-shrink: 0; }
.msp-trust-item span { font-family: var(--msp-font-body); font-weight: 500; font-size: 14.5px; color: var(--msp-dark); }

/* -------------------------------------------------------------------------
   12. CLINIC INTRO
   ------------------------------------------------------------------------- */
.msp-clinic-intro-inner { display: grid; grid-template-columns: 0.85fr 1fr; gap: 64px; align-items: center; }
.msp-clinic-intro-visual { border-radius: var(--msp-radius-card); overflow: hidden; box-shadow: var(--msp-shadow-md); aspect-ratio: 16 / 10; }
.msp-clinic-intro-visual img,
.msp-clinic-intro-visual svg { width: 100%; height: 100%; object-fit: cover; }
.msp-clinic-intro-content p { font-size: 1.02rem; }

/* -------------------------------------------------------------------------
   13. SERVICES GRID
   ------------------------------------------------------------------------- */
.msp-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.msp-services-grid-related { margin-top: 30px; }
.msp-service-card {
	background: var(--msp-white); border: 1px solid var(--msp-border);
	border-radius: var(--msp-radius-card); box-shadow: var(--msp-shadow-sm);
	transition: transform 260ms var(--msp-ease), box-shadow 260ms var(--msp-ease), border-color 260ms var(--msp-ease);
}
.msp-service-card:hover { transform: translateY(-4px); box-shadow: var(--msp-shadow-md); border-color: rgba(40,106,156,0.25); }
.msp-service-card-link { display: block; padding: 32px 28px; }
.msp-service-icon-wrap {
	display: inline-flex; align-items: center; justify-content: center;
	width: 56px; height: 56px; border-radius: 14px;
	background: var(--msp-blue-light); color: var(--msp-blue);
	margin-bottom: 20px; transition: background-color 260ms var(--msp-ease), color 260ms var(--msp-ease);
}
.msp-service-card:hover .msp-service-icon-wrap { background: var(--msp-green); color: var(--msp-navy); }
.msp-service-card h3 { margin-bottom: 10px; }
.msp-service-card p { font-size: 14.8px; margin-bottom: 18px; }

/* Lista editoriala de servicii (homepage + /servicii/) - randuri, nu carduri:
   diferentiere deliberata fata de grid-ul generic de "feature cards". */
.msp-services-heading {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 24px; flex-wrap: wrap; margin-bottom: 36px;
}
.msp-services-heading h2 { margin-bottom: 6px; }
.msp-services-heading .msp-section-subheading { margin: 0; max-width: 460px; text-align: left; }

.msp-services-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; }
.msp-service-row {
	display: flex; align-items: flex-start; gap: 18px;
	padding: 24px 6px; border-bottom: 1px solid var(--msp-border);
	color: inherit;
	transition: padding-left 240ms var(--msp-ease), border-color 240ms var(--msp-ease);
}
.msp-service-row:hover { padding-left: 14px; border-color: var(--msp-blue); }
.msp-service-row-icon {
	flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	background: var(--msp-blue-light); color: var(--msp-blue);
	transition: background-color 240ms var(--msp-ease), color 240ms var(--msp-ease);
}
.msp-service-row-icon .msp-icon-service { width: 22px; height: 22px; }
.msp-service-row:hover .msp-service-row-icon { background: var(--msp-navy); color: var(--msp-white); }
.msp-service-row-body { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.msp-service-row-title { font-family: var(--msp-font-body); font-weight: 600; font-size: 1.05rem; color: var(--msp-navy); }
.msp-service-row-desc { font-size: 13.8px; color: var(--msp-text); line-height: 1.55; }
.msp-service-row-arrow { flex-shrink: 0; width: 20px; height: 20px; color: var(--msp-border); margin-top: 4px; transition: transform 240ms var(--msp-ease), color 240ms var(--msp-ease); }
.msp-service-row:hover .msp-service-row-arrow { color: var(--msp-blue); transform: translateX(4px); }

/* -------------------------------------------------------------------------
   14. WHY US
   ------------------------------------------------------------------------- */
.msp-why-us-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.msp-why-us-content { position: relative; }
.msp-why-us-decor { position: absolute; top: -50px; right: -20px; width: 140px; height: 140px; z-index: -1; }
.msp-why-us-list { display: grid; gap: 16px; }
.msp-why-us-list li { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; background: var(--msp-light); border-radius: 12px; }
.msp-check-icon { display: flex; width: 24px; height: 24px; border-radius: 50%; background: var(--msp-green); color: var(--msp-navy); align-items: center; justify-content: center; flex-shrink: 0; }
.msp-check-icon .msp-icon { width: 14px; height: 14px; }
.msp-why-us-list span:last-child { font-family: var(--msp-font-body); font-weight: 500; color: var(--msp-dark); padding-top: 3px; }

.msp-check-list { display: grid; gap: 12px; margin: 20px 0 30px; }
.msp-check-list li { display: flex; align-items: flex-start; gap: 12px; }
.msp-check-list span:last-child { color: var(--msp-dark); padding-top: 2px; }

/* -------------------------------------------------------------------------
   15. DOCTORS
   ------------------------------------------------------------------------- */
.msp-doctors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
	justify-content: center;
	gap: 26px;
}
.msp-doctor-card {
	background: var(--msp-white); border: 1px solid var(--msp-border);
	border-radius: var(--msp-radius-card); overflow: hidden; box-shadow: var(--msp-shadow-sm);
	transition: transform 260ms var(--msp-ease), box-shadow 260ms var(--msp-ease);
}
.msp-doctor-card:hover { transform: translateY(-4px); box-shadow: var(--msp-shadow-md); }
.msp-doctor-photo { aspect-ratio: 4/5; overflow: hidden; background: var(--msp-blue-light); }
.msp-doctor-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--msp-ease); }
.msp-doctor-card:hover .msp-doctor-photo img { transform: scale(1.02); }
.msp-doctor-card-body { padding: 26px; }
.msp-doctor-card-body h3 { margin-bottom: 4px; }
.msp-doctor-title { font-size: 14px; color: var(--msp-text); margin-bottom: 14px; }

.msp-badge-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.msp-badge {
	font-family: var(--msp-font-body); font-weight: 500; font-size: 12.5px;
	background: var(--msp-blue-light); color: var(--msp-blue);
	padding: 6px 12px; border-radius: 20px;
}

/* -------------------------------------------------------------------------
   16. CTA BAND
   ------------------------------------------------------------------------- */
.msp-cta-band { position: relative; background: var(--msp-navy); padding: 86px 0; overflow: hidden; }
.msp-cta-decor {
	position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
	width: 700px; height: 700px; border-radius: 50%;
	background: radial-gradient(circle, rgba(40,106,156,0.35) 0%, rgba(40,106,156,0) 70%);
	pointer-events: none;
}
.msp-cta-inner { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.msp-cta-inner h2 { color: var(--msp-white); }
.msp-cta-inner p { color: rgba(255,255,255,0.78); font-size: 1.05rem; }
.msp-cta-actions { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 28px; }
.msp-cta-phone-link { display: flex; align-items: center; gap: 8px; color: var(--msp-white); font-family: var(--msp-font-body); font-weight: 600; font-size: 16px; }
.msp-cta-phone-link .msp-icon { color: var(--msp-green); }
.msp-cta-phone-link:hover { color: var(--msp-green); }

/* -------------------------------------------------------------------------
   17. HARTA (in cadrul sectiunii Contact - vezi contact-info.php)
   ------------------------------------------------------------------------- */
.msp-contact-map { border-radius: 14px; overflow: hidden; box-shadow: var(--msp-shadow-sm); aspect-ratio: 16/9; margin: 24px 0; }
.msp-map-embed, .msp-map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.msp-map-fallback {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
	width: 100%; height: 100%; background: var(--msp-blue-light); color: var(--msp-navy);
	font-family: var(--msp-font-body); font-weight: 600;
}
.msp-map-fallback-icon { width: 32px; height: 32px; color: var(--msp-blue); }

/* -------------------------------------------------------------------------
   18. CONTACT SECTION + FORM
   ------------------------------------------------------------------------- */
.msp-contact-inner { display: grid; grid-template-columns: 0.85fr 1fr; gap: 64px; align-items: start; }
.msp-contact-info p { font-size: 1rem; }
.msp-contact-list { display: grid; gap: 18px; margin: 26px 0; }
.msp-contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.msp-contact-list .msp-icon { color: var(--msp-blue); margin-top: 3px; }
.msp-contact-list div { display: flex; flex-direction: column; gap: 2px; }
.msp-contact-list strong { color: var(--msp-navy); font-family: var(--msp-font-body); }
.msp-contact-list a { color: var(--msp-navy); font-weight: 600; font-family: var(--msp-font-body); }
.msp-contact-list a:hover { color: var(--msp-blue); }
.msp-contact-list span { font-size: 13.5px; color: var(--msp-text); }

.msp-contact-social { display: flex; gap: 10px; margin: 6px 0 20px; }
.msp-contact-social a {
	display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
	border-radius: 50%; background: var(--msp-blue-light); color: var(--msp-blue);
	transition: background-color 220ms var(--msp-ease), color 220ms var(--msp-ease);
}
.msp-contact-social a:hover { background: var(--msp-navy); color: var(--msp-white); }

.msp-emergency-note { font-size: 13px; color: var(--msp-text); border-top: 1px solid var(--msp-border); padding-top: 16px; }

.msp-appointment-form-wrap {
	background: var(--msp-white); border: 1px solid var(--msp-border);
	border-radius: var(--msp-radius-card); box-shadow: var(--msp-shadow-md);
	padding: 36px;
}
.msp-form-row { margin-bottom: 18px; }
.msp-form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.msp-form-row label {
	display: block; font-family: var(--msp-font-body); font-weight: 500; font-size: 14px;
	color: var(--msp-dark); margin-bottom: 7px;
}
.msp-form-row label span { color: var(--msp-blue); }
.msp-form-row input[type="text"],
.msp-form-row input[type="tel"],
.msp-form-row input[type="email"],
.msp-form-row input[type="date"],
.msp-form-row select,
.msp-form-row textarea {
	width: 100%; padding: 12px 14px; border: 1.5px solid var(--msp-border);
	border-radius: var(--msp-radius-input); background: var(--msp-white); color: var(--msp-dark);
	transition: border-color 200ms var(--msp-ease), box-shadow 200ms var(--msp-ease);
}
.msp-form-row input:hover, .msp-form-row select:hover, .msp-form-row textarea:hover { border-color: #cfd6dc; }
.msp-form-row input:focus, .msp-form-row select:focus, .msp-form-row textarea:focus {
	outline: none; border-color: var(--msp-blue); box-shadow: 0 0 0 3px rgba(40,106,156,0.14);
}
.msp-form-row textarea { resize: vertical; min-height: 100px; }
/* Validare vizuala doar DUPA ce utilizatorul a interactionat cu campul
   (clasa is-touched adaugata din JS la blur) - niciodata pe o pagina abia
   incarcata, unde toate campurile obligatorii goale ar aparea gresit ca
   invalide inainte ca vizitatorul sa apuce sa scrie ceva. */
.msp-form-row input.is-touched:invalid,
.msp-form-row select.is-touched:invalid,
.msp-form-row textarea.is-touched:invalid { border-color: #d9534f; }

.msp-form-honeypot { position: absolute; left: -9999px; top: -9999px; }

.msp-form-privacy-note { font-size: 12.5px; color: var(--msp-text); background: var(--msp-light); border-radius: 8px; padding: 12px 14px; margin-bottom: 18px; }

.msp-form-checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.msp-form-checkbox-row input { margin-top: 4px; width: 17px; height: 17px; accent-color: var(--msp-blue); flex-shrink: 0; }
.msp-form-checkbox-row label { font-size: 13.5px; color: var(--msp-text); font-family: var(--msp-font-body); font-weight: 400; margin: 0; }
.msp-form-checkbox-row a { color: var(--msp-blue); text-decoration: underline; }

.msp-form-status {
	display: flex; align-items: flex-start; gap: 12px;
	border-radius: 12px; padding: 16px 18px; margin-bottom: 22px; font-size: 14.5px;
}
.msp-form-status-success { background: #EAF7EE; color: #1E6B36; }
.msp-form-status-success .msp-icon { color: #1E6B36; }
.msp-form-status-error { background: #FBEAEA; color: #A32A2A; }

.msp-appointment-form[data-msp-submitting] .msp-btn { opacity: 0.75; pointer-events: none; }

/* -------------------------------------------------------------------------
   19. FOOTER
   ------------------------------------------------------------------------- */
.msp-footer { background: var(--msp-navy); color: rgba(255,255,255,0.72); padding: 76px 0 0; }
.msp-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 56px; }
.msp-footer-logo { display: inline-block; margin-bottom: 18px; }
.msp-footer-brand p { font-size: 14px; max-width: 300px; }
.msp-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.msp-footer-social a {
	display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
	border-radius: 50%; background: rgba(255,255,255,0.08); color: var(--msp-white);
	transition: background-color 220ms var(--msp-ease);
}
.msp-footer-social a:hover { background: var(--msp-green); color: var(--msp-navy); }

.msp-widget-title { color: var(--msp-white); font-size: 15px; margin-bottom: 20px; }
.msp-footer-list { display: grid; gap: 12px; }
.msp-footer-list a { color: rgba(255,255,255,0.72); font-size: 14.5px; }
.msp-footer-list a:hover { color: var(--msp-green); }
.msp-footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.msp-footer-contact .msp-icon { color: var(--msp-green); width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; }
.msp-footer-emergency { font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top: 18px; }

.msp-footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 22px 0; }
.msp-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.msp-footer-bottom p { font-size: 13px; margin: 0; }
.msp-footer-legal { display: flex; gap: 20px; }
.msp-footer-legal a { color: rgba(255,255,255,0.6); font-size: 13px; }
.msp-footer-legal a:hover { color: var(--msp-white); }

/* -------------------------------------------------------------------------
   20. MOBILE CTA BAR
   ------------------------------------------------------------------------- */
.msp-mobile-cta-bar {
	display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 480;
	background: var(--msp-white); border-top: 1px solid var(--msp-border);
	box-shadow: 0 -8px 24px rgba(23,59,95,0.08);
	padding: 10px var(--msp-gutter);
	padding-bottom: calc(10px + env(safe-area-inset-bottom));
	gap: 12px;
}
.msp-mobile-cta-btn {
	flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
	padding: 13px; border-radius: var(--msp-radius-btn);
	font-family: var(--msp-font-body); font-weight: 600; font-size: 14.5px;
}
.msp-mobile-cta-call { background: var(--msp-light); color: var(--msp-navy); }
.msp-mobile-cta-book { background: var(--msp-navy); color: var(--msp-white); }

/* -------------------------------------------------------------------------
   21. GENERIC PAGE / HERO / 404 / QUICK NAV
   ------------------------------------------------------------------------- */
.msp-page-hero { padding: 64px 0 50px; background: var(--msp-light); }
.msp-page-simple { padding: 64px 0 var(--msp-section-space); }
.msp-page-header { margin-bottom: 40px; }
.msp-entry-content h2 { margin-top: 1.6em; }
.msp-entry-content ul { display: grid; gap: 10px; margin: 1em 0; }
.msp-entry-content ul li { display: flex; align-items: flex-start; gap: 10px; padding-left: 0; }
.msp-entry-content ul li::before {
	content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--msp-green);
	margin-top: 8px; flex-shrink: 0;
}

.msp-quick-nav { border-bottom: 1px solid var(--msp-border); position: sticky; top: 84px; background: var(--msp-white); z-index: 100; }
.msp-quick-nav-list { display: flex; gap: 6px; overflow-x: auto; padding: 14px var(--msp-gutter); scrollbar-width: none; }
.msp-quick-nav-list::-webkit-scrollbar { display: none; }
.msp-quick-nav-list a {
	flex-shrink: 0; padding: 8px 16px; border-radius: 20px; background: var(--msp-light);
	font-family: var(--msp-font-body); font-weight: 500; font-size: 13.5px; color: var(--msp-dark);
	transition: background-color 200ms var(--msp-ease), color 200ms var(--msp-ease);
}
.msp-quick-nav-list a:hover { background: var(--msp-blue); color: var(--msp-white); }

.msp-404 { padding: 120px 0; }
.msp-404-inner { text-align: center; max-width: 480px; margin: 0 auto; }
.msp-404-code { font-family: var(--msp-font-body); font-weight: 700; font-size: 4rem; color: var(--msp-blue-light); margin: 0; }
.msp-404-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 24px; }

.msp-archive-list { display: grid; gap: 26px; }
.msp-archive-item { padding-bottom: 26px; border-bottom: 1px solid var(--msp-border); }

/* -------------------------------------------------------------------------
   22. SERVICE / DOCTOR SINGLE
   ------------------------------------------------------------------------- */
.msp-service-hero, .msp-doctor-hero { padding: 60px 0 20px; background: var(--msp-light); }
.msp-service-hero-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.msp-service-hero-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 68px; height: 68px; border-radius: 18px; background: var(--msp-blue-light); color: var(--msp-blue);
	margin-bottom: 20px;
}
.msp-service-hero-icon .msp-icon { width: 34px; height: 34px; }
.msp-service-hero-subtitle { font-size: 1.1rem; color: var(--msp-text); }

.msp-doctor-hero-inner { display: grid; grid-template-columns: 0.7fr 1fr; gap: 56px; align-items: center; padding-bottom: 40px; }
.msp-doctor-hero-photo { border-radius: var(--msp-radius-card); overflow: hidden; box-shadow: var(--msp-shadow-md); aspect-ratio: 4/5; }
.msp-doctor-hero-photo img, .msp-doctor-hero-photo svg { width: 100%; height: 100%; object-fit: cover; }
.msp-doctor-hero-title { font-size: 1.1rem; color: var(--msp-text); margin-bottom: 16px; }
.msp-doctor-hero-content .msp-badge-list { margin: 4px 0 26px; }

.msp-doctor-experience {
	display: inline-flex; align-items: center; gap: 10px;
	background: var(--msp-blue-light); color: var(--msp-navy);
	font-family: var(--msp-font-body); font-weight: 600; font-size: 14px;
	padding: 10px 18px; border-radius: 30px; margin-bottom: 26px;
}
.msp-doctor-experience .msp-icon { color: var(--msp-blue); }

.msp-service-doctor-card {
	display: flex; align-items: center; gap: 20px;
	background: var(--msp-light); border-radius: var(--msp-radius-card);
	padding: 22px 26px; margin: 34px 0;
}
.msp-service-doctor-photo { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.msp-service-doctor-photo img, .msp-service-doctor-photo svg { width: 100%; height: 100%; object-fit: cover; }
.msp-service-doctor-card h3 { margin-bottom: 2px; }
.msp-service-doctor-card p { font-size: 14px; margin-bottom: 8px; }

.msp-service-cta-inline { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 34px; }

.msp-related-services { padding-top: 0; }
.msp-related-heading { text-align: center; margin-bottom: 36px; }

/* -------------------------------------------------------------------------
   23. PRICES PAGE
   ------------------------------------------------------------------------- */
.msp-price-group { margin-bottom: 44px; }
.msp-price-group h2 { border-bottom: 2px solid var(--msp-border); padding-bottom: 14px; margin-bottom: 8px; }
.msp-price-list { display: grid; }
.msp-price-row {
	display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
	padding: 16px 0; border-bottom: 1px dashed var(--msp-border);
}
.msp-price-row-name { display: flex; flex-direction: column; gap: 3px; }
.msp-price-row-name span { font-family: var(--msp-font-body); font-weight: 500; color: var(--msp-dark); }
.msp-price-row-name small { color: var(--msp-text); font-size: 12.5px; }
.msp-price-row-value { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.msp-price-old { text-decoration: line-through; color: var(--msp-text); font-size: 14px; }
.msp-price-new { font-family: var(--msp-font-body); font-weight: 600; color: var(--msp-navy); }

/* -------------------------------------------------------------------------
   24. SCROLL REVEAL ANIMATIONS
   ------------------------------------------------------------------------- */
.msp-reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms var(--msp-ease), transform 600ms var(--msp-ease); }
.msp-reveal.is-visible { opacity: 1; transform: translateY(0); }

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

/* -------------------------------------------------------------------------
   25. RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 1100px) {
	.msp-hero-inner { grid-template-columns: 1fr; }
	.msp-hero-visual { max-width: 460px; margin: 0 auto; }
	.msp-hero-content { max-width: 100%; text-align: left; }
}

@media (max-width: 1024px) {
	.msp-nav-primary { display: none; }
	.msp-header-phone { display: none; }
	.msp-menu-toggle { display: flex; }
	.msp-trust-grid { grid-template-columns: repeat(2, 1fr); }
	.msp-services-grid { grid-template-columns: repeat(2, 1fr); }
	.msp-clinic-intro-inner,
	.msp-why-us-inner,
	.msp-contact-inner { grid-template-columns: 1fr; gap: 40px; }
	.msp-doctor-hero-inner { grid-template-columns: 1fr; }
	.msp-doctor-hero-photo { max-width: 340px; margin: 0 auto; }
}

@media (max-width: 900px) {
	.msp-topbar-hours { display: none; }
}

@media (max-width: 782px) {
	.msp-header-cta { display: none; }
}

@media (max-width: 680px) {
	.msp-topbar-inner { justify-content: center; gap: 6px 18px; font-size: 12.5px; }
	.msp-trust-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
	.msp-services-grid { grid-template-columns: 1fr; }
	.msp-services-list { grid-template-columns: 1fr; }
	.msp-footer-grid { grid-template-columns: 1fr 1fr; }
	.msp-footer-brand { grid-column: 1 / -1; }
	.msp-form-grid-2 { grid-template-columns: 1fr; }
	.msp-hero-float { position: static; margin-top: 14px; box-shadow: none; border: 1px solid var(--msp-border); }
	.msp-mobile-cta-bar { display: flex; }
	.msp-page-simple, .msp-section, main.msp-main { padding-bottom: calc(var(--msp-section-space)); }
	body { padding-bottom: 76px; }
	.msp-cta-actions { flex-direction: column; }
	.msp-appointment-form-wrap { padding: 24px 20px; }
	.msp-service-doctor-card { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
	.msp-footer-grid { grid-template-columns: 1fr; }
	.msp-footer-bottom-inner { flex-direction: column; align-items: flex-start; }
	.msp-hero-actions { flex-direction: column; align-items: stretch; }
	.msp-hero-actions .msp-btn { width: 100%; }
	.msp-404-code { font-size: 3.2rem; }
}
