/*
 * demo-site - foaie de stil unica (consolidata).
 * 1) Baza temei (fost style.css: tokeni, reset, tipografie, layout)
 * 2) Componente + designul Stomatologie (fost stomatologie.css la final,
 *    ca sa pastreze ordinea din cascada: style -> main -> stomatologie).
 * style.css pastreaza doar antetul temei cerut de WordPress.
 */

/* ==========================================================================
   1. BAZA TEMEI (migrata din style.css)
   ========================================================================== */
/* ==========================================================================
   0. CSS Custom Properties (design tokens) - placeholder, se actualizeaza
      dupa aprobarea design-ului (culori, fonturi, spatieri)
   ========================================================================== */
:root {
	--color-primary: #1a56db;
	--color-primary-dark: #123a94;
	--color-secondary: #0f172a;
	--color-text: #1f2937;
	--color-text-muted: #6b7280;
	--color-bg: #ffffff;
	--color-bg-alt: #f8fafc;
	--color-border: #e5e7eb;

	--font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-heading: var(--font-base);

	--container-width: 1200px;
	--space-1: 0.5rem;
	--space-2: 1rem;
	--space-3: 1.5rem;
	--space-4: 2rem;
	--space-6: 3rem;
	--space-8: 4rem;

	--radius: 8px;
	--transition: 0.2s ease-in-out;
}

/* ==========================================================================
   1. Reset minimal (nu folosim un full reset framework ca sa pastram CSS-ul mic)
   ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-base);
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.6;
	font-size: 16px;
}

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

a {
	color: var(--color-primary);
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	line-height: 1.25;
	margin: 0 0 var(--space-2);
	color: var(--color-secondary);
}

p {
	margin: 0 0 var(--space-2);
}

ul, ol {
	margin: 0 0 var(--space-2);
	padding-left: 1.25em;
}

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

/* Accessibility: skip link + screen-reader text (impact si asupra SEO/UX) */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
	background: var(--color-secondary);
	color: #fff;
	padding: var(--space-1) var(--space-2);
	border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
	left: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

/* ==========================================================================
   2. Layout helpers
   ========================================================================== */
.container {
	width: 100%;
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: var(--space-3);
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-content {
	flex: 1 0 auto;
}

/*
 * Stiluri componente. Impartit separat de style.css ca sa poata fi
 * minificat/versionat independent (style.css ramane "header-ul" temei).
 * Mobile-first, fara framework CSS extern (mentine payload-ul mic).
 */

/* ==========================================================================
   Buttons
   ========================================================================== */
.button {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.75em 1.5em;
	border-radius: var(--radius);
	font-weight: 600;
	border: 2px solid transparent;
	transition: background-color var(--transition), color var(--transition), border-color var(--transition);
	cursor: pointer;
}

.button--primary {
	background: var(--color-primary);
	color: #fff;
}

.button--primary:hover,
.button--primary:focus {
	background: var(--color-primary-dark);
	color: #fff;
	text-decoration: none;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	border-bottom: 1px solid var(--color-border);
	background: var(--color-bg);
	position: sticky;
	top: 0;
	z-index: 50;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	padding-block: var(--space-2);
}

.site-branding__link {
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--color-secondary);
}

.menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-toggle__bar {
	display: block;
	height: 2px;
	background: var(--color-secondary);
	border-radius: 2px;
}

.primary-navigation {
	display: none;
	width: 100%;
}

.primary-navigation.is-open {
	display: block;
}

.primary-menu {
	list-style: none;
	margin: 0;
	padding: var(--space-2) 0 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.primary-menu a {
	color: var(--color-text);
	font-weight: 500;
}

@media (min-width: 768px) {
	.menu-toggle {
		display: none;
	}

	.primary-navigation {
		display: block;
		width: auto;
	}

	.primary-menu {
		flex-direction: row;
		padding-top: 0;
	}
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	padding-block: var(--space-8);
	background: var(--color-bg-alt);
}

.hero__inner {
	display: grid;
	gap: var(--space-4);
	align-items: center;
}

.hero__title {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.hero__subtitle {
	font-size: 1.125rem;
	color: var(--color-text-muted);
	max-width: 60ch;
}

@media (min-width: 768px) {
	.hero__inner {
		grid-template-columns: 1.1fr 0.9fr;
	}
}

/* ==========================================================================
   Services teaser / cards
   ========================================================================== */
.services-teaser {
	padding-block: var(--space-8);
}

.services-teaser__title {
	margin-bottom: var(--space-4);
	text-align: center;
}

.services-teaser__grid {
	display: grid;
	gap: var(--space-4);
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	margin-block: var(--space-4);
}

.service-card {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: var(--space-3);
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
}

.service-card__media img {
	border-radius: var(--radius);
	margin-bottom: var(--space-2);
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.service-card__title {
	margin-bottom: 0;
	font-size: 1.15rem;
}

.service-card__excerpt {
	color: var(--color-text-muted);
	flex: 1;
}

.service-card__link {
	font-weight: 600;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
	padding-block: var(--space-6);
	background: var(--color-secondary);
	color: #fff;
}

.cta-banner__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
}

.cta-banner__title {
	color: #fff;
	margin-bottom: var(--space-1);
}

.cta-banner p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Contact section
   ========================================================================== */
.contact-section {
	padding-block: var(--space-8);
}

.contact-section__inner {
	display: grid;
	gap: var(--space-4);
}

@media (min-width: 768px) {
	.contact-section__inner {
		grid-template-columns: 0.8fr 1.2fr;
	}
}

.contact-section__form input[type="text"],
.contact-section__form input[type="email"],
.contact-section__form input[type="tel"],
.contact-section__form textarea {
	width: 100%;
	padding: 0.75em;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	margin-bottom: var(--space-2);
}

.contact-section__form textarea {
	min-height: 140px;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs {
	padding-block: var(--space-2);
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

.breadcrumbs__list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4em;
	margin: 0;
	padding: 0;
}

.breadcrumbs__item:not(:last-child)::after {
	content: "/";
	margin-left: 0.4em;
	color: var(--color-text-muted);
}

/* ==========================================================================
   Content pages / blog / 404
   ========================================================================== */
.page-title {
	margin-block: var(--space-4) var(--space-3);
}

.page-content,
.single-post,
.service-single {
	padding-block: var(--space-2) var(--space-8);
}

.page-content__body,
.single-post__body,
.service-single__body {
	max-width: 75ch;
}

.page-content__media img,
.single-post__media img,
.service-single__media img {
	border-radius: var(--radius);
	margin-bottom: var(--space-3);
}

.post-list {
	display: grid;
	gap: var(--space-4);
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	padding-block: var(--space-3) var(--space-6);
}

.post-list__media img {
	border-radius: var(--radius);
	aspect-ratio: 3 / 2;
	object-fit: cover;
	margin-bottom: var(--space-1);
}

.single-post__meta {
	color: var(--color-text-muted);
	font-size: 0.9rem;
}

.error-404 {
	padding-block: var(--space-8);
	text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: var(--color-bg-alt);
	border-top: 1px solid var(--color-border);
	margin-top: auto;
}

.site-footer__inner {
	display: grid;
	gap: var(--space-4);
	padding-block: var(--space-6);
}

.site-footer__brand {
	font-size: 1.15rem;
}

.site-footer__tagline {
	color: var(--color-text-muted);
}

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
}

.site-footer__bottom {
	border-top: 1px solid var(--color-border);
	padding-block: var(--space-2);
	font-size: 0.85rem;
	color: var(--color-text-muted);
}

.site-footer__bottom p {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.site-footer__inner {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ---- Buton reutilizabil ---- */
.dc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: inherit; font-weight: 600; text-decoration: none; border: 0; border-radius: calc(var(--radius, 16px) - 4px); cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.dc-btn--primary { background: var(--accent, #0E6B5E); color: #fff; }
.dc-btn--primary:hover { transform: translateY(-2px); }
.dc-btn--ghost { background: transparent; color: #14201C; border: 1px solid rgba(20, 32, 28, .2); }
.dc-btn--ghost:hover { border-color: var(--accent, #0E6B5E); background: color-mix(in srgb, var(--accent, #0E6B5E) 6%, #fff); }
.dc-header-cta { padding: 11px 30px; font-size: 16px; border-radius: 15px;}
.dc-header-cta:hover { box-shadow: 0 12px 26px -10px color-mix(in srgb, var(--accent, #0E6B5E) 65%, transparent); }

/* Linkurile designului nu se subliniaza la hover (anuleaza regula globala
   a:hover din style.css, care altfel castiga fata de clase). */
.dc-page a:hover, .dc-page a:focus,
.dc-header a:hover, .dc-header a:focus,
.dc-footer a:hover, .dc-footer a:focus,
.dc-fab__btn:hover, .dc-fab__btn:focus { text-decoration: none; }

/* ---- Reveal la scroll (echivalentul animatiei dvUp inline) ---- */
.dc-reveal { animation: dvUp .8s both; animation-timeline: view(); animation-range: entry 0% cover 22%; }

/* ---- Header ---- */
.dc-header { position: sticky; top: 0; z-index: 60; background: rgba(246, 243, 236, .8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(20, 32, 28, .08); }
.dc-header__inner { position: relative; max-width: 1470px; margin: 0 auto; padding: 15px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.dc-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; color: #14201C; }
.dc-logo__mark { width: 36px; height: 36px; border-radius: 11px; background: var(--accent, #0E6B5E); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--hfont, 'Newsreader', Georgia, serif); font-size: 20px; font-weight: 600; box-shadow: 0 6px 16px -6px color-mix(in srgb, var(--accent, #0E6B5E) 70%, transparent); }
.dc-logo__name { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-size: 21px; font-weight: 600; letter-spacing: -.015em; }
.dc-nav { display: flex; align-items: center; gap: 34px; font-size: 17px; font-weight: 500; }
.dc-nav__link { text-decoration: none; color: #3a463f; white-space: nowrap; transition: color .2s; }
.dc-nav__link:hover { color: var(--accent, #0E6B5E); }
.dc-nav__link.is-active { color: var(--accent, #0E6B5E); font-weight: 600; }

/* ---- Footer (grila are responsive-ul in stomatologie.css: .dc-footer-grid) ---- */
.dc-footer { border-top: 1px solid rgba(255, 255, 255, .09); background: #0F1815; color: #fff; }
.dc-footer-grid { max-width: 1470px; margin: 0 auto; padding: 64px 15px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 40px 72px; }
.dc-footer__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.dc-footer__mark { width: 36px; height: 36px; border-radius: 11px; background: var(--accent, #0E6B5E); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--hfont, 'Newsreader', Georgia, serif); font-size: 20px; font-weight: 600; }
.dc-footer__name { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-size: 21px; font-weight: 600; letter-spacing: -.015em; }
.dc-footer__desc { font-size: 14.5px; line-height: 1.66; color: rgba(255, 255, 255, .6); margin: 0 0 18px; max-width: 38ch; }
.dc-footer__socials { display: flex; align-items: center; gap: 10px; margin-top: 40px; }
.dc-footer__social { width: 57px; height: 57px; border-radius: 15px; background: rgba(255, 255, 255, .06); display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, .8); text-decoration: none; transition: background .2s; }
.dc-footer__social:hover { background: rgba(255, 255, 255, .14); }
.dc-footer__col-title { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .45); margin-bottom: 16px; }
.dc-footer__links { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.dc-footer__link { color: rgba(255, 255, 255, .72); text-decoration: none; transition: color .2s; }
.dc-footer__link:hover { color: #fff; }
.dc-footer__contact { display: flex; flex-direction: column; gap: 13px; font-size: 14.5px; color: rgba(255, 255, 255, .72); }
.dc-footer__contact-row { display: flex; align-items: flex-start; gap: 10px; }
.dc-footer__contact-link { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, .72); text-decoration: none; transition: color .2s; }
.dc-footer__contact-link:hover { color: #fff; }
.dc-footer__ico { flex: none; }
.dc-footer__ico--top { margin-top: 1px; }
.dc-footer__contact-lines { display: flex; flex-direction: column; gap: 3px; }
.dc-footer__badges { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.dc-footer__badge { display: inline-flex; opacity: .85; transition: opacity .2s; }
.dc-footer__badge:hover { opacity: 1; }
.dc-footer__badge img { display: block; height: 40px; width: auto; max-width: 100%; }
.dc-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); }
.dc-footer__bottom-inner { max-width: 1470px; margin: 0 auto; padding: 22px 15px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.dc-footer__copy { font-size: 13px; color: rgba(255, 255, 255, .45); }
.dc-footer__legal { display: flex; gap: 22px; font-size: 13px; }
.dc-footer__legal-link { color: rgba(255, 255, 255, .5); text-decoration: none; transition: color .2s; }
.dc-footer__legal-link:hover { color: #fff; }

/* ---- Bara fixa Suna acum / WhatsApp (responsive .dc-fab a in stomatologie.css) ---- */
.dc-fab { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 120; display: flex; flex-direction: row; gap: 12px; }
.dc-fab__btn { display: flex; align-items: center; justify-content: center; min-width: 160px; gap: 9px; padding: 12px 20px; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 600; color: #fff; transition: transform .2s; }
.dc-fab__btn:hover { transform: translateY(-2px); }
.dc-fab__btn--call { background: var(--accent, #0E6B5E); box-shadow: 0 12px 28px -10px color-mix(in srgb, var(--accent, #0E6B5E) 70%, transparent); }
.dc-fab__btn--wa { background: #25D366; box-shadow: 0 12px 28px -10px rgba(37, 211, 102, .6); }
.dc-fab__ico { flex: none; }

/* ---- Hero pagini interioare ---- */
.dc-page-hero { position: relative; overflow: hidden; background: #14201C; }
.dc-page-hero__bg { position: absolute; inset: 0; background: linear-gradient(120deg, #0d2b25, #14201C 45%, #1c3b34); }
.dc-page-hero__stripes { position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .03) 0 2px, transparent 2px 22px); }
.dc-page-hero__scrim { position: absolute; inset: 0; background: linear-gradient(92deg, rgba(9, 16, 14, .72), rgba(9, 16, 14, .25)); }
.dc-page-hero__inner { position: relative; z-index: 2; min-height: 420px; max-width: 1470px; margin: 0 auto; padding: clamp(72px, 9vw, 120px) 15px; display: flex; flex-direction: column; justify-content: center; }
.dc-crumb { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: color-mix(in srgb, var(--accent, #0E6B5E) 55%, #fff); margin-bottom: 22px; }
.dc-crumb a { color: inherit; text-decoration: none; }
.dc-crumb__sep { opacity: .5; }
.dc-crumb__current { color: rgba(255, 255, 255, .85); }
.dc-page-hero__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(38px, 4.8vw, 62px); line-height: 1.04; letter-spacing: -.025em; margin: 0 0 22px; color: #fff; max-width: 19ch; }
.dc-page-hero__title em { font-style: italic; color: color-mix(in srgb, var(--accent, #0E6B5E) 62%, #fff); }
.dc-page-hero__text { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.6; color: rgba(255, 255, 255, .78); max-width: 58ch; margin: 0; }

/* ---- Cap de sectiune (titlu + subtitlu centrat, latime max 1024px) ---- */
.dc-section-head { text-align: center; max-width: 1024px; margin: 0 auto 44px; }
.dc-section-head__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.04; letter-spacing: -.025em; margin: 0 0 14px; }
.dc-section-head__text { font-size: 16px; line-height: 1.6; color: #57635d; margin: 0; }

/* ---- Sectiune: Date de contact ---- */
.dc-contact-details { background: #fff; }
.dc-contact-details__inner { max-width: 1470px; margin: 0 auto; padding: 88px 15px; }
.dc-contact-details__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.dc-contact-card { background: #faf7f0; border: 1px solid rgba(20, 32, 28, .1); border-radius: var(--radius, 16px); padding: 30px 26px; display: flex; flex-direction: column; gap: 14px; transition: transform .25s cubic-bezier(.16, .8, .24, 1), box-shadow .25s; }
.dc-contact-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -22px rgba(20, 32, 28, .26); }
.dc-contact-card__icon { width: 52px; height: 52px; border-radius: 13px; background: color-mix(in srgb, var(--accent, #0E6B5E) 10%, #fff); display: flex; align-items: center; justify-content: center; color: var(--accent, #0E6B5E); flex: none; }
.dc-contact-card__label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent, #0E6B5E); }
.dc-contact-card__lines { display: flex; flex-direction: column; gap: 4px; }
.dc-contact-card__line { font-size: 15.5px; line-height: 1.5; color: #14201C; font-weight: 500; }

/* ---- Sectiune: Retele sociale ---- */
.dc-contact-socials { background: #F6F3EC; }
.dc-contact-socials__inner { max-width: 1470px; margin: 0 auto; padding: 72px 15px; }
.dc-contact-socials .dc-section-head { margin-bottom: 36px; }
.dc-contact-socials .dc-section-head__title { font-size: clamp(26px, 3vw, 40px); line-height: 1.06; margin: 0 0 12px; }
.dc-socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.dc-social { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid rgba(20, 32, 28, .1); border-radius: var(--radius, 16px); padding: 18px 26px; text-decoration: none; min-width: 220px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.dc-social:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(20, 32, 28, .3); border-color: color-mix(in srgb, var(--accent, #0E6B5E) 40%, transparent); }
.dc-social__icon { width: 46px; height: 46px; border-radius: 12px; color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.dc-social__icon--facebook { background: #1877F2; }
.dc-social__icon--instagram { background: #E1306C; }
.dc-social__icon--tiktok { background: #111; }
.dc-social__icon--youtube { background: #FF0000; }
.dc-social__text { min-width: 0; }
.dc-social__name { display: block; font-size: 15.5px; font-weight: 600; color: #14201C; }
.dc-social__handle { display: block; font-size: 13px; color: #8a938d; margin-top: 2px; }

/* ---- Sectiune: Formular + harta ---- */
.dc-cform { background: #14201C; color: #fff; scroll-margin-top: 70px; }
.dc-cform__grid { max-width: 1470px; margin: 0 auto; padding: 88px 15px 44px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: stretch; }
@media (max-width: 960px) { .dc-cform__grid { grid-template-columns: 1fr; } }
.dc-cform__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.04; letter-spacing: -.025em; margin: 0 0 14px; color: #fff; }
.dc-cform__text { font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, .72); margin: 0 0 32px; }
.dc-cform__map { border-radius: calc(var(--radius, 16px) + 6px); overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5); min-height: 340px; }
.dc-cform__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.2); }

/* ---- Card formular (reutilizat pe toate paginile cu formular) ---- */
.dc-form-card { background: #F6F3EC; color: #14201C; border-radius: calc(var(--radius, 16px) + 6px); padding: clamp(24px, 3vw, 36px); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6); }
.dc-form__note { font-size: 12px; color: #8a938d; text-align: center; line-height: 1.5; margin-top: 14px; }

/* ---- Formularul Contact Form 7 (shortcode randat in .dc-form-card) ---- */
.dc-form-card .wpcf7-form { display: flex; flex-direction: column; gap: 16px; }
.dc-form-card .wpcf7-form p { margin: 0; }
.dc-form-card .wpcf7-form label { display: block; font-size: 13px; font-weight: 600; color: #3a463f; margin-bottom: 7px; }
.dc-form-card .wpcf7-form-control-wrap { display: block; }
.dc-form-card .wpcf7-form-control:not([type="submit"]) { width: 100%; padding: 13px 15px; background: #fff; border: 1px solid rgba(20, 32, 28, .14); border-radius: calc(var(--radius, 16px) - 6px); font-size: 15px; outline: none; transition: border-color .2s; font-family: inherit; }
.dc-form-card textarea.wpcf7-form-control { resize: vertical; }
.dc-form-card .wpcf7-form-control:not([type="submit"]):focus { border-color: var(--accent, #0E6B5E); }
.dc-form-card .wpcf7-not-valid-tip { font-size: 12.5px; color: #c0392b; margin-top: 6px; }
.dc-form-card .wpcf7-submit { margin-top: 6px; width: 100%; padding: 15px; background: var(--accent, #0E6B5E); color: #fff; border: none; border-radius: calc(var(--radius, 16px) - 4px); font-size: 15.5px; font-weight: 600; cursor: pointer; transition: transform .2s, box-shadow .2s; font-family: inherit; }
.dc-form-card .wpcf7-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px color-mix(in srgb, var(--accent, #0E6B5E) 65%, transparent); }
.dc-form-card .wpcf7-spinner { margin-left: 10px; }
.dc-form-card .wpcf7-response-output { font-size: 13px; line-height: 1.5; border-radius: calc(var(--radius, 16px) - 8px); margin: 4px 0 0; padding: 10px 14px; border: 1px solid rgba(20, 32, 28, .14); }
.dc-form-card .wpcf7-form.sent .wpcf7-response-output { border-color: var(--accent, #0E6B5E); color: var(--accent, #0E6B5E); }
.dc-form-card .wpcf7-form.invalid .wpcf7-response-output,
.dc-form-card .wpcf7-form.unaccepted .wpcf7-response-output,
.dc-form-card .wpcf7-form.failed .wpcf7-response-output { border-color: #c0392b; color: #c0392b; }

/* ==========================================================================
   Pagina "Mulțumim" (thank-you) - header/footer minimale, fara FAB.
   ========================================================================== */
@keyframes pop {
	0%   { transform: scale(.6); opacity: 0; }
	60%  { transform: scale(1.08); }
	100% { transform: scale(1); opacity: 1; }
}

/* Sectiune Thank-you */
.dc-thankyou { background: #14201C; color: #fff; position: relative; overflow: hidden; }
.dc-thankyou__bg { position: absolute; inset: 0; background: linear-gradient(120deg, #0d2b25, #14201C 45%, #1c3b34); }
.dc-thankyou__stripes { position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .03) 0 2px, transparent 2px 22px); }
.dc-thankyou__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: clamp(72px, 9vw, 120px) 15px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.dc-thankyou__check { animation: pop .6s both; width: 96px; height: 96px; border-radius: 50%; background: color-mix(in srgb, var(--accent, #0E6B5E) 22%, #14201C); border: 1px solid color-mix(in srgb, var(--accent, #0E6B5E) 45%, transparent); display: flex; align-items: center; justify-content: center; margin-bottom: 32px; }
.dc-thankyou__title { animation: dvUp .7s .1s both; font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(34px, 4.6vw, 58px); line-height: 1.05; letter-spacing: -.025em; margin: 0 0 20px; max-width: 16ch; color: #fff; }
.dc-thankyou__text { animation: dvUp .7s .18s both; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.64; color: rgba(255, 255, 255, .78); margin: 0 0 40px; max-width: 52ch; }
.dc-thankyou__btn { animation: dvUp .7s .26s both; padding: 16px 30px; font-size: 15.5px; border-radius: calc(var(--radius, 16px) - 3px); }
.dc-thankyou__btn:hover { box-shadow: 0 16px 32px -12px color-mix(in srgb, var(--accent, #0E6B5E) 70%, transparent); }

/* Sectiune Contact + harta */
.dc-ty-contact { background: #F6F3EC; }
.dc-ty-contact__inner { max-width: 1470px; margin: 0 auto; padding: 72px 15px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 44px; align-items: stretch; }
.dc-ty-contact__col { display: flex; flex-direction: column; justify-content: center; }
.dc-ty-contact__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(26px, 3vw, 40px); line-height: 1.08; letter-spacing: -.025em; margin: 0 0 26px; }
.dc-ty-contact__list { display: flex; flex-direction: column; gap: 16px; }
.dc-ty-contact-card { display: flex; align-items: flex-start; gap: 16px; background: #fff; border: 1px solid rgba(20, 32, 28, .1); border-radius: var(--radius, 16px); padding: 20px 22px; }
.dc-ty-contact-card__icon { width: 46px; height: 46px; border-radius: 12px; background: color-mix(in srgb, var(--accent, #0E6B5E) 10%, #fff); color: var(--accent, #0E6B5E); display: flex; align-items: center; justify-content: center; flex: none; }
.dc-ty-contact-card__body { min-width: 0; }
.dc-ty-contact-card__label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent, #0E6B5E); margin-bottom: 6px; }
.dc-ty-contact-card__line { font-size: 15.5px; line-height: 1.5; color: #14201C; font-weight: 500; }
.dc-ty-contact__map { min-height: 380px; border-radius: calc(var(--radius, 16px) + 6px); overflow: hidden; border: 1px solid rgba(20, 32, 28, .1); box-shadow: 0 30px 60px -30px rgba(20, 32, 28, .4); }
.dc-ty-contact__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(.2); }

/* ==========================================================================
   Pagina "Cazuri clinice" (+ componente reutilizabile: card video, comparator)
   ========================================================================== */

/* Iframe generat de JS la redare (video grid / playlist). */
.dc-embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Card video reutilizabil (grile de testimoniale/media/cazuri). */
.dc-vcard { display: flex; flex-direction: column; gap: 14px; }
.dc-vcard__stage { position: relative; aspect-ratio: 16/9; border-radius: var(--radius, 16px); overflow: hidden; background: linear-gradient(150deg, #1c3b34, #14201C); box-shadow: 0 18px 40px -22px rgba(20, 32, 28, .4); }
.dc-vcard__play { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; cursor: pointer; background: transparent; display: flex; align-items: center; justify-content: center; padding: 0; }
.dc-vcard__play:hover { background: rgba(0, 0, 0, .12); }
.dc-vcard__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9, 16, 14, .05), rgba(9, 16, 14, .55)); }
.dc-vcard__playbtn { position: relative; width: 62px; height: 62px; border-radius: 50%; background: rgba(255, 255, 255, .94); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px -8px rgba(0, 0, 0, .5); transition: transform .2s; }
.dc-vcard__play:hover .dc-vcard__playbtn { transform: scale(1.08); }
.dc-vcard__meta { position: absolute; left: 16px; bottom: 14px; text-align: left; }
.dc-vcard__name { display: block; font-size: 15px; font-weight: 600; color: #fff; }
.dc-vcard__role { display: block; font-size: 12.5px; color: rgba(255, 255, 255, .72); margin-top: 2px; }

/* Paginare grile video (butoanele sunt generate de stomatologie.js). */
.dc-vpages { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 38px; }
.dc-vpage { min-width: 44px; height: 44px; padding: 0 14px; border-radius: calc(var(--radius, 16px) - 6px); border: 1px solid rgba(20, 32, 28, .18); background: #fff; color: #14201C; font-size: 15px; font-weight: 600; cursor: pointer; transition: transform .2s; font-family: inherit; }
.dc-vpage:hover { transform: translateY(-2px); }
.dc-vpage.is-active { border-color: var(--accent, #0E6B5E); background: var(--accent, #0E6B5E); color: #fff; }

/* Sectiune: grila video cazuri */
.dc-cazuri-video { background: #fff; }
.dc-cazuri-video__inner { max-width: 1470px; margin: 0 auto; padding: 88px 15px; }
.dc-vgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
@media (max-width: 960px) { .dc-vgrid { grid-template-columns: 1fr; } }

/* Sectiune: comparatoare inainte/dupa (grila .ba-grid din fundatie) */
.dc-cazuri-ba { background: #F6F3EC; }
.dc-cazuri-ba__inner { max-width: 1470px; margin: 0 auto; padding: 88px 15px; }
.dc-ba-figure { display: flex; flex-direction: column; gap: 14px; }
.dc-ba { position: relative; aspect-ratio: 3/2; border-radius: var(--radius, 16px); overflow: hidden; cursor: ew-resize; touch-action: none; user-select: none; border: 1px solid rgba(20, 32, 28, .1); box-shadow: 0 22px 46px -24px rgba(20, 32, 28, .34); }
.dc-ba--cap272 { max-height: 272px; }
.dc-ba--cap352 { max-height: 352px; }
.dc-ba--feature { aspect-ratio: 4/3; border: 0; border-radius: calc(var(--radius, 16px) + 2px); box-shadow: 0 24px 50px -20px rgba(0, 0, 0, .5); }
.dc-ba__before { position: absolute; inset: 0; background: linear-gradient(160deg, #b9b2a2, #a49d8d); display: flex; align-items: flex-end; padding: 16px; }
.dc-ba__label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: 7px; }
.dc-ba__label--before { color: rgba(255, 255, 255, .92); background: rgba(20, 32, 28, .35); }
.dc-ba__label--after { color: #14201C; background: rgba(255, 255, 255, .8); }
.dc-ba__fill { position: absolute; inset: 0; width: var(--ba, 50%); overflow: hidden; background: linear-gradient(160deg, #eef4f1, #cfe1d8); }
.dc-ba__after { position: absolute; top: 0; left: 0; height: 100%; width: 100vw; display: flex; align-items: flex-end; padding: 16px; }
.dc-ba__handle { position: absolute; top: 0; bottom: 0; left: var(--ba, 50%); width: 2px; background: #fff; box-shadow: 0 0 0 1px rgba(0, 0, 0, .06); pointer-events: none; }
.dc-ba--p56 { --ba: 56%; }
.dc-ba--p62 { --ba: 62%; }
.dc-ba__knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border-radius: 50%; background: #fff; box-shadow: 0 6px 16px rgba(0, 0, 0, .3); display: flex; align-items: center; justify-content: center; color: #14201C; }
.dc-ba__caption { font-size: 14px; line-height: 1.55; color: #57635d; margin: 0; text-align: center; }
.dc-loadmore-wrap { display: flex; justify-content: center; margin-top: 44px; }
.dc-loadmore { display: inline-flex; align-items: center; gap: 9px; padding: 15px 30px; background: transparent; color: #14201C; border: 1px solid rgba(20, 32, 28, .2); border-radius: calc(var(--radius, 16px) - 3px); font-size: 15px; font-weight: 600; cursor: pointer; transition: border-color .2s, background .2s; font-family: inherit; }
.dc-loadmore:hover { border-color: var(--accent, #0E6B5E); background: color-mix(in srgb, var(--accent, #0E6B5E) 6%, #fff); }

/* Sectiune Contact partajata (homepage / cazuri / testimoniale / preturi) */
.dc-contact { background: #14201C; color: #fff; scroll-margin-top: 70px; }
.dc-contact-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: center; }
.dc-contact__grid { max-width: 1470px; margin: 0 auto; padding: 88px 15px 44px; }
.dc-contact__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.04; letter-spacing: -.025em; margin: 0 0 14px; color: #fff; }
.dc-contact__text { font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, .72); margin: 0 0 38px; }
.dc-contact__details { display: flex; flex-direction: column; gap: 20px; }
.dc-contact__detail { display: flex; align-items: center; gap: 14px; }
.dc-contact__detail-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(255, 255, 255, .06); display: flex; align-items: center; justify-content: center; color: color-mix(in srgb, var(--accent, #0E6B5E) 55%, #fff); flex: none; }
.dc-contact__detail-label { font-size: 13px; color: rgba(255, 255, 255, .5); }
.dc-contact__detail-value { font-size: 15.5px; font-weight: 500; }
.dc-contact__map-shell { max-width: 1470px; margin: 0 auto; padding: 0 15px 88px; }
.dc-contact__map { border-radius: calc(var(--radius, 16px) + 6px); overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .5); }
.dc-contact__map iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(.2); }

/* ==========================================================================
   Pagina "Prețuri": componenta preturi dantura fixa (taburi + carduri) + acordeon
   ========================================================================== */

/* Sectiune componenta "Prețuri pentru dantura fixă" */
.dc-pricing { background: #fff; }
.dc-pricing__inner { max-width: 1470px; margin: 0 auto; padding: 88px 15px; }
.dc-pricing .dc-section-head { margin-bottom: 32px; }
.dc-pricing__note { text-align: center; font-size: 13px; color: #8a938d; margin: 28px auto 0; max-width: 60ch; }

/* Bara de taburi (butoanele .dc-ptab sunt in fundatie) */
.dc-tabs-bar { display: flex; justify-content: center; margin-bottom: 44px; }
.dc-tabs-pill { display: inline-flex; gap: 6px; background: #EFE9DB; border: 1px solid rgba(20, 32, 28, .08); border-radius: 999px; padding: 6px; }
.dc-pricing__panel { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; align-items: stretch; }

/* Card de plan (varianta --popular = fundal inchis, evidentiat) */
.dc-plan { position: relative; display: flex; flex-direction: column; background: #fff; border: 1.5px solid rgba(20, 32, 28, .12); border-radius: calc(var(--radius, 16px) + 4px); padding: 32px 28px; box-shadow: 0 18px 40px -26px rgba(20, 32, 28, .28); }
.dc-plan--popular { background: #14201C; border-color: var(--accent, #0E6B5E); box-shadow: 0 30px 60px -30px rgba(20, 32, 28, .55); }
.dc-plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent, #0E6B5E); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
.dc-plan__tier { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent, #0E6B5E); margin-bottom: 10px; }
.dc-plan__name { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-size: 24px; font-weight: 600; letter-spacing: -.01em; color: #14201C; margin-bottom: 16px; line-height: 1.15; }
.dc-plan--popular .dc-plan__name { color: #fff; }
.dc-plan__price { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 6px; }
.dc-plan__price-val { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-size: 50px; font-weight: 600; letter-spacing: -.02em; color: #14201C; line-height: 1; }
.dc-plan__price-cur { font-size: 17px; font-weight: 600; color: #14201C; margin-bottom: 7px; }
.dc-plan--popular .dc-plan__price-val, .dc-plan--popular .dc-plan__price-cur { color: #fff; }
.dc-plan__per { font-size: 13px; color: #8a938d; margin-bottom: 24px; }
.dc-plan--popular .dc-plan__per { color: rgba(255, 255, 255, .6); }
.dc-plan__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.dc-plan__feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; color: #57635d; }
.dc-plan--popular .dc-plan__feature { color: rgba(255, 255, 255, .86); }
.dc-plan__check { width: 20px; height: 20px; border-radius: 50%; background: color-mix(in srgb, var(--accent, #0E6B5E) 12%, #fff); color: var(--accent, #0E6B5E); display: flex; align-items: center; justify-content: center; flex: none; margin-top: 1px; }
.dc-plan--popular .dc-plan__check { background: color-mix(in srgb, var(--accent, #0E6B5E) 85%, #fff); color: #fff; }
.dc-plan__btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; border-radius: calc(var(--radius, 16px) - 4px); font-size: 14.5px; font-weight: 600; text-decoration: none; cursor: pointer; background: var(--accent, #0E6B5E); color: #fff; border: 1px solid var(--accent, #0E6B5E); transition: filter .2s, transform .2s; }
.dc-plan__btn:hover { filter: brightness(1.06); transform: translateY(-2px); }
.dc-plan--popular .dc-plan__btn { background: #fff; color: var(--accent, #0E6B5E); border-color: #fff; }

/* Sectiune: "Prețul pentru restul serviciilor" - acordeon
   (starile .is-open ale .dc-acc-* sunt in fundatie) */
.dc-preturi-services { background: #F6F3EC; }
.dc-preturi-services__inner { max-width: 1100px; margin: 0 auto; padding: 88px 15px; }
.dc-accordion { display: flex; flex-direction: column; gap: 14px; }
.dc-acc-item { background: #fff; border: 1px solid rgba(20, 32, 28, .1); border-radius: calc(var(--radius, 16px) + 2px); overflow: hidden; box-shadow: 0 14px 36px -28px rgba(20, 32, 28, .3); }
.dc-acc-head { width: 100%; display: flex; align-items: center; gap: 16px; padding: 22px 26px; background: #fff; border: none; cursor: pointer; text-align: left; transition: background .2s; font-family: inherit; }
.dc-acc-head:hover { background: color-mix(in srgb, var(--accent, #0E6B5E) 5%, #fff); }
.dc-acc-head__icon { width: 44px; height: 44px; border-radius: 12px; background: color-mix(in srgb, var(--accent, #0E6B5E) 10%, #fff); color: var(--accent, #0E6B5E); display: flex; align-items: center; justify-content: center; flex: none; }
.dc-acc-head__text { flex: 1; min-width: 0; }
.dc-acc-head__name { display: block; font-family: var(--hfont, 'Newsreader', Georgia, serif); font-size: 20px; font-weight: 600; color: #14201C; letter-spacing: -.01em; }
.dc-acc-head__count { display: block; font-size: 13px; color: #8a938d; margin-top: 2px; }
.dc-acc-chev { flex: none; color: #8a938d; display: flex; }
.dc-acc-body { padding: 2px 26px 14px; }
.dc-acc-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 0; border-top: 1px solid rgba(20, 32, 28, .07); }
.dc-acc-row__name { font-size: 15px; line-height: 1.4; color: #3a463f; }
.dc-acc-row__price { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-size: 16px; font-weight: 600; color: var(--accent, #0E6B5E); white-space: nowrap; flex: none; }

/* ==========================================================================
   Pagina "Testimoniale": playlist, comentarii Facebook, recenzii
   ========================================================================== */

.dc-testim-playlist { background: #fff; }
.dc-testim-playlist--alt { background: #F6F3EC; }
.dc-testim-playlist__inner { max-width: 1470px; margin: 0 auto; padding: 88px 15px; }
.dc-testim-influencers { background: #F6F3EC; }
.dc-testim-influencers__inner { max-width: 1470px; margin: 0 auto; padding: 88px 15px; }
.dc-testim-hero .dc-page-hero__title { max-width: 16ch; }

/* Playlist video (stage + lista) - partajat cu homepage */
.dc-playlist-split { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 24px; align-items: start; }
.dc-playlist__stage { position: relative; border-radius: var(--radius, 16px); overflow: hidden; background: linear-gradient(150deg, #1c3b34, #14201C); box-shadow: 0 22px 46px -24px rgba(20, 32, 28, .4); }
.dc-playlist__stage--fixed { height: 520px; }
.dc-playlist__stage--ratio { aspect-ratio: 16/9; }
@media (max-width: 960px) { .dc-playlist__stage--fixed { height: 360px; } }
.dc-playlist__overlay { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; cursor: pointer; background: transparent; display: flex; align-items: center; justify-content: center; padding: 0; }
.dc-playlist__overlay:hover { background: rgba(0, 0, 0, .12); }
.dc-playlist__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9, 16, 14, .05), rgba(9, 16, 14, .6)); }
.dc-playlist__playbtn { position: relative; width: 72px; height: 72px; border-radius: 50%; background: rgba(255, 255, 255, .94); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px -8px rgba(0, 0, 0, .5); transition: transform .2s; }
.dc-playlist__overlay:hover .dc-playlist__playbtn { transform: scale(1.08); }
.dc-playlist__meta { position: absolute; left: 22px; bottom: 20px; text-align: left; }
.dc-playlist__name { display: block; font-size: 19px; font-weight: 600; color: #fff; }
.dc-playlist__role { display: block; font-size: 14px; color: rgba(255, 255, 255, .75); margin-top: 2px; }
.dc-playlist-list { display: flex; flex-direction: column; gap: 10px; padding-right: 8px; max-height: 520px; }
.dc-playlist-list--sm { max-height: 490px; }
.dc-playlist__item { display: flex; align-items: center; gap: 14px; text-align: left; padding: 10px; background: #fff; border: 1px solid rgba(20, 32, 28, .1); border-radius: calc(var(--radius, 16px) - 4px); cursor: pointer; transition: transform .2s, border-color .2s, background .2s; font-family: inherit; }
.dc-playlist__item:hover { transform: translateX(3px); border-color: color-mix(in srgb, var(--accent, #0E6B5E) 45%, transparent); }
.dc-playlist__item.is-active { background: color-mix(in srgb, var(--accent, #0E6B5E) 8%, #fff); border-color: color-mix(in srgb, var(--accent, #0E6B5E) 40%, transparent); }
.dc-playlist__thumb { position: relative; flex: none; width: 96px; aspect-ratio: 16/9; border-radius: 9px; overflow: hidden; background: linear-gradient(150deg, #1c3b34, #14201C); display: flex; align-items: center; justify-content: center; }
.dc-playlist__thumb-btn { width: 28px; height: 28px; border-radius: 50%; background: rgba(255, 255, 255, .92); display: flex; align-items: center; justify-content: center; }
.dc-playlist__thumb-btn svg { margin-left: 2px; }
.dc-playlist__item-text { min-width: 0; }
.dc-playlist__item-name { display: block; font-size: 15px; font-weight: 600; color: #14201C; letter-spacing: -.01em; }
.dc-playlist__item-role { display: block; font-size: 13px; color: #6b756f; margin-top: 2px; }

/* Comentarii Facebook (timeline .fb-tl + scroll .pl-scroll din fundatie) */
.dc-testim-fb { background: #fff; }
.dc-testim-fb__inner { max-width: 1470px; margin: 0 auto; padding: 88px 15px; }
.dc-fb-scroll { max-height: 700px; overflow-y: auto; padding: 8px 18px 8px 4px; }
.dc-fb-col { position: relative; }
.dc-fb-line { position: absolute; left: 23px; top: 22px; bottom: 22px; width: 2px; background: color-mix(in srgb, var(--accent, #0E6B5E) 20%, transparent); }
.dc-fb-col__list { display: flex; flex-direction: column; gap: 28px; }
.dc-fb-comment { position: relative; display: flex; gap: 18px; align-items: flex-start; }
.dc-fb-avatar { position: relative; flex: none; width: 48px; height: 48px; border-radius: 50%; background: color-mix(in srgb, var(--accent, #0E6B5E) 12%, #fff); color: var(--accent, #0E6B5E); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 17px; box-shadow: 0 0 0 4px #fff, 0 0 0 5px color-mix(in srgb, var(--accent, #0E6B5E) 25%, transparent); }
.dc-fb-avatar__badge { position: absolute; right: -3px; bottom: -3px; width: 20px; height: 20px; border-radius: 50%; background: #1877F2; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; }
.dc-fb-bubble { position: relative; flex: 1; min-width: 0; background: #fff; border: 1px solid rgba(20, 32, 28, .1); border-radius: 16px; border-top-left-radius: 4px; padding: 18px 20px; box-shadow: 0 12px 30px -22px rgba(20, 32, 28, .4); }
.dc-fb-bubble__tail { position: absolute; left: -7px; top: 16px; width: 13px; height: 13px; background: #fff; border-left: 1px solid rgba(20, 32, 28, .1); border-bottom: 1px solid rgba(20, 32, 28, .1); transform: rotate(45deg); }
.dc-fb-bubble__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.dc-fb-bubble__name { font-size: 15px; font-weight: 600; color: #14201C; }
.dc-fb-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: var(--accent, #0E6B5E); background: color-mix(in srgb, var(--accent, #0E6B5E) 10%, #fff); padding: 3px 8px; border-radius: 999px; flex: none; }
.dc-fb-stars { color: #F5A623; font-size: 13px; letter-spacing: 1px; }
.dc-fb-bubble__row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.dc-fb-bubble__text { font-size: 14px; line-height: 1.6; color: #3a463f; margin: 0; }

/* Recenzii Google/Facebook (partajat cu homepage) */
.dc-reviews { background: #F6F3EC; }
.dc-reviews__inner { max-width: 1470px; margin: 0 auto; padding: 88px 15px; }
.dc-reviews__head { text-align: center; max-width: 1024px; margin: 0 auto 44px; }
.dc-reviews__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.08; letter-spacing: -.02em; margin: 0 0 16px; }
.dc-reviews__rating { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; line-height: 1.6; color: #57635d; }
.dc-reviews__rating-stars { color: #F5A623; font-size: 18px; letter-spacing: 1px; }
.dc-reviews__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 960px) { .dc-reviews__grid { grid-template-columns: 1fr; } }
.dc-review { background: #fff; border: 1px solid rgba(20, 32, 28, .1); border-radius: var(--radius, 16px); padding: 26px 24px; display: flex; flex-direction: column; gap: 16px; transition: transform .25s cubic-bezier(.16, .8, .24, 1), box-shadow .25s; }
.dc-review:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -22px rgba(20, 32, 28, .28); }
.dc-review__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dc-review__author { display: flex; align-items: center; gap: 12px; }
.dc-review__avatar { width: 44px; height: 44px; border-radius: 50%; background: color-mix(in srgb, var(--accent, #0E6B5E) 12%, #fff); color: var(--accent, #0E6B5E); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 17px; flex: none; }
.dc-review__name { font-size: 15.5px; font-weight: 600; color: #14201C; }
.dc-review__stars { color: #F5A623; font-size: 13px; letter-spacing: 1px; }
.dc-review__source { font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #8a938d; background: #F6F3EC; padding: 5px 9px; border-radius: 999px; flex: none; }
.dc-review__text { font-size: 14.5px; line-height: 1.6; color: #57635d; margin: 0; }

/* ==========================================================================
   Homepage - utilitare comune + sectiuni
   ========================================================================== */

/* Container comun (max 1470, padding 88px vertical) + placeholder imagine */
.dc-shell { max-width: 1470px; margin: 0 auto; padding: 88px 15px; }
.dc-ph { background: linear-gradient(150deg, #e7e1d3, #d6e2db); display: flex; align-items: center; justify-content: center; color: #9aa39c; }
.dc-accent { color: var(--accent, #0E6B5E); font-weight: 600; }

/* Sectiune: Acreditari */
.dc-accred__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.dc-accred-card { background: #fff; border: 1px solid rgba(20, 32, 28, .1); border-radius: var(--radius, 16px); padding: 26px 24px; display: flex; flex-direction: column; gap: 16px; transition: transform .25s cubic-bezier(.16, .8, .24, 1), box-shadow .25s, border-color .25s; }
.dc-accred-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -22px rgba(20, 32, 28, .3); border-color: color-mix(in srgb, var(--accent, #0E6B5E) 35%, transparent); }
.dc-accred-card__icon { width: 56px; height: 56px; border-radius: 14px; background: color-mix(in srgb, var(--accent, #0E6B5E) 9%, #fff); border: 1px solid color-mix(in srgb, var(--accent, #0E6B5E) 18%, transparent); display: flex; align-items: center; justify-content: center; color: var(--accent, #0E6B5E); }
.dc-accred-card__tag { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent, #0E6B5E); }
.dc-accred-card__name { font-size: 18px; font-weight: 600; color: #14201C; letter-spacing: -.01em; margin-bottom: 7px; }
.dc-accred-card__desc { font-size: 14px; line-height: 1.55; color: #6b756f; }

/* Sectiune: Abordare multidisciplinara (carduri feature) */
.dc-approach { background: #fff; }
.dc-approach .dc-section-head__title { font-size: clamp(28px, 3.3vw, 44px); line-height: 1.1; letter-spacing: -.02em; }
.dc-approach__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.dc-feature { border: 1px solid rgba(20, 32, 28, .1); border-radius: var(--radius, 16px); padding: 30px 26px; display: flex; flex-direction: column; gap: 16px; transition: transform .25s cubic-bezier(.16, .8, .24, 1), box-shadow .25s; }
.dc-feature:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -22px rgba(20, 32, 28, .26); }
.dc-feature__icon { width: 52px; height: 52px; border-radius: 13px; background: color-mix(in srgb, var(--accent, #0E6B5E) 10%, #fff); display: flex; align-items: center; justify-content: center; color: var(--accent, #0E6B5E); flex: none; }
.dc-feature__title { font-size: 18px; font-weight: 600; color: #14201C; letter-spacing: -.01em; line-height: 1.3; }
.dc-feature__desc { font-size: 14.5px; line-height: 1.6; color: #6b756f; }

/* Sectiune: "De ce să alegeți" */
.dc-why { background: #fff; }
.dc-why__inner { max-width: 1470px; margin: 0 auto; padding: 0px 15px 88px; }
.dc-why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.dc-why-card { background: #fff; border: 1px solid rgba(20, 32, 28, .1); border-radius: var(--radius, 16px); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s cubic-bezier(.16, .8, .24, 1), box-shadow .25s; }
.dc-why-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -22px rgba(20, 32, 28, .3); }
.dc-why-card__media { aspect-ratio: 4/3; }
.dc-why-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.dc-why-card__tag { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent, #0E6B5E); }
.dc-why-card__desc { font-size: 14.5px; line-height: 1.6; color: #6b756f; }

/* Emfaza italic accent + grila 2 coloane (responsive in fundatie) */
.dc-em { font-style: italic; color: var(--accent, #0E6B5E); }
.dc-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

/* Sectiune: Proteza mobila vs. dantura fixa */
.dc-comparison { background: #fff; }
.dc-comparison .dc-section-head__title { font-size: clamp(28px, 3.4vw, 46px); line-height: 1.08; letter-spacing: -.025em; }
.dc-compare-imgs { margin-bottom: 24px; }
.dc-compare-img { aspect-ratio: 16/9; border-radius: var(--radius, 16px); overflow: hidden; border: 1px solid rgba(20, 32, 28, .1); flex-direction: column; gap: 10px; }
.dc-compare-img__label { font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.dc-compare__panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.dc-compare-panel { border: 1px solid rgba(20, 32, 28, .1); border-radius: var(--radius, 16px); padding: 32px 28px; }
.dc-compare-panel--cons { background: #faf7f0; }
.dc-compare-panel--pros { background: #14201C; color: #fff; }
.dc-compare-panel__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-size: 22px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 20px; color: #14201C; }
.dc-compare-panel--pros .dc-compare-panel__title { color: #fff; }
.dc-compare-list { display: flex; flex-direction: column; gap: 15px; }
.dc-compare-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; color: #57635d; }
.dc-compare-panel--pros .dc-compare-item { color: rgba(255, 255, 255, .86); }
.dc-compare-item__mark { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: none; margin-top: 1px; }
.dc-compare-item__mark--x { background: #f6e2df; color: #c0503f; }
.dc-compare-item__mark--check { background: color-mix(in srgb, var(--accent, #0E6B5E) 85%, #fff); color: #fff; }

/* Sectiune: Sisteme de implanturi */
.dc-implants { background: #fff; }
.dc-implants__inner { max-width: 1470px; margin: 0 auto; padding: 0 15px 88px; }
.dc-implants .dc-section-head__title { font-size: clamp(28px, 3.4vw, 46px); line-height: 1.08; }
.dc-implants__intro { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 36px; align-items: start; margin-bottom: 36px; }
.dc-implants__lead { font-size: 16px; line-height: 1.6; font-weight: 600; color: #14201C; margin: 0; }
.dc-implants__para { font-size: 15px; line-height: 1.7; color: #57635d; margin: 0; }
.dc-implants__checks { display: flex; flex-direction: column; gap: 13px; }
.dc-implants__check { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; line-height: 1.45; color: #14201C; }
.dc-implants__check-icon { color: var(--accent, #0E6B5E); flex: none; margin-top: 2px; }
.dc-implants__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.dc-implant-card { background: #faf7f0; border: 1px solid rgba(20, 32, 28, .1); border-radius: var(--radius, 16px); padding: 24px 22px 26px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: box-shadow .25s, transform .25s; }
.dc-implant-card:hover { box-shadow: 0 18px 40px -22px rgba(20, 32, 28, .35); transform: translateY(-4px); }
.dc-implant-card__img { width: 100%; aspect-ratio: 4/3; border-radius: calc(var(--radius, 16px) - 4px); background: repeating-linear-gradient(135deg, #eae4d6, #eae4d6 8px, #e2ddce 8px, #e2ddce 16px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #9aa39c; margin-bottom: 18px; }
.dc-implant-card__label { font-family: ui-monospace, monospace; font-size: 9.5px; letter-spacing: .05em; }
.dc-implant-card__name { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-size: 22px; font-weight: 600; letter-spacing: -.01em; color: #14201C; margin-bottom: 8px; }
.dc-implant-card__desc { font-size: 14px; line-height: 1.55; color: #57635d; margin: 0 0 20px; flex: 1; }
.dc-implant-card__btn { display: inline-flex; align-items: center; gap: 8px; width: 100%; justify-content: center; background: var(--accent, #0E6B5E); color: #fff; text-decoration: none; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 12px 18px; border-radius: calc(var(--radius, 16px) - 4px); transition: filter .2s; }
.dc-implant-card__btn:hover { filter: brightness(1.08); }

/* Banda inchisa cu gradient + dungi (fundal reutilizabil pentru CTA/formular) */
.dc-darkband { position: relative; overflow: hidden; background: #14201C; color: #fff; }
.dc-darkband__grad { position: absolute; inset: 0; background: linear-gradient(150deg, #1c3b34, #14201C 55%, #0d2b25); }
.dc-darkband__stripes { position: absolute; inset: 0; opacity: .5; background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 22px); }

/* Butoane CTA reutilizabile */
.dc-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; }
.dc-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 16px 28px; border: 0; border-radius: calc(var(--radius, 16px) - 3px); font-size: 15.5px; font-weight: 600; text-decoration: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.dc-cta-btn--wa { background: #25D366; color: white; font-weight: 700; gap: 10px; }
.dc-cta-btn--wa:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(37, 211, 102, .5); }
.dc-cta-btn--accent { background: var(--accent, #0E6B5E); color: #fff; }
.dc-cta-btn--accent:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px color-mix(in srgb, var(--accent, #0E6B5E) 70%, transparent); }
.dc-cta-btn--white { background: #fff; color: var(--accent, #0E6B5E); font-weight: 700; padding: 16px 30px; }
.dc-cta-btn--white:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(0, 0, 0, .35); }
.dc-cta-btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .5); gap: 10px; }
.dc-cta-btn--ghost:hover { background: rgba(255, 255, 255, .14); }

/* Sectiune: CTA "Primul pas către un zâmbet nou" */
.dc-cta-step__inner { position: relative; z-index: 2; max-width: 1470px; margin: 0 auto; padding: 96px 15px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; }
.dc-cta-step__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(30px, 4vw, 54px); line-height: 1.05; letter-spacing: -.025em; margin: 0; color: #fff; max-width: 20ch; }
.dc-cta-step__text { font-size: 17.5px; line-height: 1.6; color: rgba(255, 255, 255, .78); margin: 0; max-width: 58ch; }

/* Sectiune: Banner CTA verde "Redă-ți zâmbetul" */
.dc-cta-banner { background: #fff; }
.dc-cta-banner__box { position: relative; overflow: hidden; background: var(--accent, #0E6B5E); border-radius: calc(var(--radius, 16px) + 8px); padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px); text-align: center; color: #fff; }
.dc-cta-banner__stripes { position: absolute; inset: 0; opacity: .5; background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .06) 0 2px, transparent 2px 22px); }
.dc-cta-banner__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.dc-cta-banner__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.06; letter-spacing: -.025em; margin: 0; color: #fff; max-width: 22ch; }
.dc-cta-banner__text { font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, .86); margin: 0; max-width: 56ch; }

/* Sectiune: "Aveți întrebări?" (CTA + card formular) */
.dc-ctaform__grid { position: relative; z-index: 2; max-width: 1470px; margin: 0 auto; padding: 88px 15px; }
.dc-ctaform__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(30px, 3.6vw, 48px); line-height: 1.08; letter-spacing: -.025em; margin: 0 0 16px; color: #fff; }
.dc-ctaform__text { font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, .74); margin: 0; }
.dc-cta-btn--glass { background: rgba(255, 255, 255, .08); color: #fff; border: 1px solid rgba(255, 255, 255, .34); }
.dc-cta-btn--glass:hover { background: rgba(255, 255, 255, .16); }

/* Sectiune: Hero homepage (video/imagine de fundal) */
.dc-home-hero { position: relative; min-height: min(92vh, 720px); overflow: hidden; background: #14201C; }
.dc-home-hero__grad { position: absolute; inset: 0; background: linear-gradient(120deg, #0d2b25, #14201C 45%, #1c3b34); background-size: 180% 180%; animation: drift 22s ease-in-out infinite; }
.dc-home-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dc-home-hero__scrim { position: absolute; inset: 0; background: linear-gradient(92deg, rgba(9, 16, 14, .9) 0%, rgba(9, 16, 14, .6) 46%, rgba(9, 16, 14, .28) 100%); }
.dc-home-hero__inner { position: relative; z-index: 2; min-height: min(92vh, 720px); max-width: 1470px; margin: 0 auto; padding: 104px 15px; display: flex; flex-direction: column; justify-content: center; }
.dc-home-hero__eyebrow { display: inline-flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: color-mix(in srgb, var(--accent, #0E6B5E) 55%, #fff); margin-bottom: 26px; max-width: 740px; }
.dc-home-hero__eyebrow-line { width: 26px; height: 1.5px; background: color-mix(in srgb, var(--accent, #0E6B5E) 55%, #fff); display: inline-block; flex: none; }
.dc-home-hero__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(38px, 4.8vw, 66px); line-height: 1.05; letter-spacing: -.025em; margin: 0 0 26px; color: #fff; max-width: 26ch; }
.dc-home-hero__title em { font-style: italic; color: color-mix(in srgb, var(--accent, #0E6B5E) 62%, #fff); }
.dc-home-hero__text { font-size: 18px; line-height: 1.64; color: rgba(255, 255, 255, .78); max-width: 75ch; margin: 0 0 40px; }
.dc-home-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.wpcf7-spinner {position: absolute;left: 42px;bottom: 82px;}
/* Sectiuni: grile video homepage (testimoniale video + apariții media) */
.dc-testimonials { scroll-margin-top: 80px; }
.dc-media { background: #fff; }

/* Carusel generic (sageti, dots, track) - stomatologie.js [data-carousel] */
.dc-carousel-viewport { overflow: hidden; }
.dc-carousel-track { display: flex; transition: transform .55s cubic-bezier(.16, .8, .24, 1); }
.dc-carousel-controls { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 30px; }
.dc-carousel-arrow { width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid rgba(20, 32, 28, .18); color: #14201C; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: border-color .2s, background .2s; }
.dc-carousel-arrow:hover { border-color: var(--accent, #0E6B5E); background: color-mix(in srgb, var(--accent, #0E6B5E) 6%, #fff); }
.dc-carousel-dots { display: flex; align-items: center; gap: 9px; }
.dc-dot { width: 9px; height: 8px; border-radius: 999px; background: rgba(20, 32, 28, .2); border: none; cursor: pointer; transition: width .35s ease, background .35s ease; padding: 0; }
.dc-dot.is-active { width: 30px; background: var(--accent, #0E6B5E); }

/* Sectiune: "Bine ați venit" (slider + misiune) */
.dc-welcome { background: #F6F3EC; color: #14201C; }
.dc-welcome__grid { max-width: 1470px; margin: 0 auto; padding: 88px 15px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: stretch; }
@media (max-width: 960px) { .dc-welcome__grid { grid-template-columns: 1fr; } }
.dc-welcome__col { display: flex; }
.dc-welcome__slider { position: relative; width: 100%; min-height: 360px; border-radius: calc(var(--radius, 16px) + 4px); overflow: hidden; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6); }
.dc-welcome__track { display: flex; height: 100%; transition: transform .55s cubic-bezier(.16, .8, .24, 1); }
.dc-welcome__slide { flex: 0 0 100%; height: 100%; flex-direction: column; gap: 10px; }
.dc-welcome__slide-label { font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.dc-welcome__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, .9); border: none; color: #14201C; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .4); transition: background .2s; }
.dc-welcome__arrow:hover { background: #fff; }
.dc-welcome__arrow--prev { left: 14px; }
.dc-welcome__arrow--next { right: 14px; }
.dc-welcome__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 8px; }
.dc-welcome__eyebrow { display: inline-flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent, #0E6B5E); margin-bottom: 20px; }
.dc-welcome__eyebrow-line { width: 26px; height: 1.5px; background: var(--accent, #0E6B5E); display: inline-block; flex: none; }
.dc-welcome__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(26px, 3vw, 40px); line-height: 1.12; letter-spacing: -.02em; margin: 0 0 22px; }
.dc-welcome__body { display: flex; flex-direction: column; gap: 15px; font-size: 16px; line-height: 1.66; color: #57635d; }
.dc-welcome__body p { margin: 0; }

/* Sectiune: Diplome (carusel 4/view) */
.dc-certs { background: #fff; }
.dc-cert-card { aspect-ratio: 3/4; border-radius: var(--radius, 16px); overflow: hidden; border: 1px solid rgba(20, 32, 28, .1); background: linear-gradient(150deg, #f2eee3, #e4ece7); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: #9aa39c; }
.dc-cert-card__label { font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* Sectiune: Beneficii (carusel 3/view) */
.dc-benefits { background: #F6F3EC; }
.dc-benefits .dc-carousel-controls { margin-top: 32px; }
.dc-benefit { background: #fff; border: 1px solid rgba(20, 32, 28, .1); border-radius: var(--radius, 16px); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s cubic-bezier(.16, .8, .24, 1), box-shadow .25s; }
.dc-benefit:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -22px rgba(20, 32, 28, .3); }
.dc-benefit__media { position: relative; aspect-ratio: 4/3; }
.dc-benefit__badge { position: absolute; bottom: -20px; left: 22px; width: 44px; height: 44px; border-radius: 12px; background: var(--accent, #0E6B5E); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 22px -8px color-mix(in srgb, var(--accent, #0E6B5E) 70%, transparent); }
.dc-benefit__body { padding: 32px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.dc-benefit__tag { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent, #0E6B5E); }
.dc-benefit__desc { font-size: 14.5px; line-height: 1.6; color: #6b756f; }

/* Sectiune: Echipa medicala (carusel 4/view) */
.dc-team .dc-carousel-controls { margin-top: 32px; }
.dc-member { background: #fff; border: 1px solid rgba(20, 32, 28, .09); border-radius: var(--radius, 16px); overflow: hidden; transition: transform .25s cubic-bezier(.16, .8, .24, 1), box-shadow .25s; }
.dc-member:hover { transform: translateY(-5px); box-shadow: 0 24px 46px -24px rgba(20, 32, 28, .34); }
.dc-member__photo { position: relative; height: 330px; background: linear-gradient(160deg, #e7e1d3, #d6e2db); display: flex; align-items: center; justify-content: center; }
.dc-member__mono { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-size: 58px; font-weight: 500; color: rgba(20, 32, 28, .14); letter-spacing: .02em; }
.dc-member__tag { position: absolute; top: 14px; right: 14px; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; background: rgba(255, 255, 255, .85); color: var(--accent, #0E6B5E); padding: 5px 10px; border-radius: 999px; }
.dc-member__body { padding: 18px 20px 22px; }
.dc-member__name { font-size: 17.5px; font-weight: 600; color: #14201C; letter-spacing: -.01em; }
.dc-member__role { font-size: 13.5px; color: var(--accent, #0E6B5E); font-weight: 500; margin-top: 3px; }

/* Sectiune: Servicii (featured "Dantura Fixă" + carusel) */
.dc-services { background: #fff; }
.dc-services .dc-section-head { margin-bottom: 40px; }
.dc-dantura { background: #EFE9DB; color: #14201C; border: 1px solid rgba(20, 32, 28, .08); border-radius: calc(var(--radius, 16px) + 8px); padding: clamp(28px, 4vw, 46px); display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 44px; align-items: center; overflow: hidden; scroll-margin-top: 90px; }
@media (max-width: 720px) { .dc-dantura { grid-template-columns: 1fr; } }
.dc-dantura__badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px; background: color-mix(in srgb, var(--accent, #0E6B5E) 12%, #fff); border: 1px solid color-mix(in srgb, var(--accent, #0E6B5E) 30%, transparent); border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent, #0E6B5E); margin-bottom: 20px; }
.dc-dantura__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(32px, 4vw, 52px); line-height: 1; letter-spacing: -.025em; margin: 0 0 16px; }
.dc-dantura__text { font-size: 16.5px; line-height: 1.6; color: #57635d; margin: 0 0 24px; max-width: 44ch; }
.dc-dantura__list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; }
.dc-dantura__item { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #3a463f; }
.dc-dantura__check { width: 22px; height: 22px; border-radius: 50%; background: color-mix(in srgb, var(--accent, #0E6B5E) 85%, #fff); display: flex; align-items: center; justify-content: center; flex: none; }
.dc-dantura__btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 24px; background: var(--accent, #0E6B5E); color: #fff; border-radius: calc(var(--radius, 16px) - 3px); font-size: 15px; font-weight: 600; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.dc-dantura__btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px color-mix(in srgb, var(--accent, #0E6B5E) 75%, transparent); }
.dc-dantura__caption { text-align: center; font-size: 12.5px; color: rgba(20, 32, 28, .5); margin-top: 12px; }
.dc-services__carousel { margin-top: 18px; }
.dc-service-card { text-decoration: none; background: #fff; border: 1px solid rgba(20, 32, 28, .1); border-radius: var(--radius, 16px); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s cubic-bezier(.16, .8, .24, 1), box-shadow .25s, border-color .25s; }
.dc-service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -22px rgba(20, 32, 28, .32); border-color: color-mix(in srgb, var(--accent, #0E6B5E) 40%, transparent); }
.dc-service-card__media { position: relative; aspect-ratio: 16/10; }
.dc-service-card__num { position: absolute; top: 12px; left: 12px; font-family: var(--hfont, 'Newsreader', Georgia, serif); font-size: 15px; font-weight: 600; color: #fff; background: rgba(20, 32, 28, .55); width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.dc-service-card__body { padding: 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.dc-service-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dc-service-card__name { font-size: 18px; font-weight: 600; color: #14201C; letter-spacing: -.01em; }
.dc-service-card__arrow { color: #9aa39c; font-size: 18px; }
.dc-service-card__desc { font-size: 14px; line-height: 1.5; color: #6b756f; }
.dc-services__controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.dc-services__nav { display: flex; align-items: center; gap: 9px; }
.dc-services__all { display: inline-flex; align-items: center; gap: 9px; padding: 14px 26px; background: var(--accent, #0E6B5E); color: #fff; border-radius: calc(var(--radius, 16px) - 3px); font-size: 15px; font-weight: 600; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.dc-services__all:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px color-mix(in srgb, var(--accent, #0E6B5E) 65%, transparent); }

/* Sectiune: Galerie cazuri (marquee 2 randuri) - randurile pe toata latimea */
.dc-cases { background: #fff; scroll-margin-top: 70px; padding-bottom: 88px; }
.dc-cases__head { max-width: 1470px; margin: 0 auto; padding: 88px 15px 0; }
.dc-cases__rows { display: flex; flex-direction: column; gap: 14px; }
.mq-track { display: flex; gap: 14px; width: max-content; }
.mq-track--r { animation: marqR 46s linear infinite; }
.mq-track--l { animation: marqL 46s linear infinite; }
.dc-gtile { position: relative; flex: none; width: 340px; aspect-ratio: 4/5; border-radius: var(--radius, 16px); overflow: hidden; border: 1px solid rgba(20, 32, 28, .08); cursor: pointer; padding: 0; background: linear-gradient(150deg, #e7e1d3, #d6e2db); display: flex; align-items: center; justify-content: center; transition: box-shadow .25s; }
.dc-gtile:hover { box-shadow: 0 20px 40px -20px rgba(20, 32, 28, .34); }
.dc-gtile__over { position: absolute; inset: 0; opacity: 0; transition: opacity .25s; display: flex; align-items: center; justify-content: center; }
.dc-gtile:hover .dc-gtile__over { opacity: 1; background: color-mix(in srgb, var(--accent, #0E6B5E) 30%, transparent); }
.dc-gtile__over-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, .92); display: flex; align-items: center; justify-content: center; color: var(--accent, #0E6B5E); }

/* Cases-compare homepage (2 comparatoare) */
.dc-cases-compare__inner { max-width: 1470px; margin: 0 auto; padding: 80px 15px 80px; }

/* Popup general "Programează-te" (nume/telefon) - deschis de orice buton cu
   [data-modal-open], vezi initModals in stomatologie.js. */
.dc-modal { position: fixed; inset: 0; z-index: 210; display: none; align-items: center; justify-content: center; padding: 24px; }
.dc-modal.is-open { display: flex; }
.dc-modal__backdrop { position: absolute; inset: 0; background: rgba(9, 12, 11, .6); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.dc-modal__panel { position: relative; z-index: 1; width: 100%; max-width: 740px; max-height: 90vh; overflow-y: auto; background: #F6F3EC; color: #14201C; border-radius: calc(var(--radius, 16px) + 6px); padding: clamp(28px, 4vw, 40px); box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .6); }
.dc-modal__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: rgba(20, 32, 28, .06); border: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #14201C; transition: background .2s; }
.dc-modal__close:hover { background: rgba(20, 32, 28, .14); }
.dc-modal__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: 40px; letter-spacing: -.02em; margin: 0 0 20px; padding-right: 30px; }
.dc-modal .dc-form-card { box-shadow: none; padding: 0; }

/* Lightbox galerie (homepage) */
.dc-lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(9, 12, 11, .9); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 32px; }
.dc-lightbox__btn { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .25); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.dc-lightbox__btn:hover { background: rgba(255, 255, 255, .2); }
.dc-lightbox__close { top: 22px; right: 24px; width: 48px; height: 48px; }
.dc-lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.dc-lightbox__nav--prev { left: 24px; }
.dc-lightbox__nav--next { right: 24px; }
.dc-lightbox__stage { position: relative; max-width: min(1000px, 90vw); width: 100%; aspect-ratio: 3/2; border-radius: calc(var(--radius, 16px) + 4px); overflow: hidden; background: linear-gradient(150deg, #e7e1d3, #d6e2db); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: #9aa39c; box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .7); }
.dc-lightbox__caption { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.dc-lightbox__counter { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); font-size: 13.5px; color: rgba(255, 255, 255, .7); font-weight: 500; }

/* Pagina "Servicii" (grid de servicii + avantaje) */
.dc-servicii { background: #fff; }
.dc-servicii .dc-dantura { margin-bottom: 32px; }
.dc-servicii__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 20px; }
.dc-adv { background: #F6F3EC; }
.dc-adv__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.dc-adv .dc-feature { background: #fff; }

/* ==========================================================================
   Pagina "Dantură fixă"
   ========================================================================== */

/* Hero (panou video dreapta + titlu + piloni + CTA) */
.dc-df-hero { position: relative; overflow: hidden; background: #14201C; min-height: min(90vh, 720px); }
.dc-df-hero__grad { position: absolute; inset: 0; background: linear-gradient(120deg, #0d2b25, #14201C 45%, #1c3b34); background-size: 180% 180%; animation: drift 22s ease-in-out infinite; }
.dc-df-hero__stripes { position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .03) 0 2px, transparent 2px 22px); }
.dc-df-hero__video { position: absolute; z-index: 2; right: clamp(15px, 2.5vw, 48px); top: 60px; bottom: 60px; width: 46%; max-width: 720px; overflow: hidden; border-radius: calc(var(--radius, 16px) + 8px); box-shadow: 0 40px 80px -34px rgba(0, 0, 0, .65); border: 1px solid rgba(255, 255, 255, .12); background: linear-gradient(150deg, #1c3b34, #14201C); }
.dc-df-hero__stage { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; box-shadow: none; }
.dc-df-hero__video-label { position: absolute; top: 34px; left: 50%; transform: translateX(-50%); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .55); pointer-events: none; }
.dc-df-hero__scrim { position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 1; background: linear-gradient(92deg, rgba(9, 16, 14, .9) 30%, rgba(9, 16, 14, .5) 58%, rgba(9, 16, 14, .15)); pointer-events: none; }
.dc-df-hero__inner { position: relative; z-index: 3; min-height: min(90vh, 720px); max-width: 1470px; margin: 0 auto; padding: 64px 15px; display: flex; flex-direction: column; justify-content: center; }
.dc-df-hero__content { max-width: 600px; }
.dc-df-hero__eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: color-mix(in srgb, var(--accent, #0E6B5E) 55%, #fff); margin-bottom: 22px; }
.dc-df-hero__eyebrow-line { width: 26px; height: 1.5px; background: color-mix(in srgb, var(--accent, #0E6B5E) 55%, #fff); display: inline-block; }
.dc-df-hero__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(34px, 4.2vw, 56px); line-height: 1.05; letter-spacing: -.025em; margin: 0 0 22px; color: #fff; }
.dc-df-hero__title em { font-style: italic; color: color-mix(in srgb, var(--accent, #0E6B5E) 62%, #fff); }
.dc-df-hero__pillars { display: flex; flex-direction: column; gap: 13px; margin: 0 0 34px; max-width: 44ch; }
.dc-df-hero__pillar { display: flex; align-items: flex-start; gap: 13px; }
.dc-df-hero__pillar-check { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent, #0E6B5E); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.dc-df-hero__pillar-text { font-size: 16.5px; line-height: 1.42; color: rgba(255, 255, 255, .74); }
.dc-df-hero__pillar-text strong { font-weight: 600; color: #fff; }
@media (max-width: 960px) {
	.dc-df-hero__video { display: none; }
	.dc-df-hero__scrim { background: rgba(9, 16, 14, .55); }
}

/* Bara cu 3 CTA-uri sub hero */
.dc-df-trio { background: #F6F3EC; border-bottom: 1px solid rgba(20, 32, 28, .08); }
.dc-df-trio .dc-shell { padding: 18px 15px; }
.dc-df-trio__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 720px) { .dc-df-trio__grid { grid-template-columns: 1fr; } }
.dc-df-trio__card { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid rgba(20, 32, 28, .12); border-radius: var(--radius, 16px); padding: 14px 18px; text-decoration: none; color: #14201C; transition: transform .22s cubic-bezier(.16, .8, .24, 1), box-shadow .22s, border-color .22s; }
.dc-df-trio__card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -20px rgba(20, 32, 28, .34); border-color: color-mix(in srgb, var(--accent, #0E6B5E) 40%, transparent); }
.dc-df-trio__icon { width: 36px; height: 36px; border-radius: 10px; background: color-mix(in srgb, var(--accent, #0E6B5E) 10%, #fff); border: 1px solid color-mix(in srgb, var(--accent, #0E6B5E) 18%, transparent); color: var(--accent, #0E6B5E); display: flex; align-items: center; justify-content: center; flex: none; }
.dc-df-trio__icon svg { transform: scale(.78); }
.dc-df-trio__title { flex: 1; min-width: 0; font-size: 19px; font-weight: 600; letter-spacing: -.01em; line-height: 1.25; }
.dc-df-trio__arrow { flex: none; }

/* Etapele tratamentului */
.dc-steps { background: #fff; }
.dc-steps__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 1080px) { .dc-steps__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .dc-steps__grid { grid-template-columns: 1fr; } }
.dc-step { position: relative; background: #faf7f0; border: 1px solid rgba(20, 32, 28, .1); border-radius: var(--radius, 16px); padding: 28px 24px; display: flex; flex-direction: column; gap: 14px; transition: transform .25s cubic-bezier(.16, .8, .24, 1), box-shadow .25s; }
.dc-step:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -22px rgba(20, 32, 28, .26); }
.dc-step__num { width: 52px; height: 52px; border-radius: 14px; background: var(--accent, #0E6B5E); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--hfont, 'Newsreader', Georgia, serif); font-size: 22px; font-weight: 600; flex: none; }
.dc-step__title { font-size: 17.5px; font-weight: 600; color: #14201C; letter-spacing: -.01em; line-height: 1.3; }
.dc-step__text { font-size: 14.5px; line-height: 1.6; color: #6b756f; }
.dc-step__arrow { position: absolute; right: -30px; top: 50%; transform: translateY(-50%); z-index: 2; width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid color-mix(in srgb, var(--accent, #0E6B5E) 30%, transparent); color: var(--accent, #0E6B5E); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px -8px rgba(20, 32, 28, .4); }
@media (max-width: 1080px) { .dc-step__arrow { display: none; } }

/* Componenta reutilizabila: video (single) + text 2 coloane */
.dc-media-feature { background: #F6F3EC; }
.dc-media-feature--white { background: #fff; }
.dc-media-feature__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(32px, 4vw, 56px); align-items: stretch; }
@media (max-width: 960px) { .dc-media-feature__grid { grid-template-columns: 1fr; } }
.dc-media-feature__video { display: flex; }
.dc-playlist__stage--feature { height: 100%; min-height: 340px; width: 100%; }
.dc-media-feature__video-label { position: absolute; left: 20px; bottom: 16px; font-size: 13px; font-weight: 600; color: #fff; letter-spacing: .02em; }
.dc-media-feature__text { display: flex; flex-direction: column; justify-content: center; padding: 40px 0; }
.dc-media-feature__eyebrow { display: inline-flex; align-items: center; gap: 11px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent, #0E6B5E); margin-bottom: 20px; }
.dc-media-feature__eyebrow-line { width: 26px; height: 1.5px; background: var(--accent, #0E6B5E); display: inline-block; flex: none; }
.dc-media-feature__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(28px, 3.3vw, 44px); line-height: 1.1; letter-spacing: -.02em; margin: 0 0 20px; max-width: 22ch; }
.dc-media-feature__body { display: flex; flex-direction: column; gap: 14px; font-size: 16.5px; line-height: 1.7; color: #57635d; }
.dc-media-feature__body p { margin: 0; }
.dc-media-feature__body strong { color: #14201C; font-weight: 600; }
.dc-media-feature__badge { display: inline-flex; align-items: center; gap: 10px; margin: 24px 0 28px; padding: 9px 16px; background: color-mix(in srgb, var(--accent, #0E6B5E) 8%, #fff); border: 1px solid color-mix(in srgb, var(--accent, #0E6B5E) 20%, transparent); border-radius: 999px; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent, #0E6B5E); }
.dc-media-feature__extra-wrap { margin: 20px 0; }
.dc-media-feature__extra { display: flex; align-items: center; gap: 16px; background: #faf7f0; border: 1px solid rgba(20, 32, 28, .1); border-radius: var(--radius, 16px); padding: 14px; }
.dc-media-feature__extra-img { flex: none; width: 120px; aspect-ratio: 4/3; border-radius: calc(var(--radius, 16px) - 6px); overflow: hidden; border: 1px solid rgba(20, 32, 28, .1); }
.dc-media-feature__extra-tag { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent, #0E6B5E); margin-bottom: 4px; }
.dc-media-feature__extra-name { font-size: 15px; font-weight: 600; color: #14201C; letter-spacing: -.01em; }
.dc-media-feature__extra-desc { font-size: 13px; color: #6b756f; margin-top: 2px; }

/* Riscurile amanarii reabilitarii (reutilizeaza cardul .dc-feature) */
.dc-risks { background: #fff; }
.dc-risks__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 960px) { .dc-risks__grid { grid-template-columns: 1fr; } }
.dc-feature__icon--danger { background: #f6e2df; color: #c0503f; }

/* Galerie foto clinica (grid static 3/rand) */
.dc-clinic-gallery { background: #fff; }
.dc-clinic-gallery__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 720px) { .dc-clinic-gallery__grid { grid-template-columns: 1fr; } }
.dc-clinic-gallery__tile { position: relative; aspect-ratio: 4/3; border-radius: var(--radius, 16px); overflow: hidden; border: 1px solid rgba(20, 32, 28, .08); flex-direction: column; gap: 8px; }
.dc-clinic-gallery__label { font-family: ui-monospace, monospace; font-size: 9.5px; letter-spacing: .06em; }

/* FAQ video + acordeon pe 2 coloane */
.dc-faq { background: #F6F3EC; }
.dc-faq__playlist { margin-bottom: 48px; }
.dc-faq-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-items: start; }
@media (max-width: 820px) { .dc-faq-grid { grid-template-columns: 1fr; } }
.dc-faq__answer { font-size: 15.5px; line-height: 1.7; color: #57635d; margin: 0; max-width: 66ch; }

/* Galerie marquee (eticheta sub iconita placeholder) */
.dc-gtile { flex-direction: column; gap: 8px; }
.dc-gtile__caption { font-family: ui-monospace, monospace; font-size: 9.5px; letter-spacing: .06em; color: #9aa39c; }

/* ==========================================================================
   Pagina de serviciu unic (CPT "service") - un singur template, continutul
   difera dupa slug (vezi inc/service-content.php).
   ========================================================================== */

/* Hero (breadcrumb + titlu + lead + CTA) - reutilizeaza .dc-page-hero */
.dc-service-hero__text { margin-bottom: 36px; }
.dc-service-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Text SEO */
.dc-service-seo { background: #fff; }
.dc-service-seo__inner { max-width: 940px; margin: 0 auto; padding: clamp(48px, 6vw, 80px) 15px; }
.dc-service-seo__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(26px, 3.2vw, 42px); line-height: 1.08; letter-spacing: -.025em; margin: 0 0 22px; max-width: 24ch; }
.dc-service-seo__body { display: flex; flex-direction: column; gap: 16px; }
.dc-service-seo__body p { font-size: 16.5px; line-height: 1.78; color: #3a463f; margin: 0; }

/* Beneficiile tratamentului (fundal inchis, carduri albe) */
.dc-service-benefits__title { color: #fff; }
.dc-service-benefits__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.dc-service-benefits .dc-feature { background: #fff; }

/* FAQ (acordeon, o coloana, carduri crem pe fundal alb) */
.dc-service-faq { background: #fff; }
.dc-service-faq__inner { max-width: 900px; margin: 0 auto; padding: clamp(56px, 7vw, 88px) 15px; }
.dc-service-faq .dc-acc-item { background: #F6F3EC; box-shadow: none; }
.dc-service-faq .dc-acc-head { background: transparent; }
.dc-service-faq .dc-acc-head:hover { background: color-mix(in srgb, var(--accent, #0E6B5E) 6%, transparent); }
.dc-service-faq__answer { font-size: 15.5px; line-height: 1.7; color: #57635d; margin: 0; max-width: 66ch; }

/* Alte servicii (carusel 3/view, sageti in antet) - reutilizeaza .dc-adv / .dc-service-card */
.dc-service-related__headrow { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.dc-service-related__title { margin: 0; }
.dc-service-related__nav { display: flex; align-items: center; gap: 14px; }
.dc-service-related__all { font-size: 15px; font-weight: 600; color: var(--accent, #0E6B5E); text-decoration: none; white-space: nowrap; }
.dc-service-related__arrows { display: flex; gap: 10px; }

/* ==========================================================================
   Pagini legale (Termeni si conditii / Politica de confidentialitate /
   Politica de cookies) - un singur template, continutul difera dupa slug
   (vezi inc/legal-content.php).
   ========================================================================== */

/* Hero (breadcrumb + titlu + intro + "ultima actualizare") - reutilizeaza .dc-page-hero */
.dc-legal-hero .dc-page-hero__inner { max-width: 920px; }
.dc-legal-hero__updated {margin-top: 30px; width: fit-content; display: inline-flex; align-items: center; gap: 9px; font-size: 13px; color: rgba(255, 255, 255, .6); border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; padding: 8px 16px; }

/* Corpul articolului (sectiuni numerotate + paragrafe/liste) */
.dc-legal-article { background: #F6F3EC; }
.dc-legal-article__inner { max-width: 920px; margin: 0 auto; padding: clamp(48px, 6vw, 80px) 15px; }
.dc-legal-article__sections { display: flex; flex-direction: column; gap: 40px; }
.dc-legal-article__section { scroll-margin-top: 84px; }
.dc-legal-article__heading { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(23px, 2.6vw, 32px); line-height: 1.12; letter-spacing: -.02em; margin: 0 0 8px; display: flex; align-items: baseline; gap: 14px; }
.dc-legal-article__num { font-family: 'Hanken Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: var(--accent, #0E6B5E); flex: none; letter-spacing: .02em; }
.dc-legal-article__divider { height: 1px; background: rgba(20, 32, 28, .1); margin: 0 0 20px; }
.dc-legal-article__blocks { display: flex; flex-direction: column; gap: 16px; }
.dc-legal-article__para { font-size: 16px; line-height: 1.72; color: #3a463f; margin: 0; }
.dc-legal-article__list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.dc-legal-article__list li { position: relative; padding-left: 26px; font-size: 16px; line-height: 1.66; color: #3a463f; }
.dc-legal-article__list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent, #0E6B5E); }
.dc-legal-article__callout { background: #fff; border: 1px solid rgba(20, 32, 28, .1); border-radius: calc(var(--radius, 16px) + 4px); padding: 26px 28px; display: flex; align-items: flex-start; gap: 16px; margin-top: 8px; }
.dc-legal-article__callout-icon { width: 44px; height: 44px; border-radius: 12px; background: color-mix(in srgb, var(--accent, #0E6B5E) 10%, #fff); color: var(--accent, #0E6B5E); display: flex; align-items: center; justify-content: center; flex: none; }
.dc-legal-article__callout-title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-size: 19px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 6px; }
.dc-legal-article__callout-text { font-size: 15px; line-height: 1.6; color: #57635d; margin: 0; }
.dc-legal-article__callout-text a { color: var(--accent, #0E6B5E); font-weight: 600; text-decoration: none; }

/* Date de contact + harta */
.dc-legal-contact { background: #fff; border-top: 1px solid rgba(20, 32, 28, .08); }
.dc-legal-contact__grid { max-width: 1470px; margin: 0 auto; padding: clamp(56px, 6vw, 80px) 15px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 44px; align-items: stretch; }
.dc-legal-contact__col { display: flex; flex-direction: column; justify-content: center; }
.dc-legal-contact__title { font-family: var(--hfont, 'Newsreader', Georgia, serif); font-weight: 500; font-size: clamp(26px, 3vw, 40px); line-height: 1.08; letter-spacing: -.025em; margin: 0 0 26px; }
.dc-legal-contact__list { display: flex; flex-direction: column; gap: 16px; }
.dc-legal-contact__row { display: flex; align-items: flex-start; gap: 16px; background: #F6F3EC; border: 1px solid rgba(20, 32, 28, .1); border-radius: var(--radius, 16px); padding: 20px 22px; }
.dc-legal-contact__icon { width: 46px; height: 46px; border-radius: 12px; background: color-mix(in srgb, var(--accent, #0E6B5E) 10%, #fff); color: var(--accent, #0E6B5E); display: flex; align-items: center; justify-content: center; flex: none; }
.dc-legal-contact__text { min-width: 0; }
.dc-legal-contact__label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent, #0E6B5E); margin-bottom: 6px; }
.dc-legal-contact__line { font-size: 15.5px; line-height: 1.5; color: #14201C; font-weight: 500; }
.dc-legal-contact__map { min-height: 380px; border-radius: calc(var(--radius, 16px) + 6px); overflow: hidden; border: 1px solid rgba(20, 32, 28, .1); box-shadow: 0 30px 60px -30px rgba(20, 32, 28, .4); }
.dc-legal-contact__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(.2); }

/* Ajustari specifice paginii "Dantură fixă" pentru componente partajate cu alte
   pagini (comparatie, preturi, echipa, cazuri video) - scopate pe body-ul paginii
   (page-template-dantura-fixa) ca sa nu afecteze aparitiile lor de pe alte pagini. */
.page-template-dantura-fixa .dc-comparison .dc-shell { padding-top: 0; padding-bottom: 0; }
.page-template-dantura-fixa .dc-risks .dc-shell { padding-top: 0; }
.page-template-dantura-fixa .dc-pricing-dantura .dc-pricing__inner { padding-top: 0; }
.page-template-dantura-fixa .dc-team { background: #fff; }
.page-template-dantura-fixa .dc-cazuri-video .dc-cazuri-video__inner { padding-top: 0; }
.page-template-dantura-fixa .dc-cazuri-video .dc-vcard__role { display: none; }
.page-template-dantura-fixa .dc-certs .dc-shell { padding-top: 0; }

/* ==========================================================================
   3. FUNDATIA + UTILITARELE DESIGNULUI (migrate din stomatologie.css)
   ========================================================================== */
:root {
	--accent: #0E6B5E;
	--radius: 16px;
	--hfont: 'Newsreader', Georgia, serif;
}

/* Radacina designului (echivalentul lui rootStyle din DC). */
.dc-root {
	--accent: #0E6B5E;
	--radius: 16px;
	--hfont: 'Newsreader', Georgia, serif;
}

/* Reia stilul de baza din blocul <style> al designului. */
body.dc-page {
	margin: 0;
	overflow-x: hidden;
	font-family: 'Hanken Grotesk', system-ui, sans-serif;
	background: #F6F3EC;
	color: #14201C;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.dc-page ::selection {
	background: var(--accent, #0E6B5E);
	color: #fff;
}

/* Titlul + subtitlul fiecarui bloc (grupul centrat cu animatia dvUp) - latime
   maxima uniforma de 1024px pe toate sectiunile. Vizeaza doar aceste grupuri de
   titluri, nu cardurile sau banner-ele CTA pe toata latimea. */
.dc-page [style*="animation:dvUp"][style*="text-align:center"][style*="margin:0 auto"] {
	max-width: 1024px !important;
}

/* ==========================================================================
   Keyframe-uri (din design)
   ========================================================================== */
@keyframes dvUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: none; }
}
@keyframes drift {
	0%, 100% { background-position: 0% 50%; }
	50%      { background-position: 100% 50%; }
}
@keyframes marqL {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@keyframes marqR {
	from { transform: translateX(-50%); }
	to   { transform: translateX(0); }
}

/* ==========================================================================
   Clase-helper (din design)
   ========================================================================== */
/* Utilitar de ascundere (folosit de taburi - pastreaza display-ul inline al panoului activ). */
.dc-hidden { display: none !important; }

/* Taburi preturi (pagina "Prețuri" / componenta pricing-dantura). */
.dc-ptab {
	border: none;
	cursor: pointer;
	padding: 12px 26px;
	border-radius: 999px;
	font-size: 14.5px;
	font-weight: 600;
	background: transparent;
	color: #57635d;
	box-shadow: none;
	transition: background .25s, color .25s;
}
.dc-ptab.is-active {
	background: #fff;
	color: var(--accent, #0E6B5E);
	box-shadow: 0 6px 16px -8px rgba(20, 32, 28, .35);
}

/* Acordeon preturi (pagina "Prețuri"). */
.dc-acc-body { display: none; }
.dc-acc-item.is-open .dc-acc-body { display: block; }
.dc-acc-item.is-open .dc-acc-head { background: color-mix(in srgb, var(--accent, #0E6B5E) 5%, #fff); }
.dc-acc-chev { transition: transform .25s; }
.dc-acc-item.is-open .dc-acc-chev { transform: rotate(180deg); }

/* Timeline comentarii Facebook de pe pagina "Testimoniale" (din designul paginii). */
.fb-tl {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px 44px;
}
@media (max-width: 820px) {
	.fb-tl { grid-template-columns: 1fr; }
}

/* Grila inainte/dupa de pe pagina "Cazuri clinice" (din designul paginii). */
.ba-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}
@media (max-width: 760px) {
	.ba-grid { grid-template-columns: 1fr; }
}

.mq {
	overflow: hidden;
	width: 100%;
}
.mq:hover .mq-track {
	animation-play-state: paused;
}

.pl-scroll {
	overflow-y: scroll;
	scrollbar-width: thin;
	scrollbar-color: var(--accent, #0E6B5E) rgba(20, 32, 28, .1);
}
.pl-scroll::-webkit-scrollbar {
	width: 8px;
	-webkit-appearance: none;
}
.pl-scroll::-webkit-scrollbar-thumb {
	background: var(--accent, #0E6B5E);
	border-radius: 8px;
}
.pl-scroll::-webkit-scrollbar-track {
	background: rgba(20, 32, 28, .1);
	border-radius: 8px;
}

/* Respecta preferinta de reducere a miscarii. */
@media (prefers-reduced-motion: reduce) {
	.dc-page *,
	.mq-track {
		animation: none !important;
	}
	.dc-page {
		scroll-behavior: auto;
	}
}

/* ==========================================================================
   Meniul mobil (nu exista in designul desktop-first) - butonul hamburger e
   ascuns pe desktop, navigatia orizontala se ascunde sub un breakpoint.
   ========================================================================== */
.dc-nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(20, 32, 28, .14);
	border-radius: 11px;
	background: #fff;
	color: #14201C;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex: none;
}
.dc-nav-toggle svg { display: block; }

@media (max-width: 1080px) {
	.dc-nav-toggle { display: inline-flex; }

	.dc-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 4px !important;
		background: #F6F3EC;
		border-bottom: 1px solid rgba(20, 32, 28, .1);
		padding: 12px 15px 18px;
		box-shadow: 0 24px 40px -24px rgba(20, 32, 28, .35);
		display: none;
	}
	.dc-nav.is-open { display: flex; }
	.dc-nav a {
		padding: 12px 6px;
		border-radius: 8px;
		white-space: normal !important;
	}
	.dc-nav a:hover { background: rgba(14, 107, 94, .08); }

	/* CTA-ul "Programeaza-te" din header ramane vizibil doar pe ecrane mari. */
	.dc-header-cta { display: none !important; }
}

/* ==========================================================================
   Responsive pentru grilele fixe din design (repeat(3,...), spliturile 2-col
   si footer-ul). Clasele sunt adaugate in markup langa stilurile inline.
   ========================================================================== */
@media (max-width: 960px) {
	.dc-grid-3,
	.dc-split-2,
	.dc-patients-split,
	.dc-playlist-split,
	.dc-contact-split {
		grid-template-columns: 1fr !important;
	}
	.dc-playlist-stage { height: 360px !important; }
	.dc-playlist-list { max-height: none !important; }
}

@media (max-width: 720px) {
	.dc-grid-2 { grid-template-columns: 1fr !important; }
	.dc-footer-grid {
		grid-template-columns: 1fr 1fr !important;
		gap: 32px 32px !important;
	}
	/* Bara fixa de jos (Suna acum / WhatsApp) mai compacta pe mobil. */
	.dc-fab a { min-width: 0 !important; flex: 1; }
}

@media (max-width: 480px) {
	.dc-footer-grid { grid-template-columns: 1fr !important; }
}
