/* =========================================================
   Vitalmed v2 — 1:1 Claude Design
   ========================================================= */

:root {
	--accent: #0881d0;
	--accent-600: #0066a9;
	--accent-100: rgba(8, 129, 208, 0.1);
	--accent-50: #ecf7ff;
	--accent-surface: #eef7fd;
	--accent-line: #c5e3f5;
	--ink: #292b2b;
	--ink-soft: #4a4a4a;
	--ink-mute: #7f8382;
	--bg: #ffffff;
	--surface: #dcfbfe;
	--line: #e2e8f0;
}

/* ==== Motion system ==== */
.reveal-up, .reveal-down, .reveal-left, .reveal-right, .reveal-zoom, .reveal-blur, .reveal-fade {
	opacity: 0;
	transition:
		opacity .9s cubic-bezier(.2,.7,.2,1),
		transform .9s cubic-bezier(.2,.7,.2,1),
		filter .9s cubic-bezier(.2,.7,.2,1);
	transition-delay: var(--reveal-delay, 0ms);
	will-change: opacity, transform, filter;
}
.reveal-up    { transform: translateY(28px); }
.reveal-down  { transform: translateY(-24px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal-zoom  { transform: scale(0.94); }
.reveal-blur  { filter: blur(12px); transform: translateY(16px); }
.reveal-up.is-visible, .reveal-down.is-visible,
.reveal-left.is-visible, .reveal-right.is-visible,
.reveal-zoom.is-visible, .reveal-blur.is-visible,
.reveal-fade.is-visible { opacity: 1; transform: none; filter: none; }

.stagger > *:nth-child(1)  { --reveal-delay: 0ms; }
.stagger > *:nth-child(2)  { --reveal-delay: 70ms; }
.stagger > *:nth-child(3)  { --reveal-delay: 140ms; }
.stagger > *:nth-child(4)  { --reveal-delay: 210ms; }
.stagger > *:nth-child(5)  { --reveal-delay: 280ms; }
.stagger > *:nth-child(6)  { --reveal-delay: 350ms; }
.stagger > *:nth-child(7)  { --reveal-delay: 420ms; }
.stagger > *:nth-child(8)  { --reveal-delay: 490ms; }
.stagger > *:nth-child(9)  { --reveal-delay: 560ms; }
.stagger > *:nth-child(10) { --reveal-delay: 630ms; }

.hero-in { animation: heroIn 0.9s cubic-bezier(.2,.7,.2,1) 0s both; }
@keyframes heroIn { 0% { opacity: 0; transform: translateY(24px); filter: blur(6px); } 100% { opacity: 1; transform: translateY(0); filter: blur(0); } }
.hero-in-1 { animation-delay: .1s; }
.hero-in-2 { animation-delay: .25s; }
.hero-in-3 { animation-delay: .4s; }
.hero-in-4 { animation-delay: .55s; }
.hero-in-5 { animation-delay: .7s; }

.parallax-bg { transform: translate3d(0, var(--parallax-y, 0), 0) scale(var(--parallax-scale, 1)); transition: transform 50ms linear; will-change: transform; }
.float-slow { animation: floatSlow 6s ease-in-out infinite; }
@keyframes floatSlow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.page-enter { animation: pageIn 300ms cubic-bezier(.2,.7,.2,1) both; }
@keyframes pageIn { 0% { transform: translateY(6px); } 100% { transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
	.page-enter, .hero-in, .float-slow,
	.reveal-up, .reveal-down, .reveal-left, .reveal-right,
	.reveal-zoom, .reveal-blur, .reveal-fade {
		animation: none !important; transition: none !important;
		opacity: 1 !important; transform: none !important; filter: none !important;
	}
	.parallax-bg { transform: none !important; }
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #d9e5ee; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #b8cfe1; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { scroll-behavior: smooth; }
body {
	font-family: 'Archivo', system-ui, sans-serif;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.5;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; margin: 0; }
p { margin: 0; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ==== SHARED ==== */
.btn-primary {
	display: inline-flex; align-items: center; justify-content: center; gap: 12px;
	padding: 16px 32px;
	background: var(--accent); color: #fff;
	border-radius: 999px;
	font-weight: 500; font-size: 18px;
	transition: transform .18s ease, box-shadow .18s ease, background .18s;
}
.btn-primary:hover { background: var(--accent-600); transform: translateY(-1px); box-shadow: 0 10px 24px -12px rgba(8,129,208,.55); }
.btn-ghost {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 14px 30px;
	border: 2px solid var(--accent); color: var(--accent);
	border-radius: 999px;
	font-weight: 500; font-size: 18px;
	background: transparent;
	transition: background .15s, color .15s;
}
.btn-ghost:hover { background: var(--accent); color: #fff; }
.btn-ghost--white { color: #fff; border-color: #fff; }

.eyebrow {
	color: var(--accent);
	font-size: 16px;
	letter-spacing: 0.08em;
	text-transform: lowercase;
	font-weight: 400;
	display: inline-block;
}

.vm-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; width: 100%; }
.vm-container--wide { max-width: 1400px; }
.vm-container--widest { max-width: 1600px; }

@media (max-width: 720px) { .vm-container { padding: 0 20px; } }

/* ==== HEADER ==== */
.vm-header {
	position: sticky; top: 0; z-index: 60;
	background: #fff;
	transition: background .2s, border-color .2s;
	border-bottom: 1px solid transparent;
}
.vm-header.is-scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom-color: var(--line); }
.vm-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	padding: 20px 32px; max-width: 1400px; margin: 0 auto;
	gap: 24px;
}
.vm-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.vm-logo img { height: auto; width: 167px; display: block; object-fit: contain; }
.vm-nav {
	display: flex; align-items: center; gap: 6px;
	flex: 1; justify-content: center;
}
.vm-nav ul { display: flex; gap: 2px; }
.vm-nav a {
	display: block; padding: 8px 14px;
	border-radius: 999px;
	font-size: 16px; font-weight: 400;
	color: var(--ink-soft);
	white-space: nowrap;
	transition: all .15s;
}
.vm-nav a:hover { background: #f5f8fa; }
.vm-nav .current-menu-item > a, .vm-nav .current_page_item > a {
	color: var(--accent); background: var(--accent-surface); font-weight: 500;
}
.vm-header__cta {
	display: inline-flex; align-items: center; gap: 10px;
	background: var(--accent); color: #fff;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 500; font-size: 15px;
	transition: background .15s, transform .15s;
	flex-shrink: 0;
}
.vm-header__cta:hover { background: var(--accent-600); transform: translateY(-1px); }
.vm-hamburger {
	display: none; width: 44px; height: 44px; border-radius: 10px;
	background: var(--accent-surface); color: var(--accent);
	align-items: center; justify-content: center;
}

@media (max-width: 1080px) {
	.vm-nav, .vm-header__cta { display: none; }
	.vm-hamburger { display: inline-flex; }
}
@media (max-width: 720px) {
	.vm-header__inner { padding: 14px 20px; gap: 12px; }
	.vm-logo img { width: 140px; }
}

/* Mobile menu */
.vm-mobile-menu {
	position: fixed; inset: 0; z-index: 100;
	background: rgba(41,43,43,0.55); backdrop-filter: blur(4px);
	display: none;
}
.vm-mobile-menu.is-open { display: block; animation: fadeIn .2s ease; }
.vm-mobile-menu__panel {
	position: absolute; top: 0; right: 0; bottom: 0;
	width: min(360px, 100%);
	background: #fff; padding: 24px;
	display: flex; flex-direction: column; gap: 18px;
	animation: slideR .28s cubic-bezier(.2,.7,.2,1);
}
.vm-mobile-menu__head { display: flex; justify-content: space-between; align-items: center; }
.vm-mobile-menu__close { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; background: var(--accent-surface); color: var(--accent); }
.vm-mobile-menu__nav { display: flex; flex-direction: column; margin-top: 16px; flex: 1; overflow-y: auto; }
.vm-mobile-menu__nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.vm-mobile-menu__nav li { margin: 0; list-style: none; }
.vm-mobile-menu__nav a { display: block; padding: 14px 18px; border-radius: 12px; font-size: 17px; font-weight: 500; color: var(--ink); text-decoration: none; transition: background .15s, color .15s; }
.vm-mobile-menu__nav a:hover { background: var(--accent-surface); color: var(--accent); }
.vm-mobile-menu__nav .current-menu-item > a, .vm-mobile-menu__nav .current_page_item > a { background: var(--accent-surface); color: var(--accent); font-weight: 600; }
.vm-mobile-menu__footer { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }

@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes slideR { from { transform: translateX(100%) } to { transform: translateX(0) } }

/* ==== PAGE HEADER ==== */
.vm-page-header { background: #fff; padding: 24px 0 56px; }
.vm-breadcrumbs {
	display: flex; align-items: center; justify-content: center;
	gap: 10px; font-size: 13px; color: var(--ink-mute);
	padding-top: 32px;
	text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500;
}
.vm-breadcrumbs a { color: var(--ink-mute); }
.vm-breadcrumbs .sep { opacity: 0.5; }
.vm-breadcrumbs .current { color: var(--accent); font-weight: 600; }
.vm-page-header__title { text-align: center; font-size: clamp(40px, 5vw, 64px); margin-top: 24px; font-weight: 500; }
.vm-page-header__subtitle {
	text-align: center; max-width: 780px; margin: 20px auto 0;
	color: var(--ink-mute); font-size: clamp(16px, 1.3vw, 20px); font-weight: 300;
}

/* =========================================================
 * HERO
 * ========================================================= */
.vm-hero { position: relative; min-height: 720px; overflow: hidden; }
.vm-hero__bg {
	position: absolute; inset: -40px 0;
	overflow: hidden;
}
.vm-hero__bg-image {
	position: absolute; inset: -4%;
	background-size: cover; background-position: center;
	background-repeat: no-repeat;
	animation: kenBurns 22s ease-in-out infinite;
	will-change: transform;
}
.vm-hero__bg::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.35) 100%);
	z-index: 1;
}
@keyframes kenBurns {
	0%   { transform: scale(1) translate(0, 0); transform-origin: center center; }
	50%  { transform: scale(1.08) translate(-1.5%, -1%); transform-origin: 48% 48%; }
	100% { transform: scale(1) translate(0, 0); transform-origin: center center; }
}
@media (prefers-reduced-motion: reduce) {
	.vm-hero__bg-image { animation: none !important; }
}
.vm-hero__inner {
	position: relative; max-width: 1400px;
	padding: 88px 32px 64px;
	color: #fff;
	margin: 0 auto;
}
.vm-hero__content { display: grid; gap: 28px; max-width: 860px; }
.vm-hero__eyebrow { color: #ddd9d9; text-transform: none; font-weight: 400; font-size: 17px; letter-spacing: 0.08em; }
.vm-hero__title {
	font-size: clamp(34px, 4.6vw, 64px); font-weight: 400;
	line-height: 1.2; color: #fff; letter-spacing: 0;
}
.vm-hero__title em { font-style: normal; font-weight: 500; }
.vm-hero__desc { font-size: clamp(16px, 1.3vw, 21px); font-weight: 300; color: #fff; opacity: 0.95; line-height: 1.5; max-width: 860px; }
.vm-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

.vm-hero__footer {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 32px; margin-top: 72px; flex-wrap: wrap;
}
.vm-hero__rating { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.vm-hero__rating-num { font-size: 64px; font-weight: 500; letter-spacing: -0.02em; line-height: 1; }
.vm-hero__rating-num span { opacity: 0.7; font-size: 36px; }
.vm-hero__rating-meta-stars { display: flex; gap: 3px; color: #ffcd58; }
.vm-hero__rating-meta-text { font-size: 15px; opacity: 0.85; font-weight: 300; margin-top: 6px; display: flex; align-items: center; gap: 8px; }
.vm-hero__rating-meta-text strong { font-weight: 500; letter-spacing: 0.04em; color: #fff; }

.vm-hero__pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; max-width: 720px; }
.vm-hero__pill {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 5px 18px 5px 5px;
	background: rgba(255,255,255,0.12);
	backdrop-filter: blur(4px);
	border-radius: 999px; color: #fff;
}
.vm-hero__pill-icon {
	width: 32px; height: 32px; border-radius: 999px;
	background: rgba(255,255,255,0.18);
	display: grid; place-items: center; flex-shrink: 0;
}
.vm-hero__pill-label { font-size: 15px; font-weight: 300; }

@media (max-width: 880px) {
	.vm-hero__footer { flex-direction: column; align-items: flex-start; margin-top: 48px; }
	.vm-hero__pills { justify-content: flex-start; }
}

/* =========================================================
 * QUICK LINKS (3 cards pod hero)
 * ========================================================= */
.vm-ql-section { background: #fff; padding: 48px 0; }
.vm-ql-section .vm-container { max-width: 1560px; }
.vm-ql-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.vm-ql-card {
	position: relative;
	display: flex; align-items: center; gap: 20px;
	padding: 24px 36px;
	cursor: pointer; text-align: left;
	background-color: transparent;
	overflow: hidden;
	transition: background-color .35s ease;
	background-image:
		linear-gradient(to right, transparent 0, transparent 160px, var(--accent) 160px, rgba(8,129,208,0) 100%),
		linear-gradient(to right, rgba(8,129,208,0) 0, var(--accent) 14%, var(--accent) 50%, rgba(8,129,208,0) 100%);
	background-repeat: no-repeat, no-repeat;
	background-size: 100% 2px, 100% 2px;
	background-position: top left, bottom left;
	isolation: isolate;
}
.vm-ql-card + .vm-ql-card { border-left: 1px solid rgba(8,129,208,0.12); }
.vm-ql-card::before {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(115deg, transparent 0%, transparent 40%, rgba(8,129,208,0.12) 50%, transparent 60%, transparent 100%);
	background-size: 220% 100%; background-position: 120% 0;
	transition: background-position .9s cubic-bezier(.2,.7,.2,1);
	pointer-events: none; z-index: 0;
}
.vm-ql-card:hover::before { background-position: -20% 0; }
.vm-ql-card:hover { background-color: rgba(8,129,208,0.045); }
.vm-ql-card > * { position: relative; z-index: 2; }
.vm-ql-icon {
	height: 84px; width: 84px; flex-shrink: 0; object-fit: contain;
	transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .35s ease;
	will-change: transform;
}
.vm-ql-card:hover .vm-ql-icon { transform: translateY(-4px) scale(1.08) rotate(-4deg); filter: drop-shadow(0 8px 16px rgba(8,129,208,0.28)); }
.vm-ql-label {
	font-size: clamp(20px, 1.8vw, 29px);
	font-weight: 500; color: var(--accent);
	flex: 1; line-height: 1.2;
	transition: transform .35s cubic-bezier(.2,.7,.2,1), color .25s ease;
}
.vm-ql-card:hover .vm-ql-label { transform: translateX(6px); color: var(--accent-600); }
.vm-ql-arrow { position: relative; width: 28px; height: 22px; overflow: hidden; flex-shrink: 0; color: var(--accent); }
.vm-ql-arrow svg {
	position: absolute; top: 0; left: 0;
	transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
}
.vm-ql-card:hover .vm-ql-arrow svg { transform: translateX(30px); opacity: 0; }

@media (max-width: 880px) {
	.vm-ql-grid { grid-template-columns: 1fr; }
	.vm-ql-card + .vm-ql-card { border-left: 0; }
}

/* =========================================================
 * ABOUT
 * ========================================================= */
.vm-about { padding: 128px 0 96px; }
.vm-about .vm-container { max-width: 1400px; }
.vm-about__top { display: grid; grid-template-columns: 180px 1fr; gap: 40px; margin-bottom: 72px; }
.vm-about__title {
	font-size: clamp(32px, 4vw, 64px); font-weight: 300;
	color: var(--ink); line-height: 1.15; max-width: 1100px;
}
.vm-about__desc {
	margin-top: 22px; font-size: clamp(16px, 1.3vw, 21px);
	color: var(--ink-mute); font-weight: 300; line-height: 1.55;
	max-width: 1240px;
}
.vm-about__grid { display: grid; grid-template-columns: 424px 1fr; gap: 42px; align-items: stretch; }
.vm-about__cards { display: flex; flex-direction: column; gap: 42px; }
.vm-about__card { background: #ecf7ff; padding: 42px; display: flex; flex-direction: column; gap: 21px; flex: 1; }
.vm-about__card h3 { font-size: 29px; font-weight: 500; color: #292b2b; line-height: 1.2; }
.vm-about__card p,
.vm-about__card-body { font-size: 19px; color: #7f8382; font-weight: 300; line-height: 1.55; }
.vm-about__card-list { display: flex; flex-direction: column; gap: 13px; }
.vm-about__card-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 17px; line-height: 1.5; color: var(--ink-soft); font-weight: 300; }
.vm-about__card-check {
	width: 22px; height: 22px; border-radius: 999px;
	background: var(--accent); color: #fff;
	display: grid; place-items: center; flex-shrink: 0; margin-top: 2px;
}
.vm-about__visual { position: relative; min-height: 577px; }
.vm-about__image {
	width: 100%; height: 100%; min-height: 577px;
	background-size: cover; background-position: center;
}
.vm-about__cta {
	position: absolute; left: 50%; bottom: 44px; transform: translateX(-50%);
	background: #fff; border: 1px solid var(--accent-line);
	padding: 16px 32px; border-radius: 999px;
	color: var(--accent); font-weight: 500; font-size: 18px;
	box-shadow: 0 14px 40px -12px rgba(8,129,208,.45);
	display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
	transition: transform .18s, box-shadow .18s;
}
.vm-about__cta:hover { transform: translate(-50%, -2px); }

@media (max-width: 880px) {
	.vm-about__top { grid-template-columns: 1fr; gap: 16px; }
	.vm-about__grid { grid-template-columns: 1fr; }
	.vm-about__image { aspect-ratio: 4/3; min-height: 0; }
	.vm-about__visual { min-height: 0; }
}

/* =========================================================
 * SERVICES
 * ========================================================= */
.vm-services { background: #ecf7ff; padding: 110px 0; }
.vm-services .vm-container { max-width: 1760px; }
.vm-services__head { text-align: center; margin-bottom: 72px; }
.vm-services__title { font-size: clamp(30px, 3.5vw, 52px); font-weight: 500; margin-top: 14px; color: #292b2b; }
.vm-services__desc { margin-top: 18px; max-width: 820px; margin-left: auto; margin-right: auto; color: #7f8382; font-size: clamp(15px, 1.15vw, 19px); font-weight: 300; }
.vm-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.vm-service-card {
	background: #fff; padding: 42px 42px 36px; text-align: center;
	display: flex; flex-direction: column; align-items: center;
	transition: all .25s cubic-bezier(.2,.7,.2,1);
	cursor: pointer; min-height: 415px;
}
.vm-service-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -20px rgba(8,129,208,.28); }
.vm-service-card__icon {
	width: 85px; height: 85px; color: #292b2b;
	display: grid; place-items: center;
	transition: transform .3s, color .3s;
	margin-bottom: 64px;
}
.vm-service-card__icon svg { width: 85px; height: 85px; stroke-width: 1.2; }
.vm-service-card:hover .vm-service-card__icon { transform: scale(1.06); color: var(--accent); }
.vm-service-card__title { font-size: 29px; font-weight: 500; color: #292b2b; line-height: 1.2; margin-bottom: 16px; }
.vm-service-card__desc { font-size: 18px; color: #7f8382; font-weight: 300; line-height: 1.5; margin-bottom: 16px; flex: 1; }
.vm-service-card__more {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--accent); font-weight: 500; font-size: 20px;
	transform: translateX(0); transition: transform .25s;
}
.vm-service-card:hover .vm-service-card__more { transform: translateX(4px); }
.vm-services__actions { display: flex; gap: 16px; justify-content: center; margin-top: 72px; flex-wrap: wrap; }

@media (max-width: 1080px) { .vm-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .vm-services__grid { grid-template-columns: 1fr; } }

/* =========================================================
 * HOME NFZ
 * ========================================================= */
.vm-home-nfz { padding: 96px 0; }
.vm-home-nfz .vm-container { max-width: 1400px; }
.vm-home-nfz__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vm-home-nfz__images { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.vm-home-nfz__img { height: 460px; background-size: cover; background-position: center; }
.vm-home-nfz__img--2 { margin-top: 80px; }
.vm-home-nfz__badge {
	position: absolute; left: 12%; bottom: 40px; right: 12%;
	background: var(--accent-50); padding: 24px;
	display: flex; align-items: center; gap: 16px;
	box-shadow: 0 10px 40px -14px rgba(0,0,0,0.15);
}
.vm-home-nfz__badge-icon {
	width: 52px; height: 52px; border-radius: 999px;
	background: var(--accent); color: #fff;
	display: grid; place-items: center; flex-shrink: 0;
}
.vm-home-nfz__badge-text { font-size: 20px; font-weight: 500; color: var(--ink); }
.vm-home-nfz__h2 { font-size: clamp(30px, 3.3vw, 48px); margin-top: 14px; font-weight: 500; }
.vm-home-nfz__desc { margin-top: 22px; color: var(--ink-mute); font-size: 19px; font-weight: 300; line-height: 1.6; }
.vm-home-nfz__list { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.vm-nfz-item { border-left: 3px solid var(--accent); padding-left: 22px; }
.vm-nfz-item h3 { font-size: 22px; font-weight: 500; line-height: 1.3; }
.vm-nfz-item p { color: var(--ink-mute); font-weight: 300; margin-top: 8px; font-size: 17px; }

@media (max-width: 880px) {
	.vm-home-nfz__grid { grid-template-columns: 1fr; }
}

/* =========================================================
 * TESTIMONIALS
 * ========================================================= */
.vm-testimonials {
	position: relative; color: #fff;
	padding: 110px 0;
	overflow: hidden;
	background: linear-gradient(rgba(0,102,169,0.78), rgba(0,102,169,0.78)), center/cover no-repeat;
}
.vm-testimonials .vm-container { max-width: 1760px; position: relative; z-index: 2; }
.vm-testimonials__head {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 32px; margin-bottom: 56px; flex-wrap: wrap;
}
.vm-testimonials__eyebrow { color: #c9e7ff; }
.vm-testimonials__title { font-size: clamp(30px, 3.5vw, 52px); margin-top: 12px; font-weight: 500; color: #fff; max-width: 700px; }
.vm-testimonials__nav { display: flex; gap: 14px; }
.vm-testimonials__nav button {
	width: 58px; height: 58px; border-radius: 999px;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.3);
	color: #fff;
	display: grid; place-items: center;
	transition: background .18s, transform .18s;
}
.vm-testimonials__nav button:hover { background: rgba(255,255,255,0.22); }
.vm-testimonials__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* Infinite marquee */
.vm-testi-marquee {
	position: relative; z-index: 2;
	overflow: hidden;
	padding: 0 0 24px;
	mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.vm-testi-marquee__track {
	display: flex;
	gap: 28px;
	width: max-content;
	animation: vmMarquee 60s linear infinite;
}
.vm-testi-marquee:hover .vm-testi-marquee__track { animation-play-state: paused; }
.vm-testi-marquee .vm-testi-card { width: 540px; flex-shrink: 0; }
@keyframes vmMarquee {
	from { transform: translateX(0); }
	to   { transform: translateX(calc(-50% - 14px)); }
}
@media (max-width: 720px) {
	.vm-testi-marquee .vm-testi-card { width: 320px; }
	.vm-testi-marquee__track { animation-duration: 48s; }
}
@media (prefers-reduced-motion: reduce) {
	.vm-testi-marquee__track { animation: none; }
}
.vm-testimonials__grid--three { grid-template-columns: repeat(3, 1fr); }
.vm-testi-card {
	background: rgba(67,164,228,0.2);
	border: 1px solid rgba(255,255,255,0.3);
	backdrop-filter: blur(6px);
	padding: 45px 50px;
	display: grid; grid-template-columns: 160px 1fr; gap: 32px;
	min-height: 381px; color: #fff;
}
.vm-testimonials__grid--three .vm-testi-card { grid-template-columns: 1fr; min-height: 420px; padding: 40px 36px; }
.vm-testi-card__rating { font-size: clamp(40px, 3.8vw, 67px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; color: #fff; }
.vm-testi-card__stars { display: flex; gap: 3px; color: #ffcd58; margin-top: 14px; }
.vm-testi-card__stars svg { width: 19px; height: 19px; }
.vm-testimonials__grid--three .vm-testi-card__stars svg { width: 18px; height: 18px; }
.vm-testi-card__text { font-size: clamp(15px, 1.2vw, 18px); font-weight: 300; line-height: 1.5; color: #ddd9d9; }
.vm-testimonials__grid--three .vm-testi-card__text { margin-top: 26px; font-size: 17px; flex: 1; }
.vm-testi-card__body { display: flex; flex-direction: column; justify-content: space-between; min-height: 300px; }
.vm-testimonials__grid--three .vm-testi-card__body { min-height: 0; flex: 1; display: flex; flex-direction: column; }
.vm-testi-card__author { margin-top: 28px; }
.vm-testi-card__author-name { font-size: clamp(22px, 1.9vw, 29px); font-weight: 700; color: #fff; line-height: 1.2; }
.vm-testimonials__grid--three .vm-testi-card__author-name { font-size: 22px; }
.vm-testi-card__author-role { font-size: clamp(16px, 1.3vw, 21px); font-weight: 300; color: #ddd9d9; line-height: 1.5; margin-top: 5px; }
.vm-testimonials__grid--three .vm-testi-card__author-role { font-size: 15px; margin-top: 4px; }
.vm-testimonials__dots { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.vm-testimonials__dots button {
	width: 10px; height: 10px; border-radius: 999px;
	background: rgba(255,255,255,0.4);
	transition: all .3s; cursor: pointer;
}
.vm-testimonials__dots button.is-active { width: 32px; background: #fff; }

@media (max-width: 880px) {
	.vm-testimonials__grid,
	.vm-testimonials__grid--three { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
	.vm-testi-card { grid-template-columns: 1fr; padding: 32px; }
}

/* =========================================================
 * NEWS
 * ========================================================= */
.vm-home-news { padding: 96px 0; }
.vm-home-news .vm-container { max-width: 1400px; }
.vm-home-news__head { text-align: center; margin-bottom: 56px; }
.vm-home-news__title { font-size: clamp(30px, 3.5vw, 52px); margin-top: 14px; font-weight: 500; }
.vm-home-news__desc { margin-top: 18px; color: var(--ink-mute); font-size: 19px; font-weight: 300; }
.vm-home-news__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; }
.vm-news-card { display: flex; flex-direction: column; transition: transform .3s; text-decoration: none; color: inherit; }
.vm-news-card:hover { transform: translateY(-6px); }
.vm-news-card__img { overflow: hidden; aspect-ratio: 540/373; }
.vm-news-card__img div { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform .6s; }
.vm-news-card:hover .vm-news-card__img div { transform: scale(1.05); }
.vm-news-card__body { padding: 28px 4px 0; }
.vm-news-card__date { font-weight: 300; font-size: 18px; color: var(--accent); }
.vm-news-card__title { font-size: 27px; font-weight: 600; margin-top: 14px; line-height: 1.25; color: var(--ink); }
.vm-news-card__excerpt { color: var(--ink-mute); font-size: 17px; font-weight: 300; margin-top: 16px; line-height: 1.55; }
.vm-news-card__cta {
	display: inline-flex; margin-top: 26px;
	background: #fff; border: 2px solid var(--accent);
	color: var(--accent);
	font-weight: 500; font-size: 17px;
	padding: 14px 28px; border-radius: 999px;
	transition: background .2s, color .2s;
}
.vm-news-card:hover .vm-news-card__cta { background: var(--accent); color: #fff; }

/* =========================================================
 * PARTNERS
 * ========================================================= */
.vm-partners { padding: 72px 0 80px; border-top: 1px solid var(--line); background: #fff; }
.vm-partners .vm-container { max-width: 1800px; }
.vm-partners__eyebrow-wrap { text-align: center; margin-bottom: 48px; }
.vm-partners__eyebrow { font-size: 17px; letter-spacing: 0.08em; color: var(--accent); }
.vm-partners__grid {
	display: grid; grid-template-columns: repeat(6, 1fr); gap: 40px;
	align-items: center; justify-items: center;
}
.vm-partner { height: 90px; display: flex; align-items: center; justify-content: center; width: 100%; padding: 0 4px; transition: transform .25s; }
.vm-partner:hover { transform: translateY(-3px); }
.vm-partner img { max-height: 68px; max-width: 100%; object-fit: contain; }

@media (max-width: 1100px) { .vm-partners__grid { grid-template-columns: repeat(3, 1fr); gap: 40px 24px; } }
@media (max-width: 560px) { .vm-partners__grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
 * HOME CONTACT (form over map)
 * ========================================================= */
.vm-home-contact { position: relative; color: #fff; padding: 0; }
.vm-home-contact__wrapper { position: relative; overflow: hidden; }
.vm-home-contact__map { display: block; width: 100% !important; margin: 0 !important; height: 720px; border: 0; }
.vm-home-contact__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(8,36,60,0.65) 0%, rgba(8,36,60,0.35) 55%, rgba(8,36,60,0.05) 100%);
	pointer-events: none;
}
.vm-home-contact__content {
	position: absolute; inset: 0;
	display: flex; align-items: center; pointer-events: none;
}
.vm-home-contact__content .vm-container {
	display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
	max-width: 1400px; width: 100%; align-items: end;
}
.vm-home-contact__form-wrap { pointer-events: auto; }
.vm-home-contact__cta-wrap { align-self: end; text-align: right; padding-bottom: 56px; pointer-events: auto; }
.vm-home-contact__cta {
	display: inline-flex; align-items: center; gap: 10px;
	background: #fff; color: var(--accent);
	border: 1px solid rgb(223,237,247);
	padding: 16px 30px; border-radius: 999px;
	font-weight: 500; font-size: 18px;
	box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
	.vm-home-contact__content .vm-container { grid-template-columns: 1fr; }
	.vm-home-contact__cta-wrap { align-self: start; text-align: left; }
}

/* =========================================================
 * CONTACT FORM
 * ========================================================= */
.vm-form {
	background: #fff; color: var(--ink); padding: 40px 44px;
	box-shadow: 0 20px 60px -20px rgba(0,0,0,0.4);
	display: flex; flex-direction: column; gap: 22px; max-width: 660px;
}
.vm-form--bare { background: transparent; padding: 0; box-shadow: none; max-width: 640px; }
.vm-form__head h2 { font-size: 36px; font-weight: 500; }
.vm-form__head p { margin-top: 8px; color: var(--ink-mute); font-weight: 300; }

/* CF7 form — 1:1 Claude Design ContactForm */
.wpcf7 form { display: flex; flex-direction: column; gap: 26px; font-family: inherit; }
.wpcf7 .vm-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.wpcf7 .vm-form-col-left { display: flex; flex-direction: column; gap: 20px; }
.wpcf7 .vm-form-col-right { display: flex; flex-direction: column; }
.wpcf7 .vm-form-col-right > p,
.wpcf7 .vm-form-col-right > p > label,
.wpcf7 .vm-form-col-right .wpcf7-form-control-wrap { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.wpcf7 p { margin: 0; }
.wpcf7 p label { display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: var(--ink); font-weight: 300; font-family: inherit; }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 input[type="url"] {
	width: 100%; padding: 16px; font-size: 16px; font-family: inherit;
	border: 1.5px solid var(--line); background: #fff; outline: none;
	transition: border .15s; border-radius: 0; color: var(--ink); height: 54px;
}
.wpcf7 textarea {
	width: 100%; padding: 16px; font-size: 16px; font-family: inherit;
	border: 1.5px solid var(--line); background: #fff; outline: none;
	transition: border .15s; border-radius: 0; color: var(--ink);
	min-height: 200px; flex: 1; resize: vertical;
}
.wpcf7 input::placeholder, .wpcf7 textarea::placeholder { color: #b8b8b8; font-family: inherit; }
.wpcf7 input:focus, .wpcf7 textarea:focus { border-color: var(--accent); }

.wpcf7 .vm-form-acceptance { font-size: 13px; color: var(--ink-mute); font-weight: 300; }
.wpcf7 .wpcf7-list-item { margin: 0; display: inline-flex; align-items: flex-start; gap: 8px; }
.wpcf7 .wpcf7-list-item label { flex-direction: row; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--ink-mute); }
.wpcf7 .wpcf7-list-item input[type="checkbox"] { margin-top: 4px; flex-shrink: 0; }

.wpcf7 .vm-form-submit { margin: 0; }
.wpcf7-submit {
	background: var(--accent) !important; color: #fff !important;
	border: 0 !important; padding: 16px 32px !important;
	border-radius: 999px !important;
	font-weight: 500; font-size: 18px;
	font-family: 'Archivo',sans-serif !important;
	transition: all .18s; cursor: pointer;
	display: inline-flex; align-items: center; gap: 12px; min-height: 56px;
}
.wpcf7-submit:hover { background: var(--accent-600) !important; transform: translateY(-1px); box-shadow: 0 10px 24px -12px rgba(8,129,208,.55); }
.wpcf7 .wpcf7-spinner { display: none; }
.wpcf7-response-output { border-radius: 0 !important; margin: 0 !important; padding: 14px 18px !important; font-size: 14px; }
.wpcf7 .wpcf7-not-valid-tip { font-size: 13px; color: #d4725f; margin-top: 4px; }

@media (max-width: 640px) {
	.wpcf7 .vm-form-grid { grid-template-columns: 1fr; }
}

/* Partner fallbacks */
.vm-partner-word--uniqa { color: #223f88; font-weight: 800; font-size: 40px; font-family: 'Archivo'; letter-spacing: -0.01em; }
.vm-partner-word--warta { color: #d14a1f; font-weight: 700; font-size: 40px; text-transform: lowercase; font-family: 'Archivo'; letter-spacing: -0.01em; }
.vm-partner-pzu { display: flex; flex-direction: column; align-items: center; gap: 4px; line-height: 1; }
.vm-partner-pzu span { font-family: 'Archivo'; font-weight: 800; font-size: 22px; color: #0f4d92; letter-spacing: 0.04em; }
.vm-partner-mondial { display: flex; align-items: center; gap: 10px; }
.vm-partner-mondial__text { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.vm-partner-mondial__text .m1 { font-family: 'Archivo'; font-weight: 800; font-size: 22px; color: #e30613; letter-spacing: -0.01em; }
.vm-partner-mondial__text .m2 { font-family: 'Archivo'; font-weight: 500; font-size: 10.5px; color: #e30613; letter-spacing: 0.35em; }

/* =========================================================
 * CENNIK
 * ========================================================= */
.vm-pricing { padding: 0 0 96px; }
.vm-pricing__list { display: flex; flex-direction: column; gap: 28px; }
.vm-price-card { background: #fff; border: 1px solid var(--line); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.vm-price-card__head {
	width: 100%; display: flex; justify-content: space-between; align-items: center;
	padding: 28px 36px; text-align: left;
}
.vm-price-card__head h2 { font-size: 32px; font-weight: 500; }
.vm-price-card__chevron {
	width: 40px; height: 40px; border-radius: 999px;
	background: var(--accent-surface); color: var(--accent);
	display: grid; place-items: center;
	transition: transform .25s;
}
.vm-price-card.is-open .vm-price-card__chevron { transform: rotate(180deg); }
.vm-price-card__body { padding: 0 36px 28px; display: flex; flex-direction: column; gap: 2px; }
.vm-price-card:not(.is-open) .vm-price-card__body { display: none; }
.vm-price-row {
	display: flex; justify-content: space-between; align-items: baseline;
	padding: 18px 0; gap: 16px;
	border-bottom: 1px dashed var(--line);
}
.vm-price-row:last-child { border-bottom: 0; }
.vm-price-row__name { font-size: 18px; color: var(--ink); font-weight: 300; }
.vm-price-row__price { font-size: 20px; font-weight: 600; color: var(--accent); white-space: nowrap; }

.vm-pricing__cta {
	margin-top: 48px; padding: 32px; background: var(--accent-50);
	display: flex; gap: 24px; align-items: center;
	flex-wrap: wrap; justify-content: space-between;
}
.vm-pricing__cta-info { display: flex; gap: 16px; align-items: center; }
.vm-pricing__cta-icon {
	width: 52px; height: 52px; border-radius: 999px;
	background: var(--accent); color: #fff;
	display: grid; place-items: center;
}
.vm-pricing__cta-title { font-size: 20px; font-weight: 500; }
.vm-pricing__cta-desc { color: var(--ink-mute); font-weight: 300; margin-top: 4px; }

/* =========================================================
 * ZABIEGI
 * ========================================================= */
.vm-treatments { padding: 0 0 96px; }
.vm-treatments__list { display: flex; flex-direction: column; gap: 16px; }
.vm-tr-row {
	background: #fff; border: 1px solid var(--line);
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	transition: border-color .2s, box-shadow .2s;
}
.vm-tr-row.is-open { border-color: var(--accent); }
.vm-tr-head {
	width: 100%; display: grid;
	grid-template-columns: 80px 1fr auto; gap: 24px;
	align-items: center; padding: 32px; text-align: left;
}
.vm-tr-icon {
	width: 64px; height: 64px;
	background: linear-gradient(135deg, rgba(8,129,208,0.1), rgba(0,184,219,0.1));
	border: 1px solid rgba(8,129,208,0.2);
	display: grid; place-items: center;
	color: var(--accent);
}
.vm-tr-title { font-size: 28px; font-weight: 500; color: #101828; }
.vm-tr-desc-preview { margin-top: 8px; font-size: 17px; font-weight: 300; color: #4a5565; line-height: 1.6; }
.vm-tr-toggle {
	width: 40px; height: 40px; border-radius: 999px;
	background: var(--accent-surface); color: var(--accent);
	display: grid; place-items: center;
	transition: all .25s;
}
.vm-tr-row.is-open .vm-tr-toggle { background: var(--accent); color: #fff; transform: rotate(45deg); }
.vm-tr-body { padding: 0 32px 32px; padding-left: 136px; display: none; }
.vm-tr-row.is-open .vm-tr-body { display: block; animation: expandIn .3s ease; }
@keyframes expandIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.vm-tr-body p { font-size: 17px; color: #4a5565; line-height: 1.7; font-weight: 300; }
.vm-tr-tags { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
.vm-tr-tag {
	padding: 6px 14px; background: var(--accent-surface);
	color: var(--accent); font-size: 13px; font-weight: 500;
	border-radius: 999px;
}
.vm-treatments__actions { display: flex; gap: 14px; justify-content: center; margin-top: 64px; flex-wrap: wrap; }

@media (max-width: 720px) {
	.vm-tr-head { grid-template-columns: 56px 1fr auto; padding: 20px; gap: 16px; }
	.vm-tr-icon { width: 56px; height: 56px; }
	.vm-tr-title { font-size: 22px; }
	.vm-tr-body { padding: 0 20px 20px; padding-left: 20px; }
}

/* =========================================================
 * ZESPÓŁ
 * ========================================================= */
.vm-zespol-hero { background: #fff; padding: 24px 0 110px; }
.vm-zespol-hero .vm-container { max-width: 1500px; }
.vm-zespol-hero__grid { margin-top: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.vm-zespol-hero__images { position: relative; width: 100%; height: 720px; }
.vm-zespol-hero__img { position: absolute; background-size: cover; background-position: center; }
.vm-zespol-hero__img--back { left: 0; top: 0; width: 48%; height: 88%; }
.vm-zespol-hero__img--front { right: 0; top: 15%; width: 50%; height: 88%; box-shadow: 0 24px 56px -24px rgba(0,0,0,0.28); }
.vm-zespol-hero__badge {
	position: absolute; left: 18%; bottom: -6%;
	width: 420px;
	background: rgb(236,247,255);
	padding: 32px 32px 32px 28px;
	display: flex; align-items: center; gap: 20px;
	box-shadow: 0 20px 40px -18px rgba(0,0,0,0.18);
}
.vm-zespol-hero__badge-icon { flex-shrink: 0; color: var(--accent); }
.vm-zespol-hero__badge-text { font-weight: 500; font-size: 22px; line-height: 1.2; color: rgb(41,43,43); }
.vm-zespol-hero__title { margin-top: 16px; font-size: clamp(34px, 3.8vw, 56px); font-weight: 400; line-height: 1.15; color: #101828; letter-spacing: -0.01em; }
.vm-zespol-hero__body { margin-top: 28px; font-weight: 300; font-size: 18px; line-height: 1.6; color: var(--ink-mute); display: flex; flex-direction: column; gap: 18px; max-width: 560px; }

@media (max-width: 1000px) {
	.vm-zespol-hero__grid { grid-template-columns: 1fr; gap: 56px; }
	.vm-zespol-hero__images { height: 520px; }
}
@media (max-width: 560px) {
	.vm-zespol-hero__images { height: 420px; }
	.vm-zespol-hero__badge { left: 16px; right: 16px; width: auto; }
}

.vm-team-section { padding: 80px 0 40px; }
.vm-team-section:last-of-type { padding-bottom: 96px; }
.vm-team-section .vm-container { max-width: 1500px; }
.vm-team-section__head { display: flex; align-items: center; gap: 20px; margin-bottom: 44px; }
.vm-team-section__icon {
	width: 64px; height: 64px;
	background: linear-gradient(180deg, rgba(8,129,208,0.1) 0%, rgba(0,184,219,0.1) 100%);
	border: 1px solid rgba(8,129,208,0.2);
	display: grid; place-items: center;
	color: var(--accent); flex-shrink: 0;
}
.vm-team-section__title { font-weight: 500; font-size: clamp(30px, 3.3vw, 45px); letter-spacing: -0.02em; color: #101828; }
.vm-team-section__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.vm-team-card {
	background: rgba(255,255,255,0.9);
	border: 1px solid rgb(229,231,235);
	box-shadow: 0 1px 2px -1px rgba(0,0,0,0.1), 0 1px 3px 0 rgba(0,0,0,0.1);
	overflow: hidden;
	cursor: pointer; text-align: left;
	display: flex; flex-direction: column;
	transition: all .25s; padding: 0; width: 100%;
}
.vm-team-card:hover { box-shadow: 0 20px 40px -18px rgba(0,0,0,0.2); transform: translateY(-4px); }
.vm-team-card__img { width: 220px; height: auto; aspect-ratio: 5/6; border-radius: 16px; margin: 24px auto 4px; overflow: hidden; background-size: cover; background-position: center; transition: transform .5s; }
.vm-team-card:hover .vm-team-card__img { transform: scale(1.04); }
.vm-team-card__body { padding: 16px 24px 24px; display: flex; flex-direction: column; flex: 1; text-align: center; align-items: center; }
.vm-team-card__name { font-weight: 500; font-size: 20px; line-height: 28px; color: rgb(16,24,40); }
.vm-team-card__role { margin-top: 10px; font-weight: 500; font-size: 14px; line-height: 20px; color: var(--accent); }
.vm-team-card__bio {
	margin-top: 14px; font-weight: 300; font-size: 14px; line-height: 1.625; color: rgb(74,85,101);
	display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.vm-team-card__more {
	margin-top: auto; padding-top: 18px;
	font-weight: 500; font-size: 16px; line-height: 24px;
	color: var(--accent);
	transition: transform .25s;
}
.vm-team-card:hover .vm-team-card__more { transform: translateX(4px); }

@media (max-width: 1180px) { .vm-team-section__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 880px) { .vm-team-section__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .vm-team-section__grid { grid-template-columns: 1fr; } }

/* Team modal */
.vm-team-modal {
	position: fixed; inset: 0; z-index: 200;
	background: rgba(41,43,43,0.55); backdrop-filter: blur(6px);
	display: none; place-items: center; padding: 24px;
}
.vm-team-modal.is-open { display: grid; animation: fadeIn .25s ease; }
.vm-team-modal__dialog {
	background: #fff; max-width: 1100px; width: 100%; max-height: 92vh;
	overflow: hidden; box-shadow: 0 25px 60px -15px rgba(0,0,0,0.35);
	display: grid; grid-template-rows: 6px 1fr;
	animation: popUp .3s cubic-bezier(.2,.7,.2,1);
}
.vm-team-modal__top { background: linear-gradient(90deg, var(--accent) 0%, #3db8f5 100%); }
.vm-team-modal__body { display: grid; grid-template-columns: 320px 1fr; overflow: auto; position: relative; }
.vm-team-modal__close {
	position: absolute; top: 18px; right: 18px; z-index: 5;
	width: 40px; height: 40px; border-radius: 999px;
	background: rgba(255,255,255,0.95); color: var(--ink);
	display: grid; place-items: center;
	box-shadow: 0 4px 12px -4px rgba(0,0,0,0.2);
}
.vm-team-modal__aside { background: var(--accent-50); }
.vm-team-modal__photo { width: 100%; aspect-ratio: 1/1; background-size: cover; background-position: center top; }
.vm-team-modal__aside-body { padding: 28px; }
.vm-team-modal__name { font-size: 22px; font-weight: 600; color: #101828; line-height: 1.3; }
.vm-team-modal__role { font-size: 14px; font-weight: 500; color: var(--accent); margin-top: 8px; line-height: 1.5; }
.vm-team-modal__content { padding: 48px; }
.vm-team-modal__bio { font-size: 15px; font-weight: 300; color: #4a5568; line-height: 1.7; }
.vm-bio-section { margin-top: 32px; }
.vm-bio-section__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.vm-bio-section__head-icon { width: 28px; height: 28px; background: #eef7fd; display: grid; place-items: center; }
.vm-bio-section__title { font-size: 15px; font-weight: 600; color: #101828; }
.vm-bio-section__list { display: flex; flex-direction: column; gap: 10px; padding-left: 2px; }
.vm-bio-section__list li { display: flex; gap: 12px; font-size: 14px; font-weight: 300; color: #4a5568; line-height: 1.6; }
.vm-bio-section__list li::before { content: ""; margin-top: 8px; width: 5px; height: 5px; border-radius: 999px; background: var(--accent); flex-shrink: 0; }

@keyframes popUp { from { opacity: 0; transform: scale(.96) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }

@media (max-width: 780px) { .vm-team-modal__body { grid-template-columns: 1fr; } }

/* =========================================================
 * NFZ PAGE
 * ========================================================= */
.vm-nfz-steps-section { padding: 0 0 96px; }
.vm-nfz-steps__title { font-size: 42px; font-weight: 500; color: var(--ink); text-align: center; margin-bottom: 64px; }
.vm-nfz-steps__title span { color: var(--accent); }
.vm-nfz-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.vm-step-card {
	position: relative; background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 1px 3px rgba(0,0,0,.08);
	padding: 56px 36px 36px; margin-top: 24px; min-height: 200px;
}
.vm-step-card__num {
	position: absolute; top: -24px; left: 36px;
	width: 48px; height: 48px; border-radius: 999px;
	background: var(--accent); color: #fff;
	display: grid; place-items: center;
	font-size: 20px; font-weight: 600;
}
.vm-step-card__label { font-size: 20px; font-weight: 500; color: var(--ink); margin-bottom: 14px; }
.vm-step-card__desc { font-size: 15px; line-height: 1.55; color: var(--ink-soft); font-weight: 300; }

@media (max-width: 880px) { .vm-nfz-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .vm-nfz-steps { grid-template-columns: 1fr; } }

.vm-oddzial-section { padding: 0 0 48px; }
.vm-oddzial-section:last-of-type { padding-bottom: 96px; }
.vm-oddzial {
	background: #fff; border: 1px solid var(--line);
	box-shadow: 0 1px 3px rgba(0,0,0,.08);
	padding: 64px;
}
.vm-oddzial__badge {
	display: inline-block; padding: 4px 16px; border-radius: 999px;
	background: rgb(236,247,255); color: rgb(8,129,208);
	font-size: 14px; font-weight: 500; margin-bottom: 20px;
}
.vm-oddzial__title { font-size: 32px; font-weight: 500; color: var(--ink); margin-bottom: 16px; line-height: 1.2; }
.vm-oddzial__lead { font-size: 16px; color: var(--ink-soft); font-weight: 300; line-height: 1.6; margin-bottom: 32px; }
.vm-oddzial__image { width: 100%; height: 520px; overflow: hidden; margin-bottom: 32px; background-size: cover; background-position: center; }
.vm-info-banner {
	background: rgb(236,247,255);
	border: 1px solid var(--accent-line);
	padding: 24px 32px 24px 36px;
	display: flex; gap: 20px; align-items: flex-start;
}
.vm-info-banner__icon { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.vm-info-banner p { font-size: 17px; line-height: 1.55; color: var(--ink); font-weight: 300; }

.vm-oddzial__section-title { font-size: 28px; font-weight: 500; color: var(--ink); margin: 40px 0 24px; }
.vm-oddzial__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 0; }
.vm-bullet-list__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.vm-bullet-list__icon { color: var(--accent); }
.vm-bullet-list__title { font-size: 16px; font-weight: 500; color: #000; }
.vm-bullet-list ul { display: flex; flex-direction: column; gap: 10px; }
.vm-bullet-list ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); font-weight: 300; line-height: 1.5; }
.vm-bullet-list ul li svg { color: var(--accent); flex-shrink: 0; margin-top: 4px; }

.vm-oddzial__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.vm-info-tile { background: rgb(236,247,255); padding: 24px; }
.vm-info-tile__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.vm-info-tile__title { font-size: 16px; font-weight: 500; color: var(--ink); }
.vm-info-tile__body { font-size: 15px; color: var(--ink-soft); font-weight: 300; line-height: 1.55; }

.vm-oddzial__skierowania-title { font-size: 24px; font-weight: 500; color: var(--ink); margin-bottom: 20px; }
.vm-doctor-list h5 { font-size: 16px; font-weight: 500; color: #000; margin-bottom: 14px; }
.vm-doctor-list ul { display: flex; flex-direction: column; gap: 6px; }
.vm-doctor-list ul li { font-size: 14px; color: var(--ink-soft); font-weight: 300; line-height: 1.55; }

.vm-warn-banner {
	background: rgba(212,114,95,.1);
	border: 1px solid rgb(212,114,95);
	padding: 20px 28px;
	margin-top: 24px;
}
.vm-warn-banner p { font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.5; }

@media (max-width: 720px) {
	.vm-oddzial { padding: 32px; }
	.vm-oddzial__cols, .vm-oddzial__meta { grid-template-columns: 1fr; }
	.vm-oddzial__image { height: 320px; }
}

/* =========================================================
 * KONTAKT PAGE
 * ========================================================= */
.vm-kontakt { padding: 0 0 80px; }
.vm-kontakt__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.vm-kontakt__eyebrow { font-size: 17px; letter-spacing: 0.08em; color: var(--accent); text-transform: uppercase; }
.vm-kontakt__title { font-size: 44px; font-weight: 300; margin-top: 20px; letter-spacing: -0.01em; line-height: 1.15; }
.vm-kontakt__title strong { font-weight: 700; }
.vm-kontakt__info-list { display: flex; flex-direction: column; gap: 28px; margin-top: 44px; }
.vm-kontakt__info-line { display: flex; gap: 18px; align-items: flex-start; }
.vm-kontakt__info-icon { width: 20px; display: grid; place-items: center; color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.vm-kontakt__info-text { font-size: 17px; line-height: 1.5; font-weight: 300; color: var(--ink); }
.vm-kontakt__desc { margin-top: 16px; color: var(--ink-mute); font-weight: 300; font-size: 16px; max-width: 560px; }
.vm-kontakt__form-wrap { margin-top: 32px; }

.vm-kontakt-strip { background: #fff; }
.vm-kontakt-strip .vm-container { max-width: 1600px; padding: 28px 32px; }
.vm-kontakt-strip__grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.vm-kontakt-social { display: flex; align-items: center; gap: 14px; }
.vm-kontakt-social span { font-size: 16px; font-weight: 300; color: var(--ink); }
.vm-kontakt-social a {
	width: 42px; height: 42px; border-radius: 999px;
	border: 1.5px solid var(--accent); color: var(--accent);
	display: grid; place-items: center;
	transition: all .15s; background: #fff;
}
.vm-kontakt-social a:hover { background: var(--accent); color: #fff; }
.vm-kontakt-strip__title { font-size: 34px; font-weight: 300; letter-spacing: -0.01em; white-space: nowrap; text-align: center; }
.vm-kontakt-strip__title strong { font-weight: 700; }
.vm-kontakt-strip__cta {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 14px 32px; border-radius: 999px;
	border: 1.5px solid var(--accent); color: var(--accent); background: #fff;
	font-weight: 500; font-size: 16px;
	transition: all .15s;
	justify-self: end;
}
.vm-kontakt-strip__cta:hover { background: var(--accent); color: #fff; }
.vm-kontakt-map { height: 560px; }
.vm-kontakt-map iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 880px) {
	.vm-kontakt__grid { grid-template-columns: 1fr; gap: 48px; }
	.vm-kontakt-strip__grid { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 20px; }
	.vm-kontakt-social { justify-content: center; }
	.vm-kontakt-strip__cta { justify-self: center; }
	.vm-kontakt-strip__title { white-space: normal; }
}
@media (max-width: 720px) {
	.vm-kontakt__grid { text-align: center; }
	.vm-kontakt__grid > div { display: flex; flex-direction: column; align-items: center; }
	.vm-kontakt__title { font-size: 32px; }
	.vm-kontakt__info-list { align-items: center; width: 100%; }
	.vm-kontakt__info-line { justify-content: center; text-align: left; max-width: 280px; width: 100%; }
	.vm-kontakt__desc { margin-left: auto; margin-right: auto; }
	.vm-kontakt__form-wrap { width: 100%; }
	.vm-kontakt-strip__cta { align-self: center; }
	.vm-kontakt-social { justify-content: center; }
}

/* =========================================================
 * AKTUALNOŚCI
 * ========================================================= */
.vm-news-archive { padding: 0 0 96px; }
.vm-news-archive__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.vm-news-archive .vm-news-card { display: flex; flex-direction: column; }
.vm-news-archive .vm-news-card__img { aspect-ratio: 4/3; }
.vm-news-archive .vm-news-card__body { padding-top: 20px; padding-left: 0; padding-right: 0; }
.vm-news-archive .vm-news-card__date { font-size: 13px; font-weight: 500; letter-spacing: 0.02em; }
.vm-news-archive .vm-news-card__title { font-size: 21px; font-weight: 500; margin-top: 10px; line-height: 1.3; }
.vm-news-archive .vm-news-card__excerpt { font-size: 15px; margin-top: 12px; }
.vm-news-archive .vm-news-card__cta { padding: 10px 22px; border-width: 1.5px; font-size: 14px; margin-top: 20px; }

@media (max-width: 960px) { .vm-news-archive__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .vm-news-archive__grid { grid-template-columns: 1fr; } }

.vm-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; align-items: center; }
.vm-pagination a, .vm-pagination span {
	width: 38px; height: 38px; border-radius: 999px;
	display: inline-grid; place-items: center;
	border: 1.5px solid var(--accent);
	background: #fff; color: var(--accent);
	font-weight: 500; font-size: 14px;
	transition: all .15s;
}
.vm-pagination a:hover { background: var(--accent); color: #fff; }
.vm-pagination .current { background: var(--accent); color: #fff; }
.vm-pagination .dots { border: 0; background: none; }

/* =========================================================
 * SINGLE POST
 * ========================================================= */
.vm-single-post { padding: 0 0 96px; }
.vm-single-post__hero {
	max-width: 1200px;
	margin: 0 auto 48px;
	background: var(--accent-50);
	display: flex; align-items: center; justify-content: center;
	max-height: 560px;
	min-height: 360px;
}
.vm-single-post__hero img {
	display: block;
	max-width: 100%;
	max-height: 560px;
	width: auto; height: auto;
	margin: 0 auto;
	object-fit: contain;
}
.vm-single-post__meta { display: flex; gap: 16px; align-items: center; color: var(--accent); font-weight: 500; font-size: 14px; letter-spacing: 0.05em; }
.vm-single-post__title { font-size: clamp(30px, 3.5vw, 48px); font-weight: 500; margin: 16px 0 32px; line-height: 1.2; }
.vm-single-post__content { font-size: 17px; line-height: 1.75; color: var(--ink-soft); font-weight: 300; max-width: 820px; margin: 0 auto; }
.vm-single-post__content h2, .vm-single-post__content h3 { margin: 32px 0 12px; color: var(--ink); font-weight: 500; }
.vm-single-post__content p { margin: 12px 0; }
.vm-single-post__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--line); max-width: 820px; margin-left: auto; margin-right: auto; }
.vm-single-post__nav a { color: var(--ink); display: flex; flex-direction: column; gap: 8px; }
.vm-single-post__nav .label { color: var(--accent); font-weight: 500; font-size: 14px; }
.vm-single-post__nav .next { text-align: right; }

/* =========================================================
 * FOOTER
 * ========================================================= */
.vm-footer {
	background: #0881d0;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.vm-footer__pattern { display: none; }
.vm-footer__inner { position: relative; z-index: 1; padding: 0 48px; max-width: 1440px; margin: 0 auto; }
.vm-footer__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.4fr 1.4fr 1fr 1fr;
	gap: 40px;
	padding: 80px 0 80px;
	align-items: start;
}
.vm-footer__grid::before {
	content: "";
	position: absolute;
	inset: -40px -200px 0 -200px;
	background-image: url("../images/footer-pattern.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.6;
	pointer-events: none;
	z-index: 0;
}
.vm-footer__grid > * { position: relative; z-index: 1; }
.vm-footer__brand { display: flex; flex-direction: column; }
.vm-footer__logo { height: 62px; width: auto; filter: brightness(0) invert(1); display: block; }
.vm-footer__phone-cta {
	margin-top: 28px;
	display: inline-flex; align-items: center; gap: 10px;
	background: #fff; color: var(--accent);
	padding: 10px 22px; border-radius: 999px;
	font-weight: 500; font-size: 15px;
	width: fit-content;
	box-shadow: 0 6px 18px -6px rgba(0,0,0,0.2);
	transition: transform .15s;
}
.vm-footer__phone-cta:hover { transform: translateY(-1px); }
.vm-footer__phone-cta svg { color: var(--accent); }

.vm-footer__social { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.vm-footer__social span { font-weight: 300; font-size: 15px; opacity: 0.95; }
.vm-footer__social a { width: 24px; height: 24px; display: grid; place-items: center; color: #fff; transition: opacity .15s; }
.vm-footer__social a:hover { opacity: 0.7; }
.vm-footer__social a svg { width: 18px; height: 18px; }

.vm-footer__col-title { font-weight: 500; font-size: 16px; margin-bottom: 28px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }
.vm-footer__contact-list { display: flex; flex-direction: column; gap: 18px; font-weight: 300; font-size: 15px; line-height: 1.45; }
.vm-footer__contact-list li { display: flex; gap: 12px; align-items: center; }
.vm-footer__contact-list li:last-child { align-items: flex-start; }
.vm-footer__contact-list li:last-child svg { margin-top: 4px; }
.vm-footer__contact-list a { color: #fff; transition: opacity .15s; }
.vm-footer__contact-list a:hover { opacity: 0.75; }

.vm-footer__menu { display: flex; flex-direction: column; gap: 22px; font-weight: 500; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1; }
.vm-footer__menu a { color: #fff; transition: opacity .15s; }
.vm-footer__menu a:hover { opacity: 0.7; }

.vm-footer__bottom-wrap {
	padding: 28px 0;
	border-top: 0;
	position: relative;
}
.vm-footer__bottom-wrap::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		rgba(255,255,255,0) 0%,
		rgba(255,255,255,0.45) 50%,
		rgba(255,255,255,0) 100%
	);
	pointer-events: none;
}
.vm-footer__bottom {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	font-size: 13px;
	opacity: 0.95;
	gap: 24px;
}
.vm-footer__bottom .center { text-align: center; }
.vm-footer__bottom .right { text-align: right; display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.vm-footer__bottom a { color: #fff; }
.vm-footer__bottom > div:first-child a { text-decoration: underline; text-underline-offset: 3px; opacity: 0.9; }
.vm-footer__bottom > div:first-child a:hover { opacity: 1; }
.vm-footer__agency {
	display: inline-flex; align-items: center;
	transition: opacity .18s;
}
.vm-footer__agency:hover { opacity: 0.8; }
.vm-footer__agency img {
	height: 26px; width: auto; display: block;
	filter: brightness(0) invert(1);
}

@media (max-width: 980px) {
	.vm-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 720px) {
	.vm-footer__inner { padding: 64px 24px 24px; }
	.vm-footer__grid { grid-template-columns: 1fr; gap: 48px; text-align: center; padding-bottom: 56px; }
	.vm-footer__brand { align-items: center; }
	.vm-footer__logo { margin: 0 auto; }
	.vm-footer__phone-cta { align-self: center; }
	.vm-footer__social { justify-content: center; }
	.vm-footer__col-title { text-align: center; }
	.vm-footer__contact-list { align-items: center; }
	.vm-footer__contact-list li { justify-content: center; text-align: left; max-width: 280px; }
	.vm-footer__menu { align-items: center; }
	.vm-footer__bottom { grid-template-columns: 1fr; text-align: center; gap: 16px; }
	.vm-footer__bottom > div:first-child,
	.vm-footer__bottom .center { text-align: center; }
	.vm-footer__bottom .right { justify-content: center; text-align: center; }
}

/* =========================================================
 * UTIL: tekstowy akcent (np. "NFZ" na niebiesko w nagłówkach)
 * ========================================================= */
.vm-accent-word { color: var(--accent); font-weight: inherit; }

/* =========================================================
 * STRONY NFZ / ZABIEGI / CENNIK - jasnoniebieskie tło
 * (zgodnie z wzorem klientki, mail 27.04.2026)
 * ========================================================= */
body.post-type-archive-zabieg,
body.page-template-page-nfz,
body.page-template-page-cennik {
	background: var(--accent-50);
}
body.post-type-archive-zabieg .vm-page-header,
body.page-template-page-nfz .vm-page-header,
body.page-template-page-cennik .vm-page-header {
	background: transparent;
}
/* H1 "NFZ" - niebieski zamiast czarnego (zgodnie z prośbą klientki) */
body.page-template-page-nfz .vm-page-header__title { color: var(--accent); }

/* Zdjęcie ośrodka pod danymi kontaktowymi (lewa kolumna) */
.vm-kontakt__photo {
	margin: 32px 0 0; padding: 0;
	overflow: hidden;
	box-shadow: 0 18px 40px -22px rgba(0,0,0,0.22);
}
.vm-kontakt__photo img {
	display: block; width: 100%; height: 320px;
	object-fit: cover; object-position: center;
}
@media (max-width: 720px) {
	.vm-kontakt__photo img { height: 240px; }
}
body.post-type-archive-zabieg .vm-treatments,
body.page-template-page-nfz .vm-nfz-steps-section,
body.page-template-page-cennik .vm-pricing {
	background: transparent;
}
/* Karty pozostają białe dla kontrastu */
body.post-type-archive-zabieg .vm-tr-row,
body.page-template-page-cennik .vm-price-card,
body.page-template-page-nfz .vm-step-card { background: #fff; }

/* =========================================================
 * TEAM: KIEROWNIK BADGE + COURSES ACCORDION
 * ========================================================= */
.vm-team-card { position: relative; }
.vm-team-card.is-kierownik { border-color: var(--accent); box-shadow: 0 1px 2px -1px rgba(8,129,208,0.18), 0 4px 14px -4px rgba(8,129,208,0.18); }
.vm-team-card__badge {
	position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 12px; border-radius: 999px;
	background: var(--accent); color: #fff;
	font-size: 12px; font-weight: 600; line-height: 1; letter-spacing: 0.02em;
	white-space: nowrap; z-index: 2;
	box-shadow: 0 6px 16px -8px rgba(8,129,208,0.55);
}
.vm-team-card__badge .vm-icon { stroke: #fff; }

/* Brak zdjęcia → kółko z inicjałami */
.vm-team-card__img--initials {
	background: var(--accent-50);
	color: var(--accent);
	display: grid; place-items: center;
	font-size: 56px; font-weight: 500; letter-spacing: 0.04em;
	font-family: 'Archivo', sans-serif;
}
.vm-team-modal__photo--initials {
	background: var(--accent-50);
	color: var(--accent);
	display: grid; place-items: center;
	font-size: 96px; font-weight: 500; letter-spacing: 0.04em;
	font-family: 'Archivo', sans-serif;
}

.vm-courses-accordion {
	width: 100%; padding: 0; margin: 0;
	background: none; border: 0; cursor: pointer;
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	color: inherit; text-align: left;
}
.vm-courses-accordion:hover .vm-bio-section__title { color: var(--accent); }
.vm-courses-accordion__chevron {
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--accent); transition: transform .25s ease;
}
.vm-courses-accordion[aria-expanded="true"] .vm-courses-accordion__chevron { transform: rotate(180deg); }
.vm-courses-accordion__panel { margin-top: 16px; }
.vm-courses-accordion__panel[hidden] { display: none; }

.vm-courses-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.vm-courses-list__item {
	display: grid; grid-template-columns: 88px 1fr; gap: 16px; align-items: baseline;
	padding: 12px 0; border-bottom: 1px solid var(--accent-50);
	font-size: 14px; line-height: 1.55; color: var(--ink);
}
.vm-courses-list__item:last-child { border-bottom: 0; }
.vm-courses-list__date {
	font-weight: 600; color: var(--accent); font-variant-numeric: tabular-nums;
	font-size: 13px;
}
.vm-courses-list__name { color: rgb(74,85,101); font-weight: 300; }
.vm-courses-fallback {
	margin: 0; padding: 14px 18px; border-radius: 12px;
	background: var(--accent-50); color: var(--accent);
	font-size: 14px; font-weight: 500; line-height: 1.5;
}
@media (max-width: 520px) {
	.vm-courses-list__item { grid-template-columns: 1fr; gap: 4px; }
}

/* =========================================================
 * UTILS
 * ========================================================= */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.is-hidden { display: none !important; }
