/* ═══════════════════════════════════════════════════════════
   SOLAMED — Theme CSS (Pixel-Perfect Maquette)
   ═══════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
	--solamed-primary: #063c89;
	--solamed-accent: #79bd2a;
	--solamed-accent-dark: #5ea51c;
	--solamed-dark: #06245b;
	--solamed-muted: #5f6f89;
	--solamed-bg: #f6f9fd;
	--solamed-border: #dce6f3;
	--solamed-font: Inter, Arial, sans-serif;
	--solamed-heading-font: Inter, Arial, sans-serif;
	--solamed-font-size: 16px;
	--solamed-radius: 12px;
	--solamed-radius-sm: 8px;
	--solamed-shadow: 0 14px 36px rgba(6, 36, 91, 0.10);
	--solamed-shadow-sm: 0 6px 18px rgba(6, 36, 91, 0.07);
	--solamed-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--solamed-container: 1180px;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: #fff;
	color: #14223a;
	font-family: var(--solamed-font);
	font-size: var(--solamed-font-size);
	line-height: 1.65;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

a:hover,
a:focus {
	color: var(--solamed-accent);
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.7em;
	color: var(--solamed-dark);
	font-family: var(--solamed-heading-font);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 1rem;
}

ul, ol {
	padding-left: 1.25em;
}

.text-accent {
	color: var(--solamed-accent);
}

/* ─── Layout ─── */
.container {
	width: min(var(--solamed-container), calc(100% - 40px));
	margin-inline: auto;
}

.content-narrow {
	width: min(820px, calc(100% - 40px));
	margin-inline: auto;
}

/* ─── Accessibility ─── */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 10px 18px;
	background: #fff;
	clip: auto;
	color: var(--solamed-primary);
	font-weight: 700;
	border-radius: var(--solamed-radius-sm);
	box-shadow: var(--solamed-shadow);
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.site-header {
	position: relative;
	z-index: 100;
	background: #fff;
	border-radius: 0 0 18px 18px;
	box-shadow: 0 8px 30px rgba(6, 36, 91, 0.08);
	transition: all var(--solamed-transition);
}

.site-header--sticky {
	position: sticky;
	top: 0;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	width: min(1560px, calc(100% - 60px));
	min-height: 110px;
	margin-inline: auto;
	transition: min-height var(--solamed-transition);
}

.site-header--scrolled .site-header__inner {
	min-height: 72px;
}

/* Logo */
.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--solamed-dark);
	text-decoration: none;
	flex-shrink: 0;
}

.site-brand:hover,
.site-brand:focus {
	color: var(--solamed-dark);
}

.custom-logo-link {
	display: inline-flex;
}

.custom-logo-link img {
	max-height: 58px;
	width: auto;
	transition: max-height var(--solamed-transition);
}

.site-header--scrolled .custom-logo-link img {
	max-height: 44px;
}

.site-brand__logo-icon {
	flex-shrink: 0;
	transition: transform var(--solamed-transition);
}

.site-header--scrolled .site-brand__logo-icon svg {
	width: 40px;
	height: 40px;
}

.site-brand__logo-footer svg {
	flex-shrink: 0;
}

.site-brand__image {
	width: min(340px, 34vw);
	max-height: 82px;
	object-fit: contain;
}

.site-brand__text {
	display: grid;
	line-height: 1.1;
}

.site-brand__text strong {
	color: var(--solamed-dark);
	font-size: 1.6rem;
	letter-spacing: 0.02em;
	font-weight: 900;
}

.site-brand__text small {
	color: var(--solamed-dark);
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-top: 2px;
}

/* Navigation */
.primary-navigation ul {
	display: flex;
	align-items: center;
	gap: clamp(10px, 1.4vw, 26px);
	min-width: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation a {
	display: block;
	padding: 14px 0;
	border-bottom: 3px solid transparent;
	color: var(--solamed-dark);
	font-size: 0.85rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	transition: all var(--solamed-transition);
	white-space: nowrap;
}

@media (max-width: 1500px) {
	.site-header__inner {
		width: min(100% - 32px, 1560px);
		gap: 18px;
	}

	.site-brand__image {
		width: min(260px, 25vw);
	}

	.primary-navigation ul {
		gap: clamp(7px, 0.8vw, 13px);
	}

	.primary-navigation a {
		font-size: 0.74rem;
		letter-spacing: 0;
	}
}

@media (max-width: 1180px) {
	body.nav-open {
		overflow: hidden;
	}

	.site-header__inner {
		width: min(100% - 24px, 1560px);
		min-height: 80px;
	}

	.nav-toggle {
		display: flex;
	}

	.primary-navigation {
		position: fixed;
		inset: 80px 12px auto 12px;
		display: none;
		max-height: calc(100vh - 100px);
		padding: 16px;
		overflow-y: auto;
		border: 1px solid var(--solamed-border);
		border-radius: var(--solamed-radius);
		background: #fff;
		box-shadow: var(--solamed-shadow);
	}

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

	.primary-navigation ul {
		display: grid;
		gap: 2px;
	}

	.primary-navigation a {
		padding: 14px 16px;
		border-bottom: 0;
		border-radius: var(--solamed-radius-sm);
		font-size: 0.88rem;
	}

	.primary-navigation a:hover,
	.primary-navigation a:focus-visible {
		background: var(--solamed-bg);
	}
}

.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a,
.primary-navigation a:hover,
.primary-navigation a:focus {
	border-bottom-color: var(--solamed-accent);
	color: var(--solamed-accent);
}

/* Mobile toggle */
.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius-sm);
	background: #fff;
	cursor: pointer;
	gap: 5px;
	transition: background var(--solamed-transition);
}

.nav-toggle:hover {
	background: var(--solamed-bg);
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--solamed-dark);
	border-radius: 2px;
	transition: all var(--solamed-transition);
}

.nav-open .nav-toggle span:first-child {
	transform: rotate(45deg) translate(5px, 5px);
}

.nav-open .nav-toggle span:nth-child(2) {
	opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.button,
button,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 12px 28px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-family: var(--solamed-font);
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: all var(--solamed-transition);
}

.button:hover,
button:hover,
input[type="submit"]:hover {
	transform: translateY(-2px);
}

.button--primary {
	background: var(--solamed-accent);
	color: #fff;
	box-shadow: 0 8px 24px rgba(121, 189, 42, 0.3);
}

.button--primary:hover,
.button--primary:focus {
	background: var(--solamed-accent-dark);
	color: #fff;
	box-shadow: 0 12px 28px rgba(121, 189, 42, 0.4);
}

.button--outline {
	border-color: var(--solamed-accent);
	background: #fff;
	color: var(--solamed-accent);
}

.button--outline:hover,
.button--outline:focus {
	background: var(--solamed-accent);
	color: #fff;
}

.button--ghost {
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	backdrop-filter: blur(6px);
}

.button--ghost:hover,
.button--ghost:focus {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.button--arrow::after {
	content: "›";
	font-size: 1.3em;
	line-height: 1;
	transition: transform var(--solamed-transition);
}

.button--arrow:hover::after {
	transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
	position: relative;
	min-height: 800px;
	overflow: hidden;
	background: var(--solamed-dark);
	color: #fff;
	display: flex;
	align-items: center;
}

.hero__media {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero__media::before {
	content: "";
	position: absolute;
	inset: 0;
	/* Deep blue gradient from left, fading out */
	background: linear-gradient(90deg, rgba(6, 36, 91, 0.95) 0%, rgba(6, 36, 91, 0.8) 35%, rgba(6, 36, 91, 0.2) 70%, transparent 100%);
}

.hero__content {
	position: relative;
	z-index: 2;
	width: min(var(--solamed-container), calc(100% - 120px));
	margin-inline: auto;
	padding: 100px 0 160px;
}

.hero__copy {
	max-width: 800px;
}

.hero h1 {
	color: #fff;
	font-size: clamp(2.4rem, 4.5vw, 4.2rem);
	text-transform: uppercase;
	margin-bottom: 0.2em;
	line-height: 1.1;
	font-weight: 800;
}

.hero h1 .text-accent {
	color: var(--solamed-accent);
}

.hero p {
	max-width: 600px;
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.15rem;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 24px;
}

.hero__divider {
	width: 60px;
	height: 3px;
	background: var(--solamed-accent);
	margin-bottom: 30px;
}

/* Features inline */
.hero__features-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin-bottom: 40px;
}

.hero__feature-inline {
	display: flex;
	align-items: center;
	gap: 14px;
}

.hero__feature-inline-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.7);
	color: #fff;
	flex-shrink: 0;
	transition: all var(--solamed-transition);
}

.hero__feature-inline:hover .hero__feature-inline-icon {
	background: rgba(255, 255, 255, 0.15);
	border-color: #fff;
}

.hero__feature-inline-icon svg {
	width: 24px;
	height: 24px;
}

.hero__feature-inline-text h3 {
	color: #fff;
	font-size: 0.75rem;
	margin: 0 0 2px 0;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.hero__feature-inline-text p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.75rem;
	margin: 0;
	line-height: 1.3;
	font-weight: 400;
}

/* Actions */
.hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.hero__actions .button--primary {
	font-size: 0.8rem;
	padding: 14px 32px;
}

.button--video {
	background: transparent;
	border: none;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	padding: 0;
}

.button--video:hover {
	color: var(--solamed-accent);
}

.button--video-icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 2px solid #fff;
	color: #fff;
	transition: all var(--solamed-transition);
}

.button--video:hover .button--video-icon {
	border-color: var(--solamed-accent);
	color: var(--solamed-accent);
}

/* Slider Nav Arrows */
.hero__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(6, 36, 91, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	backdrop-filter: blur(4px);
	transition: all var(--solamed-transition);
}

.hero__nav:hover {
	background: var(--solamed-primary);
	border-color: var(--solamed-primary);
}

.hero__nav--prev {
	left: 20px;
}

.hero__nav--next {
	right: 20px;
}

/* Pagination Dots */
.hero__dots {
	position: absolute;
	bottom: 90px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.hero__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	opacity: 0.6;
	cursor: pointer;
	transition: all var(--solamed-transition);
}

.hero__dot:hover {
	opacity: 1;
}

.hero__dot--active {
	opacity: 1;
	background: var(--solamed-accent);
}

/* Waves */
.hero__waves {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120px;
	overflow: hidden;
	z-index: 5;
}

.hero__waves svg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero__wave-blue {
	z-index: 1;
	bottom: 20px;
}

.hero__wave-green {
	z-index: 2;
	bottom: 10px;
}

.hero__wave-white {
	z-index: 3;
}


/* ═══════════════════════════════════════════════════════════
   SOLAMED SLIDE HERO WIDGET  (ssh-*)
   ═══════════════════════════════════════════════════════════ */

/* Container */
.solamed-slide-hero {
	position: relative;
	overflow: hidden;
	background: var(--solamed-dark);
	color: #fff;
	display: flex;
	align-items: stretch;
	min-height: 680px;
}

/* Track + slides */
.ssh-track {
	position: relative;
	width: 100%;
}

.ssh-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	opacity: 0;
	transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1);
	pointer-events: none;
	z-index: 0;
	min-height: inherit;
}

.ssh-slide--active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
	position: relative;
}

/* Background */
.ssh-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	transition: transform 8s ease;
}

.ssh-slide--active .ssh-bg {
	transform: scale(1.04);
}

.ssh-bg--placeholder {
	background: linear-gradient(135deg, #063c89 0%, #06245b 40%, #0a4fa0 100%);
}

.ssh-bg-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 70% 50%, rgba(121,189,42,0.12) 0%, transparent 55%),
	                  radial-gradient(circle at 30% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}

/* Gradient overlay */
.ssh-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* Content */
.ssh-content {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 90px 0 160px;
}

.ssh-inner {
	width: min(var(--solamed-container), calc(100% - 100px));
	margin-inline: auto;
}

.ssh-copy {
	max-width: 720px;
}

/* Title */
.ssh-title {
	display: block;
	font-size: clamp(2.2rem, 4.2vw, 4rem);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.05;
	margin-bottom: 0.35em;
	letter-spacing: -0.01em;
}

.ssh-title__white {
	display: block;
	color: #fff;
}

.ssh-title__green {
	display: block;
	color: var(--solamed-accent);
	text-shadow: 0 0 40px rgba(121,189,42,0.35);
}

/* Description */
.ssh-desc {
	color: rgba(255,255,255,0.92);
	font-size: 1.1rem;
	line-height: 1.55;
	max-width: 560px;
	margin-bottom: 28px;
	font-weight: 400;
}

.ssh-accent {
	color: var(--solamed-accent);
	font-weight: 600;
}

/* Features row */
.ssh-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 28px;
	margin-bottom: 38px;
}

.ssh-feature {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ssh-feature__icon {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1.5px solid rgba(255,255,255,0.55);
	color: #fff;
	background: rgba(255,255,255,0.06);
	backdrop-filter: blur(4px);
	transition: all 0.28s ease;
}

.ssh-feature:hover .ssh-feature__icon {
	border-color: var(--solamed-accent);
	background: rgba(121,189,42,0.15);
	color: var(--solamed-accent);
}

.ssh-feature__text {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.ssh-feature__text strong {
	display: block;
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #fff;
}

.ssh-feature__text span {
	display: block;
	font-size: 0.7rem;
	color: rgba(255,255,255,0.72);
	line-height: 1.3;
	max-width: 130px;
}

/* Action Buttons */
.ssh-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
}

.ssh-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.78rem;
	border-radius: 6px;
	transition: all 0.28s ease;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
}

.ssh-btn--primary {
	background: var(--solamed-accent);
	color: #fff;
	padding: 14px 30px;
	box-shadow: 0 6px 24px rgba(121,189,42,0.35);
}

.ssh-btn--primary:hover,
.ssh-btn--primary:focus {
	background: var(--solamed-accent-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(121,189,42,0.45);
}

.ssh-btn--primary svg {
	transition: transform 0.25s ease;
}

.ssh-btn--primary:hover svg {
	transform: translateX(4px);
}

.ssh-btn--video {
	background: transparent;
	color: #fff;
	padding: 0;
	border: none;
}

.ssh-btn--video:hover,
.ssh-btn--video:focus {
	color: var(--solamed-accent);
}

.ssh-btn__play {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.65);
	background: rgba(255,255,255,0.08);
	backdrop-filter: blur(4px);
	color: #fff;
	flex-shrink: 0;
	transition: all 0.28s ease;
}

.ssh-btn--video:hover .ssh-btn__play,
.ssh-btn--video:focus .ssh-btn__play {
	border-color: var(--solamed-accent);
	background: rgba(121,189,42,0.2);
	color: var(--solamed-accent);
}

/* Navigation Arrows */
.ssh-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 1.5px solid rgba(255,255,255,0.25);
	background: rgba(6,36,91,0.55);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	backdrop-filter: blur(6px);
	transition: all 0.25s ease;
	outline: none;
}

.ssh-arrow:hover,
.ssh-arrow:focus {
	background: var(--solamed-primary);
	border-color: var(--solamed-primary);
	transform: translateY(-50%) scale(1.08);
}

.ssh-arrow--prev { left: 24px; }
.ssh-arrow--next { right: 24px; }

/* Pagination Dots */
.ssh-dots {
	position: absolute;
	bottom: 92px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
	align-items: center;
}

.ssh-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255,255,255,0.45);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all 0.25s ease;
	outline: none;
}

.ssh-dot:hover {
	background: rgba(255,255,255,0.8);
	transform: scale(1.2);
}

.ssh-dot--active {
	background: var(--solamed-accent);
	transform: scale(1.25);
	box-shadow: 0 0 0 3px rgba(121,189,42,0.3);
}

/* Waves */
.ssh-waves {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 110px;
	overflow: hidden;
	z-index: 5;
	pointer-events: none;
}

.ssh-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ssh-wave--blue  { z-index: 1; }
.ssh-wave--green { z-index: 2; }
.ssh-wave--white { z-index: 3; }

/* Slide transition animation for copy */
.ssh-slide--active .ssh-copy {
	animation: sshFadeIn 0.7s ease forwards;
}

@keyframes sshFadeIn {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.ssh-features { gap: 6px 20px; }
	.ssh-feature__text span { max-width: 110px; }
	.ssh-inner { width: calc(100% - 60px); }
}

@media (max-width: 768px) {
	.solamed-slide-hero { min-height: 520px !important; }
	.ssh-content { padding: 70px 0 130px; }
	.ssh-title { font-size: clamp(1.7rem, 5.5vw, 2.6rem); }
	.ssh-desc { font-size: 0.95rem; }
	.ssh-features { gap: 5px 14px; }
	.ssh-feature__icon { width: 38px; height: 38px; }
	.ssh-feature__text span { display: none; }
	.ssh-inner { width: calc(100% - 40px); }
	.ssh-arrow { display: none; }
}

@media (max-width: 480px) {
	.ssh-copy { max-width: 100%; }
	.ssh-actions { gap: 14px; }
	.ssh-btn--primary { padding: 12px 20px; font-size: 0.72rem; }
}

/* ═══════════════════════════════════════════════════════════
   VALUES BAND
   ═══════════════════════════════════════════════════════════ */

.values-band {
	position: relative;
	z-index: 5;
	margin-top: -60px;
	padding-bottom: 10px;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	padding: 28px 32px;
	background: #fff;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	box-shadow: var(--solamed-shadow);
}

.value-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 16px 20px;
	border-right: 1px solid var(--solamed-border);
}

.value-item:last-child {
	border-right: 0;
}

.value-item__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 14px;
	border: 2px solid var(--solamed-accent);
	border-radius: 50%;
	color: var(--solamed-accent);
	font-size: 1.2rem;
	font-weight: 800;
	transition: all var(--solamed-transition);
}

.value-item:hover .value-item__icon {
	background: var(--solamed-accent);
	color: #fff;
}

.value-item h2 {
	margin-bottom: 6px;
	font-size: 0.88rem;
	text-transform: uppercase;
	color: var(--solamed-primary);
}

.value-item p {
	margin: 0;
	color: var(--solamed-muted);
	font-size: 0.8rem;
	line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS GENERIQUES
   ═══════════════════════════════════════════════════════════ */
.section {
	padding: 56px 0;
}

.section__title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--solamed-dark);
	text-transform: uppercase;
	margin-bottom: 0.3em;
	position: relative;
}

.section__title::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	margin-top: 10px;
	background: var(--solamed-accent);
	border-radius: 2px;
}

.section__subtitle {
	color: var(--solamed-muted);
	font-size: 1.05rem;
	max-width: 680px;
	margin-bottom: 2rem;
}

/* ─── About (split layout) ─── */
/* ═══════════════════════════════════════════════════════════
   ABOUT V2 WIDGET (solamed-about-v2)
   ═══════════════════════════════════════════════════════════ */

.solamed-about-v2 {
	padding: 80px 0;
	background: #fff; /* or whatever background color it's supposed to be outside, the card is white */
}

/* We match the mockup which looks like a white card with rounded corners and a soft shadow on a lighter background, but if background is white, maybe the card just has a subtle border. Let's make the section slightly grey if the card is white, or the card is just a white box with shadow on white. Mockup seems to have a very light grey background outside the card. Let's assume section is #fafafa or #f8f9fc */
.solamed-about-v2 {
	background: #fafbfc;
}

.about-v2-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr 1fr;
	gap: 40px;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.06);
	padding: 24px;
	align-items: center;
}

/* Media Column */
.about-v2-media {
	position: relative;
	height: 100%;
	min-height: 400px;
	border-radius: 14px;
	overflow: hidden;
}

.about-v2-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about-v2-placeholder {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	background: #f0f2f5;
	color: #999;
}

.about-v2-media-swoosh {
	position: absolute;
	bottom: -2px; /* Pull down slightly to avoid sub-pixel gaps */
	left: 0;
	width: 100%;
	line-height: 0;
}

.about-v2-media-swoosh svg {
	width: 100%;
	height: auto;
	display: block;
}

/* Content Column */
.about-v2-content {
	padding: 20px 0;
}

.about-v2-title {
	font-size: 2.2rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.about-v2-title .title-blue {
	color: var(--solamed-primary);
}

.about-v2-title .title-green {
	color: var(--solamed-accent);
}

.about-v2-divider {
	width: 40px;
	height: 3px;
	background: var(--solamed-accent);
	margin-bottom: 24px;
}

.about-v2-desc {
	color: var(--solamed-dark);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 20px;
}
.about-v2-desc:last-child {
	margin-bottom: 0;
}

.about-v2-desc strong {
	color: var(--solamed-primary);
	font-weight: 700;
}

/* Cards Column */
.about-v2-cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-right: 12px;
}

.about-v2-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: #fff;
	border: 1px solid var(--solamed-border);
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.02);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-v2-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.about-v2-card-icon {
	flex-shrink: 0;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: grid;
	place-items: center;
}

.about-v2-card-icon--green {
	background: var(--solamed-accent);
}

.about-v2-card-icon--blue {
	background: var(--solamed-primary);
}

.about-v2-card-text h3 {
	font-size: 1rem;
	font-weight: 800;
	margin-bottom: 6px;
	text-transform: uppercase;
}
.about-v2-card-text h3.title-green {
	color: var(--solamed-accent);
}
.about-v2-card-text h3.title-blue {
	color: var(--solamed-primary);
}

.about-v2-card-text p {
	font-size: 0.85rem;
	color: var(--solamed-muted);
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 1024px) {
	.about-v2-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.about-v2-media {
		min-height: 300px;
	}
	.about-v2-cards {
		flex-direction: row;
		padding-right: 0;
	}
}

@media (max-width: 768px) {
	.about-v2-cards {
		flex-direction: column;
	}
	.about-v2-title {
		font-size: 1.8rem;
	}
}

/* ─── About (split layout) ─── */
.split-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 40px;
	align-items: center;
}

.split-layout > img {
	border-radius: var(--solamed-radius);
	box-shadow: var(--solamed-shadow);
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
}

.mini-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 24px;
}

.mini-card {
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius-sm);
	background: #fff;
	padding: 24px;
	transition: all var(--solamed-transition);
}

.mini-card:hover {
	box-shadow: var(--solamed-shadow-sm);
	transform: translateY(-2px);
}

.mini-card__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 12px;
	border-radius: 50%;
	background: rgba(121, 189, 42, 0.1);
	color: var(--solamed-accent);
}

.mini-card h3 {
	font-size: 0.95rem;
	text-transform: uppercase;
	color: var(--solamed-primary);
	margin-bottom: 6px;
}

.mini-card p {
	margin: 0;
	color: var(--solamed-muted);
	font-size: 0.88rem;
}

/* ═══════════════════════════════════════════════════════════
   SOLUTIONS
   ═══════════════════════════════════════════════════════════ */
.solutions-preview {
	background: var(--solamed-bg);
}

.solution-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 20px;
}

.solution-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	background: #fff;
	padding: 14px;
	min-height: 100%;
	transition: all var(--solamed-transition);
}

.solution-card:hover {
	box-shadow: var(--solamed-shadow);
	transform: translateY(-4px);
}

.solution-card__image {
	aspect-ratio: 16 / 10;
	margin-bottom: 14px;
	border-radius: var(--solamed-radius-sm);
	overflow: hidden;
	background: linear-gradient(135deg, rgba(6, 60, 137, 0.12), rgba(121, 189, 42, 0.1));
}

.solution-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.solution-card h3 {
	font-size: 0.88rem;
	text-transform: uppercase;
	color: var(--solamed-primary);
	margin-bottom: 8px;
	line-height: 1.3;
}

.solution-card p {
	color: var(--solamed-muted);
	font-size: 0.82rem;
	line-height: 1.5;
	flex: 1;
}

.solution-card .button {
	margin-top: auto;
	align-self: flex-start;
	padding: 8px 18px;
	font-size: 0.72rem;
	min-height: 36px;
}

/* ═══════════════════════════════════════════════════════════
   ENGAGEMENT CANCER
   ═══════════════════════════════════════════════════════════ */
.engagement-section {
	background: #fff;
}

.engagement-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.engagement-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0;
}

.engagement-list li {
	position: relative;
	padding: 6px 0 6px 28px;
	font-size: 0.92rem;
	color: #14223a;
}

.engagement-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 6px;
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--solamed-accent);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
}

.engagement-cta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
	padding: 18px 24px;
	border-radius: var(--solamed-radius);
	background: linear-gradient(135deg, #5a2e96, var(--solamed-primary));
	color: #fff;
}

.engagement-cta__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--solamed-accent);
	flex-shrink: 0;
}

.engagement-cta p {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 600;
}

.solamed-native-cancer {
	background: #fff;
	padding: clamp(54px, 5vw, 78px) 0;
}

.solamed-native-cancer > .elementor-container {
	width: min(1830px, calc(100% - 56px));
	max-width: 1830px !important;
	flex-wrap: wrap;
	align-items: stretch;
	margin-right: auto;
	margin-left: auto;
	padding: clamp(42px, 4.1vw, 72px);
	border: 1px solid rgba(9, 37, 82, 0.14);
	border-radius: 32px;
	background: #fff;
	box-shadow: 0 24px 55px rgba(6, 36, 91, 0.11);
}

.solamed-native-cancer-heading {
	margin-bottom: clamp(34px, 3.2vw, 52px);
}

.solamed-native-cancer-heading .elementor-heading-title {
	margin: 0;
	color: #5b1fa0;
	font-size: clamp(2.15rem, 3.3vw, 3.42rem);
	line-height: 1.08;
	text-transform: uppercase;
}

.solamed-native-cancer .solamed-native-cancer-media {
	width: 38% !important;
}

.solamed-native-cancer .solamed-native-cancer-content {
	width: 62% !important;
}

.solamed-native-cancer-media > .elementor-widget-wrap {
	display: grid !important;
	grid-template-columns: minmax(0, 1.92fr) minmax(145px, 1fr);
	grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(16px, 1.25vw, 24px);
	align-items: stretch;
	padding-right: clamp(26px, 3.5vw, 58px) !important;
}

.solamed-native-cancer-media .elementor-widget {
	margin: 0 !important;
}

.solamed-native-cancer-image-main {
	grid-column: 1;
	grid-row: 1 / 3;
	height: 100%;
}

.solamed-native-cancer-image-small--top {
	grid-column: 2;
	grid-row: 1;
	height: 100%;
}

.solamed-native-cancer-image-small--bottom {
	grid-column: 2;
	grid-row: 2;
	height: 100%;
}

.solamed-native-cancer-image-main img,
.solamed-native-cancer-image-small img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	object-fit: cover;
	box-shadow: none;
}

.solamed-native-cancer-image-main img {
	min-height: clamp(470px, 31vw, 585px);
	object-position: center center;
}

.solamed-native-cancer-image-small img {
	min-height: clamp(224px, 14.8vw, 282px);
}

.solamed-native-cancer-image-small--top img {
	object-position: center center;
}

.solamed-native-cancer-image-small--bottom img {
	object-position: center center;
}

.solamed-native-cancer-content > .elementor-widget-wrap {
	align-content: center;
	padding-left: clamp(8px, 1.6vw, 28px) !important;
}

.solamed-native-cancer-intro {
	margin-bottom: clamp(26px, 2.2vw, 36px) !important;
}

.solamed-native-cancer-intro p {
	margin: 0;
	color: #101a3d;
	font-size: clamp(1.1rem, 1.38vw, 1.46rem);
	font-weight: 500;
	line-height: 1.85;
}

.solamed-native-cancer-point {
	margin-bottom: clamp(16px, 1.35vw, 24px) !important;
}

.solamed-native-cancer-point .elementor-icon-box-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

.solamed-native-cancer-point .elementor-icon-box-icon {
	margin: 0 !important;
}

.solamed-native-cancer-point .elementor-icon {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #8f5cde 0%, #5a1fa0 68%);
	color: #fff;
	font-size: 16px;
	box-shadow: 0 7px 16px rgba(91, 31, 160, 0.24);
}

.solamed-native-cancer-point .elementor-icon svg {
	width: 0.9em;
	height: 0.9em;
}

.solamed-native-cancer-point .elementor-icon-box-title {
	margin: 0;
}

.solamed-native-cancer-point .elementor-icon-box-title,
.solamed-native-cancer-point .elementor-icon-box-title a {
	color: #111b3d;
	font-size: clamp(1.02rem, 1.27vw, 1.32rem);
	font-weight: 500;
	line-height: 1.65;
}

.solamed-native-cancer-cta {
	width: 100% !important;
	margin-top: clamp(30px, 3.2vw, 48px);
}

.solamed-native-cancer-cta > .elementor-widget-wrap {
	display: grid !important;
	grid-template-columns: 128px minmax(0, 1fr);
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 34px;
	min-height: 150px;
	padding: clamp(24px, 2.4vw, 38px) clamp(38px, 4.5vw, 78px) !important;
	border-radius: 22px;
	background: linear-gradient(135deg, #6d24b8 0%, #4b128f 100%);
	box-shadow: none;
}

.solamed-native-cancer-cta .elementor-widget {
	margin: 0 !important;
}

.solamed-native-cancer-cta-icon {
	grid-column: 1;
	grid-row: 1 / 3;
}

.solamed-native-cancer-cta-icon .elementor-icon {
	display: grid;
	place-items: center;
	width: 94px;
	height: 94px;
	color: #fff;
	font-size: 74px;
}

.solamed-native-cancer-cta-title {
	grid-column: 2;
	grid-row: 1;
}

.solamed-native-cancer-cta-title .elementor-heading-title {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(1.45rem, 1.95vw, 2rem);
	line-height: 1.22;
}

.solamed-native-cancer-cta-text {
	grid-column: 2;
	grid-row: 2;
}

.solamed-native-cancer-cta-text p {
	margin: 0;
	color: rgba(255, 255, 255, 0.94);
	font-size: clamp(1.12rem, 1.72vw, 1.82rem);
	line-height: 1.35;
}

@media (max-width: 1180px) {
	.solamed-native-cancer > .elementor-container {
		width: min(100% - 44px, 1830px);
		padding: 34px;
		border-radius: 28px;
	}

	.solamed-native-cancer .solamed-native-cancer-media,
	.solamed-native-cancer .solamed-native-cancer-content {
		width: 100% !important;
	}

	.solamed-native-cancer-media > .elementor-widget-wrap {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		padding-right: 0 !important;
	}

	.solamed-native-cancer-image-main {
		grid-column: 1;
	}

	.solamed-native-cancer-content > .elementor-widget-wrap {
		padding-top: 34px !important;
		padding-left: 0 !important;
	}
}

@media (max-width: 760px) {
	.solamed-native-cancer > .elementor-container {
		width: min(100% - 28px, 1830px);
		padding: 24px;
		border-radius: 22px;
	}

	.solamed-native-cancer-heading .elementor-heading-title {
		font-size: clamp(1.65rem, 9vw, 2.35rem);
	}

	.solamed-native-cancer-media > .elementor-widget-wrap {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 14px;
	}

	.solamed-native-cancer-image-main,
	.solamed-native-cancer-image-small--top,
	.solamed-native-cancer-image-small--bottom {
		grid-column: 1;
		grid-row: auto;
	}

	.solamed-native-cancer-image-main img,
	.solamed-native-cancer-image-small img {
		min-height: 0;
		aspect-ratio: 16 / 11;
		border-radius: 18px;
	}

	.solamed-native-cancer-point .elementor-icon-box-wrapper {
		gap: 14px;
	}

	.solamed-native-cancer-point .elementor-icon {
		width: 32px;
		height: 32px;
		font-size: 14px;
	}

	.solamed-native-cancer-cta > .elementor-widget-wrap {
		grid-template-columns: 1fr;
		row-gap: 16px;
		text-align: left;
		padding: 24px !important;
	}

	.solamed-native-cancer-cta-icon,
	.solamed-native-cancer-cta-title,
	.solamed-native-cancer-cta-text {
		grid-column: 1;
		grid-row: auto;
	}

	.solamed-native-cancer-cta-icon .elementor-icon {
		width: 72px;
		height: 72px;
		font-size: 34px;
	}
}

/* ═══════════════════════════════════════════════════════════
   REGION / PRESENCE
   ═══════════════════════════════════════════════════════════ */
.region-section {
	background: var(--solamed-bg);
}

.region-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.region-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.region-list li {
	padding: 8px 0 8px 34px;
	font-size: 1.05rem;
	font-weight: 700;
	color: #14223a;
	position: relative;
}

.region-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 8px;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--solamed-accent);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
}

.region-map {
	text-align: center;
}

.region-map img {
	max-width: 100%;
	height: auto;
}

.region-advantages {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 36px;
}

.region-advantage {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 16px;
}

.region-advantage__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin-bottom: 12px;
	border-radius: 50%;
	background: rgba(121, 189, 42, 0.08);
	border: 1px solid rgba(121, 189, 42, 0.25);
	color: var(--solamed-accent);
}

.region-advantage h3 {
	font-size: 0.78rem;
	text-transform: uppercase;
	color: var(--solamed-primary);
	margin: 0;
	line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════
   POURQUOI CHOISIR SOLAMED
   ═══════════════════════════════════════════════════════════ */
.why-section {
	background: #fff;
}

.why-section .container {
	padding: 40px;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	background: #fff;
	box-shadow: var(--solamed-shadow-sm);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
	margin-top: 28px;
	margin-bottom: 28px;
}

.why-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.why-item__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin-bottom: 14px;
	border-radius: 50%;
	color: var(--solamed-primary);
}

.why-item__icon svg {
	width: 48px;
	height: 48px;
}

.why-item h3 {
	font-size: 0.82rem;
	color: var(--solamed-dark);
	margin: 0;
	font-weight: 700;
	line-height: 1.35;
}

.why-section .button {
	display: flex;
	margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   PROJETS 2026-2030
   ═══════════════════════════════════════════════════════════ */
.projects-section {
	background: var(--solamed-bg);
}

.projects-layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: center;
	padding: 36px;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	background: #fff;
}

.projects-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
}

.projects-list li {
	padding: 10px 0 10px 36px;
	font-size: 0.95rem;
	color: #14223a;
	position: relative;
	line-height: 1.5;
}

.projects-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 10px;
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--solamed-accent);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
}

.projects-image img {
	border-radius: var(--solamed-radius);
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	box-shadow: var(--solamed-shadow-sm);
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-section {
	background: #fff;
}

.cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px 36px;
	border-radius: var(--solamed-radius);
	background: linear-gradient(135deg, #5a2e96, var(--solamed-primary));
	color: #fff;
}

.cta-box h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.15rem, 2.5vw, 1.7rem);
}

/* ═══════════════════════════════════════════════════════════
   BLOG / POSTS
   ═══════════════════════════════════════════════════════════ */
.news-section {
	background: #fff;
}

.news-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 28px;
}

.news-header .section__title {
	margin-bottom: 0;
}

.news-header a {
	font-weight: 700;
	font-size: 0.88rem;
	text-transform: uppercase;
	white-space: nowrap;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.post-card {
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	background: #fff;
	overflow: hidden;
	transition: all var(--solamed-transition);
}

.post-card:hover {
	box-shadow: var(--solamed-shadow);
	transform: translateY(-4px);
}

.post-card__image {
	overflow: hidden;
}

.post-card__image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform var(--solamed-transition);
}

.post-card:hover .post-card__image img {
	transform: scale(1.04);
}

.post-card__body {
	padding: 20px;
}

.post-card__meta {
	margin-bottom: 8px;
	color: var(--solamed-muted);
	font-size: 0.8rem;
}

.post-card__title {
	font-size: 1.05rem;
	line-height: 1.3;
	margin-bottom: 8px;
}

.post-card__title a {
	color: var(--solamed-dark);
}

.post-card__title a:hover {
	color: var(--solamed-accent);
}

.post-card__excerpt {
	color: var(--solamed-muted);
	font-size: 0.88rem;
	line-height: 1.55;
	margin: 0;
}

/* Entry pages */
.entry-header {
	padding-top: 54px;
}

.entry-content {
	padding-bottom: 54px;
}

.solamed-elementor-page .entry-content,
.site-main--full .entry-content {
	padding-bottom: 0;
}

/* Archive */
.archive-layout {
	padding: 54px 0;
}

.page-header {
	margin-bottom: 30px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(circle at 49% 43%, rgba(16, 83, 161, 0.32), transparent 32%),
		linear-gradient(180deg, #02143d 0%, #052b6b 46%, #031b4c 100%);
	color: rgba(255, 255, 255, 0.92);
}

.site-footer__pattern {
	position: absolute;
	z-index: -1;
	bottom: 92px;
	width: min(440px, 32vw);
	height: 240px;
	background: url("../images/generated/solamed-footer-pattern.svg") center / contain no-repeat;
	opacity: 0.34;
	pointer-events: none;
}

.site-footer__pattern--left {
	left: -38px;
}

.site-footer__pattern--right {
	right: -38px;
	transform: scaleX(-1);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.08fr 1fr 1.14fr 0.94fr;
	width: min(1540px, calc(100% - clamp(48px, 8vw, 140px)));
	margin-inline: auto;
	padding: clamp(78px, 7vw, 118px) 0 clamp(54px, 5vw, 82px);
}

.site-footer__column {
	min-width: 0;
	min-height: 320px;
	padding: 8px clamp(30px, 3.2vw, 62px);
}

.site-footer__column:not(:last-child) {
	border-right: 1px solid rgba(154, 192, 233, 0.46);
}

.site-footer__column:first-child {
	padding-left: 0;
}

.site-footer__column:last-child {
	padding-right: 0;
}

.footer-heading {
	position: relative;
	color: #fff;
	font-size: clamp(1.08rem, 1.25vw, 1.32rem);
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
	margin: 13px 0 46px;
	letter-spacing: -0.01em;
}

.footer-heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -18px;
	width: 38px;
	height: 3px;
	background: var(--solamed-accent);
}

/* Footer brand */
.footer-brand {
	display: inline-block;
}

.footer-brand__logo {
	display: block;
	width: min(330px, 100%);
	height: auto;
}

.footer-brand__wordmark {
	display: block;
	color: #fff;
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 900;
	letter-spacing: -0.05em;
}

.footer-brand__wordmark span,
.footer-brand__description span {
	color: var(--solamed-accent);
}

.footer-brand__description {
	max-width: 310px;
	margin: 30px 0 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(0.98rem, 1.03vw, 1.12rem);
	font-weight: 400;
	line-height: 1.85;
}

.footer-brand__description span {
	display: inline;
}

/* Footer contact */
.footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-contact-list li {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 22px;
	font-size: clamp(0.98rem, 1.05vw, 1.12rem);
	line-height: 1.5;
}

.footer-contact-list a,
.footer-contact-list span:not(.footer-contact__icon) {
	color: rgba(255, 255, 255, 0.96);
}

.footer-contact-list a:hover {
	color: var(--solamed-accent);
}

.footer-contact__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1.5px solid rgba(255, 255, 255, 0.78);
	border-radius: 50%;
	flex-shrink: 0;
	color: var(--solamed-accent);
}

.footer-contact__icon svg {
	width: 22px;
	height: 22px;
}

/* Footer engagement */
.site-footer__cta-text {
	max-width: 355px;
	margin: 0;
	color: rgba(255, 255, 255, 0.94);
	font-size: clamp(0.98rem, 1.05vw, 1.12rem);
	line-height: 1.8;
}

.footer-promise {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 46px;
	color: var(--solamed-accent);
}

.footer-promise__icon {
	width: 68px;
	height: 68px;
	flex: 0 0 68px;
}

.footer-promise p {
	max-width: 230px;
	margin: 0;
	color: var(--solamed-accent);
	font-size: clamp(1.08rem, 1.35vw, 1.4rem);
	line-height: 1.45;
}

/* Footer social */
.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(14px, 1.35vw, 22px);
	margin-top: 92px;
}

.footer-social__link {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.86);
	color: #fff;
	transition: color var(--solamed-transition), border-color var(--solamed-transition), background-color var(--solamed-transition), transform var(--solamed-transition);
}

.footer-social__link svg {
	width: 25px;
	height: 25px;
	fill: currentColor;
}

.footer-social a.footer-social__link:hover,
.footer-social a.footer-social__link:focus-visible {
	background: var(--solamed-accent);
	border-color: var(--solamed-accent);
	color: #fff;
	transform: translateY(-2px);
}

.footer-social__link--disabled {
	cursor: default;
}

/* Footer bottom */
.site-footer__bottom {
	position: relative;
	border-top: 1px solid var(--solamed-accent);
	background: rgba(1, 17, 54, 0.38);
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(30px, 5vw, 72px);
	width: min(1100px, calc(100% - 48px));
	margin-inline: auto;
	padding: 34px 0 46px;
}

.site-footer__copyright {
	flex: 0 0 auto;
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.92rem;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu li {
	display: flex;
	align-items: center;
}

.footer-menu li + li::before {
	content: "";
	display: block;
	width: 1px;
	height: 20px;
	margin: 0 clamp(24px, 3.5vw, 54px);
	background: var(--solamed-accent);
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.92rem;
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
	color: var(--solamed-accent);
}

@media (max-width: 1180px) {
	.site-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: min(960px, calc(100% - 56px));
		padding-top: 72px;
	}

	.site-footer__column {
		padding: 36px clamp(32px, 5vw, 58px);
	}

	.site-footer__column:first-child {
		padding-left: clamp(32px, 5vw, 58px);
	}

	.site-footer__column:last-child {
		padding-right: clamp(32px, 5vw, 58px);
	}

	.site-footer__contact {
		border-right: 0 !important;
	}

	.site-footer__brand,
	.site-footer__contact {
		border-bottom: 1px solid rgba(154, 192, 233, 0.34);
	}

	.footer-social {
		margin-top: 62px;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		gap: 24px;
	}
}

@media (max-width: 760px) {
	.site-footer__pattern {
		width: 330px;
		opacity: 0.24;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		width: min(100% - 36px, 600px);
		padding: 54px 0 34px;
	}

	.site-footer__column,
	.site-footer__column:first-child,
	.site-footer__column:last-child {
		min-height: 0;
		padding: 38px 10px;
		border-right: 0;
		border-bottom: 1px solid rgba(154, 192, 233, 0.3);
	}

	.site-footer__column:last-child {
		border-bottom: 0;
	}

	.footer-heading {
		margin-top: 0;
	}

	.footer-brand__description,
	.site-footer__cta-text {
		max-width: 440px;
	}

	.footer-social {
		margin-top: 54px;
	}

	.site-footer__bottom-inner {
		width: min(100% - 36px, 600px);
		padding: 30px 0 38px;
		text-align: center;
	}

	.footer-menu {
		flex-direction: column;
		gap: 14px;
	}

	.footer-menu li + li::before {
		display: none;
	}
}

@media (max-width: 480px) {
	.footer-brand__logo {
		width: min(290px, 100%);
	}

	.footer-contact-list li {
		gap: 14px;
	}

	.footer-contact__icon {
		width: 44px;
		height: 44px;
	}

	.footer-social__link {
		width: 52px;
		height: 52px;
	}
}

/* ═══════════════════════════════════════════════════════════
   404 / NO RESULTS
   ═══════════════════════════════════════════════════════════ */
.not-found,
.no-results {
	padding: 70px 0;
	text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   ELEMENTOR OVERRIDES
   ═══════════════════════════════════════════════════════════ */
.elementor-section.elementor-section-boxed > .elementor-container {
	max-width: var(--solamed-container);
}

.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3 {
	letter-spacing: -0.01em;
}

.solamed-exact-hero,
.solamed-exact-hero img {
	display: block;
	width: 100%;
}

.solamed-exact-hero img,
.solamed-elementor-page .solamed-exact-hero img {
	height: auto;
	border-radius: 0;
	box-shadow: none;
}

.solamed-page-hero {
	position: relative;
	overflow: hidden;
}

.solamed-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 48% 22%, rgba(98, 180, 255, 0.24), transparent 24%),
		linear-gradient(90deg, rgba(6, 36, 91, 0.95), rgba(6, 60, 137, 0.76));
	pointer-events: none;
}

.solamed-page-hero .elementor-container {
	position: relative;
	z-index: 1;
}

.solamed-page-hero h1 {
	color: #fff;
	font-size: clamp(2.35rem, 4.4vw, 4rem);
	text-transform: uppercase;
}

.solamed-page-hero p {
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.08rem;
}

.solamed-page-hero .elementor-widget-image img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border: 4px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.solamed-cta-strip h2,
.solamed-cta-strip p {
	color: #fff;
}

.solamed-cta-strip h2 {
	margin-bottom: 8px;
}

.solamed-cta-strip p {
	margin-bottom: 0;
	opacity: 0.92;
}

.solamed-home-hero {
	position: relative;
	overflow: hidden;
}

.solamed-slider {
	position: relative;
	min-height: 720px;
	overflow: hidden;
	background: var(--solamed-dark);
}

.solamed-slider__slides,
.solamed-home-slide,
.solamed-home-slide__shade {
	position: absolute;
	inset: 0;
}

.solamed-home-slide {
	opacity: 0;
	background-position: center center;
	background-size: cover;
	transition: opacity 0.75s ease;
}

.solamed-home-slide.is-active {
	opacity: 1;
}

.solamed-slider:not(.solamed-slider--js-ready) .solamed-home-slide {
	animation: solamedSlideFade 24s infinite;
}

.solamed-slider:not(.solamed-slider--js-ready) .solamed-home-slide:nth-child(2) {
	animation-delay: 6s;
}

.solamed-slider:not(.solamed-slider--js-ready) .solamed-home-slide:nth-child(3) {
	animation-delay: 12s;
}

.solamed-slider:not(.solamed-slider--js-ready) .solamed-home-slide:nth-child(4) {
	animation-delay: 18s;
}

@keyframes solamedSlideFade {
	0%, 20% {
		opacity: 1;
	}

	25%, 95% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.solamed-home-slide__shade {
	background:
		linear-gradient(90deg, rgba(3, 32, 78, 0.97) 0%, rgba(4, 53, 120, 0.84) 44%, rgba(4, 53, 120, 0.18) 100%),
		radial-gradient(circle at 44% 22%, rgba(103, 193, 255, 0.2), transparent 24%);
}

.solamed-slider::after {
	content: "";
	position: absolute;
	right: -4vw;
	bottom: 18px;
	width: 62vw;
	height: 42px;
	border-radius: 999px 0 0 999px;
	background: linear-gradient(90deg, var(--solamed-accent), var(--solamed-primary));
	transform: rotate(-8deg);
	transform-origin: center;
	pointer-events: none;
	z-index: 2;
}

.solamed-slider__content {
	position: relative;
	z-index: 3;
	width: min(1560px, calc(100% - 120px));
	margin: 0 auto;
	padding-top: 112px;
	color: #fff;
}

.solamed-slider__content h1,
.solamed-slider__content h2 {
	max-width: 760px;
	margin-bottom: 24px;
	color: #fff;
	font-size: clamp(2.6rem, 5.2vw, 4.9rem);
	line-height: 1.04;
	text-transform: uppercase;
}

.solamed-slider__content h1 span,
.solamed-slider__content h2 span {
	color: var(--solamed-accent);
}

.solamed-slider__content p {
	max-width: 610px;
	color: rgba(255, 255, 255, 0.94);
	font-size: 1.18rem;
}

.solamed-slider__arrow {
	position: absolute;
	top: 47%;
	z-index: 4;
	display: grid;
	place-items: center;
	width: 66px;
	height: 66px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: rgba(4, 44, 104, 0.72);
	color: #fff;
	font-size: 3rem;
	line-height: 1;
}

.solamed-slider__arrow:hover,
.solamed-slider__arrow:focus {
	background: var(--solamed-primary);
	color: #fff;
	transform: translateY(-1px);
}

.solamed-slider__arrow--prev {
	left: 22px;
}

.solamed-slider__arrow--next {
	right: 22px;
}

.solamed-slider__pause {
	position: absolute;
	left: calc(50% - 118px);
	bottom: 74px;
	z-index: 6;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	min-height: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 50%;
	background: rgba(4, 44, 104, 0.78);
	color: #fff;
	font-size: 0.82rem;
	line-height: 1;
}

.solamed-slider__pause:hover,
.solamed-slider__pause:focus-visible {
	border-color: #fff;
	background: var(--solamed-primary);
	color: #fff;
}

.solamed-slider__pause:focus-visible,
.solamed-slider__arrow:focus-visible,
.solamed-slider__dots button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.solamed-slider__dots {
	position: absolute;
	z-index: 5;
	left: 50%;
	bottom: 84px;
	display: flex;
	gap: 14px;
	transform: translateX(-50%);
}

.solamed-slider__dots button {
	width: 20px;
	height: 20px;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.solamed-slider__dots button.is-active {
	background: var(--solamed-accent);
}

.solamed-home-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(3, 32, 78, 0.96) 0%, rgba(4, 53, 120, 0.82) 42%, rgba(4, 53, 120, 0.08) 100%),
		radial-gradient(circle at 44% 22%, rgba(103, 193, 255, 0.2), transparent 24%);
	pointer-events: none;
}

.solamed-home-hero::after {
	content: "";
	position: absolute;
	right: -4vw;
	bottom: 18px;
	width: 62vw;
	height: 42px;
	border-radius: 999px 0 0 999px;
	background: linear-gradient(90deg, var(--solamed-accent), var(--solamed-primary));
	transform: rotate(-8deg);
	transform-origin: center;
	pointer-events: none;
}

.solamed-home-hero .elementor-container {
	position: relative;
	z-index: 1;
}

.solamed-home-hero h1 {
	color: #fff;
	font-size: clamp(2.6rem, 5.2vw, 4.9rem);
	line-height: 1.04;
	text-transform: uppercase;
}

.solamed-home-hero p {
	max-width: 580px;
	color: rgba(255, 255, 255, 0.94);
	font-size: 1.16rem;
}

.solamed-hero-features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin: 34px 0 32px;
}

.solamed-hero-features div {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 8px 12px;
	align-items: center;
	color: #fff;
}

.solamed-hero-features img {
	grid-row: span 2;
	width: 54px;
	height: 54px;
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	object-fit: contain;
}

.solamed-hero-features strong {
	font-size: 0.83rem;
	line-height: 1;
	text-transform: uppercase;
}

.solamed-hero-features span {
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.78rem;
	line-height: 1.35;
}

.solamed-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	align-items: center;
}

.solamed-hero-primary,
.solamed-hero-video {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	border-radius: 999px;
	font-weight: 800;
	text-transform: uppercase;
}

.solamed-hero-primary {
	gap: 14px;
	padding: 0 30px;
	background: var(--solamed-accent);
	color: #fff;
	box-shadow: 0 18px 35px rgba(121, 189, 42, 0.32);
}

.solamed-hero-primary:hover {
	color: #fff;
	background: #67aa21;
}

.solamed-hero-primary span {
	font-size: 2rem;
	line-height: 0;
}

.solamed-hero-video {
	gap: 12px;
	padding: 0 24px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	color: #fff;
}

.solamed-hero-video:hover {
	color: #fff;
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.solamed-hero-video .play {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid #fff;
	border-radius: 50%;
	font-size: 0.82rem;
}

.solamed-hero-dots {
	position: absolute;
	right: 25%;
	bottom: -330px;
	display: flex;
	gap: 12px;
}

.solamed-hero-dots span {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
}

.solamed-hero-dots .active {
	background: var(--solamed-accent);
}

.solamed-elementor-page .elementor-widget-form {
	padding: 24px;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	background: #fff;
	box-shadow: var(--solamed-shadow);
}

.solamed-elementor-page .elementor-field-group input,
.solamed-elementor-page .elementor-field-group select,
.solamed-elementor-page .elementor-field-group textarea {
	border-radius: 8px;
	border-color: var(--solamed-border);
}

.solamed-elementor-page .elementor-field-group label {
	color: var(--solamed-dark);
	font-weight: 700;
}

.solamed-elementor-page .elementor-button {
	border-radius: 999px;
	background: var(--solamed-accent);
	font-weight: 800;
	text-transform: uppercase;
}

.solamed-about-premium {
	padding: clamp(46px, 6vw, 86px) 0;
	background:
		linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.solamed-about-premium__shell {
	display: grid;
	grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 0.7fr) minmax(360px, 1.1fr);
	gap: clamp(28px, 3vw, 50px);
	align-items: center;
	width: min(1740px, calc(100% - 80px));
	margin: 0 auto;
	padding: clamp(34px, 4vw, 58px);
	border: 1px solid rgba(220, 230, 243, 0.86);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 24px 70px rgba(6, 36, 91, 0.12);
}

.solamed-about-premium__image img {
	width: 100%;
	aspect-ratio: 1.42 / 1;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: 0 18px 42px rgba(6, 36, 91, 0.12);
}

.solamed-about-premium__content h2 {
	margin-bottom: 26px;
	color: var(--solamed-primary);
	font-size: clamp(1.55rem, 2.4vw, 2.45rem);
	text-transform: uppercase;
}

.solamed-about-premium__content p {
	color: #18243c;
	font-size: clamp(1rem, 1vw, 1.13rem);
	line-height: 1.9;
}

.solamed-about-premium__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(22px, 2vw, 34px);
}

.solamed-about-premium__card {
	min-height: 360px;
	padding: clamp(28px, 3vw, 42px);
	border: 1px solid var(--solamed-border);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 16px 34px rgba(6, 36, 91, 0.07);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solamed-about-premium__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 50px rgba(6, 36, 91, 0.12);
}

.solamed-about-premium__card img {
	width: 88px;
	height: 88px;
	padding: 18px;
	border-radius: 50%;
	object-fit: contain;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.solamed-about-premium__card--vision img {
	background: radial-gradient(circle at 32% 28%, #8fd04d, #357f15);
}

.solamed-about-premium__card--mission img {
	background: radial-gradient(circle at 32% 28%, #2b61c9, #062f86);
}

.solamed-about-premium__card h3 {
	margin-top: 26px;
	margin-bottom: 18px;
	font-size: clamp(1.15rem, 1.5vw, 1.55rem);
	text-transform: uppercase;
}

.solamed-about-premium__card--vision h3 {
	color: #4b9722;
}

.solamed-about-premium__card--mission h3 {
	color: var(--solamed-primary);
}

.solamed-about-premium__card p {
	color: #1d2b45;
	font-size: 1.03rem;
	line-height: 1.75;
}

.solamed-solutions-premium {
	padding: clamp(48px, 6vw, 88px) 0;
	background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.solamed-solutions-premium__inner {
	width: min(1560px, calc(100% - 80px));
	margin: 0 auto;
}

.solamed-solutions-premium__header {
	margin-bottom: 34px;
}

.solamed-solutions-premium__header h2 {
	position: relative;
	display: inline-block;
	margin: 0;
	color: var(--solamed-primary);
	font-size: clamp(1.65rem, 2.6vw, 2.35rem);
	text-transform: uppercase;
}

.solamed-solutions-premium__header h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -14px;
	width: 58px;
	height: 4px;
	border-radius: 999px;
	background: var(--solamed-accent);
}

.solamed-solutions-premium__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(18px, 1.6vw, 28px);
}

.solamed-solution-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 24px;
	border: 1px solid var(--solamed-border);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 16px 34px rgba(6, 36, 91, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.solamed-solution-card:hover {
	border-color: rgba(121, 189, 42, 0.45);
	box-shadow: 0 24px 52px rgba(6, 36, 91, 0.12);
	transform: translateY(-5px);
}

.solamed-solution-card__top {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 14px;
	align-items: center;
	min-height: 86px;
	margin-bottom: 18px;
}

.solamed-solution-card__icon {
	width: 64px;
	height: 64px;
	padding: 11px;
	border: 1px solid rgba(6, 60, 137, 0.38);
	border-radius: 50%;
	object-fit: contain;
	background: #fff;
}

.solamed-solution-card__top h3 {
	margin: 0;
	color: var(--solamed-primary);
	font-size: clamp(0.92rem, 1vw, 1.08rem);
	line-height: 1.35;
	text-transform: uppercase;
}

.solamed-solution-card__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	margin-bottom: 22px;
	border-radius: 14px;
	object-fit: cover;
	box-shadow: 0 12px 24px rgba(6, 36, 91, 0.08);
}

.solamed-solution-card p {
	margin-bottom: 28px;
	color: #1d2b45;
	font-size: clamp(0.95rem, 1vw, 1.04rem);
	line-height: 1.85;
}

.solamed-solution-card__button {
	align-self: center;
	margin-top: auto;
	padding: 12px 26px;
	border: 1px solid var(--solamed-primary);
	border-radius: 999px;
	color: var(--solamed-primary);
	font-size: 0.86rem;
	font-weight: 800;
	text-transform: uppercase;
}

.solamed-solution-card__button:hover {
	background: var(--solamed-primary);
	color: #fff;
}

.solamed-native-solutions {
	background: #fff;
	padding: clamp(56px, 5.2vw, 86px) 0;
}

.solamed-native-solutions > .elementor-container {
	width: min(1810px, calc(100% - 96px));
	max-width: 1810px !important;
	flex-wrap: wrap;
	align-items: stretch;
	margin-right: auto;
	margin-left: auto;
}

.solamed-native-solutions .elementor-column {
	min-height: 0;
}

.solamed-native-solutions__heading {
	margin-bottom: clamp(36px, 3vw, 48px);
}

.solamed-native-solutions__heading .elementor-heading-title {
	position: relative;
	display: inline-block;
	margin: 0;
	color: var(--solamed-primary);
	font-size: clamp(1.8rem, 2.55vw, 2.55rem);
	line-height: 1.15;
	text-transform: uppercase;
}

.solamed-native-solutions__heading .elementor-heading-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -14px;
	width: 70px;
	height: 4px;
	border-radius: 999px;
	background: var(--solamed-accent);
}

.solamed-native-solutions .solamed-native-solution-card {
	flex: 0 0 20%;
	width: 20% !important;
	max-width: 20%;
	min-width: 0;
	padding: 0 13px 26px;
}

.solamed-native-solution-card > .elementor-widget-wrap {
	display: grid !important;
	grid-template-columns: 70px minmax(0, 1fr);
	grid-template-rows: minmax(86px, auto) auto 1fr auto;
	column-gap: 16px;
	row-gap: 20px;
	align-content: start;
	min-height: 100%;
	min-width: 0;
	padding: 30px clamp(20px, 1.45vw, 28px) 28px !important;
	border: 1px solid #dfe7f2;
	border-radius: 18px;
	background: #fff;
	box-shadow: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.solamed-native-solution-card:hover > .elementor-widget-wrap {
	border-color: rgba(6, 60, 137, 0.22);
	box-shadow: 0 18px 40px rgba(6, 36, 91, 0.09);
	transform: translateY(-3px);
}

.solamed-native-solution-icon {
	grid-column: 1;
	grid-row: 1;
	width: 66px !important;
	max-width: 66px;
	margin: 0 !important;
	align-self: center;
}

.solamed-native-solution-icon img {
	width: 66px;
	height: 66px;
	padding: 12px;
	border: 1px solid rgba(6, 60, 137, 0.38);
	border-radius: 50%;
	object-fit: contain;
	background: #fff;
}

.solamed-native-solution-title {
	grid-column: 2;
	grid-row: 1;
	align-self: center;
	width: 100% !important;
	margin: 0 !important;
}

.solamed-native-solution-title .elementor-heading-title {
	margin: 0;
	color: var(--solamed-primary);
	font-size: clamp(1rem, 1.02vw, 1.2rem);
	line-height: 1.42;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.solamed-native-solution-image {
	grid-column: 1 / -1;
	grid-row: 2;
	width: 100% !important;
	margin: 0 !important;
}

.solamed-native-solution-image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 14px;
	object-fit: cover;
	box-shadow: none;
}

.solamed-native-solution-text {
	grid-column: 1 / -1;
	grid-row: 3;
	width: 100% !important;
	margin: 0 !important;
}

.solamed-native-solution-text p {
	margin: 0;
	color: #1d2b45;
	font-size: clamp(1rem, 1.03vw, 1.12rem);
	line-height: 1.85;
}

.solamed-native-solution-button {
	grid-column: 1 / -1;
	grid-row: 4;
	width: 100% !important;
	margin: 8px 0 0 !important;
	align-self: end;
}

.solamed-native-solution-button .elementor-button {
	width: 100%;
	max-width: 180px;
	min-width: 0;
	padding: 12px 27px;
	border: 1px solid var(--solamed-primary);
	border-radius: 999px;
	background: transparent;
	color: var(--solamed-primary);
	font-size: 0.86rem;
	font-weight: 800;
	text-transform: uppercase;
}

.solamed-native-solution-button .elementor-button:hover,
.solamed-native-solution-button .elementor-button:focus {
	background: var(--solamed-primary);
	color: #fff;
}

@media (max-width: 1280px) {
	.solamed-solutions-premium__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.solamed-native-solutions .solamed-native-solution-card {
		flex-basis: 33.333%;
		width: 33.333% !important;
		max-width: 33.333%;
	}
}

@media (max-width: 820px) {
	.solamed-solutions-premium__inner {
		width: min(100% - 28px, 1560px);
	}

	.solamed-native-solutions > .elementor-container {
		width: min(100% - 32px, 1810px);
	}

	.solamed-solutions-premium__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.solamed-native-solutions .solamed-native-solution-card {
		flex-basis: 50%;
		width: 50% !important;
		max-width: 50%;
		padding-right: 8px;
		padding-left: 8px;
	}
}

@media (max-width: 560px) {
	.solamed-solutions-premium__grid {
		grid-template-columns: 1fr;
	}

	.solamed-native-solutions .solamed-native-solution-card {
		flex-basis: 100%;
		width: 100% !important;
		max-width: 100%;
		padding-right: 0;
		padding-left: 0;
	}

	.solamed-native-solution-card > .elementor-widget-wrap {
		padding: 24px 22px !important;
	}
}

@media (max-width: 1180px) {
	.solamed-about-premium__shell {
		grid-template-columns: 1fr 1fr;
	}

	.solamed-about-premium__cards {
		grid-column: 1 / -1;
	}
}

@media (max-width: 760px) {
	.solamed-about-premium__shell {
		width: min(100% - 28px, 1740px);
		grid-template-columns: 1fr;
		padding: 24px;
		border-radius: 18px;
	}

	.solamed-about-premium__cards {
		grid-template-columns: 1fr;
	}

	.solamed-about-premium__card {
		min-height: auto;
	}
}

@media (max-width: 980px) {
	.solamed-hero-features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.solamed-slider {
		min-height: 760px;
	}

	.solamed-slider__content {
		width: min(100% - 48px, 1560px);
		padding-top: 82px;
	}

	.solamed-slider__arrow {
		top: auto;
		bottom: 26px;
		width: 52px;
		height: 52px;
		font-size: 2.4rem;
	}

	.solamed-slider__dots {
		bottom: 44px;
	}

	.solamed-slider__pause {
		left: calc(50% - 106px);
		bottom: 33px;
	}
}

@media (max-width: 560px) {
	.solamed-home-hero h1 {
		font-size: 2.15rem;
	}

	.solamed-hero-features {
		grid-template-columns: 1fr;
	}

	.solamed-hero-primary,
	.solamed-hero-video {
		width: 100%;
	}

	.solamed-slider {
		min-height: 840px;
	}

	.solamed-slider__content {
		width: min(100% - 28px, 1560px);
	}

	.solamed-slider__content h1,
	.solamed-slider__content h2 {
		font-size: 2.1rem;
	}

	.solamed-slider__content p {
		font-size: 1rem;
	}

	.solamed-slider__arrow--prev {
		left: 14px;
	}

	.solamed-slider__arrow--next {
		right: 14px;
	}
}

.solamed-elementor-page .elementor-widget-image img {
	border-radius: var(--solamed-radius-sm);
	box-shadow: 0 8px 22px rgba(6, 36, 91, 0.08);
}

.solamed-elementor-page .elementor-widget-image-box {
	height: 100%;
	padding: 18px;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	background: #fff;
	box-shadow: var(--solamed-shadow-sm);
	transition: all var(--solamed-transition);
}

.solamed-elementor-page .elementor-widget-image-box:hover {
	box-shadow: var(--solamed-shadow);
	transform: translateY(-3px);
}

.solamed-elementor-page .elementor-widget-image-box img {
	aspect-ratio: 16 / 10;
	width: 100%;
	object-fit: cover;
	border-radius: var(--solamed-radius-sm);
}

.solamed-elementor-page .elementor-image-box-title {
	color: var(--solamed-primary);
	font-size: 0.95rem;
	font-weight: 800;
	text-transform: uppercase;
}

.solamed-elementor-page .elementor-image-box-description {
	color: var(--solamed-muted);
	font-size: 0.88rem;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.sol-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.sol-animate.sol-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.solamed-home-slide,
	.sol-animate {
		transition: none;
	}

	.solamed-slider:not(.solamed-slider--js-ready) .solamed-home-slide {
		animation: none;
		opacity: 0;
	}

	.solamed-slider:not(.solamed-slider--js-ready) .solamed-home-slide.is-active {
		opacity: 1;
	}

	.sol-animate {
		opacity: 1;
		transform: none;
	}
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ─── Tablet Landscape ─── */
@media (max-width: 1100px) {
	.primary-navigation a {
		font-size: 0.75rem;
		padding-inline: 4px;
	}

	.solution-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.values-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.value-item:nth-child(3) {
		border-right: 0;
	}

	.value-item:nth-child(n+4) {
		border-top: 1px solid var(--solamed-border);
	}

	.why-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.region-advantages {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ─── Tablet Portrait ─── */
@media (max-width: 860px) {
	.site-header__inner {
		width: min(100% - 24px, 1560px);
		min-height: 80px;
	}

	.nav-toggle {
		display: flex;
	}

	.primary-navigation {
		position: fixed;
		inset: 80px 12px auto 12px;
		display: none;
		padding: 16px;
		border: 1px solid var(--solamed-border);
		border-radius: var(--solamed-radius);
		background: #fff;
		box-shadow: var(--solamed-shadow);
		max-height: calc(100vh - 100px);
		overflow-y: auto;
	}

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

	.primary-navigation ul {
		display: grid;
		gap: 2px;
	}

	.primary-navigation a {
		padding: 14px 16px;
		font-size: 0.88rem;
		border-bottom: 0;
		border-radius: var(--solamed-radius-sm);
	}

	.primary-navigation a:hover {
		background: var(--solamed-bg);
	}

	/* Hero */
	.hero,
	.hero__content {
		min-height: 520px;
	}

	.hero__content {
		padding: 64px 0 120px;
	}

	.hero__media {
		background:
			linear-gradient(180deg, rgba(6, 36, 91, 0.94) 0%, rgba(6, 60, 137, 0.8) 60%, rgba(6, 60, 137, 0.5) 100%),
			url("../images/solamed-hero-reference.png") center / cover no-repeat;
	}

	.hero__features-grid {
		flex-wrap: wrap;
	}

	.hero__feature {
		flex: 1 1 45%;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding: 10px 16px;
	}

	/* Grids to single column */
	.split-layout,
	.engagement-layout,
	.region-layout,
	.projects-layout {
		grid-template-columns: 1fr;
	}

	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.value-item {
		border-right: 0;
		border-bottom: 1px solid var(--solamed-border);
	}

	.solution-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.why-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.region-advantages {
		grid-template-columns: repeat(2, 1fr);
	}

	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mini-card-grid {
		grid-template-columns: 1fr;
	}

	.cta-box {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ─── Mobile ─── */
@media (max-width: 560px) {
	.container,
	.content-narrow {
		width: min(100% - 24px, var(--solamed-container));
	}

	.site-brand__text strong {
		font-size: 1.25rem;
	}

	.site-brand__text small {
		font-size: 0.6rem;
	}

	.hero h1 {
		font-size: 1.85rem;
	}

	.hero p {
		font-size: 0.95rem;
	}

	.hero__actions {
		flex-direction: column;
	}

	.hero__actions .button {
		width: 100%;
		justify-content: center;
	}

	.hero__features-grid {
		flex-direction: column;
	}

	.hero__feature {
		flex: 1 1 100%;
	}

	.values-grid,
	.solution-grid {
		grid-template-columns: 1fr;
	}

	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.region-advantages {
		grid-template-columns: repeat(2, 1fr);
	}

	.post-grid {
		grid-template-columns: 1fr;
	}

	.values-band {
		margin-top: -40px;
	}

	.section {
		padding: 36px 0;
	}

	.why-section .container {
		padding: 24px;
	}

	.projects-layout {
		padding: 24px;
	}
}

/* ==========================================================================
   NOUVELLE PAGE D'ACCUEIL - MAQUETTE COMPLÈTE
   ========================================================================== */
.section__title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800;
	color: var(--solamed-dark);
	margin-bottom: 2.2rem;
	text-transform: uppercase;
	position: relative;
}

.section__title::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: var(--solamed-accent);
	margin-top: 10px;
	border-radius: 2px;
}

/* ABOUT SECTION */
.about-section {
	padding: 80px 0;
	background: #fff;
}

.about-layout {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr 1fr;
	gap: 40px;
	align-items: center;
}

.about-content h2.section__title {
	margin-bottom: 24px;
}

.about-content p {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--solamed-muted);
	margin-bottom: 20px;
}

.about-image {
	position: relative;
	border-radius: var(--solamed-radius);
	overflow: hidden;
	box-shadow: var(--solamed-shadow);
	transition: transform var(--solamed-transition), box-shadow var(--solamed-transition);
}

.about-image:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 45px rgba(6, 36, 91, 0.16);
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about-cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.mini-card {
	background: #fff;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	padding: 28px;
	box-shadow: var(--solamed-shadow-sm);
	transition: transform var(--solamed-transition), box-shadow var(--solamed-transition), border-color var(--solamed-transition);
}

.mini-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--solamed-shadow);
	border-color: rgba(121, 189, 42, 0.35);
}

.mini-card__icon {
	color: var(--solamed-accent);
	margin-bottom: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(121, 189, 42, 0.08);
	border-radius: 50%;
}

.mini-card h3 {
	font-size: 1.05rem;
	color: var(--solamed-primary);
	margin-bottom: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.mini-card p {
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--solamed-muted);
	margin: 0;
}

/* SOLUTIONS SECTION */
.solutions-section {
	padding: 80px 0;
	background: var(--solamed-bg);
}

.solution-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.solution-card {
	background: #fff;
	border-radius: var(--solamed-radius);
	overflow: hidden;
	box-shadow: var(--solamed-shadow-sm);
	display: flex;
	flex-direction: column;
	border: 1px solid var(--solamed-border);
	padding: 16px;
	transition: transform var(--solamed-transition), box-shadow var(--solamed-transition), border-color var(--solamed-transition);
}

.solution-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--solamed-shadow);
	border-color: rgba(121, 189, 42, 0.45);
}

.solution-card__header {
	padding: 10px 0 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
}

.solution-card__icon {
	color: var(--solamed-accent);
	display: inline-flex;
}

.solution-card__header h3 {
	font-size: 0.88rem;
	color: var(--solamed-primary);
	margin: 0;
	line-height: 1.35;
	font-weight: 800;
	text-transform: uppercase;
}

.solution-card__image {
	border-radius: var(--solamed-radius-sm);
	overflow: hidden;
	aspect-ratio: 16 / 10;
	margin-bottom: 16px;
}

.solution-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--solamed-transition);
}

.solution-card:hover .solution-card__image img {
	transform: scale(1.05);
}

.solution-card__body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.solution-card__body p {
	font-size: 0.82rem;
	line-height: 1.55;
	color: var(--solamed-muted);
	margin-bottom: 20px;
	flex-grow: 1;
}

.solution-card__body .button {
	width: 100%;
	text-align: center;
	padding: 10px 18px;
	font-size: 0.72rem;
	min-height: 38px;
}

/* TRIPLE BLOCK SECTION (CANCER, REGION, WHY) */
.triple-block-section {
	padding: 80px 0;
	background: #fff;
}

.triple-block-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	align-items: stretch;
}

.triple-column {
	background: #fff;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	padding: 36px 30px;
	box-shadow: var(--solamed-shadow-sm);
	display: flex;
	flex-direction: column;
	transition: transform var(--solamed-transition), box-shadow var(--solamed-transition);
}

.triple-column:hover {
	transform: translateY(-4px);
	box-shadow: var(--solamed-shadow);
}

.triple-column h2.section__title {
	font-size: 1.35rem;
	line-height: 1.3;
	margin-bottom: 24px;
}

.triple-column h2.section__title::after {
	width: 45px;
	height: 3px;
	margin-top: 8px;
}

/* Column 1: Cancer */
.cancer-images-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 12px;
	height: 180px;
	margin-bottom: 24px;
}

.cancer-img-main {
	grid-column: 1;
	grid-row: 1 / 3;
}

.cancer-img-sub {
	grid-column: 2;
	grid-row: 1;
}

.cancer-img-sub-2 {
	grid-column: 2;
	grid-row: 2;
}

.cancer-images-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--solamed-radius-sm);
}

.cancer-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
}

.cancer-list li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 12px;
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--solamed-dark);
}

.cancer-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 2px;
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #7b2cbf; /* Cancer ribbon purple color */
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
}

.cancer-cta-box {
	background: linear-gradient(135deg, #7b2cbf, #5a1fa0);
	color: #fff;
	padding: 20px;
	border-radius: var(--solamed-radius-sm);
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: auto;
}

.cancer-cta-box__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	flex-shrink: 0;
}

.cancer-cta-box p {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.4;
}

/* Column 2: Region */
.region-map-container {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 15px;
	align-items: center;
	margin-bottom: 24px;
}

.region-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.region-list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	font-size: 0.88rem;
	line-height: 1.3;
	font-weight: 700;
	color: var(--solamed-dark);
}

.region-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 1px;
	display: grid;
	place-items: center;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--solamed-accent);
	color: #fff;
	font-size: 0.55rem;
	font-weight: 700;
}

.region-map-img {
	width: 100%;
	max-height: 160px;
	object-fit: contain;
	filter: drop-shadow(0 8px 16px rgba(6, 36, 91, 0.08));
}

.region-advantages-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: auto;
}

.region-adv-item {
	background: var(--solamed-bg);
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius-sm);
	padding: 14px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
}

.region-adv-item__icon {
	color: var(--solamed-accent);
	display: inline-flex;
}

.region-adv-item h3 {
	font-size: 0.72rem;
	text-transform: uppercase;
	margin: 0;
	color: var(--solamed-dark);
	line-height: 1.25;
	font-weight: 800;
}

/* Column 3: Why Choose */
.why-expertises-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.why-expertise-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.why-expertise-item__icon {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(121, 189, 42, 0.08);
	border: 1px solid rgba(121, 189, 42, 0.25);
	color: var(--solamed-accent);
	flex-shrink: 0;
}

.why-expertise-item__content h3 {
	font-size: 0.88rem;
	color: var(--solamed-dark);
	margin: 0 0 4px;
	font-weight: 800;
}

.why-expertise-item__content p {
	font-size: 0.78rem;
	color: var(--solamed-muted);
	margin: 0;
	line-height: 1.45;
}

/* PROJECTS & NEWS SECTION */
.projects-news-section {
	padding: 80px 0;
	background: var(--solamed-bg);
}

.projects-news-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 30px;
	align-items: stretch;
}

.projects-block,
.actus-block {
	background: #fff;
	padding: 36px 30px;
	border-radius: var(--solamed-radius);
	border: 1px solid var(--solamed-border);
	box-shadow: var(--solamed-shadow-sm);
	display: flex;
	flex-direction: column;
}

.projects-block:hover,
.actus-block:hover {
	box-shadow: var(--solamed-shadow);
}

.projects-block h2.section__title,
.actus-block h2.section__title {
	font-size: 1.35rem;
	margin-bottom: 24px;
}

.projects-block h2.section__title::after,
.actus-block h2.section__title::after {
	width: 45px;
	height: 3px;
	margin-top: 8px;
}

.projects-content-wrapper {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-top: 10px;
}

.projects-list {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
}

.projects-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--solamed-dark);
}

.projects-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 2px;
	display: grid;
	place-items: center;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--solamed-accent);
	color: #fff;
	font-size: 0.55rem;
	font-weight: 700;
}

.projects-plant-img {
	flex: 0.8;
	border-radius: var(--solamed-radius-sm);
	overflow: hidden;
	box-shadow: var(--solamed-shadow-sm);
}

.projects-plant-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.actus-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	flex-wrap: wrap;
	gap: 12px;
}

.actus-header h2.section__title {
	margin-bottom: 0;
}

.actus-link {
	font-size: 0.78rem;
	font-weight: 800;
	color: var(--solamed-primary);
	text-decoration: none;
	transition: color var(--solamed-transition);
}

.actus-link:hover {
	color: var(--solamed-accent);
}

.actus-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.actu-card {
	display: flex;
	gap: 16px;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius-sm);
	overflow: hidden;
	background: #fff;
	transition: transform var(--solamed-transition), box-shadow var(--solamed-transition), border-color var(--solamed-transition);
}

.actu-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--solamed-shadow-sm);
	border-color: rgba(121, 189, 42, 0.35);
}

.actu-card__image {
	width: 120px;
	overflow: hidden;
	flex-shrink: 0;
}

.actu-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--solamed-transition);
}

.actu-card:hover .actu-card__image img {
	transform: scale(1.05);
}

.actu-card__body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	min-width: 0;
}

.actu-card__tag {
	display: inline-block;
	align-self: flex-start;
	font-size: 0.62rem;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: 4px;
	margin-bottom: 8px;
	letter-spacing: 0.03em;
}

.tag--sante {
	background: rgba(123, 44, 191, 0.1);
	color: #7b2cbf;
}

.tag--energie {
	background: rgba(121, 189, 42, 0.1);
	color: #4d941d;
}

.tag--mobilite {
	background: rgba(6, 60, 137, 0.1);
	color: var(--solamed-primary);
}

.tag--innovation {
	background: rgba(200, 100, 30, 0.1);
	color: #c8641e;
}

.tag--formation {
	background: rgba(40, 120, 180, 0.1);
	color: #2878b4;
}

.actu-card h3 {
	font-size: 0.88rem;
	color: var(--solamed-dark);
	margin: 0 0 6px 0;
	line-height: 1.35;
	font-weight: 800;
}

.actu-card h3 a {
	color: var(--solamed-dark);
}

.actu-card h3 a:hover {
	color: var(--solamed-accent);
}

.actu-card p {
	font-size: 0.78rem;
	color: var(--solamed-muted);
	margin: 0 0 8px 0;
	line-height: 1.4;
}

.actu-card__date {
	font-size: 0.7rem;
	color: var(--solamed-muted);
	font-weight: 600;
}

/* PRE-FOOTER CALL TO ACTION (Bannière bleu foncé) */
.pre-footer-cta {
	background: linear-gradient(135deg, var(--solamed-dark), var(--solamed-primary));
	color: #fff;
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

.pre-footer-cta::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: rgba(121, 189, 42, 0.08);
	pointer-events: none;
}

.pre-footer-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.pre-footer-cta__text-left {
	flex: 1 1 350px;
}

.pre-footer-cta__text-left h2 {
	color: #fff;
	font-size: clamp(1.4rem, 2.5vw, 1.85rem);
	line-height: 1.25;
	margin: 0;
	font-weight: 800;
	text-transform: uppercase;
}

.pre-footer-cta__text-center {
	flex: 1.2 1 300px;
}

.pre-footer-cta__text-center p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

.pre-footer-cta__actions-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 15px;
	flex: 0 0 auto;
}

.pre-footer-cta__phone {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pre-footer-cta__phone .phone-icon {
	color: var(--solamed-accent);
}

.pre-footer-cta__phone a {
	color: #fff;
	font-weight: 700;
	font-size: 1.1rem;
	transition: color var(--solamed-transition);
}

.pre-footer-cta__phone a:hover {
	color: var(--solamed-accent);
}

/* RESPONSIVE FOR NEW SECTIONS */
@media (max-width: 1100px) {
	.about-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.about-image {
		max-width: 500px;
		margin: 0 auto;
	}

	.solution-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.triple-block-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-column {
		grid-column: span 2;
	}

	.projects-news-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.solution-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.triple-block-grid {
		grid-template-columns: 1fr;
	}

	.why-column {
		grid-column: span 1;
	}

	.projects-content-wrapper {
		flex-direction: column;
		align-items: stretch;
	}

	.projects-plant-img {
		max-width: 400px;
		margin: 20px auto 0;
	}

	.pre-footer-cta__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.pre-footer-cta__actions-right {
		align-items: flex-start;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.solution-grid {
		grid-template-columns: 1fr;
	}

	.actu-card {
		flex-direction: column;
	}

	.actu-card__image {
		width: 100%;
		height: 150px;
	}
}

/* ==========================================================================
   ACTUS CARDS GRID (4 colonnes, page d'accueil)
   ========================================================================== */
.actus-cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.actus-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	overflow: hidden;
	transition: transform var(--solamed-transition), box-shadow var(--solamed-transition);
}

.actus-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--solamed-shadow);
}

.actus-card__image {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--solamed-bg);
}

.actus-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--solamed-transition);
}

.actus-card:hover .actus-card__image img {
	transform: scale(1.05);
}

.actus-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 18px 20px 22px;
}

.actus-card__body .actu-card__tag {
	margin-bottom: 10px;
}

.actus-card__body h3 {
	font-size: 0.92rem;
	margin: 0 0 8px;
	line-height: 1.35;
}

.actus-card__body h3 a {
	color: var(--solamed-dark);
	text-decoration: none;
}

.actus-card__body h3 a:hover {
	color: var(--solamed-accent);
}

.actus-card__body p {
	font-size: 0.8rem;
	color: var(--solamed-muted);
	line-height: 1.5;
	margin: 0 0 12px;
	flex: 1;
}

.actus-card__body .actu-card__date {
	margin-top: auto;
}

@media (max-width: 1024px) {
	.actus-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.actus-cards-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-inline: auto;
	}
}

/* ==========================================================================
   ACTUS GRILLE 3 COLONNES (page Actualités)
   ========================================================================== */
.actus-grille {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.actus-grille .actus-card__image-link {
	display: block;
	text-decoration: none;
	position: relative;
}

.actus-grille .actus-card__image {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--solamed-bg);
}

.actus-grille .actus-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.actus-grille .actus-card:hover .actus-card__image img {
	transform: scale(1.08);
}

.actus-grille .actus-card__tag {
	position: absolute;
	bottom: 10px;
	left: 10px;
	display: inline-block;
	font-size: 0.62rem;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 4px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	z-index: 2;
}

.actus-grille .actus-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 20px 22px 24px;
}

.actus-grille .actus-card__body h3 {
	font-size: 0.95rem;
	margin: 0 0 10px;
	line-height: 1.35;
}

.actus-grille .actus-card__body h3 a {
	color: var(--solamed-dark);
	text-decoration: none;
	transition: color var(--solamed-transition);
}

.actus-grille .actus-card__body h3 a:hover {
	color: var(--solamed-accent);
}

.actus-grille .actus-card__body p {
	font-size: 0.82rem;
	color: var(--solamed-muted);
	line-height: 1.55;
	margin: 0 0 14px;
	flex: 1;
}

.actus-grille .actus-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--solamed-border);
}

.actus-grille .actus-card__date {
	font-size: 0.72rem;
	color: var(--solamed-muted);
	font-weight: 600;
}

.actus-grille .actus-card__more {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--solamed-primary);
	text-decoration: none;
	transition: color var(--solamed-transition);
}

.actus-grille .actus-card__more:hover {
	color: var(--solamed-accent);
}

.actus-pagination {
	text-align: center;
	margin-top: 48px;
}

.actus-pagination ul {
	display: inline-flex;
	list-style: none;
	gap: 6px;
	padding: 0;
	margin: 0;
}

.actus-pagination li {
	display: inline-block;
}

.actus-pagination a,
.actus-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--solamed-dark);
	background: #fff;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius-sm);
	text-decoration: none;
	transition: all var(--solamed-transition);
}

.actus-pagination a:hover {
	border-color: var(--solamed-accent);
	color: var(--solamed-accent);
}

.actus-pagination .current {
	background: var(--solamed-primary);
	color: #fff;
	border-color: var(--solamed-primary);
}

@media (max-width: 1024px) {
	.actus-grille {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.actus-grille {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-inline: auto;
	}
}

/* ==========================================================================
   SECTIONS PREMIUM ELEMENTOR - MODELES SOLAMED
   ========================================================================== */
/* Le footer partagé du thème remplace l'ancienne copie intégrée à Elementor. */
body.home .solamed-native-footer,
body.page-template-elementor-full-width .solamed-native-footer {
	display: none !important;
}

.solamed-native-values,
.solamed-native-region,
.solamed-native-projects,
.solamed-native-news,
.solamed-native-choose {
	background: #fff;
}

.solamed-native-values > .elementor-container,
.solamed-native-region > .elementor-container,
.solamed-native-projects > .elementor-container,
.solamed-native-news > .elementor-container,
.solamed-native-choose > .elementor-container {
	width: min(1900px, calc(100% - 64px));
	max-width: 1900px !important;
	flex-wrap: wrap;
	margin-right: auto;
	margin-left: auto;
}

.solamed-native-region > .elementor-container,
.solamed-native-projects > .elementor-container,
.solamed-native-news > .elementor-container,
.solamed-native-choose > .elementor-container {
	padding: clamp(42px, 4.2vw, 72px);
	border: 1px solid rgba(7, 34, 82, 0.1);
	border-radius: 30px;
	background: #fff;
	box-shadow: 0 24px 56px rgba(6, 36, 91, 0.1);
}

.solamed-native-values {
	background:
		radial-gradient(circle at 90% 12%, rgba(18, 108, 205, 0.3), transparent 18%),
		radial-gradient(circle at 8% 52%, rgba(18, 108, 205, 0.18), transparent 20%),
		linear-gradient(135deg, #041d4a 0%, #063c89 100%);
}

.solamed-native-values > .elementor-container {
	align-items: stretch;
}

.solamed-native-values-heading {
	margin-bottom: clamp(42px, 4vw, 64px);
}

.solamed-native-values-heading .elementor-heading-title {
	color: #fff;
	font-size: clamp(2.35rem, 4vw, 4rem);
	line-height: 1.05;
	text-transform: uppercase;
}

.solamed-native-values-item {
	width: 20% !important;
	border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.solamed-native-values-item:last-child {
	border-right: 0;
}

.solamed-native-values-item > .elementor-widget-wrap {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	padding: 0 clamp(20px, 2.2vw, 44px) !important;
	text-align: center;
}

.solamed-native-values-icon img {
	width: clamp(96px, 7vw, 132px);
	height: clamp(96px, 7vw, 132px);
	padding: 18px;
	border: 3px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	object-fit: contain;
}

.solamed-native-values-title .elementor-heading-title {
	margin-top: 28px;
	margin-bottom: 20px;
	color: var(--solamed-accent);
	font-size: clamp(1.25rem, 1.6vw, 1.9rem);
	text-transform: uppercase;
}

.solamed-native-values-text p {
	margin: 0;
	color: rgba(255, 255, 255, 0.94);
	font-size: clamp(1.03rem, 1.35vw, 1.55rem);
	line-height: 1.55;
}

.solamed-native-region-heading,
.solamed-native-projects-heading,
.solamed-native-news-heading,
.solamed-native-choose-heading {
	margin-bottom: clamp(34px, 3.2vw, 54px);
}

.solamed-native-region-heading .elementor-heading-title,
.solamed-native-projects-heading .elementor-heading-title,
.solamed-native-news-heading .elementor-heading-title,
.solamed-native-choose-heading .elementor-heading-title {
	color: var(--solamed-primary);
	font-size: clamp(2.05rem, 3vw, 3.3rem);
	line-height: 1.08;
	text-transform: uppercase;
}

.solamed-native-choose-heading .elementor-heading-title::after {
	content: "";
	display: block;
	width: 108px;
	height: 7px;
	margin-top: 26px;
	border-radius: 999px;
	background: var(--solamed-accent);
}

.solamed-native-region-list {
	width: 36% !important;
}

.solamed-native-region-map-column {
	width: 64% !important;
}

.solamed-native-region-list > .elementor-widget-wrap {
	align-content: center;
	padding-right: clamp(24px, 4vw, 70px) !important;
}

.solamed-native-region-country {
	margin-bottom: clamp(18px, 2.1vw, 30px) !important;
}

.solamed-native-region-country .elementor-icon-box-wrapper,
.solamed-native-project-point .elementor-icon-box-wrapper {
	display: flex;
	align-items: center;
	gap: 24px;
}

.solamed-native-region-country .elementor-icon,
.solamed-native-project-point .elementor-icon {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #73c636 0%, #3f8d16 72%);
	color: #fff;
	font-size: 17px;
	box-shadow: 0 8px 16px rgba(63, 141, 22, 0.22);
}

.solamed-native-region-country .elementor-icon-box-title,
.solamed-native-region-country .elementor-icon-box-title a {
	margin: 0;
	color: #101a3d;
	font-size: clamp(1.35rem, 1.65vw, 2rem);
	line-height: 1.1;
}

.solamed-native-region-map img {
	width: min(760px, 100%);
	max-height: 620px;
	object-fit: contain;
}

.solamed-native-region-divider-column {
	width: 100% !important;
}

.solamed-native-region-divider {
	display: block;
	width: 100%;
	height: 1px;
	margin: clamp(24px, 3vw, 46px) 0 34px;
	background: rgba(7, 34, 82, 0.16);
}

.solamed-native-region-advantage {
	width: 25% !important;
	border-right: 1px solid rgba(7, 34, 82, 0.18);
}

.solamed-native-region-advantage:last-child {
	border-right: 0;
}

.solamed-native-region-advantage > .elementor-widget-wrap {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.solamed-native-region-advantage-icon .elementor-icon {
	display: grid;
	place-items: center;
	width: 78px;
	height: 78px;
	border: 1px solid rgba(121, 189, 42, 0.35);
	border-radius: 50%;
	background: rgba(121, 189, 42, 0.15);
	color: #4d941d;
	font-size: 36px;
}

.solamed-native-region-advantage-title .elementor-heading-title {
	color: var(--solamed-primary);
	font-size: clamp(1rem, 1.2vw, 1.45rem);
	line-height: 1.25;
	text-transform: uppercase;
}

.solamed-native-region-advantage-title .elementor-heading-title span,
.solamed-native-region-advantage-title .elementor-heading-title br + * {
	color: #4d941d;
}

.solamed-native-projects-content {
	width: 54% !important;
}

.solamed-native-projects-media {
	width: 46% !important;
}

.solamed-native-projects-content > .elementor-widget-wrap {
	align-content: center;
	padding-right: clamp(28px, 4vw, 84px) !important;
}

.solamed-native-project-point {
	margin-bottom: clamp(20px, 2.25vw, 34px) !important;
}

.solamed-native-project-point .elementor-icon {
	width: 44px;
	height: 44px;
	font-size: 20px;
}

.solamed-native-project-point .elementor-icon-box-title,
.solamed-native-project-point .elementor-icon-box-title a {
	color: #101a3d;
	font-size: clamp(1.16rem, 1.45vw, 1.72rem);
	font-weight: 500;
	line-height: 1.35;
}

.solamed-native-projects-image img {
	width: 100%;
	aspect-ratio: 1.48 / 1;
	border-radius: 24px;
	object-fit: cover;
}

.solamed-native-news-heading-column {
	width: 58% !important;
}

.solamed-native-news-link-column {
	width: 42% !important;
}

.solamed-native-news-link .elementor-button {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--solamed-primary);
	font-size: clamp(1rem, 1.15vw, 1.35rem);
	font-weight: 800;
	text-transform: uppercase;
}

.solamed-native-news-link .elementor-button::after {
	content: "→";
	margin-left: 16px;
	font-size: 1.25em;
}

.solamed-native-news-card {
	width: 25% !important;
	padding: 0 18px 20px;
}

.solamed-native-news-card > .elementor-widget-wrap {
	display: flex !important;
	flex-direction: column;
	min-height: 100%;
	padding: 0 0 28px !important;
	overflow: hidden;
	border: 1px solid rgba(7, 34, 82, 0.12);
	border-radius: 20px;
	background: #fff;
}

.solamed-native-news-image {
	margin: 0 !important;
}

.solamed-native-news-image img {
	width: 100%;
	aspect-ratio: 1.58 / 1;
	border-radius: 18px 18px 0 0;
	object-fit: cover;
}

.solamed-native-news-title {
	margin: 24px 28px 28px !important;
}

.solamed-native-news-title .elementor-heading-title {
	color: var(--solamed-primary);
	font-size: clamp(1.08rem, 1.3vw, 1.55rem);
	line-height: 1.42;
}

.solamed-native-news-date {
	margin: auto 28px 0 !important;
}

.solamed-native-news-date .elementor-icon-box-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.solamed-native-news-date .elementor-icon {
	color: var(--solamed-accent);
	font-size: 22px;
}

.solamed-native-news-date .elementor-icon-box-title,
.solamed-native-news-date .elementor-icon-box-title a {
	color: var(--solamed-primary);
	font-size: clamp(0.95rem, 1.1vw, 1.18rem);
	font-weight: 500;
}

.solamed-native-choose-item {
	width: 16.666% !important;
	border-right: 2px dotted rgba(7, 34, 82, 0.2);
}

.solamed-native-choose-item:nth-last-child(2) {
	border-right: 0;
}

.solamed-native-choose-item > .elementor-widget-wrap {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	min-height: 280px;
	padding: 0 clamp(14px, 1.6vw, 30px) !important;
	text-align: center;
}

.solamed-native-choose-icon img {
	width: clamp(84px, 6vw, 112px);
	height: clamp(84px, 6vw, 112px);
	object-fit: contain;
}

.solamed-native-choose-title .elementor-heading-title {
	color: var(--solamed-primary);
	font-size: clamp(1.08rem, 1.35vw, 1.75rem);
	line-height: 1.55;
}

.solamed-native-choose-action {
	width: 100% !important;
	margin-top: 34px;
}

.solamed-native-choose-button .elementor-button {
	min-width: min(480px, 100%);
	padding: 18px 70px;
	border-radius: 999px;
	background: linear-gradient(135deg, #79bd2a 0%, #4f9717 100%);
	box-shadow: 0 14px 24px rgba(79, 151, 23, 0.2);
	color: #fff;
	font-size: clamp(1.05rem, 1.25vw, 1.45rem);
	font-weight: 800;
	text-transform: uppercase;
}

.solamed-native-choose-button .elementor-button::after {
	content: "›";
	margin-left: 28px;
	font-size: 1.8em;
	line-height: 0;
}

.solamed-native-footer {
	min-height: 640px;
	background: linear-gradient(180deg, #031a49 0%, #062d70 100%);
	color: #fff;
	overflow: hidden;
}

.solamed-native-footer > .elementor-container {
	width: min(1870px, calc(100% - 176px));
	max-width: 1870px !important;
	flex-wrap: wrap;
	align-items: stretch;
	margin-right: auto;
	margin-left: auto;
}

.solamed-native-footer-brand,
.solamed-native-footer-contact-column,
.solamed-native-footer-join,
.solamed-native-footer-socials {
	min-height: 270px;
	border-right: 1px solid rgba(20, 111, 204, 0.58);
}

.solamed-native-footer-socials {
	border-right: 0;
}

.solamed-native-footer-brand > .elementor-widget-wrap,
.solamed-native-footer-contact-column > .elementor-widget-wrap,
.solamed-native-footer-join > .elementor-widget-wrap,
.solamed-native-footer-socials > .elementor-widget-wrap {
	align-content: center;
	align-items: center;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.solamed-native-footer-brand > .elementor-widget-wrap {
	padding-left: 0 !important;
	padding-right: clamp(32px, 3.8vw, 86px) !important;
}

.solamed-native-footer-contact-column > .elementor-widget-wrap,
.solamed-native-footer-join > .elementor-widget-wrap {
	padding-left: clamp(42px, 3.6vw, 76px) !important;
	padding-right: clamp(32px, 3.1vw, 66px) !important;
}

.solamed-native-footer-logo {
	margin-bottom: 0 !important;
}

.solamed-native-footer-logo img {
	display: block;
	width: min(405px, 100%);
	height: auto;
}

.solamed-native-footer-heading {
	margin-bottom: 22px !important;
}

.solamed-native-footer-heading .elementor-heading-title {
	color: #fff;
	font-size: clamp(1.5rem, 1.75vw, 2.15rem);
	font-weight: 900;
	line-height: 1.18;
	text-transform: uppercase;
}

.solamed-native-footer-heading--green .elementor-heading-title,
.solamed-native-footer-join-heading .elementor-heading-title span {
	color: var(--solamed-accent);
}

.solamed-native-footer-contact {
	margin-bottom: 12px !important;
}

.solamed-native-footer-contact .elementor-icon-box-wrapper {
	display: flex;
	align-items: center;
	gap: 18px;
}

.solamed-native-footer-contact .elementor-icon {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 2px solid var(--solamed-accent);
	border-radius: 50%;
	color: var(--solamed-accent);
	font-size: 17px;
	line-height: 1;
}

.solamed-native-footer-contact .elementor-icon-box-title,
.solamed-native-footer-contact .elementor-icon-box-title a,
.solamed-native-footer-join-text p,
.solamed-native-footer-copy p {
	color: rgba(255, 255, 255, 0.9);
}

.solamed-native-footer-contact .elementor-icon-box-title,
.solamed-native-footer-contact .elementor-icon-box-title a {
	margin: 0;
	font-size: clamp(1.12rem, 1.18vw, 1.42rem);
	font-weight: 400;
	line-height: 1.34;
}

.solamed-native-footer-join-text p {
	margin: 0;
	font-size: clamp(1.12rem, 1.18vw, 1.42rem);
	font-weight: 400;
	line-height: 1.48;
}

.solamed-native-footer-socials > .elementor-widget-wrap {
	display: flex !important;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(18px, 1.4vw, 26px);
	padding-left: clamp(34px, 3vw, 68px) !important;
	padding-right: 0 !important;
}

.solamed-native-footer-social {
	width: auto !important;
	margin-bottom: 0 !important;
}

.solamed-native-footer-social .elementor-icon {
	display: grid;
	place-items: center;
	width: 70px;
	height: 70px;
	border: 2px solid rgba(255, 255, 255, 0.75);
	border-radius: 50%;
	color: #fff;
	font-size: 25px;
	transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.solamed-native-footer-social .elementor-icon:hover {
	border-color: var(--solamed-accent);
	color: var(--solamed-accent);
	transform: translateY(-2px);
}

.solamed-native-footer-line-column {
	width: 100% !important;
}

.solamed-native-footer-line-column > .elementor-widget-wrap {
	padding: 0 !important;
}

.solamed-native-footer-line {
	display: block;
	width: 100%;
	height: 1px;
	margin: 64px 0 48px;
	background: rgba(20, 111, 204, 0.55);
}

.solamed-native-footer-bottom-left {
	width: 34% !important;
}

.solamed-native-footer-bottom-left > .elementor-widget-wrap,
.solamed-native-footer-bottom-item > .elementor-widget-wrap {
	align-content: center;
	align-items: center;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.solamed-native-footer-bottom-left > .elementor-widget-wrap {
	padding-left: clamp(42px, 4.6vw, 92px) !important;
	padding-right: 22px !important;
}

.solamed-native-footer-bottom-item {
	position: relative;
}

.solamed-native-footer-bottom-item::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 2px;
	height: 38px;
	background: var(--solamed-accent);
	transform: translateY(-50%);
}

.solamed-native-footer-copy p,
.solamed-native-footer-bottom-link .elementor-button {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.08rem, 1.15vw, 1.32rem);
	font-weight: 400;
	line-height: 1.35;
}

.solamed-native-footer-copy strong {
	color: var(--solamed-accent);
	font-weight: 500;
}

.solamed-native-footer-bottom-link .elementor-button {
	padding: 0;
	border: 0;
	background: transparent;
	text-transform: none;
	white-space: nowrap;
}

@media (max-width: 1280px) {
	.solamed-native-values-item,
	.solamed-native-news-card {
		width: 50% !important;
		margin-bottom: 28px;
	}

	.solamed-native-choose-item {
		width: 33.333% !important;
		margin-bottom: 28px;
	}

	.solamed-native-footer-brand,
	.solamed-native-footer-contact-column,
	.solamed-native-footer-join,
	.solamed-native-footer-socials {
		width: 50% !important;
		border-right: 0;
	}
}

@media (max-width: 920px) {
	.solamed-native-region-list,
	.solamed-native-region-map-column,
	.solamed-native-projects-content,
	.solamed-native-projects-media,
	.solamed-native-news-heading-column,
	.solamed-native-news-link-column {
		width: 100% !important;
	}

	.solamed-native-region-list > .elementor-widget-wrap,
	.solamed-native-projects-content > .elementor-widget-wrap {
		padding-right: 0 !important;
	}

	.solamed-native-news-link .elementor-button-wrapper {
		text-align: left;
	}

	.solamed-native-footer-bottom-left,
	.solamed-native-footer-bottom-item {
		width: 100% !important;
		border-left: 0;
	}

	.solamed-native-footer-bottom-item::before {
		display: none;
	}

	.solamed-native-footer-bottom-left > .elementor-widget-wrap,
	.solamed-native-footer-bottom-item > .elementor-widget-wrap {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

@media (max-width: 640px) {
	.solamed-native-values > .elementor-container,
	.solamed-native-region > .elementor-container,
	.solamed-native-projects > .elementor-container,
	.solamed-native-news > .elementor-container,
	.solamed-native-choose > .elementor-container,
	.solamed-native-footer > .elementor-container {
		width: min(100% - 28px, 1900px);
		padding: 26px;
		border-radius: 22px;
	}

	.solamed-native-values-item,
	.solamed-native-region-advantage,
	.solamed-native-news-card,
	.solamed-native-choose-item,
	.solamed-native-footer-brand,
	.solamed-native-footer-contact-column,
	.solamed-native-footer-join,
	.solamed-native-footer-socials {
		width: 100% !important;
		border-right: 0;
		border-bottom: 1px solid rgba(7, 34, 82, 0.12);
	}

	.solamed-native-values-item {
		border-bottom-color: rgba(255, 255, 255, 0.22);
	}

	.solamed-native-footer-socials > .elementor-widget-wrap {
		justify-content: flex-start;
	}

	.solamed-native-footer {
		min-height: 0;
		padding-top: 70px !important;
		padding-bottom: 46px !important;
	}

	.solamed-native-footer > .elementor-container {
		width: min(100% - 36px, 1870px);
		padding: 0;
		border-radius: 0;
	}

	.solamed-native-footer-brand,
	.solamed-native-footer-contact-column,
	.solamed-native-footer-join,
	.solamed-native-footer-socials {
		min-height: 0;
		border-bottom-color: rgba(255, 255, 255, 0.16);
	}

	.solamed-native-footer-brand > .elementor-widget-wrap,
	.solamed-native-footer-contact-column > .elementor-widget-wrap,
	.solamed-native-footer-join > .elementor-widget-wrap,
	.solamed-native-footer-socials > .elementor-widget-wrap {
		padding: 28px 0 !important;
	}

	.solamed-native-footer-logo img {
		width: min(300px, 100%);
	}

	.solamed-native-footer-social .elementor-icon {
		width: 54px;
		height: 54px;
		font-size: 20px;
	}

	.solamed-native-footer-line {
		margin: 30px 0 30px;
	}
}

/* ═══════════════════════════════════════════════════════════
   PAGES INTÉRIEURES — HERO BANNER RÉUTILISABLE
   ═══════════════════════════════════════════════════════════ */
.page-hero {
	position: relative;
	min-height: 380px;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--solamed-dark) 0%, var(--solamed-primary) 60%, #1a5faa 100%);
	color: #fff;
	overflow: hidden;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 80% 50%, rgba(121, 189, 42, 0.12) 0%, transparent 70%),
		radial-gradient(ellipse 60% 80% at 10% 80%, rgba(6, 36, 91, 0.4) 0%, transparent 60%);
	pointer-events: none;
}

.page-hero::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: linear-gradient(to top, #fff, transparent);
	z-index: 2;
}

.page-hero__inner {
	position: relative;
	z-index: 3;
	width: min(var(--solamed-container), calc(100% - 40px));
	margin-inline: auto;
	padding: 80px 0 100px;
	text-align: center;
}

.page-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 18px;
	border-radius: 999px;
	background: rgba(121, 189, 42, 0.15);
	border: 1px solid rgba(121, 189, 42, 0.3);
	color: var(--solamed-accent);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 20px;
	backdrop-filter: blur(4px);
}

.page-hero__badge svg {
	width: 16px;
	height: 16px;
}

.page-hero h1 {
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.2rem);
	text-transform: uppercase;
	margin-bottom: 0.4em;
	line-height: 1.1;
}

.page-hero h1 .text-accent {
	color: var(--solamed-accent);
}

.page-hero__desc {
	max-width: 640px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	line-height: 1.6;
}

.page-hero__divider {
	width: 60px;
	height: 3px;
	background: var(--solamed-accent);
	margin: 20px auto 0;
	border-radius: 2px;
}

/* Decorative floating shapes */
.page-hero__shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.06;
	pointer-events: none;
}

.page-hero__shape--1 {
	width: 300px;
	height: 300px;
	background: var(--solamed-accent);
	top: -80px;
	right: -60px;
}

.page-hero__shape--2 {
	width: 200px;
	height: 200px;
	background: #fff;
	bottom: -40px;
	left: 10%;
}

.page-hero__shape--3 {
	width: 120px;
	height: 120px;
	background: var(--solamed-accent);
	top: 30%;
	left: -30px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE À PROPOS
   ═══════════════════════════════════════════════════════════ */

/* --- Qui sommes-nous --- */
.about-intro {
	padding: 70px 0;
	background: #fff;
}

.about-intro__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-intro__image {
	position: relative;
	border-radius: var(--solamed-radius);
	overflow: hidden;
	box-shadow: var(--solamed-shadow);
}

.about-intro__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.about-intro__image::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40%;
	background: linear-gradient(to top, rgba(6, 36, 91, 0.2), transparent);
	pointer-events: none;
}

.about-intro__content h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: var(--solamed-dark);
	text-transform: uppercase;
	margin-bottom: 0.4em;
}

.about-intro__content h2::after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background: var(--solamed-accent);
	margin-top: 10px;
	border-radius: 2px;
}

.about-intro__content p {
	color: var(--solamed-muted);
	font-size: 1rem;
	line-height: 1.7;
}

.about-intro__content .text-highlight {
	display: inline-block;
	padding: 2px 10px;
	background: rgba(121, 189, 42, 0.1);
	border-radius: 4px;
	color: var(--solamed-accent);
	font-weight: 700;
}

/* --- Vision / Mission Cards --- */
.about-vm {
	padding: 60px 0;
	background: var(--solamed-bg);
}

.about-vm__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.about-vm__card {
	display: flex;
	flex-direction: column;
	padding: 40px 36px;
	border-radius: var(--solamed-radius);
	background: #fff;
	border: 1px solid var(--solamed-border);
	transition: all var(--solamed-transition);
	position: relative;
	overflow: hidden;
}

.about-vm__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--solamed-primary), var(--solamed-accent));
}

.about-vm__card:hover {
	box-shadow: var(--solamed-shadow);
	transform: translateY(-4px);
}

.about-vm__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(121, 189, 42, 0.1);
	color: var(--solamed-accent);
	margin-bottom: 20px;
	transition: all var(--solamed-transition);
}

.about-vm__card:hover .about-vm__icon {
	background: var(--solamed-accent);
	color: #fff;
}

.about-vm__card h3 {
	font-size: 1.1rem;
	text-transform: uppercase;
	color: var(--solamed-primary);
	margin-bottom: 10px;
}

.about-vm__card p {
	color: var(--solamed-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

/* --- Chiffres clés --- */
.about-stats {
	padding: 70px 0;
	background: linear-gradient(135deg, var(--solamed-dark), var(--solamed-primary));
	color: #fff;
	position: relative;
	overflow: hidden;
}

.about-stats::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 80% at 80% 20%, rgba(121, 189, 42, 0.1), transparent);
	pointer-events: none;
}

.about-stats__header {
	text-align: center;
	margin-bottom: 48px;
	position: relative;
	z-index: 1;
}

.about-stats__header h2 {
	color: #fff;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	text-transform: uppercase;
}

.about-stats__header h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: var(--solamed-accent);
	margin: 14px auto 0;
	border-radius: 2px;
}

.about-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	position: relative;
	z-index: 1;
}

.about-stat {
	text-align: center;
	padding: 32px 20px;
	border-radius: var(--solamed-radius);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(6px);
	transition: all var(--solamed-transition);
}

.about-stat:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-4px);
}

.about-stat__icon {
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: rgba(121, 189, 42, 0.15);
	color: var(--solamed-accent);
}

.about-stat__number {
	display: block;
	font-size: clamp(2rem, 3.5vw, 2.8rem);
	font-weight: 900;
	color: #fff;
	line-height: 1;
	margin-bottom: 6px;
}

.about-stat__label {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

/* --- Valeurs grid --- */
.about-values {
	padding: 70px 0;
	background: #fff;
}

.about-values__header {
	text-align: center;
	margin-bottom: 48px;
}

.about-values__header h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	text-transform: uppercase;
	color: var(--solamed-dark);
}

.about-values__header h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: var(--solamed-accent);
	margin: 14px auto 0;
	border-radius: 2px;
}

.about-values__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.about-value-card {
	text-align: center;
	padding: 32px 20px;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	background: #fff;
	transition: all var(--solamed-transition);
	position: relative;
}

.about-value-card::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: var(--solamed-accent);
	border-radius: 2px;
	transition: width var(--solamed-transition);
}

.about-value-card:hover::before {
	width: 60%;
}

.about-value-card:hover {
	box-shadow: var(--solamed-shadow-sm);
	transform: translateY(-4px);
}

.about-value-card__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	border-radius: 50%;
	border: 2px solid var(--solamed-accent);
	color: var(--solamed-accent);
	transition: all var(--solamed-transition);
}

.about-value-card:hover .about-value-card__icon {
	background: var(--solamed-accent);
	color: #fff;
}

.about-value-card h3 {
	font-size: 0.9rem;
	text-transform: uppercase;
	color: var(--solamed-primary);
	margin-bottom: 8px;
}

.about-value-card p {
	color: var(--solamed-muted);
	font-size: 0.82rem;
	line-height: 1.5;
	margin: 0;
}

/* --- Equipe --- */
.about-team {
	padding: 70px 0;
	background: var(--solamed-bg);
}

.about-team__header {
	text-align: center;
	margin-bottom: 48px;
}

.about-team__header h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	text-transform: uppercase;
	color: var(--solamed-dark);
}

.about-team__header h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: var(--solamed-accent);
	margin: 14px auto 0;
	border-radius: 2px;
}

.about-team__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.team-card {
	text-align: center;
	padding: 28px 20px;
	border-radius: var(--solamed-radius);
	background: #fff;
	border: 1px solid var(--solamed-border);
	transition: all var(--solamed-transition);
}

.team-card:hover {
	box-shadow: var(--solamed-shadow);
	transform: translateY(-4px);
}

.team-card__avatar {
	width: 90px;
	height: 90px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(6, 60, 137, 0.1), rgba(121, 189, 42, 0.1));
	display: grid;
	place-items: center;
	color: var(--solamed-primary);
	overflow: hidden;
}

.team-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.team-card h3 {
	font-size: 1rem;
	color: var(--solamed-dark);
	margin-bottom: 4px;
}

.team-card__role {
	display: block;
	color: var(--solamed-accent);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-bottom: 10px;
}

.team-card p {
	color: var(--solamed-muted);
	font-size: 0.82rem;
	line-height: 1.5;
	margin: 0;
}

/* --- CTA Section --- */
.page-cta {
	padding: 70px 0;
	background: #fff;
}

.page-cta__inner {
	text-align: center;
	padding: 60px 40px;
	border-radius: var(--solamed-radius);
	background: linear-gradient(135deg, var(--solamed-dark), var(--solamed-primary));
	color: #fff;
	position: relative;
	overflow: hidden;
}

.page-cta__inner::before {
	content: "";
	position: absolute;
	top: -40px;
	right: -40px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: rgba(121, 189, 42, 0.12);
	pointer-events: none;
}

.page-cta__inner h2 {
	color: #fff;
	font-size: clamp(1.4rem, 2.5vw, 1.8rem);
	text-transform: uppercase;
	margin-bottom: 16px;
}

.page-cta__inner p {
	max-width: 580px;
	margin: 0 auto 28px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
}

.page-cta__inner .button--primary {
	font-size: 0.85rem;
	padding: 14px 36px;
}

/* ═══════════════════════════════════════════════════════════
   PAGE NOS SOLUTIONS (DÉTAIL)
   ═══════════════════════════════════════════════════════════ */
.solutions-detail {
	padding: 70px 0;
}

.solutions-detail:nth-child(even) {
	background: var(--solamed-bg);
}

.solutions-detail__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.solutions-detail--reverse .solutions-detail__layout {
	direction: rtl;
}

.solutions-detail--reverse .solutions-detail__layout > * {
	direction: ltr;
}

.solutions-detail__image {
	border-radius: var(--solamed-radius);
	overflow: hidden;
	box-shadow: var(--solamed-shadow);
	position: relative;
}

.solutions-detail__image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.solutions-detail__image:hover img {
	transform: scale(1.04);
}

.solutions-detail__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--solamed-accent);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	z-index: 2;
}

.solutions-detail--reverse .solutions-detail__badge {
	left: auto;
	right: 16px;
}

.solutions-detail__content h2 {
	font-size: clamp(1.3rem, 2.5vw, 1.8rem);
	color: var(--solamed-dark);
	text-transform: uppercase;
	margin-bottom: 0.4em;
}

.solutions-detail__content h2::after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background: var(--solamed-accent);
	margin-top: 10px;
	border-radius: 2px;
}

.solutions-detail__content p {
	color: var(--solamed-muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

.solutions-detail__features {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.solutions-detail__features li {
	position: relative;
	padding: 8px 0 8px 30px;
	font-size: 0.92rem;
	color: #14223a;
}

.solutions-detail__features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 8px;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--solamed-accent);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   PAGE NOS ENGAGEMENTS
   ═══════════════════════════════════════════════════════════ */
.engagement-block {
	padding: 70px 0;
}

.engagement-block:nth-child(even) {
	background: var(--solamed-bg);
}

.engagement-block__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.engagement-block--reverse .engagement-block__layout {
	direction: rtl;
}

.engagement-block--reverse .engagement-block__layout > * {
	direction: ltr;
}

.engagement-block__visual {
	position: relative;
	border-radius: var(--solamed-radius);
	overflow: hidden;
	box-shadow: var(--solamed-shadow);
}

.engagement-block__visual img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.engagement-block__icon-overlay {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--solamed-accent);
	color: #fff;
	box-shadow: 0 8px 24px rgba(121, 189, 42, 0.4);
}

.engagement-block__content h2 {
	font-size: clamp(1.3rem, 2.5vw, 1.8rem);
	text-transform: uppercase;
	color: var(--solamed-dark);
	margin-bottom: 0.4em;
}

.engagement-block__content h2::after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background: var(--solamed-accent);
	margin-top: 10px;
	border-radius: 2px;
}

.engagement-block__content p {
	color: var(--solamed-muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

.engagement-block__highlights {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 20px;
}

.engagement-highlight {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border-radius: var(--solamed-radius-sm);
	background: rgba(121, 189, 42, 0.06);
	border: 1px solid rgba(121, 189, 42, 0.15);
}

.engagement-highlight__icon {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--solamed-accent);
	color: #fff;
	flex-shrink: 0;
}

.engagement-highlight span {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--solamed-dark);
}

/* ═══════════════════════════════════════════════════════════
   PAGE NOS SERVICES / PRODUITS
   ═══════════════════════════════════════════════════════════ */
.services-grid-section {
	padding: 70px 0;
	background: #fff;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.service-card {
	padding: 36px 28px;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	background: #fff;
	transition: all var(--solamed-transition);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, var(--solamed-primary), var(--solamed-accent));
	transition: height var(--solamed-transition);
}

.service-card:hover::before {
	height: 100%;
}

.service-card:hover {
	box-shadow: var(--solamed-shadow);
	transform: translateY(-4px);
}

.service-card__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin-bottom: 20px;
	border-radius: var(--solamed-radius-sm);
	background: linear-gradient(135deg, rgba(6, 60, 137, 0.08), rgba(121, 189, 42, 0.08));
	color: var(--solamed-primary);
	transition: all var(--solamed-transition);
}

.service-card:hover .service-card__icon {
	background: var(--solamed-accent);
	color: #fff;
}

.service-card h3 {
	font-size: 1rem;
	text-transform: uppercase;
	color: var(--solamed-primary);
	margin-bottom: 10px;
}

.service-card p {
	color: var(--solamed-muted);
	font-size: 0.88rem;
	line-height: 1.6;
	margin: 0;
}

/* Process Steps */
.services-process {
	padding: 70px 0;
	background: var(--solamed-bg);
}

.services-process__header {
	text-align: center;
	margin-bottom: 48px;
}

.services-process__header h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	text-transform: uppercase;
	color: var(--solamed-dark);
}

.services-process__header h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: var(--solamed-accent);
	margin: 14px auto 0;
	border-radius: 2px;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
}

.process-steps::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 12.5%;
	width: 75%;
	height: 3px;
	background: linear-gradient(90deg, var(--solamed-primary), var(--solamed-accent));
	z-index: 0;
}

.process-step {
	position: relative;
	text-align: center;
	z-index: 1;
}

.process-step__number {
	display: grid;
	place-items: center;
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--solamed-accent);
	color: var(--solamed-accent);
	font-size: 1.8rem;
	font-weight: 900;
	box-shadow: var(--solamed-shadow-sm);
	transition: all var(--solamed-transition);
}

.process-step:hover .process-step__number {
	background: var(--solamed-accent);
	color: #fff;
	transform: scale(1.08);
}

.process-step h3 {
	font-size: 0.9rem;
	text-transform: uppercase;
	color: var(--solamed-primary);
	margin-bottom: 8px;
}

.process-step p {
	color: var(--solamed-muted);
	font-size: 0.82rem;
	line-height: 1.5;
	margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   PAGE PRÉSENCE
   ═══════════════════════════════════════════════════════════ */
.presence-map-section {
	padding: 70px 0;
	background: #fff;
}

.presence-map__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.presence-map__image {
	text-align: center;
}

.presence-map__image img {
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 12px 28px rgba(6, 36, 91, 0.12));
}

.presence-map__content h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	text-transform: uppercase;
	color: var(--solamed-dark);
	margin-bottom: 0.4em;
}

.presence-map__content h2::after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background: var(--solamed-accent);
	margin-top: 10px;
	border-radius: 2px;
}

.presence-countries {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 24px 0;
	list-style: none;
	padding: 0;
}

.presence-countries li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: var(--solamed-radius-sm);
	background: var(--solamed-bg);
	border: 1px solid var(--solamed-border);
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--solamed-dark);
	transition: all var(--solamed-transition);
}

.presence-countries li:hover {
	background: #fff;
	box-shadow: var(--solamed-shadow-sm);
	transform: translateX(4px);
}

.presence-countries li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--solamed-accent);
	flex-shrink: 0;
}

/* Advantages section */
.presence-advantages {
	padding: 70px 0;
	background: var(--solamed-bg);
}

.presence-advantages__header {
	text-align: center;
	margin-bottom: 48px;
}

.presence-advantages__header h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	text-transform: uppercase;
	color: var(--solamed-dark);
}

.presence-advantages__header h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: var(--solamed-accent);
	margin: 14px auto 0;
	border-radius: 2px;
}

.presence-advantages__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.presence-advantage-card {
	text-align: center;
	padding: 32px 20px;
	border-radius: var(--solamed-radius);
	background: #fff;
	border: 1px solid var(--solamed-border);
	transition: all var(--solamed-transition);
}

.presence-advantage-card:hover {
	box-shadow: var(--solamed-shadow);
	transform: translateY(-4px);
}

.presence-advantage-card__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(6, 60, 137, 0.08), rgba(121, 189, 42, 0.12));
	color: var(--solamed-accent);
	transition: all var(--solamed-transition);
}

.presence-advantage-card:hover .presence-advantage-card__icon {
	background: var(--solamed-accent);
	color: #fff;
}

.presence-advantage-card h3 {
	font-size: 0.88rem;
	text-transform: uppercase;
	color: var(--solamed-primary);
	margin-bottom: 8px;
	line-height: 1.3;
}

.presence-advantage-card p {
	color: var(--solamed-muted);
	font-size: 0.82rem;
	line-height: 1.5;
	margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   PAGE PROJETS 2026 - 2030
   ═══════════════════════════════════════════════════════════ */
.projets-timeline {
	padding: 70px 0;
	background: #fff;
}

.projets-timeline__header {
	text-align: center;
	margin-bottom: 60px;
}

.projets-timeline__header h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	text-transform: uppercase;
	color: var(--solamed-dark);
}

.projets-timeline__header h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: var(--solamed-accent);
	margin: 14px auto 0;
	border-radius: 2px;
}

.timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 0;
}

.timeline::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg, var(--solamed-primary), var(--solamed-accent));
	transform: translateX(-50%);
}

.timeline-item {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 50px;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-item__dot {
	position: absolute;
	left: 50%;
	top: 20px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--solamed-accent);
	border: 4px solid #fff;
	box-shadow: 0 0 0 3px var(--solamed-accent);
	transform: translateX(-50%);
	z-index: 2;
	transition: all var(--solamed-transition);
}

.timeline-item:hover .timeline-item__dot {
	transform: translateX(-50%) scale(1.3);
}

.timeline-item__content {
	padding: 24px 28px;
	border-radius: var(--solamed-radius);
	background: #fff;
	border: 1px solid var(--solamed-border);
	box-shadow: var(--solamed-shadow-sm);
	transition: all var(--solamed-transition);
}

.timeline-item:hover .timeline-item__content {
	box-shadow: var(--solamed-shadow);
	transform: translateY(-2px);
}

.timeline-item__year {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 14px;
	border-radius: 999px;
	background: rgba(121, 189, 42, 0.1);
	color: var(--solamed-accent);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.timeline-item__content h3 {
	font-size: 1rem;
	color: var(--solamed-primary);
	text-transform: uppercase;
	margin-bottom: 8px;
}

.timeline-item__content p {
	color: var(--solamed-muted);
	font-size: 0.88rem;
	line-height: 1.6;
	margin: 0;
}

.timeline-item:nth-child(odd) .timeline-item__content {
	grid-column: 1;
	text-align: right;
}

.timeline-item:nth-child(odd) .timeline-item__spacer {
	grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-item__spacer {
	grid-column: 1;
}

.timeline-item:nth-child(even) .timeline-item__content {
	grid-column: 2;
}

/* Projets stats band */
.projets-stats {
	padding: 60px 0;
	background: var(--solamed-bg);
}

.projets-stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.projets-stat-card {
	text-align: center;
	padding: 36px 24px;
	border-radius: var(--solamed-radius);
	background: #fff;
	border: 1px solid var(--solamed-border);
	transition: all var(--solamed-transition);
}

.projets-stat-card:hover {
	box-shadow: var(--solamed-shadow);
	transform: translateY(-4px);
}

.projets-stat-card__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: rgba(121, 189, 42, 0.1);
	color: var(--solamed-accent);
}

.projets-stat-card__number {
	display: block;
	font-size: 2.2rem;
	font-weight: 900;
	color: var(--solamed-primary);
	line-height: 1;
	margin-bottom: 6px;
}

.projets-stat-card__label {
	color: var(--solamed-muted);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   PAGE CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-section {
	padding: 70px 0;
	background: #fff;
}

.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 50px;
	align-items: start;
}

.contact-info h2 {
	font-size: clamp(1.3rem, 2.5vw, 1.6rem);
	text-transform: uppercase;
	color: var(--solamed-dark);
	margin-bottom: 0.4em;
}

.contact-info h2::after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background: var(--solamed-accent);
	margin-top: 10px;
	border-radius: 2px;
}

.contact-info p {
	color: var(--solamed-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 28px;
}

.contact-details {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
}

.contact-details li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--solamed-border);
}

.contact-details li:last-child {
	border-bottom: 0;
}

.contact-details__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(121, 189, 42, 0.1);
	color: var(--solamed-accent);
	flex-shrink: 0;
}

.contact-details__text {
	display: flex;
	flex-direction: column;
}

.contact-details__label {
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--solamed-primary);
	margin-bottom: 2px;
}

.contact-details__value {
	color: var(--solamed-muted);
	font-size: 0.92rem;
}

.contact-details__value a {
	color: var(--solamed-muted);
}

.contact-details__value a:hover {
	color: var(--solamed-accent);
}

/* Contact form */
.contact-form-wrapper {
	padding: 40px 36px;
	border-radius: var(--solamed-radius);
	background: var(--solamed-bg);
	border: 1px solid var(--solamed-border);
}

.contact-form-wrapper h2 {
	font-size: 1.2rem;
	text-transform: uppercase;
	color: var(--solamed-dark);
	margin-bottom: 24px;
}

.contact-form-wrapper h2::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	background: var(--solamed-accent);
	margin-top: 8px;
	border-radius: 2px;
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.contact-form__field {
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
}

.contact-form__field label {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--solamed-dark);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-bottom: 6px;
}

.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
	padding: 12px 16px;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius-sm);
	background: #fff;
	font-family: var(--solamed-font);
	font-size: 0.92rem;
	color: #14223a;
	transition: all var(--solamed-transition);
	outline: none;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__field select:focus {
	border-color: var(--solamed-accent);
	box-shadow: 0 0 0 3px rgba(121, 189, 42, 0.12);
}

.contact-form__field textarea {
	resize: vertical;
	min-height: 130px;
}

.contact-form button[type="submit"] {
	width: 100%;
	padding: 14px 32px;
	background: var(--solamed-accent);
	color: #fff;
	border: none;
	font-size: 0.88rem;
	box-shadow: 0 8px 24px rgba(121, 189, 42, 0.3);
}

.contact-form button[type="submit"]:hover {
	background: var(--solamed-accent-dark);
	box-shadow: 0 12px 28px rgba(121, 189, 42, 0.4);
}

/* Contact socials */
.contact-socials {
	display: flex;
	gap: 12px;
}

.contact-socials a {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(6, 60, 137, 0.06);
	border: 1px solid var(--solamed-border);
	color: var(--solamed-primary);
	transition: all var(--solamed-transition);
}

.contact-socials a:hover {
	background: var(--solamed-accent);
	border-color: var(--solamed-accent);
	color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   INTERIOR PAGES — RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
	.about-intro__layout,
	.about-vm__grid,
	.solutions-detail__layout,
	.engagement-block__layout,
	.contact-layout,
	.presence-map__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.solutions-detail--reverse .solutions-detail__layout,
	.engagement-block--reverse .engagement-block__layout {
		direction: ltr;
	}

	.about-stats__grid,
	.presence-advantages__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-values__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.about-team__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-steps::before {
		display: none;
	}

	.timeline::before {
		left: 20px;
	}

	.timeline-item {
		grid-template-columns: 1fr;
		padding-left: 50px;
		gap: 0;
	}

	.timeline-item__dot {
		left: 20px;
	}

	.timeline-item__spacer {
		display: none;
	}

	.timeline-item:nth-child(odd) .timeline-item__content,
	.timeline-item:nth-child(even) .timeline-item__content {
		grid-column: 1;
		text-align: left;
	}

	.projets-stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-form__row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.page-hero {
		min-height: 300px;
	}

	.page-hero__inner {
		padding: 60px 0 80px;
	}

	.about-stats__grid,
	.about-values__grid,
	.about-team__grid,
	.services-grid,
	.process-steps,
	.presence-advantages__grid,
	.projets-stats__grid,
	.presence-countries {
		grid-template-columns: 1fr;
	}

	.engagement-block__highlights {
		grid-template-columns: 1fr;
	}
}

/* -----------------------------------------------------------
   VALEURS V2 (solamed-valeurs-v2)
   ----------------------------------------------------------- */
.solamed-valeurs-v2 {
	position: relative;
	background: #06245b; /* Dark blue background */
	padding: 80px 0 140px;
	overflow: hidden;
	color: #fff;
}

.sv2-bg-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
	background-size: 30px 30px;
	opacity: 0.5;
	pointer-events: none;
}

.sv2-waves {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120px;
	pointer-events: none;
}
.sv2-waves svg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.sv2-wave-green { z-index: 1; opacity: 0.9; }
.sv2-wave-blue { z-index: 2; height: 100px !important; }

.sv2-container {
	position: relative;
	z-index: 3;
}

.sv2-header {
	text-align: center;
	margin-bottom: 60px;
}

.sv2-title {
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.sv2-title .text-white { color: #fff; }
.sv2-title .text-green { color: var(--solamed-accent); }

.sv2-title-divider {
	display: flex;
	justify-content: center;
	align-items: center;
}
.sv2-title-divider::before,
.sv2-title-divider::after {
	content: '';
	width: 30px;
	height: 1px;
	background: var(--solamed-accent);
}
.sv2-dot {
	width: 6px;
	height: 6px;
	background: var(--solamed-accent);
	border-radius: 50%;
	margin: 0 10px;
}

.sv2-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.sv2-item {
	text-align: center;
	position: relative;
}
.sv2-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -10px;
	top: 10%;
	height: 80%;
	width: 1px;
	background: rgba(255,255,255,0.1);
}

.sv2-icon-wrapper {
	position: relative;
	width: 100px;
	height: 100px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sv2-icon-ring {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}

.sv2-icon {
	position: relative;
	z-index: 2;
}

.sv2-content h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: #fff;
	text-transform: uppercase;
}

.sv2-item-divider {
	width: 24px;
	height: 2px;
	background: var(--solamed-accent);
	margin: 0 auto 12px;
}

.sv2-content p {
	font-size: 0.9rem;
	color: rgba(255,255,255,0.8);
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 1024px) {
	.sv2-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; }
	.sv2-item:not(:last-child)::after { display: none; }
}
@media (max-width: 768px) {
	.sv2-grid { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------
   PROJETS 2030 (solamed-projects-2030)
   ----------------------------------------------------------- */
.solamed-projects-2030 {
	padding: 60px 0;
	background: #f8f9fc;
}

.p2030-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.05);
	overflow: hidden;
	position: relative;
}

.p2030-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	min-height: 500px;
}

.p2030-content {
	padding: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.p2030-title {
	font-size: 2.2rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 40px;
}
.p2030-title .title-blue { color: var(--solamed-primary); }
.p2030-title .title-green { color: var(--solamed-accent); }

.p2030-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.p2030-list li {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 20px;
}
.p2030-list li:last-child {
	margin-bottom: 0;
}

.p2030-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	background: rgba(121, 189, 42, 0.1);
	border-radius: 50%;
	display: grid;
	place-items: center;
}

.p2030-text {
	font-size: 1rem;
	color: var(--solamed-dark);
	line-height: 1.5;
}
.p2030-text strong {
	color: var(--solamed-primary);
	font-weight: 700;
}

.p2030-media {
	position: relative;
	height: 100%;
}
.p2030-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p2030-placeholder {
	width: 100%;
	height: 100%;
	background: #eee;
	display: grid;
	place-items: center;
	color: #aaa;
}

.p2030-card-waves {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	z-index: 3;
}
.p2030-card-waves svg {
	width: 100%;
	height: 100%;
	display: block;
}

@media (max-width: 1024px) {
	.p2030-grid { grid-template-columns: 1fr; }
	.p2030-media { height: 300px; }
	.p2030-content { padding: 40px 24px; }
}

/* -----------------------------------------------------------
   CANCER COMMITMENT (solamed-cancer)
   ----------------------------------------------------------- */
.solamed-cancer {
	padding: 60px 0;
	background: #f8f9fc;
}

.s-cancer-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.05);
	overflow: hidden;
	padding: 40px;
}

.s-cancer-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 40px;
	margin-bottom: 40px;
}

.s-cancer-collage {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 12px;
	height: 450px;
}

.sc-img-main {
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
}
.sc-img-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sc-img-stack {
	display: flex;
	flex-direction: column;
	gap: 12px;
	height: 100%;
}
.sc-img-stack img, .sc-img-placeholder {
	flex: 1;
	width: 100%;
	object-fit: cover;
	border-radius: 12px;
}
.sc-img-placeholder {
	background: #eee;
	display: grid;
	place-items: center;
	color: #999;
	font-size: 0.8rem;
}

.s-cancer-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sc-title {
	color: #4a148c; /* Purple */
	font-size: 1.8rem;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.sc-desc {
	font-size: 1.05rem;
	color: var(--solamed-dark);
	margin-bottom: 30px;
	line-height: 1.5;
}

.sc-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.sc-list li {
	display: flex;
	align-items: center;
	gap: 20px;
}

.sc-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: #4a148c;
	color: #fff;
	border-radius: 50%;
	display: grid;
	place-items: center;
}
.sc-icon svg {
	width: 24px;
	height: 24px;
}

.sc-text {
	font-size: 0.95rem;
	color: var(--solamed-dark);
	line-height: 1.4;
}
.sc-text strong {
	display: block;
	color: #4a148c;
	font-weight: 700;
	margin-bottom: 2px;
}

.s-cancer-banner {
	background: #4a148c;
	border-radius: 12px;
	padding: 24px 30px;
	display: flex;
	align-items: center;
	gap: 24px;
	color: #fff;
}
.scb-icon svg {
	width: 40px;
	height: 40px;
}
.scb-t1 {
	font-size: 1.1rem;
	font-style: italic;
	margin: 0 0 4px 0;
}
.scb-t2 {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0;
}

@media (max-width: 1024px) {
	.s-cancer-grid { grid-template-columns: 1fr; }
	.s-cancer-collage { height: 350px; }
	.s-cancer-card { padding: 24px; }
}
@media (max-width: 768px) {
	.s-cancer-banner {
		flex-direction: column;
		text-align: center;
	}
}

/* -----------------------------------------------------------
   PRESENCE MAP (solamed-presence)
   ----------------------------------------------------------- */
.solamed-presence {
	padding: 60px 0;
	background: #f8f9fc;
}

.sp-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.05);
	padding: 40px;
}

.sp-grid {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 40px;
	margin-bottom: 40px;
}

.sp-title {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--solamed-primary);
	text-transform: uppercase;
	margin-bottom: 30px;
}

.sp-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.sp-list li {
	display: flex;
	align-items: center;
	gap: 12px;
}

.sp-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	background: rgba(121, 189, 42, 0.1);
	border-radius: 50%;
	display: grid;
	place-items: center;
}

.sp-text {
	font-size: 1.05rem;
	color: var(--solamed-dark);
	font-weight: 500;
}

.sp-map {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sp-map img {
	max-width: 100%;
	height: auto;
}
.sp-map-placeholder {
	width: 100%;
	height: 400px;
	background: #f0f2f5;
	display: grid;
	place-items: center;
	border-radius: 12px;
	color: #aaa;
}

.sp-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding-top: 30px;
	border-top: 1px solid rgba(0,0,0,0.05);
}

.sp-feat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.sp-feat-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(121, 189, 42, 0.1);
	color: var(--solamed-accent);
	display: grid;
	place-items: center;
	margin-bottom: 12px;
}
.sp-feat-icon svg {
	width: 24px;
	height: 24px;
}

.sp-feat-title {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--solamed-primary);
	line-height: 1.3;
	margin: 0;
}

@media (max-width: 1024px) {
	.sp-grid { grid-template-columns: 1fr; }
	.sp-features { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
}
@media (max-width: 768px) {
	.sp-card { padding: 24px; }
	.sp-features { grid-template-columns: 1fr; }
}


/* -----------------------------------------------------------
   FOOTER CTA & MAIN FOOTER (Mockup Redesign)
   ----------------------------------------------------------- */

/* -- CTA Section -- */
.sol-footer-cta-section {
	padding: 40px 0;
	background: #fff;
	position: relative;
	z-index: 10;
}

.sol-footer-cta-card {
	background: #06245b; /* Dark Blue */
	border-radius: 12px;
	padding: 24px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	color: #fff;
}

.sf-cta-left {
	display: flex;
	align-items: center;
	gap: 20px;
	flex: 1;
}

.sf-cta-icon {
	flex-shrink: 0;
}
.sf-cta-icon svg {
	width: 50px;
	height: 50px;
}

.sf-cta-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.4;
	color: #fff;
}
.sf-cta-highlight {
	color: var(--solamed-accent);
}

.sf-cta-divider {
	width: 1px;
	height: 60px;
	background: rgba(255,255,255,0.2);
}

.sf-cta-center {
	flex: 1;
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(255,255,255,0.9);
}
.sf-cta-center p { margin: 0; }

.sf-cta-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	flex-shrink: 0;
}

.sf-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--solamed-accent);
	color: #fff;
	padding: 12px 24px;
	border-radius: 30px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.9rem;
	text-decoration: none;
	transition: background 0.3s ease;
}
.sf-cta-btn:hover {
	background: #65a120;
	color: #fff;
}

.sf-cta-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 1.1rem;
}
.sf-cta-phone-icon {
	color: var(--solamed-accent);
	display: flex;
}
.sf-cta-phone a {
	color: #fff;
	text-decoration: none;
}

@media (max-width: 1024px) {
	.sol-footer-cta-card {
		flex-direction: column;
		text-align: center;
	}
	.sf-cta-left { flex-direction: column; }
	.sf-cta-divider { width: 100%; height: 1px; }
	.sf-cta-right { align-items: center; }
}

/* -- Main Footer -- */
.sol-footer-main {
	background: #041b44; /* Darker Blue */
	color: rgba(255,255,255,0.8);
	position: relative;
	padding: 60px 0 0;
}

.sol-footer-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
	background-size: 30px 30px;
	pointer-events: none;
}

.sol-footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	position: relative;
	z-index: 2;
	padding-bottom: 50px;
}

.sol-footer-col {
	flex: 1;
}

.sf-col-brand .sf-logo h2 {
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
	margin: 0 0 16px;
}
.sf-col-brand .sf-logo img {
	max-height: 45px;
	margin-bottom: 16px;
}

.sf-slogan {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.3;
}
.sf-desc {
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}
.text-green { color: var(--solamed-accent); }

.sf-col-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.sf-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.sf-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 0.95rem;
}

.sf-contact-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid var(--solamed-accent);
	color: var(--solamed-accent);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}
.sf-contact-icon svg { width: 14px; height: 14px; }

.sf-contact-list a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: color 0.3s;
}
.sf-contact-list a:hover { color: #fff; }

.sf-col-join {
	border-left: 1px solid rgba(255,255,255,0.1);
	border-right: 1px solid rgba(255,255,255,0.1);
	padding: 0 30px;
}

.sf-join-text {
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 24px;
}

.sf-join-highlight {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--solamed-accent);
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.3;
}
.sf-join-icon svg { width: 40px; height: 40px; }
.sf-join-highlight p { margin: 0; }

.sf-col-socials {
	padding-left: 20px;
}

.sf-social-links {
	display: flex;
	gap: 12px;
}

.sf-social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.3);
	color: #fff;
	display: grid;
	place-items: center;
	text-decoration: none;
	transition: all 0.3s ease;
}
.sf-social-icon svg { width: 18px; height: 18px; }
.sf-social-icon:hover {
	background: var(--solamed-accent);
	border-color: var(--solamed-accent);
}

.sol-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 20px 0;
	font-size: 0.85rem;
	position: relative;
	z-index: 2;
}

.sf-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sf-legal-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 20px;
}

.sf-legal-links li {
	display: flex;
	align-items: center;
	gap: 20px;
}
.sf-legal-links li:not(:last-child)::after {
	content: '|';
	color: rgba(255,255,255,0.2);
}

.sf-legal-links a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
}
.sf-legal-links a:hover { color: #fff; }

@media (max-width: 1024px) {
	.sol-footer-inner { flex-wrap: wrap; }
	.sol-footer-col { flex: 1 1 45%; }
	.sf-col-join { border: none; padding: 0; }
	.sf-col-socials { padding: 0; }
}
@media (max-width: 768px) {
	.sol-footer-col { flex: 1 1 100%; }
	.sf-bottom-inner { flex-direction: column; gap: 16px; text-align: center; }
	.sf-legal-links { flex-direction: column; gap: 10px; }
	.sf-legal-links li::after { display: none; }
}


/* -----------------------------------------------------------
   � PROPOS DE SOLAMED (V2 Redesign)
   ----------------------------------------------------------- */
.solamed-about-v2-wrapper {
	padding: 60px 0;
	background: #f8f9fc;
}
.about-v2-main-card {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.06);
	padding: 20px;
	display: flex;
	gap: 40px;
	align-items: stretch;
}
.about-v2-media {
	flex: 0 0 35%;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	min-height: 350px;
}
.about-v2-wave {
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 60px;
}
.av2-wave-blue, .av2-wave-green {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.about-v2-content {
	flex: 0 0 30%;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.about-v2-title {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 15px 0;
}
.about-v2-title .title-blue { color: #06245b; }
.about-v2-title .title-green { color: #79bd2a; }
.about-v2-divider {
	width: 40px;
	height: 3px;
	background: #79bd2a;
	margin-bottom: 20px;
}
.about-v2-desc p {
	font-size: 0.95rem;
	color: #333;
	line-height: 1.6;
	margin-bottom: 15px;
}
.about-v2-desc p:last-child { margin-bottom: 0; }
.about-v2-cards {
	flex: 0 0 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}
.av2-small-card {
	background: #fff;
	border: 1px solid #e0e5ec;
	border-radius: 12px;
	padding: 24px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}
.av2-sc-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.av2-sc-icon svg { width: 24px; height: 24px; color: #fff; }
.av2-icon-green { background: #79bd2a; }
.av2-icon-blue { background: #06245b; }
.av2-sc-text {
	flex: 1;
}
.av2-sc-title {
	font-size: 1.1rem;
	font-weight: 800;
	margin: 0 0 8px 0;
}
.av2-sc-divider {
	width: 30px;
	height: 2px;
	margin-bottom: 12px;
}
.av2-div-green { background: #79bd2a; }
.av2-div-blue { background: #06245b; }
.av2-sc-text p {
	font-size: 0.85rem;
	color: #555;
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 1024px) {
	.about-v2-main-card { flex-direction: column; }
	.about-v2-media { height: 300px; }
	.about-v2-content, .about-v2-cards { padding: 0 20px; }
}


/* -----------------------------------------------------------
   NOS VALEURS (V2 Redesign)
   ----------------------------------------------------------- */
.solamed-valeurs-v2 {
	background: #06245b;
	position: relative;
	padding: 80px 0 120px 0; /* extra padding at bottom for waves */
	overflow: hidden;
	border-radius: 20px;
	margin: 40px auto;
	max-width: 1400px; /* or container width */
}
.sv2-bg-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
	background-size: 20px 20px;
	pointer-events: none;
	opacity: 0.5;
}
.sv2-container {
	position: relative;
	z-index: 2;
}
.sv2-header {
	text-align: center;
	margin-bottom: 50px;
}
.sv2-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin: 0 0 10px 0;
}
.sv2-title-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.sv2-title-divider::before, .sv2-title-divider::after {
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	background: #79bd2a;
}
.sv2-dot {
	width: 6px;
	height: 6px;
	background: #79bd2a;
	border-radius: 50%;
}
.sv2-grid {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.sv2-item {
	flex: 1;
	text-align: center;
	padding: 0 20px;
	position: relative;
}
.sv2-item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 10%;
	right: 0;
	width: 1px;
	height: 80%;
	background: rgba(255,255,255,0.1);
}
.sv2-icon-wrapper {
	position: relative;
	width: 90px;
	height: 90px;
	margin: 0 auto 20px auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sv2-icon-ring {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.sv2-icon {
	position: relative;
	z-index: 2;
	width: 70px;
	height: 70px;
	background: #06245b; /* dark blue to match background */
	border: 1px solid #fff; /* white border for the circle */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sv2-item-divider {
	width: 25px;
	height: 2px;
	background: #79bd2a;
	margin: 12px auto;
}
.sv2-content h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
	text-transform: uppercase;
}
.sv2-content p {
	font-size: 0.9rem;
	color: rgba(255,255,255,0.8);
	line-height: 1.5;
	margin: 0;
}
.sv2-waves {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	overflow: hidden;
}
.sv2-wave-green {
	position: absolute;
	bottom: -10px; /* Offset a bit */
	left: 0;
	width: 100%;
	height: 100%;
}
.sv2-wave-blue {
	position: absolute;
	bottom: -20px; /* Offset a bit more */
	left: 0;
	width: 100%;
	height: 100%;
}

@media (max-width: 1024px) {
	.sv2-grid { flex-wrap: wrap; gap: 40px 0; }
	.sv2-item { flex: 1 1 50%; }
	.sv2-item:nth-child(2)::after, .sv2-item:nth-child(4)::after { display: none; }
}
@media (max-width: 768px) {
	.sv2-item { flex: 1 1 100%; }
	.sv2-item::after { display: none; }
}

/* ============================================================
   SOLAMED � Widgets Custom CSS (fix SVG & images overflow)
   Ce fichier est charg� APRES theme.css pour corriger
   les conflits Elementor sur les widgets personnalis�s.
   ============================================================ */

/* --- RESET GLOBAL pour tous les SVG dans nos widgets --- */
.solamed-about-v2-wrapper svg,
.solamed-valeurs-v2 svg,
.solamed-projects-2030 svg,
.solamed-native-cancer svg,
.solamed-presence-map svg,
.sol-footer-v2 svg {
	max-width: 100%;
	display: block;
}

/* ============================================================
   SECTION 2 - � PROPOS DE SOLAMED
   ============================================================ */
.solamed-about-v2-wrapper {
	padding: 60px 0;
	background: #f8f9fc;
}
.about-v2-main-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.06);
	padding: 20px;
	display: flex;
	align-items: stretch;
	gap: 30px;
	overflow: hidden;
}
/* Image colonne gauche */
.about-v2-media {
	flex: 0 0 34%;
	min-height: 360px;
	background-size: cover;
	background-position: center top;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
}
/* Les SVG vagues dans l'image */
.about-v2-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70px;
	pointer-events: none;
}
.about-v2-wave svg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* Colonne centrale - textes */
.about-v2-content {
	flex: 1;
	padding: 30px 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.about-v2-title {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 12px 0;
}
.about-v2-title .title-blue { color: #06245b; display: block; }
.about-v2-title .title-green { color: #79bd2a; display: block; }
.about-v2-divider {
	width: 40px;
	height: 3px;
	background: #79bd2a;
	margin: 0 0 20px 0;
	border-radius: 2px;
}
.about-v2-desc p {
	font-size: 0.95rem;
	color: #333;
	line-height: 1.65;
	margin: 0 0 12px 0;
}
.about-v2-desc p:last-child { margin: 0; }

/* Colonne droite - cartes Vision/Mission */
.about-v2-cards {
	flex: 0 0 30%;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 20px 0;
	justify-content: center;
}
.av2-small-card {
	background: #fff;
	border: 1px solid #e0e8f0;
	border-radius: 12px;
	padding: 20px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.av2-sc-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.av2-sc-icon svg {
	width: 22px !important;
	height: 22px !important;
	flex-shrink: 0;
	stroke: #fff;
}
.av2-icon-green { background: #79bd2a; }
.av2-icon-blue  { background: #06245b; }
.av2-sc-text { flex: 1; min-width: 0; }
.av2-sc-title {
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 6px 0;
	letter-spacing: 0.03em;
}
.av2-sc-title.text-green { color: #79bd2a; }
.av2-sc-title.text-blue  { color: #06245b; }
.av2-sc-divider {
	height: 2px;
	width: 28px;
	border-radius: 2px;
	margin-bottom: 10px;
}
.av2-div-green { background: #79bd2a; }
.av2-div-blue  { background: #06245b; }
.av2-sc-text p {
	font-size: 0.82rem;
	color: #555;
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 1024px) {
	.about-v2-main-card { flex-direction: column; }
	.about-v2-media { min-height: 280px; border-radius: 12px; }
	.about-v2-content { padding: 20px 0; }
	.about-v2-cards { flex-direction: row; flex-wrap: wrap; }
	.av2-small-card { flex: 1 1 45%; }
}
@media (max-width: 600px) {
	.av2-small-card { flex: 1 1 100%; }
}


/* ============================================================
   SECTION 3 - NOS VALEURS
   ============================================================ */
.solamed-valeurs-v2 {
	background: #06245b;
	position: relative;
	padding: 70px 0 110px;
	overflow: hidden;
	border-radius: 24px;
	margin: 40px auto;
	max-width: calc(100% - 40px);
}
/* Fond motif points */
.sv2-bg-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
	background-size: 22px 22px;
	pointer-events: none;
}
.sv2-container { position: relative; z-index: 2; }

/* En-t�te */
.sv2-header { text-align: center; margin-bottom: 50px; }
.sv2-title {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 12px;
}
.sv2-title .text-white { color: #fff; }
.sv2-title .text-green { color: #79bd2a; }
.sv2-title-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.sv2-title-divider::before,
.sv2-title-divider::after {
	content: "";
	display: block;
	width: 32px;
	height: 1px;
	background: #79bd2a;
}
.sv2-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #79bd2a;
	display: inline-block;
}
/* Grille des valeurs */
.sv2-grid {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	gap: 0;
}
.sv2-item {
	flex: 1;
	text-align: center;
	padding: 0 16px;
	position: relative;
}
.sv2-item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 5%;
	right: 0;
	width: 1px;
	height: 90%;
	background: rgba(255,255,255,0.12);
}
/* Ic�ne avec anneau */
.sv2-icon-wrapper {
	position: relative;
	width: 84px;
	height: 84px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sv2-icon-ring {
	position: absolute;
	inset: 0;
	width: 84px !important;
	height: 84px !important;
	overflow: visible;
}
.sv2-icon {
	position: relative;
	z-index: 2;
	width: 64px;
	height: 64px;
	background: rgba(6,36,91,0.95);
	border: 2px solid rgba(255,255,255,0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sv2-icon svg {
	width: 28px !important;
	height: 28px !important;
	stroke: #fff;
	flex-shrink: 0;
}
/* Texte valeur */
.sv2-content h3 {
	font-size: 0.95rem;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 6px;
}
.sv2-item-divider {
	width: 24px;
	height: 2px;
	background: #79bd2a;
	margin: 0 auto 10px;
	border-radius: 2px;
}
.sv2-content p {
	font-size: 0.82rem;
	color: rgba(255,255,255,0.78);
	line-height: 1.5;
	margin: 0;
}
/* Vagues en bas */
.sv2-waves {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	pointer-events: none;
}
.sv2-waves svg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
.sv2-wave-green { z-index: 1; }
.sv2-wave-blue  { z-index: 2; }

@media (max-width: 900px) {
	.sv2-grid { flex-wrap: wrap; gap: 36px 0; }
	.sv2-item { flex: 1 1 50%; }
	.sv2-item:nth-child(2)::after,
	.sv2-item:nth-child(4)::after { display: none; }
}
@media (max-width: 560px) {
	.sv2-item { flex: 1 1 100%; }
	.sv2-item::after { display: none !important; }
}


/* ============================================================
   SECTION 4 - PROJETS 2030  (fix ic�ne check trop grand)
   ============================================================ */
.p2030-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.p2030-icon svg {
	width: 24px !important;
	height: 24px !important;
	flex-shrink: 0;
	display: block;
}
.p2030-placeholder {
	width: 100%;
	height: 100%;
	min-height: 300px;
	background: #eaeff6;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0 20px 20px 0;
}
.p2030-placeholder svg {
	width: 60px !important;
	height: 60px !important;
	color: #aaa;
}




/* ==========================================================================
   REFONTE DE LA PAGE A PROPOS (QUI SOMMES-NOUS)
   ========================================================================== */

/* --- 1. HERO BANNER --- */
.about-hero {
	position: relative;
	min-height: 450px;
	display: flex;
	align-items: center;
	background-image: linear-gradient(to right, rgba(6, 36, 91, 0.95) 35%, rgba(6, 36, 91, 0.6) 65%, rgba(6, 36, 91, 0.1) 100%), 
	                  url('../images/generated/solamed-hero-exact.webp');
	background-size: cover;
	background-position: center;
	color: #ffffff;
	overflow: hidden;
}

.about-hero__content {
	max-width: 650px;
	text-align: left;
	position: relative;
	z-index: 10;
	padding: 80px 0;
}

.about-hero h1 {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.1;
	margin-bottom: 20px;
	color: #ffffff;
	letter-spacing: -0.02em;
}

.about-hero h1 .text-accent {
	color: var(--solamed-accent);
}

.about-hero__desc {
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 400;
}

.about-hero__desc .text-accent {
	color: var(--solamed-accent);
	font-weight: 700;
}

.about-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

.about-hero__actions .button--outline {
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}

.about-hero__actions .button--outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

/* --- 2. INTRO & VISION/MISSION GRID --- */
.about-intro-v3 {
	padding: 90px 0;
	background-color: #ffffff;
}

.about-intro-v3__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr 1.2fr;
	gap: 50px;
	align-items: center;
}

.about-intro-v3__image img {
	width: 100%;
	border-radius: var(--solamed-radius);
	box-shadow: var(--solamed-shadow);
	aspect-ratio: 1.05 / 1;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.about-intro-v3__image img:hover {
	transform: scale(1.02);
}

.about-intro-v3__content {
	padding-right: 10px;
}

.about-intro-v3__subtitle {
	display: block;
	color: var(--solamed-accent);
	font-weight: 800;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.about-intro-v3__title {
	font-size: clamp(1.7rem, 2.5vw, 2.3rem);
	color: var(--solamed-dark);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 16px;
}

.about-intro-v3__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 4px;
	background-color: var(--solamed-accent);
	border-radius: 2px;
}

.about-intro-v3__desc p {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--solamed-muted);
	margin-bottom: 18px;
}

.about-intro-v3__desc p strong {
	color: var(--solamed-dark);
	font-weight: 700;
}

.about-intro-v3__cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about-vm-v3-card {
	display: flex;
	align-items: flex-start;
	gap: 22px;
	padding: 26px;
	background: #ffffff;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	box-shadow: var(--solamed-shadow-sm);
	transition: all 0.3s ease;
}

.about-vm-v3-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--solamed-shadow);
	border-color: rgba(6, 60, 137, 0.15);
}

.about-vm-v3-card__icon {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	transition: transform 0.3s ease;
}

.about-vm-v3-card:hover .about-vm-v3-card__icon {
	transform: scale(1.08);
}

.about-vm-v3-card__icon.icon-green {
	background-color: rgba(121, 189, 42, 0.1);
	color: var(--solamed-accent);
}

.about-vm-v3-card__icon.icon-blue {
	background-color: rgba(6, 60, 137, 0.1);
	color: var(--solamed-primary);
}

.about-vm-v3-card__icon svg {
	width: 26px;
	height: 26px;
}

.about-vm-v3-card__text h3 {
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	margin-bottom: 8px;
}

.about-vm-v3-card__text h3.text-green {
	color: var(--solamed-accent);
}

.about-vm-v3-card__text h3.text-blue {
	color: var(--solamed-primary);
}

.about-vm-v3-card__text p {
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--solamed-muted);
	margin: 0;
}

/* --- 3. EXPERTISE & APPROCHE --- */
.about-approach {
	padding: 95px 0 90px;
	background-color: #f6f9fd;
	text-align: center;
}

.about-approach__header h2 {
	font-size: clamp(1.6rem, 2.5vw, 2.1rem);
	color: var(--solamed-dark);
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 60px;
	letter-spacing: 0.02em;
	position: relative;
	display: inline-block;
}

.about-approach__header h2::after {
	content: "";
	display: block;
	width: 70px;
	height: 4px;
	background-color: var(--solamed-accent);
	margin: 15px auto 0;
	border-radius: 2px;
}

.about-approach__timeline {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
}

.about-approach__line {
	position: absolute;
	top: 52px;
	left: 10%;
	right: 10%;
	height: 2px;
	background-image: linear-gradient(to right, transparent, var(--solamed-accent) 20%, var(--solamed-accent) 80%, transparent);
	border-top: 2px dashed rgba(121, 189, 42, 0.35);
	z-index: 1;
}

.about-approach__steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	position: relative;
	z-index: 2;
}

.about-approach__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 12px;
}

.about-approach__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 2px solid var(--solamed-accent);
	color: var(--solamed-accent);
	margin-bottom: 24px;
	box-shadow: var(--solamed-shadow-sm);
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-approach__step:hover .about-approach__icon {
	background-color: var(--solamed-accent);
	color: #ffffff;
	transform: translateY(-5px) scale(1.08);
	box-shadow: 0 10px 20px rgba(121, 189, 42, 0.3);
}

.about-approach__icon svg {
	width: 26px;
	height: 26px;
}

.about-approach__title {
	font-size: 0.95rem;
	font-weight: 800;
	color: var(--solamed-dark);
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.about-approach__desc {
	font-size: 0.86rem;
	line-height: 1.55;
	color: var(--solamed-muted);
	margin: 0;
	max-width: 200px;
}

/* --- 4. NOS VALEURS BANNER --- */
.about-values-v3 {
	position: relative;
	background-color: #06245b; /* var(--solamed-dark) */
	padding: 80px 0 160px;
	overflow: hidden;
	color: #ffffff;
}

.about-values-v3::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 85% 20%, rgba(121, 189, 42, 0.14) 0%, transparent 60%),
	                  radial-gradient(circle at 15% 85%, rgba(6, 60, 137, 0.4) 0%, transparent 60%),
	                  url('../images/generated/solamed-footer-pattern.svg');
	background-size: cover, cover, 400px;
	opacity: 0.65;
	pointer-events: none;
	z-index: 1;
}

.about-values-v3__wave-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	overflow: hidden;
	z-index: 2;
	transform: translateY(-99%);
}

.about-values-v3__wave-top svg {
	width: 100%;
	height: 100%;
	display: block;
}

.about-values-v3__container {
	position: relative;
	z-index: 3;
}

.about-values-v3__header {
	text-align: center;
	margin-bottom: 60px;
}

.about-values-v3__header h2 {
	font-size: clamp(1.7rem, 2.5vw, 2.2rem);
	color: #ffffff;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.about-values-v3__divider {
	width: 60px;
	height: 3px;
	background-color: var(--solamed-accent);
	margin: 15px auto 0;
	border-radius: 2px;
}

.about-values-v3__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.about-values-v3__card {
	text-align: center;
	padding: 30px 15px;
	transition: all 0.3s ease;
	border-radius: var(--solamed-radius);
	background-color: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(5px);
}

.about-values-v3__card:hover {
	transform: translateY(-6px);
	background-color: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0 15px 35px rgba(6, 24, 91, 0.3);
}

.about-values-v3__icon-wrapper {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.15);
	background-color: rgba(255, 255, 255, 0.03);
	color: #ffffff;
	margin: 0 auto 24px;
	transition: all 0.3s ease;
}

.about-values-v3__card:hover .about-values-v3__icon-wrapper {
	background-color: var(--solamed-accent);
	border-color: var(--solamed-accent);
	box-shadow: 0 0 20px rgba(121, 189, 42, 0.5);
}

.about-values-v3__icon-wrapper svg {
	width: 32px;
	height: 32px;
}

.about-values-v3__card h3 {
	font-size: 0.95rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 12px;
	letter-spacing: 0.04em;
}

.about-values-v3__card p {
	font-size: 0.85rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.about-values-v3__waves-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120px;
	z-index: 4;
}

.about-values-v3__waves-bottom svg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.about-values-v3__waves-bottom .hero__wave-blue {
	z-index: 1;
}

.about-values-v3__waves-bottom .hero__wave-green {
	z-index: 2;
}

.about-values-v3__waves-bottom .hero__wave-white {
	z-index: 3;
}

/* --- 5. POURQUOI SOLAMED --- */
.about-why {
	padding: 95px 0;
	background-color: #ffffff;
	text-align: center;
}

.about-why__header h2 {
	font-size: clamp(1.6rem, 2.5vw, 2.1rem);
	color: var(--solamed-dark);
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 60px;
	letter-spacing: 0.02em;
	position: relative;
	display: inline-block;
}

.about-why__header h2::after {
	content: "";
	display: block;
	width: 70px;
	height: 4px;
	background-color: var(--solamed-accent);
	margin: 15px auto 0;
	border-radius: 2px;
}

.about-why__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
}

.about-why__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 26px;
	text-align: center;
	position: relative;
	transition: transform 0.3s ease;
}

.about-why__item:hover {
	transform: translateY(-3px);
}

.about-why__item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 15%;
	height: 70%;
	width: 1px;
	background-color: var(--solamed-border);
}

.about-why__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	color: var(--solamed-accent);
	margin-bottom: 22px;
	transition: all 0.3s ease;
}

.about-why__item:hover .about-why__icon {
	transform: scale(1.15);
	color: var(--solamed-primary);
}

.about-why__icon svg {
	width: 38px;
	height: 38px;
}

.about-why__text h3 {
	font-size: 0.95rem;
	font-weight: 800;
	color: var(--solamed-dark);
	margin-bottom: 12px;
	line-height: 1.45;
}

.about-why__text p {
	font-size: 0.85rem;
	line-height: 1.55;
	color: var(--solamed-muted);
	margin: 0;
}

/* --- 6. CTA BANNER CUSTOM --- */
.about-cta-banner {
	padding: 40px 0 90px;
	background-color: #ffffff;
}

.about-cta-banner__inner {
	background: linear-gradient(90deg, #06245b 0%, #063c89 55%, var(--solamed-accent) 55.1%, var(--solamed-accent) 100%);
	border-radius: 50px;
	padding: 20px 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: var(--solamed-shadow-sm);
	overflow: hidden;
	position: relative;
}

.about-cta-banner__text {
	flex: 1;
	text-align: left;
}

.about-cta-banner__text p {
	color: #ffffff;
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.4;
}

.about-cta-banner__divider {
	width: 1px;
	height: 30px;
	background-color: rgba(255, 255, 255, 0.25);
	margin: 0 40px;
}

.about-cta-banner__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 28px;
	border: 2px solid #ffffff;
	border-radius: 50px;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 800;
	text-transform: uppercase;
	transition: all 0.3s ease;
	background: transparent;
	letter-spacing: 0.02em;
}

.about-cta-banner__btn:hover {
	background-color: #ffffff;
	color: var(--solamed-accent-dark, #5ea51c);
	border-color: #ffffff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-cta-banner__btn svg {
	width: 14px;
	height: 14px;
	transition: transform 0.3s ease;
}

.about-cta-banner__btn:hover svg {
	transform: translateX(4px);
}

/* --- 7. RESPONSIVE FOR NEW SECTIONS --- */
@media (max-width: 1200px) {
	.about-intro-v3__grid {
		gap: 30px;
	}
	.about-why__item {
		padding: 20px 15px;
	}
}

@media (max-width: 991px) {
	.about-intro-v3__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.about-intro-v3__image img {
		max-height: 400px;
		aspect-ratio: 16 / 9;
		margin: 0 auto;
	}
	.about-approach__line {
		display: none;
	}
	.about-approach__steps {
		grid-template-columns: 1fr;
		gap: 35px;
	}
	.about-approach__step {
		flex-direction: row;
		text-align: left;
		align-items: flex-start;
		gap: 20px;
		max-width: 500px;
		margin: 0 auto;
	}
	.about-approach__icon {
		margin-bottom: 0;
		flex-shrink: 0;
	}
	.about-approach__desc {
		max-width: none;
	}
	.about-values-v3__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.about-why__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.about-why__item {
		padding: 20px;
		border-bottom: 1px solid var(--solamed-border);
		max-width: 500px;
		margin: 0 auto;
	}
	.about-why__item:last-child {
		border-bottom: none;
	}
	.about-why__item:not(:last-child)::after {
		display: none;
	}
	.about-cta-banner__inner {
		background: linear-gradient(180deg, #06245b 0%, #063c89 60%, var(--solamed-accent) 60.1%, var(--solamed-accent) 100%);
		flex-direction: column;
		gap: 22px;
		padding: 30px 25px;
		border-radius: 24px;
		text-align: center;
	}
	.about-cta-banner__text {
		text-align: center;
	}
	.about-cta-banner__divider {
		display: none;
	}
}

@media (max-width: 767px) {
	.about-values-v3__grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}
}

/* ═══════════════════════════════════════════════════════════
   PAGE PROJETS 2026-2030 (Roadmap)
   ═══════════════════════════════════════════════════════════ */
.roadmap-section {
	padding: 70px 0;
	background: #fff;
}

.roadmap-intro {
	text-align: center;
	margin-bottom: 48px;
}

.roadmap-intro h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	text-transform: uppercase;
	color: var(--solamed-dark);
	margin-bottom: 0.4em;
}

.roadmap-intro h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: var(--solamed-accent);
	margin: 14px auto 0;
	border-radius: 2px;
}

.roadmap-intro p {
	color: var(--solamed-muted);
	font-size: 1rem;
	max-width: 640px;
	margin: 0 auto;
}

.roadmap-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.objective-card {
	display: flex;
	flex-direction: column;
	padding: 32px 24px;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	background: #fff;
	transition: all var(--solamed-transition);
	text-align: center;
	align-items: center;
}

.objective-card:hover {
	box-shadow: var(--solamed-shadow);
	transform: translateY(-4px);
}

.objective-card__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--solamed-primary), var(--solamed-accent));
	color: #fff;
	flex-shrink: 0;
}

.objective-card h3 {
	font-size: 0.95rem;
	text-transform: uppercase;
	color: var(--solamed-primary);
	margin-bottom: 10px;
	line-height: 1.3;
}

.objective-card p {
	color: var(--solamed-muted);
	font-size: 0.85rem;
	line-height: 1.55;
	margin: 0;
}

@media (max-width: 1024px) {
	.roadmap-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.roadmap-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-inline: auto;
	}
	.roadmap-intro h2 {
		font-size: 1.4rem;
	}
}

@media (max-width: 480px) {
	.objective-card {
		padding: 24px 18px;
	}
}

/* ═══════════════════════════════════════════════════════════
   PAGE ACTUALITES (News Grid)
   ═══════════════════════════════════════════════════════════ */
.solamed-actualites-wrapper {
	min-height: 60vh;
}

.news-grid-layout {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin: 60px 0;
}

.news-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius);
	overflow: hidden;
	transition: all var(--solamed-transition);
}

.news-card:hover {
	box-shadow: var(--solamed-shadow);
	transform: translateY(-4px);
}

.news-card__image {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--solamed-bg);
}

.news-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--solamed-transition);
}

.news-card:hover .news-card__image img {
	transform: scale(1.05);
}

.news-card__image--placeholder {
	display: grid;
	place-items: center;
	color: var(--solamed-muted);
}

.news-card__image--placeholder a {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--solamed-muted);
	opacity: 0.5;
}

.news-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 20px 22px 24px;
}

.news-card__date {
	font-size: 0.78rem;
	color: var(--solamed-accent);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 600;
	margin-bottom: 6px;
}

.news-card__body h3 {
	margin: 0 0 10px;
	font-size: 1.05rem;
	line-height: 1.35;
}

.news-card__body h3 a {
	color: var(--solamed-dark);
	text-decoration: none;
}

.news-card__body h3 a:hover {
	color: var(--solamed-accent);
}

.news-card__body p {
	font-size: 0.85rem;
	color: var(--solamed-muted);
	line-height: 1.55;
	margin: 0 0 14px;
	flex: 1;
}

.news-card__link {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--solamed-primary);
	text-decoration: none;
	align-self: flex-start;
	transition: color var(--solamed-transition);
}

.news-card__link:hover {
	color: var(--solamed-accent);
}

@media (max-width: 1024px) {
	.news-grid-layout {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.news-grid-layout {
		grid-template-columns: 1fr;
		max-width: 440px;
		margin-inline: auto;
	}
	.news-card__body {
		padding: 16px 18px 20px;
	}
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE - Align with existing CSS classes
   ═══════════════════════════════════════════════════════════ */
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
	padding: 60px 0;
}

.contact-info h2 {
	text-transform: uppercase;
	margin-bottom: 16px;
}

.contact-info > p {
	color: var(--solamed-muted);
	margin-bottom: 28px;
	max-width: 420px;
}

.contact-details {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-details li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.contact-details__icon {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--solamed-primary), var(--solamed-accent));
	color: #fff;
	padding: 10px;
}

.contact-details__icon svg {
	width: 100%;
	height: 100%;
}

.contact-details__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-top: 4px;
}

.contact-details__label {
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	color: var(--solamed-dark);
	letter-spacing: 0.03em;
}

.contact-details__value {
	font-size: 0.92rem;
	color: var(--solamed-muted);
	line-height: 1.45;
}

.contact-details__value a {
	color: var(--solamed-primary);
	text-decoration: none;
}

.contact-details__value a:hover {
	color: var(--solamed-accent);
	text-decoration: underline;
}

.contact-form-wrapper h2 {
	text-transform: uppercase;
	margin-bottom: 24px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contact-form__field label {
	font-size: 0.82rem;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--solamed-dark);
	letter-spacing: 0.03em;
}

.contact-form__field input,
.contact-form__field textarea {
	padding: 12px 14px;
	border: 1px solid var(--solamed-border);
	border-radius: var(--solamed-radius-sm);
	font-size: 0.92rem;
	font-family: inherit;
	background: #fff;
	transition: border-color var(--solamed-transition);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
	outline: none;
	border-color: var(--solamed-accent);
	box-shadow: 0 0 0 3px rgba(121, 189, 42, 0.15);
}

.contact-form__field textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-form .button--arrow {
	align-self: flex-start;
	margin-top: 8px;
}

@media (max-width: 1024px) {
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.contact-form__row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.contact-layout {
		padding: 40px 0;
	}
	.contact-details__icon {
		width: 38px;
		height: 38px;
		padding: 8px;
	}
}
