/*
Theme Name: Twenty Twenty-Three
Theme URI: https://wordpress.org/themes/twentytwentythree
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Three is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself.
Requires at least: 6.1
Tested up to: 6.8
Requires PHP: 5.6
Version: 2.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Text Domain: twentytwentythree
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/* ============================================
   VARIABLES & RESET
   ============================================ */

:root {
	/* Couleurs */
	--tpms-blue: #052a7b;
	--tpms-blue-dark: #041d54;
	--tpms-red: #e6334c;
	--tpms-red-hover: #c82038;
	--tpms-white: #ffffff;
	--tpms-gray-light: #f8f9fa;
	--tpms-gray-medium: #e9ecef;
	--tpms-gray-dark: #666;
	
	/* Typographie */
	--tpms-font-heading: var(--wp--preset--font-family--bebas-neue);
	--tpms-font-body: var(--wp--preset--font-family--bahnschrift);
	
	/* Espacements */
	--tpms-spacing-xs: 0.5rem;
	--tpms-spacing-sm: 1rem;
	--tpms-spacing-md: 2rem;
	--tpms-spacing-lg: 4rem;
	--tpms-spacing-xl: 6rem;
	
	/* Container */
	--tpms-container-max: 1200px;
	--tpms-container-wide: 1440px;
	
	/* Transitions */
	--tpms-transition-fast: 0.2s ease;
	--tpms-transition-base: 0.3s ease;
	--tpms-transition-slow: 0.4s ease;
	
	/* Shadows */
	--tpms-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--tpms-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
	--tpms-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
	--tpms-shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
	
	/* Border radius */
	--tpms-radius-sm: 8px;
	--tpms-radius-md: 12px;
	--tpms-radius-lg: 20px;
}

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

html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
}

.wp-site-blocks {
	padding: 0 !important;
	margin: 0 !important;
	max-width: none !important;
	width: 100% !important;
	overflow-x: hidden;
}

/* ============================================
   COMPOSANTS UTILITAIRES
   ============================================ */

/* Container */
.tpms-container {
	max-width: var(--tpms-container-max);
	margin: 0 auto;
	padding: 0 clamp(1rem, 4vw, 2rem);
}

.tpms-container--wide {
	max-width: var(--tpms-container-wide);
}

/* Boutons */
.tpms-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--tpms-spacing-xs);
	border-radius: var(--tpms-radius-md);
	border: 2px solid transparent;
	background-color: transparent;
	letter-spacing: 0.05em;
	padding: 0.9rem 2.5rem;
	text-transform: uppercase;
	text-decoration: none;
	font-family: var(--tpms-font-heading);
	font-size: 1rem;
	transition: all var(--tpms-transition-fast);
	cursor: pointer;
}

.tpms-button--primary {
	background-color: var(--tpms-red);
	border-color: var(--tpms-red);
	color: var(--tpms-white);
}

.tpms-button--primary:hover {
	background-color: var(--tpms-red-hover);
	border-color: var(--tpms-red-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(230, 51, 76, 0.3);
}

.tpms-button--secondary {
	border-color: var(--tpms-white);
	color: var(--tpms-white);
}

.tpms-button--secondary:hover {
	background-color: var(--tpms-white);
	color: var(--tpms-blue);
	transform: translateY(-2px);
}

/* Headings communs */
.tpms-section-heading {
	font-family: var(--tpms-font-heading);
	color: var(--tpms-blue);
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0 0 var(--tpms-spacing-md);
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0.03em;
}

/* Hero Section partagée */
.tpms-hero-base {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	padding: 5rem 2rem;
	text-align: center;
	overflow: hidden;
	background: linear-gradient(135deg, var(--tpms-blue) 0%, var(--tpms-blue-dark) 100%);
}

.tpms-hero-base::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(230, 51, 76, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.tpms-hero-base__content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.tpms-hero-base__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: var(--tpms-white);
	margin: 0 0 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
}

.tpms-hero-base__subtitle {
	font-family: var(--tpms-font-body);
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	line-height: 1.6;
}

/* Cards partagés */
.tpms-card {
	background-color: var(--tpms-white);
	border-radius: var(--tpms-radius-md);
	box-shadow: var(--tpms-shadow-md);
	transition: all var(--tpms-transition-base);
}

.tpms-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--tpms-shadow-xl);
}

/* CTA Section partagée */
.tpms-cta-section {
	background: linear-gradient(135deg, var(--tpms-blue) 0%, var(--tpms-blue-dark) 100%);
	padding: var(--tpms-spacing-lg) 0;
	position: relative;
	overflow: hidden;
}

.tpms-cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" x="0" y="0" fill="rgba(255,255,255,0.05)"/></svg>');
}

.tpms-cta-section__content {
	position: relative;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.tpms-cta-section__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--tpms-white);
	margin: 0 0 var(--tpms-spacing-sm);
	text-transform: uppercase;
}

.tpms-cta-section__text {
	font-family: var(--tpms-font-body);
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 var(--tpms-spacing-md);
	line-height: 1.6;
}

.tpms-cta-section__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: var(--tpms-spacing-sm);
	justify-content: center;
	align-items: center;
}

/* ============================================
   HEADER
   ============================================ */

.tpms-header {
	background-color: var(--tpms-blue);
	color: var(--tpms-white);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: box-shadow 0.3s ease;
}

.tpms-header-spacer {
	margin: 0 !important;
	padding: 0 !important;
}

.tpms-header.tpms-header--scrolled {
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.tpms-header__inner {
	display: flex;
	align-items: center;
	padding: 12px 20px !important;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	justify-content: space-between;
	transition: padding 0.3s ease;
}

.tpms-header--scrolled .tpms-header__inner {
	padding: 6px 20px !important;
}

.tpms-header__branding {
	align-items: center;
	gap: 1.25rem;
	z-index: 101;
	position: relative;
}

.tpms-header__logo img,
.tpms-header__logo svg,
.tpms-header__logo-img {
	max-height: none;
	max-width: 100%;
	width: 170px;
	height: auto;
	transition: width 0.3s ease;
}

.tpms-header--scrolled .tpms-header__logo img,
.tpms-header--scrolled .tpms-header__logo svg,
.tpms-header--scrolled .tpms-header__logo-img {
	width: 120px;
}

.tpms-header__nav {
	margin-left: auto;
}

.tpms-header__menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 10px;
}

.tpms-header__menu li {
	margin: 0;
	position: relative;
}

.tpms-header__menu a {
	font-family: var(--tpms-font-heading);
	color: var(--tpms-white);
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	padding: 0.35rem 0.65rem;
	transition: color 0.25s ease, transform 0.25s ease;
	display: block;
}

.tpms-header__menu a:hover {
	color: #eef4ff;
	transform: translateY(-1px);
	background: rgba(255 ,255,255,0.08);
}

/* Dropdown Menu */
.tpms-header__menu-item--has-dropdown {
	position: relative;
}

.tpms-header__dropdown-arrow {
	display: none;
}

.tpms-header__menu-item--has-dropdown:hover .tpms-header__menu-link::after {
	transform: rotate(180deg);
}

.tpms-header__submenu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--tpms-blue);
	border-top: 2px solid var(--tpms-red);
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
	z-index: 1000;
}

.tpms-header__menu-item--has-dropdown:hover .tpms-header__submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.tpms-header__submenu li {
	margin: 0;
}

.tpms-header__submenu a {
	padding: 0.6rem 1.2rem;
	font-size: 0.9rem;
	white-space: nowrap;
	border-left: 3px solid transparent;
	transition: all 0.2s ease;
}

.tpms-header__submenu a:hover {
	background: rgba(230, 51, 76, 0.15);
	border-left-color: var(--tpms-red);
	transform: translateX(3px);
}

/* Mobile Menu Toggle */
.tpms-header__toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 101;
	position: relative;
}

.tpms-header__toggle span {
	display: block;
	width: 25px;
	height: 2px;
	background-color: var(--tpms-white);
	margin: 5px 0;
	transition: all 0.3s ease;
}

.tpms-header__toggle.is-active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.tpms-header__toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.tpms-header__toggle.is-active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HOMEPAGE
   ============================================ */
.tpms-home {
	background-color: #f2f3f8;
	display: flex;
	flex-direction: column;
	margin: 0;
}

/* Hero Section */
.tpms-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 600px;
	padding: 4rem 0 6rem;
	margin: 0 0 3rem 0;
	color: var(--tpms-white);
	overflow: hidden;
	max-width: 100%;
	width: 100%;
}

.tpms-hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.tpms-hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(110%);
}

.tpms-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(5, 55, 174, 80%) 0%, rgb(0 14 44 / 39%) 60%, rgb(0 0 0 / 86%) 100%);
}

.tpms-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: clamp(2rem, 5vw, 4rem);
	margin: 0 auto;
}

.tpms-hero__text {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	max-width: 540px;
}

.tpms-hero__headline {
	font-family: var(--tpms-font-heading);
	color: var(--tpms-white);
	font-size: 5rem;
	margin: 0;
	text-transform: uppercase;
}

.tpms-hero__description {
	color: #f5f5f5;
	font-family: var(--tpms-font-body);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	margin: 0;
	line-height: 1.6;
}

.tpms-hero__buttons {
	font-family: var(--tpms-font-heading);
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.tpms-hero__visual img {
	max-width: clamp(320px, 42vw, 460px);
	width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.45));
}

/* Highlights Section */
.tpms-highlights {
	max-width: 1440px;
	margin: -5rem auto 0;
	z-index: 2;
}

.tpms-highlights__inner {
	background: var(--tpms-white);
	border-radius: 24px;
	box-shadow: 0 24px 50px rgba(5, 42, 123, 0.12);
	padding: clamp(2rem, 6vw, 3rem);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 5vw, 4rem);
	margin: 0 auto;
}

.tpms-highlights__item {
	display: flex;
	align-items: start;
	gap: 1rem;
}

.tpms-highlights__icon {
	display: flex;
	align-items: center;
	max-width: 52px;
	height: auto;
}

.tpms-highlights__title {
	font-family: var(--tpms-font-heading);
	font-size: 1.05rem;
	letter-spacing: 0.07em;
	margin: 0;
	text-transform: uppercase;
}

.tpms-highlights__text {
	font-family: var(--tpms-font-body);
	color: #0f1c3f;
	margin: 0;
	line-height: 1.3;
	margin-top: 0.5rem;
}

/* Solutions Section */
.tpms-solutions {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1440px;
	margin: 5rem auto;
	gap: clamp(2rem, 6vw, 3rem);
}

.tpms-solutions__heading {
	font-family: var(--tpms-font-heading);
	color: #00206d;
	font-size: 80px;
	font-weight: 900;
	letter-spacing: 0.05em;
	margin: 0;
	text-transform: uppercase;
}

.tpms-solutions__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	width: 90%;
	margin: 0 auto;
}

.tpms-solutions__card {
	background: var(--tpms-white);
	border-radius: 20px;
	box-shadow: 0 18px 40px rgba(15, 28, 63, 0.12);
	padding: clamp(1.5rem, 4vw, 2rem);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.25rem;
	position: relative;
	max-width: 320px;
}

.tpms-solutions__image {
	border-radius: 12px;
	height: auto;
	position: absolute;
	right: 30px;
}

.tpms-solutions__title {
	font-family: var(--tpms-font-heading);
	color: #00206d;
	width: 70%;
	font-size: 3.5rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 3.5rem;
	margin: 0;
	z-index: 1;
	text-transform: uppercase;
	margin-bottom: 2rem;
}

.tpms-solutions__text {
	margin: 0;
	color: #17203b;
	line-height: 1.6;
	z-index: 1;
	font-family: var(--tpms-font-body);
	height: 170px;
}

/* Trust Section */
.tpms-trust {
	width: 100%;
	background-color: var(--tpms-blue);
	color: var(--tpms-white);
	padding: clamp(3rem, 6vw, 4rem) 0;
}

.tpms-trust__inner {
	width: min(100%, 1440px);
	margin: 0 auto;
	padding-inline: clamp(1rem, 4vw, 3rem);
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: center;
	text-align: center;
}

.tpms-trust__heading {
	font-family: var(--tpms-font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0;
	text-transform: uppercase;
}

.tpms-trust__logos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: clamp(1rem, 3vw, 2.5rem);
	width: 100%;
}

.tpms-trust__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
}

.tpms-trust__logo img {
	max-height: 64px;
	max-width: 100%;
	width: auto;
	height: auto;
	filter: brightness(110%);
}

/* Industrial Misting Section */
.tpms-industrial {
	background-color: #f4f4f4;
	padding: 80px 20px;
}

.tpms-industrial__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.tpms-industrial__heading {
	color: var(--tpms-blue);
	font-family: var(--tpms-font-heading);
	font-size: 3rem;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 60px;
}

.tpms-industrial__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.tpms-industrial__card {
	background-color: var(--tpms-white);
	padding: 40px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.tpms-industrial__title {
	color: var(--tpms-blue);
	font-family: var(--tpms-font-heading);
	font-size: 1.5rem;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 20px;
	line-height: 1.2;
}

.tpms-industrial__text {
	color: #333;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.tpms-industrial__card--highlight {
	background-color: var(--tpms-blue);
	color: var(--tpms-white);
}

.tpms-industrial__card--highlight .tpms-industrial__title {
	color: var(--tpms-white);
	font-size: 1.8rem;
	margin-bottom: 30px;
}

/* ============================================
   SINGLE ARTICLE PAGE
   ============================================ */

.tpms-single-article {
	background-color: var(--tpms-white);
}

/* Article Hero */
.tpms-article-hero {
	position: relative;
	min-height: 300px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.tpms-article-hero__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tpms-article-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		rgba(5, 42, 123, 0.5) 0%,
		rgba(5, 42, 123, 0.85) 100%
	);
}

.tpms-article-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: var(--tpms-spacing-xl) 0;
}

.tpms-article-hero__breadcrumb {
	display: flex;
	align-items: center;
	gap: var(--tpms-spacing-xs);
	color: var(--tpms-white);
	font-size: 0.875rem;
	margin-bottom: var(--tpms-spacing-md);
}

.tpms-article-hero__breadcrumb a {
	color: var(--tpms-white);
	text-decoration: none;
	transition: opacity var(--tpms-transition-fast);
}

.tpms-article-hero__breadcrumb a:hover {
	opacity: 0.8;
}

.tpms-article-hero__breadcrumb span:last-child {
	opacity: 0.7;
}

.tpms-article-hero__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 700;
	color: var(--tpms-white);
	line-height: 1.1;
	margin: 0 0 var(--tpms-spacing-md);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tpms-article-hero__meta {
	display: flex;
	gap: var(--tpms-spacing-md);
	color: var(--tpms-white);
	font-size: 1rem;
}

.tpms-article-hero__date {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	opacity: 0.9;
}

.tpms-article-hero__date svg {
	opacity: 0.8;
}

/* Article Content */
.tpms-article-content {
	padding: var(--tpms-spacing-xl) 0;
}

/* Article Body */
.tpms-article-body {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.125rem;
	line-height: 1.8;
	color: #333;
}

.tpms-article-body h2 {
	font-family: var(--tpms-font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--tpms-blue);
	margin: var(--tpms-spacing-lg) 0 var(--tpms-spacing-md);
	letter-spacing: 0.02em;
}

.tpms-article-body h3 {
	font-family: var(--tpms-font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--tpms-blue);
	margin: var(--tpms-spacing-md) 0 var(--tpms-spacing-sm);
	letter-spacing: 0.02em;
}

.tpms-article-body h4,
.tpms-article-body h5,
.tpms-article-body h6 {
	font-family: var(--tpms-font-heading);
	font-weight: 600;
	color: var(--tpms-blue);
	margin: var(--tpms-spacing-md) 0 var(--tpms-spacing-sm);
	letter-spacing: 0.02em;
}

.tpms-article-body p {
	margin-bottom: var(--tpms-spacing-md);
}

.tpms-article-body ul,
.tpms-article-body ol {
	margin: var(--tpms-spacing-md) 0;
	padding-left: 2rem;
}

.tpms-article-body li {
	margin-bottom: var(--tpms-spacing-sm);
}

.tpms-article-body a {
	color: var(--tpms-red);
	text-decoration: underline;
	transition: color var(--tpms-transition-fast);
}

.tpms-article-body a:hover {
	color: var(--tpms-red-hover);
}

.tpms-article-body img {
	max-width: 100%;
	height: auto;
	border-radius: var(--tpms-radius-md);
	margin: var(--tpms-spacing-md) 0;
}

.tpms-article-body blockquote {
	border-left: 4px solid var(--tpms-red);
	padding-left: var(--tpms-spacing-md);
	margin: var(--tpms-spacing-lg) 0;
	font-style: italic;
	color: var(--tpms-gray-dark);
}

.tpms-article-body pre {
	background-color: var(--tpms-gray-light);
	padding: var(--tpms-spacing-md);
	border-radius: var(--tpms-radius-sm);
	overflow-x: auto;
	margin: var(--tpms-spacing-md) 0;
}

.tpms-article-body code {
	background-color: var(--tpms-gray-light);
	padding: 0.125rem 0.375rem;
	border-radius: 3px;
	font-size: 0.9em;
}

.tpms-article-body pre code {
	background: none;
	padding: 0;
}

/* Article Tags */
.tpms-article-tags {
	max-width: 800px;
	margin: var(--tpms-spacing-lg) auto;
	padding-top: var(--tpms-spacing-lg);
	border-top: 1px solid var(--tpms-gray-medium);
	display: flex;
	align-items: center;
	gap: var(--tpms-spacing-sm);
	flex-wrap: wrap;
}

.tpms-article-tags strong {
	color: var(--tpms-blue);
}

.tpms-article-tags a {
	padding: 0.25rem 0.75rem;
	background-color: var(--tpms-gray-light);
	color: var(--tpms-gray-dark);
	text-decoration: none;
	font-size: 0.875rem;
	border-radius: var(--tpms-radius-sm);
	transition: all var(--tpms-transition-fast);
}

.tpms-article-tags a:hover {
	background-color: var(--tpms-blue);
	color: var(--tpms-white);
}

/* Article Navigation */
.tpms-article-navigation {
	max-width: 800px;
	margin: var(--tpms-spacing-xl) auto 0;
	padding-top: var(--tpms-spacing-lg);
	border-top: 1px solid var(--tpms-gray-medium);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--tpms-spacing-md);
}

.tpms-article-nav-prev,
.tpms-article-nav-next {
	display: flex;
}

.tpms-article-nav-next {
	justify-content: flex-end;
}

.tpms-article-nav-link {
	display: flex;
	align-items: center;
	gap: var(--tpms-spacing-sm);
	padding: var(--tpms-spacing-md);
	background-color: var(--tpms-gray-light);
	border-radius: var(--tpms-radius-md);
	text-decoration: none;
	transition: all var(--tpms-transition-base);
	max-width: 100%;
}

.tpms-article-nav-link:hover {
	background-color: var(--tpms-blue);
	color: var(--tpms-white);
	transform: translateY(-2px);
	box-shadow: var(--tpms-shadow-md);
}

.tpms-article-nav-link svg {
	flex-shrink: 0;
	transition: transform var(--tpms-transition-fast);
}

.tpms-article-nav-link:hover svg {
	transform: translateX(-3px);
}

.tpms-article-nav-next .tpms-article-nav-link:hover svg {
	transform: translateX(3px);
}

.tpms-article-nav-info {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.tpms-article-nav-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.7;
}

.tpms-article-nav-title {
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1.3;
}

/* Back Button */
.tpms-article-back {
	max-width: 800px;
	margin: var(--tpms-spacing-lg) auto 0;
	text-align: center;
}

.tpms-article-back .tpms-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.tpms-article-back .tpms-button svg {
	transition: transform var(--tpms-transition-fast);
}

.tpms-article-back .tpms-button:hover svg {
	transform: translateX(-3px);
}

/* Article CTA Section */
.tpms-article-cta {
	margin-top: var(--tpms-spacing-xl);
	padding: var(--tpms-spacing-xl) 0;
	background: linear-gradient(135deg, var(--tpms-blue) 0%, var(--tpms-blue-dark) 100%);
}

.tpms-article-cta .tpms-cta-section__content {
	text-align: center;
	color: var(--tpms-white);
}

.tpms-article-cta .tpms-cta-section__title {
	color: var(--tpms-white);
}

.tpms-article-cta .tpms-button--secondary {
	background-color: transparent;
	border: 2px solid var(--tpms-white);
	color: var(--tpms-white);
}

.tpms-article-cta .tpms-button--secondary:hover {
	background-color: var(--tpms-white);
	color: var(--tpms-blue);
}

/* ============================================
   RESPONSIVE - GLOBAL
   ============================================ */

/* Tablet & Mobile */
@media (max-width: 1024px) {
	/* Hero Homepage */
	.tpms-hero {
		padding-inline: clamp(1.5rem, 6vw, 3rem);
	}

	.tpms-hero__content {
		flex-direction: column;
		align-items: flex-start;
	}

	.tpms-hero__visual {
		width: 100%;
		display: flex;
		justify-content: center;
		margin-top: var(--tpms-spacing-md);
	}

	/* Highlights */
	.tpms-highlights__inner {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Solutions */
	.tpms-solutions__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	/* Base spacing */
	:root {
		--tpms-spacing-lg: 3rem;
		--tpms-spacing-xl: 4rem;
	}
	
	/* Header */
	.tpms-header__toggle {
		display: block;
	}

	.tpms-header__nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		background: linear-gradient(165deg, var(--tpms-blue) 0%, #0a1a3a 100%);
		padding: 100px 0 40px;
		transform: translateX(100%);
		transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		overflow-y: auto;
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}

	.tpms-header__nav.is-active {
		transform: translateX(0);
	}

	.tpms-header__menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		padding: 0 1.5rem;
	}

	.tpms-header__menu > li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.tpms-header__menu > li:last-child {
		border-bottom: none;
	}

	.tpms-header__menu > li > a,
	.tpms-header__menu > li > .tpms-header__menu-link {
		font-size: 1.15rem;
		padding: 1.1rem 0.5rem;
		letter-spacing: 0.12em;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.tpms-header__menu a:hover {
		background: none;
		transform: none;
		color: var(--tpms-red);
	}

	/* Dropdown arrow */
	.tpms-header__dropdown-arrow {
		display: inline-block;
		width: 20px;
		height: 20px;
		transition: transform 0.3s ease;
		flex-shrink: 0;
		opacity: 0.6;
	}

	.tpms-header__menu-item--has-dropdown.is-open .tpms-header__dropdown-arrow {
		transform: rotate(180deg);
		opacity: 1;
		color: var(--tpms-red);
	}

	.tpms-header__submenu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		background: rgba(255, 255, 255, 0.04);
		border-left: 3px solid var(--tpms-red);
		border-radius: 0 8px 8px 0;
		margin: 0 0 0.5rem 0.25rem;
		padding: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		            padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	}
	
	.tpms-header__menu-item--has-dropdown.is-open .tpms-header__submenu {
		max-height: 400px;
		padding: 0.5rem 0;
	}

	.tpms-header__submenu li {
		border: none;
	}
	
	.tpms-header__submenu a {
		font-size: 1rem;
		padding: 0.7rem 1.5rem;
		letter-spacing: 0.08em;
		border-left: none;
		opacity: 0.85;
	}

	.tpms-header__submenu a:hover {
		opacity: 1;
		color: var(--tpms-red);
		background: none;
		transform: none;
	}

	/* CTA Contact in menu */
	.tpms-header__menu > li:last-child > a {
		background: var(--tpms-red);
		color: var(--tpms-white);
		border-radius: 8px;
		text-align: center;
		justify-content: center;
		margin-top: 1rem;
		padding: 1rem;
		font-size: 1.05rem;
		letter-spacing: 0.15em;
		transition: background 0.25s ease;
	}

	.tpms-header__menu > li:last-child > a:hover {
		background: #c72840;
		color: var(--tpms-white);
	}

	.tpms-header__menu > li:last-child {
		border-bottom: none;
	}
	
	body.menu-open {
		overflow: hidden;
	}
	
	/* Homepage Hero */
	.tpms-hero {
		min-height: auto;
		padding: 3rem 1.5rem;
	}

	.tpms-hero__headline {
		font-size: 3.5rem;
	}

	.tpms-hero__visual img {
		max-width: 100%;
		width: auto;
		height: auto;
	}

	/* Highlights */
	.tpms-highlights__inner {
		grid-template-columns: 1fr;
		padding: var(--tpms-spacing-md);
	}

	/* Solutions */
	.tpms-solutions__grid {
		grid-template-columns: 1fr;
		width: 100%;
	}
	
	.tpms-solutions__card {
		max-width: 100%;
		text-align: center;
		padding: var(--tpms-spacing-md);
	}

	.tpms-solutions__heading {
		font-size: 3rem;
		text-align: center;
		line-height: 1.1;
		word-break: break-word;
		hyphens: auto;
	}

	.tpms-solutions__title {
		font-size: 2.25rem;
		width: 100%;
		line-height: 1.2;
		margin-bottom: var(--tpms-spacing-sm);
	}

	.tpms-solutions__image {
		position: static;
		margin: 0 auto 1.5rem;
		max-width: 240px;
		display: block;
	}
	
	/* Industrial */
	.tpms-industrial__grid {
		grid-template-columns: 1fr;
	}
	
	.tpms-industrial__heading {
		font-size: 2rem;
	}
	
	/* Trust */
	.tpms-trust__logos {
		grid-template-columns: repeat(2, 1fr);
	}
	
	/* Footer */
	.tpms-footer {
		padding: 40px 20px;
	}
	
	.tpms-footer__container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.tpms-footer__col {
		align-items: center;
		text-align: center;
	}
	
	.tpms-footer__desc {
		margin-left: auto;
		margin-right: auto;
	}
	
	/* About Page */
	.tpms-about-hero,
	.tpms-location-hero,
	.tpms-actualites-hero {
		padding: 4rem 1.5rem 3rem;
		min-height: 300px;
	}
	
	.tpms-about-intro,
	.tpms-about-technology,
	.tpms-about-environment,
	.tpms-about-why,
	.tpms-about-cta {
		padding: var(--tpms-spacing-lg) 1.5rem;
	}
	
	.tpms-about-technology__features,
	.tpms-about-environment__grid,
	.tpms-about-why__features {
		grid-template-columns: 1fr;
		gap: var(--tpms-spacing-md);
	}
	
	.tpms-about-technology__feature {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	
	.tpms-about-why__item-number {
		font-size: 3rem;
	}
	
	/* Location Page */
	.tpms-location-catalog {
		padding: 3rem 1.5rem;
	}
	
	.tpms-products-grid,
	.tpms-actualites-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.tpms-filter-options {
		flex-direction: column;
	}
	
	/* Actualités */
	.tpms-actualites-filters {
		padding: 1.5rem 0;
	}
	
	.tpms-filter-btn {
		font-size: 0.85rem;
		padding: 0.6rem 1.2rem;
	}
	
	.tpms-actualite-card__image {
		height: 200px;
	}
	
	.tpms-actualites-pagination a,
	.tpms-actualites-pagination span {
		min-width: 40px;
		height: 40px;
		font-size: 0.9rem;
	}
	
	.tpms-actualites-cta,
	.tpms-cta-section {
		padding: 3rem 0;
	}
	
	/* Single Article */
	.tpms-article-hero {
		min-height: 400px;
	}
	
	.tpms-article-hero__content {
		padding: var(--tpms-spacing-md) 0;
	}
	
	.tpms-article-hero__breadcrumb {
		font-size: 0.75rem;
		flex-wrap: wrap;
	}
	
	.tpms-article-hero__title {
		font-size: clamp(1.75rem, 6vw, 2.5rem);
	}
	
	.tpms-article-content {
		padding: var(--tpms-spacing-lg) 0;
	}
	
	.tpms-article-body,
	.tpms-article-tags,
	.tpms-article-navigation,
	.tpms-article-back {
		padding-inline: 1.5rem;
	}
	
	.tpms-article-body {
		font-size: 1rem;
	}
	
	.tpms-article-body h2 {
		font-size: 1.5rem;
	}
	
	.tpms-article-body h3 {
		font-size: 1.25rem;
	}
	
	.tpms-article-navigation {
		grid-template-columns: 1fr;
		gap: var(--tpms-spacing-sm);
	}
	
	.tpms-article-nav-link {
		padding: var(--tpms-spacing-sm);
	}
	
	.tpms-article-nav-title {
		font-size: 0.875rem;
	}
	
	.tpms-article-cta {
		margin-top: var(--tpms-spacing-lg);
		padding: var(--tpms-spacing-lg) 0;
	}
	
	.tpms-actualites-cta__buttons,
	.tpms-cta-section__buttons {
		flex-direction: column;
	}
	
	.tpms-actualites-cta__buttons .tpms-button,
	.tpms-cta-section__buttons .tpms-button {
		width: 100%;
		max-width: 300px;
	}
}

/* TPMS Footer */
.tpms-footer {
	background-color: var(--tpms-blue);
	color: var(--tpms-white);
	padding: 60px 20px;
	font-family: var(--tpms-font-body);
}

.tpms-footer__container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

.tpms-footer__col {
	display: flex;
	flex-direction: column;
}

.tpms-footer__col--info {
	grid-column: span 1;
}

.tpms-footer__logo img {
	max-width: 200px;
	height: auto;
	margin-bottom: 20px;
}

.tpms-footer__address,
.tpms-footer__contact-info p {
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.tpms-footer__title {
	font-family: var(--tpms-font-heading);
	font-size: 1.8rem;
	margin-top: 0;
	margin-bottom: 20px;
	text-transform: uppercase;
	color: var(--tpms-white);
}

.tpms-footer__nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tpms-footer__nav li {
	margin-bottom: 8px;
}

.tpms-footer__nav a {
	color: var(--tpms-white);
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.9rem;
	transition: opacity 0.2s;
}

.tpms-footer__nav a:hover {
	opacity: 0.8;
}

.tpms-footer__nav strong {
	color: var(--tpms-white);
	display: block;
	margin-bottom: 10px;
	font-size: 0.9rem;
}

.tpms-footer__submenu {
	list-style: none;
	padding-left: 1rem;
	margin-top: 8px;
}

.tpms-footer__submenu li {
	margin-bottom: 6px;
}

.tpms-footer__submenu a {
	font-size: 0.85rem;
	opacity: 0.85;
}

.tpms-footer__desc {
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 25px;
	max-width: 300px;
}

.tpms-footer__bottom {
	background-color: var(--tpms-blue-dark);
	padding: 1.5rem 0;
	margin-top: 2rem;
}

.tpms-footer__legal {
	max-width: var(--tpms-container-max);
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.tpms-footer__legal p {
	color: var(--tpms-white);
	font-size: 0.85rem;
	margin: 0;
}

.tpms-footer__legal-link {
	color: var(--tpms-white);
	font-size: 0.85rem;
	text-decoration: none;
	transition: var(--tpms-transition-fast);
	border-bottom: 1px solid transparent;
}

.tpms-footer__legal-link:hover {
	color: var(--tpms-red);
	border-bottom-color: var(--tpms-red);
}

@media (max-width: 768px) {
	.tpms-footer__legal {
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
	}
}



/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Hero Section */
.tpms-about,
.tpms-location,
.tpms-actualites,
.tpms-single-article,
.tpms-contact {
	margin-block-start: 0;
}

.tpms-about-hero,
.tpms-location-hero,
.tpms-actualites-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	padding: 5rem 2rem;
	text-align: center;
	overflow: hidden;
	background: var(--tpms-blue);
}

.tpms-about-hero__content,
.tpms-location-hero__content,
.tpms-actualites-hero__content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.tpms-about-hero__title,
.tpms-location-hero__title,
.tpms-actualites-hero__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: var(--tpms-white);
	margin: 0 0 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
	line-height: 1.1;
}

.tpms-about-hero__subtitle,
.tpms-location-hero__subtitle,
.tpms-actualites-hero__subtitle {
	font-family: var(--tpms-font-body);
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	line-height: 1.6;
}

.tpms-about-hero__tagline {
	display: none;
}

/* About Introduction Section */
.tpms-about-intro {
	padding: 5rem 2rem;
	background-color: #f8f9fa;
}

.tpms-about-intro__container {
	max-width: 1200px;
	margin: 0 auto;
}

.tpms-about-intro__text {
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.8;
	color: #333;
	text-align: center;
	margin: 0;
}

.tpms-about-intro__text strong {
	color: var(--tpms-blue);
	font-weight: 600;
}

/* About Technology Section */
.tpms-about-technology {
	padding: 6rem 2rem;
	background-color: var(--tpms-white);
}

.tpms-about-technology__container {
	max-width: 1200px;
	margin: 0 auto;
}

.tpms-about-technology__header {
	text-align: center;
	margin-bottom: 4rem;
}

.tpms-about-technology__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	color: var(--tpms-blue);
	margin: 0 0 1rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.tpms-about-technology__subtitle {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	color: var(--tpms-red);
	font-style: italic;
	margin: 0;
}

.tpms-about-technology__intro {
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.8;
	color: #555;
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
}

.tpms-about-technology__features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.tpms-about-technology__feature {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	padding: 2rem;
	background-color: #f8f9fa;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tpms-about-technology__feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(5, 42, 123, 0.1);
}

.tpms-about-technology__feature-icon {
	flex-shrink: 0;
}

.tpms-about-technology__icon-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--tpms-blue), #073a9e);
	color: var(--tpms-white);
	font-family: var(--tpms-font-heading);
	font-size: 1.8rem;
	font-weight: bold;
}

.tpms-about-technology__feature-content {
	flex: 1;
}

.tpms-about-technology__feature-title {
	font-family: var(--tpms-font-heading);
	font-size: 1.4rem;
	color: var(--tpms-blue);
	margin: 0 0 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.tpms-about-technology__feature-text {
	font-size: 1rem;
	line-height: 1.7;
	color: #555;
	margin: 0;
}

/* About Environment Section */
.tpms-about-environment {
	padding: 6rem 2rem;
	background: linear-gradient(to bottom, #f8f9fa 0%, var(--tpms-white) 100%);
}

.tpms-about-environment__container {
	max-width: 1200px;
	margin: 0 auto;
}

.tpms-about-environment__header {
	text-align: center;
	margin-bottom: 4rem;
}

.tpms-about-environment__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	color: var(--tpms-blue);
	margin: 0 0 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.tpms-about-environment__intro {
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.8;
	color: #555;
	max-width: 900px;
	margin: 0 auto;
}

.tpms-about-environment__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.tpms-about-environment__card {
	background-color: var(--tpms-white);
	padding: 2.5rem 2rem;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-top: 4px solid var(--tpms-red);
}

.tpms-about-environment__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(5, 42, 123, 0.15);
}

.tpms-about-environment__card-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--tpms-blue), #073a9e);
	border-radius: 50%;
}

.tpms-about-environment__card-icon img {
	width: 50%;
	height: 50%;
	filter: brightness(0) invert(1);
}

.tpms-about-environment__card-title {
	font-family: var(--tpms-font-heading);
	font-size: 1.5rem;
	color: var(--tpms-blue);
	margin: 0 0 1rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.tpms-about-environment__card-text {
	font-size: 1rem;
	line-height: 1.7;
	color: #666;
	margin: 0;
}

/* About Why Choose Section */
.tpms-about-why {
	padding: 6rem 2rem;
	background-color: var(--tpms-blue);
	position: relative;
	overflow: hidden;
}

.tpms-about-why::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(230, 51, 76, 0.2) 0%, transparent 70%);
	pointer-events: none;
}

.tpms-about-why__container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.tpms-about-why__header {
	text-align: center;
	margin-bottom: 4rem;
}

.tpms-about-why__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	color: var(--tpms-white);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.tpms-about-why__features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
}

.tpms-about-why__item {
	background-color: rgba(255, 255, 255, 0.05);
	padding: 2.5rem 2rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.tpms-about-why__item:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: var(--tpms-red);
	transform: translateY(-5px);
}

.tpms-about-why__item-number {
	font-family: var(--tpms-font-heading);
	font-size: 4rem;
	color: var(--tpms-red);
	line-height: 1;
	margin-bottom: 1rem;
	opacity: 0.8;
}

.tpms-about-why__item-title {
	font-family: var(--tpms-font-heading);
	font-size: 1.6rem;
	color: var(--tpms-white);
	margin: 0 0 1rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.tpms-about-why__item-text {
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

/* About CTA Section */
.tpms-about-cta {
	background: linear-gradient(135deg, var(--tpms-gray-light) 0%, var(--tpms-white) 100%);
	padding: var(--tpms-spacing-xl) 2rem;
	text-align: center;
}

.tpms-about-cta__container {
	max-width: 800px;
	margin: 0 auto;
}

.tpms-about-cta__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	color: var(--tpms-blue);
	margin: 0 0 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.tpms-about-cta__text {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	line-height: 1.7;
	color: #555;
	margin: 0 0 2.5rem;
}



/* ========================================
   LOCATION PAGE STYLES
   ======================================== */

/* Location Hero - utilise tpms-hero-base */

/* Catalog Section */
.tpms-location-catalog {
	padding: 4rem 2rem;
	background-color: #f8f9fa;
}

.tpms-location-catalog__container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 3rem;
	align-items: start;
}

/* Filters Sidebar */
.tpms-location-filters {
	background-color: var(--tpms-white);
	padding: 2rem 1.5rem;
	border-radius: 12px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 2rem;
}

.tpms-location-filters__title {
	font-family: var(--tpms-font-heading);
	font-size: 1.8rem;
	color: var(--tpms-blue);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

/* Toggle button — styled as plain heading on desktop */
.tpms-location-filters__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: none;
	border: none;
	padding: 0;
	margin: 0 0 0;
	cursor: default;
	font-family: var(--tpms-font-heading);
	font-size: 1.4rem;
	color: var(--tpms-blue);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.tpms-location-filters__arrow {
	display: none;
}

/* Filter body — always visible on desktop */
.tpms-location-filters__body {
	padding-top: 1.5rem;
	border-top: 2px solid var(--tpms-red);
}

.tpms-filter-group {
	margin-bottom: 2rem;
}

.tpms-filter-group__title {
	font-family: var(--tpms-font-heading);
	font-size: 1.1rem;
	color: var(--tpms-blue);
	margin: 0 0 1rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.tpms-filter-options {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.tpms-filter-option {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 6px;
	transition: background-color 0.2s;
}

.tpms-filter-option:hover {
	background-color: #f8f9fa;
}

.tpms-filter-checkbox {
	width: 18px;
	height: 18px;
	margin-right: 0.75rem;
	cursor: pointer;
	accent-color: var(--tpms-red);
}

.tpms-filter-label {
	font-size: 0.95rem;
	color: #333;
	font-weight: 500;
	user-select: none;
}

.tpms-filter-reset {
	width: 100%;
	padding: 0.75rem 1rem;
	background-color: #f8f9fa;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-family: var(--tpms-font-heading);
	font-size: 0.9rem;
	color: var(--tpms-blue);
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 1rem;
}

.tpms-filter-reset:hover {
	background-color: var(--tpms-blue);
	color: var(--tpms-white);
	border-color: var(--tpms-blue);
}

/* Products Grid */
.tpms-location-products {
	min-height: 400px;
}

.tpms-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: var(--tpms-spacing-md);
}

/* Product Card */
.tpms-product-card {
	background-color: var(--tpms-white);
	border-radius: var(--tpms-radius-md);
	box-shadow: var(--tpms-shadow-md);
	transition: all var(--tpms-transition-base);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
}

.tpms-product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background-color: var(--tpms-red);
	color: var(--tpms-white);
	font-family: var(--tpms-font-heading);
	font-size: 0.8rem;
	font-weight: 700;
	padding: 0.3rem 0.8rem;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	z-index: 2;
}

.tpms-product-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--tpms-shadow-xl);
}

.tpms-product-card__image {
	height: 250px;
	background-color: var(--tpms-gray-light);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	position: relative;
	overflow: hidden;
}

.tpms-product-card__image::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(5, 42, 123, 0.03) 0%, transparent 70%);
}

.tpms-product-card__image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	position: relative;
	z-index: 1;
}

.tpms-product-card__content {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.tpms-product-card__name {
	font-family: var(--tpms-font-heading);
	font-size: 1.3rem;
	color: var(--tpms-blue);
	margin: 0 0 var(--tpms-spacing-sm);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.3;
}

.tpms-product-card__specs {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	flex: 1;
}

.tpms-product-spec {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9rem;
	color: #555;
	line-height: 1.5;
}

.tpms-product-spec__icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	stroke: var(--tpms-red);
	stroke-width: 2;
	margin-top: 2px;
}

.tpms-product-card__cta {
	display: block;
	text-align: center;
	padding: 0.85rem 1.5rem;
	background-color: var(--tpms-red);
	color: var(--tpms-white);
	text-decoration: none;
	border-radius: var(--tpms-radius-sm);
	font-family: var(--tpms-font-heading);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: all var(--tpms-transition-base);
}

.tpms-product-card__cta:hover {
	background-color: var(--tpms-red-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(230, 51, 76, 0.3);
}

/* Product spec label/value variant (vente page) */
.tpms-product-spec__label {
	font-weight: 700;
	color: var(--tpms-blue);
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 0.02em;
}

.tpms-product-spec__value {
	font-weight: 600;
	color: var(--tpms-red);
	font-size: 0.9rem;
}

/* No Results */
.tpms-no-results {
	text-align: center;
	padding: 4rem 2rem;
	background-color: var(--tpms-white);
	border-radius: 12px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.tpms-no-results p {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 2rem;
}

/* ---- Location / Vente catalog responsive ---- */
@media (max-width: 1024px) {
	.tpms-location-catalog__container {
		grid-template-columns: 1fr;
	}

	.tpms-location-filters {
		position: static;
		max-width: 600px;
		margin: 0 auto var(--tpms-spacing-md);
		padding: 0;
		box-shadow: none;
		background: transparent;
	}

	/* Toggle button visible */
	.tpms-location-filters__toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 1rem 1.25rem;
		background-color: var(--tpms-white);
		border: none;
		border-radius: var(--tpms-radius-md);
		box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
		cursor: pointer;
	}

	.tpms-location-filters__arrow {
		display: block;
		width: 22px;
		height: 22px;
		color: var(--tpms-blue);
		transition: transform 0.3s ease;
	}

	.tpms-location-filters__toggle[aria-expanded="true"] .tpms-location-filters__arrow {
		transform: rotate(180deg);
	}

	/* Filter body — collapsed by default */
	.tpms-location-filters__body {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease, padding 0.35s ease;
		padding-top: 0;
		border-top: none;
		background-color: var(--tpms-white);
		border-radius: 0 0 var(--tpms-radius-md) var(--tpms-radius-md);
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
	}

	.tpms-location-filters__body.is-open {
		max-height: 600px;
		padding: 1.25rem;
	}

	.tpms-filter-options {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

@media (max-width: 768px) {
	.tpms-location-catalog {
		padding: 2rem 1rem;
	}

	.tpms-products-grid {
		grid-template-columns: 1fr;
	}
}


/* ============================================
   ACTUALITÉS / BLOG
   ============================================ */

/* Hero Section - utilise tpms-hero-base */

/* Filtres */
.tpms-actualites-filters {
	background-color: #f8f9fa;
	padding: 2rem 0;
	border-bottom: 2px solid #e9ecef;
}

.tpms-actualites-filters__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

.tpms-filter-btn {
	font-family: var(--tpms-font-heading);
	font-size: 0.95rem;
	padding: 0.75rem 1.5rem;
	border: 2px solid var(--tpms-blue);
	border-radius: 8px;
	background-color: var(--tpms-white);
	color: var(--tpms-blue);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
	cursor: pointer;
}

.tpms-filter-btn:hover {
	background-color: var(--tpms-blue);
	color: var(--tpms-white);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(5, 42, 123, 0.2);
}

.tpms-filter-btn.active {
	background-color: var(--tpms-red);
	border-color: var(--tpms-red);
	color: var(--tpms-white);
}

.tpms-filter-btn.active:hover {
	background-color: var(--tpms-red-hover);
	border-color: var(--tpms-red-hover);
}

/* Contenu principal */
.tpms-actualites-content {
	padding: var(--tpms-spacing-lg) clamp(1rem, 4vw, 2rem);
	background-color: var(--tpms-white);
}

.tpms-actualites-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: var(--tpms-spacing-md);
	margin: 0 auto 3rem;
	max-width: var(--tpms-container-wide);
}

/* Carte d'actualité */
.tpms-actualite-card {
	background-color: var(--tpms-white);
	border-radius: var(--tpms-radius-md);
	box-shadow: var(--tpms-shadow-md);
	transition: all var(--tpms-transition-base);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.tpms-actualite-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--tpms-shadow-xl);
}

.tpms-actualite-card__image {
	position: relative;
	width: 100%;
	height: 240px;
	overflow: hidden;
	background-color: #f0f0f0;
}

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

.tpms-actualite-card:hover .tpms-actualite-card__image img {
	transform: scale(1.1);
}

.tpms-actualite-card__image--placeholder {
	background: linear-gradient(135deg, var(--tpms-blue) 0%, var(--tpms-blue-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.tpms-actualite-card__date {
	position: absolute;
	top: var(--tpms-spacing-sm);
	right: var(--tpms-spacing-sm);
	background-color: var(--tpms-red);
	color: var(--tpms-white);
	padding: 0.5rem 1rem;
	border-radius: var(--tpms-radius-sm);
	font-family: var(--tpms-font-heading);
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: var(--tpms-shadow-sm);
}

.tpms-actualite-card__content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.tpms-actualite-card__title {
	font-family: var(--tpms-font-heading);
	font-size: 1.5rem;
	color: var(--tpms-blue);
	margin: 0 0 var(--tpms-spacing-sm);
	line-height: 1.3;
	text-transform: uppercase;
}

.tpms-actualite-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--tpms-transition-base);
}

.tpms-actualite-card__title a:hover {
	color: var(--tpms-red);
}

.tpms-actualite-card__excerpt {
	font-family: var(--tpms-font-body);
	font-size: 0.95rem;
	color: var(--tpms-gray-dark);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.tpms-actualite-card__meta {
	display: flex;
	align-items: center;
	gap: var(--tpms-spacing-sm);
	font-family: var(--tpms-font-body);
	font-size: 0.85rem;
	color: #888;
	margin-bottom: var(--tpms-spacing-sm);
	padding-top: var(--tpms-spacing-sm);
	border-top: 1px solid var(--tpms-gray-medium);
}

.tpms-actualite-card__author {
	display: flex;
	align-items: center;
	gap: var(--tpms-spacing-xs);
}

.tpms-actualite-card__link {
	display: inline-flex;
	align-items: center;
	gap: var(--tpms-spacing-xs);
	font-family: var(--tpms-font-heading);
	font-size: 1rem;
	color: var(--tpms-red);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	transition: all var(--tpms-transition-base);
}

.tpms-actualite-card__link:hover {
	color: var(--tpms-red-hover);
	gap: 0.75rem;
}

.tpms-actualite-card__link svg {
	transition: transform var(--tpms-transition-base);
}

.tpms-actualite-card__link:hover svg {
	transform: translateX(4px);
}

/* Pagination */
.tpms-actualites-pagination {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
}

.tpms-actualites-pagination ul {
	display: flex;
	gap: 0.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.tpms-actualites-pagination li {
	margin: 0;
}

.tpms-actualites-pagination a,
.tpms-actualites-pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0.5rem 1rem;
	font-family: var(--tpms-font-heading);
	font-size: 1rem;
	border: 2px solid var(--tpms-blue);
	border-radius: 8px;
	background-color: var(--tpms-white);
	color: var(--tpms-blue);
	text-decoration: none;
	transition: all 0.3s ease;
}

.tpms-actualites-pagination a:hover {
	background-color: var(--tpms-blue);
	color: var(--tpms-white);
	transform: translateY(-2px);
}

.tpms-actualites-pagination .current {
	background-color: var(--tpms-red);
	border-color: var(--tpms-red);
	color: var(--tpms-white);
}

.tpms-actualites-pagination .dots {
	border: none;
	background: none;
	color: var(--tpms-blue);
}

/* Page vide */
.tpms-actualites-empty {
	text-align: center;
	padding: 4rem 2rem;
}

.tpms-actualites-empty svg {
	margin-bottom: 2rem;
}

.tpms-actualites-empty h3 {
	font-family: var(--tpms-font-heading);
	font-size: 2rem;
	color: var(--tpms-blue);
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.tpms-actualites-empty p {
	font-family: var(--tpms-font-body);
	font-size: 1.1rem;
	color: #666;
	margin: 0 0 2rem;
}

/* Actualités CTA Section */
.tpms-actualites-cta {
	margin-top: var(--tpms-spacing-xl);
	padding: var(--tpms-spacing-xl) 0;
	background: linear-gradient(135deg, var(--tpms-blue) 0%, var(--tpms-blue-dark) 100%);
}

.tpms-actualites-cta .tpms-cta-section__content,
.tpms-actualites-cta__content {
	text-align: center;
	color: var(--tpms-white);
}

.tpms-actualites-cta .tpms-cta-section__title,
.tpms-actualites-cta__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--tpms-white);
	margin: 0 0 var(--tpms-spacing-md);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.tpms-actualites-cta__text {
	font-size: 1.1rem;
	color: var(--tpms-white);
	margin-bottom: var(--tpms-spacing-lg);
	opacity: 0.95;
}

.tpms-actualites-cta__buttons {
	display: flex;
	gap: var(--tpms-spacing-md);
	justify-content: center;
	flex-wrap: wrap;
}

.tpms-actualites-cta .tpms-button--secondary {
	background-color: transparent;
	border: 2px solid var(--tpms-white);
	color: var(--tpms-white);
}

.tpms-actualites-cta .tpms-button--secondary:hover {
	background-color: var(--tpms-white);
	color: var(--tpms-blue);
}

/* ============================================
   SOLUTION PAGE – Timeline Layout
   ============================================ */

.tpms-solution {
	margin-block-start: 0;
}

/* Hero */
.tpms-solution-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	padding: 5rem 2rem;
	text-align: center;
	overflow: hidden;
	background: var(--tpms-blue);
}

.tpms-solution-hero__content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.tpms-solution-hero__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: var(--tpms-white);
	margin: 0 0 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
	line-height: 1.1;
}

.tpms-solution-hero__subtitle {
	font-family: var(--tpms-font-body);
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	line-height: 1.6;
}

/* Timeline container */
.tpms-solution-timeline {
	padding: 5rem 2rem;
	background-color: #f8f9fa;
}

.tpms-solution-timeline__container {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	padding: 2rem 0;
}

/* Vertical line */
.tpms-solution-timeline__line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		var(--tpms-blue) 5%,
		var(--tpms-blue) 95%,
		transparent 100%
	);
	transform: translateX(-50%);
}

/* Timeline block */
.tpms-solution-block {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 5rem;
}

.tpms-solution-block:last-child {
	margin-bottom: 0;
}

/* Dot on the timeline */
.tpms-solution-block__dot {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 20px;
	height: 20px;
	background-color: var(--tpms-red);
	border: 4px solid var(--tpms-blue);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	box-shadow: 0 0 0 6px rgba(230, 51, 76, 0.15);
	transition: transform var(--tpms-transition-base), box-shadow var(--tpms-transition-base);
}

.tpms-solution-block:hover .tpms-solution-block__dot {
	transform: translate(-50%, -50%) scale(1.3);
	box-shadow: 0 0 0 10px rgba(230, 51, 76, 0.2);
}

/* LEFT variant: text on the left, image on the right */
.tpms-solution-block--left .tpms-solution-block__text {
	grid-column: 1;
	grid-row: 1;
	text-align: right;
	padding-right: 3rem;
}

.tpms-solution-block--left .tpms-solution-block__image {
	grid-column: 2;
	grid-row: 1;
	padding-left: 3rem;
}

/* RIGHT variant: image on the left, text on the right */
.tpms-solution-block--right .tpms-solution-block__text {
	grid-column: 2;
	grid-row: 1;
	text-align: left;
	padding-left: 3rem;
}

.tpms-solution-block--right .tpms-solution-block__image {
	grid-column: 1;
	grid-row: 1;
	padding-right: 3rem;
}

/* Text side */
.tpms-solution-block__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	color: var(--tpms-blue);
	margin: 0 0 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
	line-height: 1.2;
}

.tpms-solution-block__list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.tpms-solution-block__list li {
	position: relative;
	font-family: var(--tpms-font-body);
	font-size: 1rem;
	color: #444;
	line-height: 1.7;
	padding: 0.35rem 0;
}

/* Bullet for LEFT blocks (text-align right) */
.tpms-solution-block--left .tpms-solution-block__list li {
	padding-right: 1.5rem;
}

.tpms-solution-block--left .tpms-solution-block__list li::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background-color: var(--tpms-red);
	border-radius: 50%;
}

/* Bullet for RIGHT blocks (text-align left) */
.tpms-solution-block--right .tpms-solution-block__list li {
	padding-left: 1.5rem;
}

.tpms-solution-block--right .tpms-solution-block__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background-color: var(--tpms-red);
	border-radius: 50%;
}

/* CTA button alignment */
.tpms-solution-block__cta {
	display: inline-block;
	margin-top: 0.5rem;
}

/* Image side */
.tpms-solution-block__image-wrapper {
	position: relative;
	border-radius: var(--tpms-radius-md);
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(5, 42, 123, 0.12);
	aspect-ratio: 4 / 3;
	background-color: var(--tpms-gray-medium);
	border: 3px solid transparent;
	transition: transform var(--tpms-transition-base), box-shadow var(--tpms-transition-base), border-color var(--tpms-transition-base);
}

.tpms-solution-block:hover .tpms-solution-block__image-wrapper {
	transform: translateY(-4px);
	box-shadow: 0 15px 50px rgba(5, 42, 123, 0.18);
	border-color: var(--tpms-red);
}

.tpms-solution-block__image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.tpms-solution-block:hover .tpms-solution-block__image-wrapper img {
	transform: scale(1.04);
}

/* Placeholder for missing images */
.tpms-solution-block__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--tpms-gray-light) 0%, var(--tpms-gray-medium) 100%);
}

.tpms-solution-block__image--placeholder::after {
	content: 'Image à venir';
	font-family: var(--tpms-font-body);
	font-size: 1rem;
	color: var(--tpms-gray-dark);
}

/* CTA Section */
.tpms-solution-cta {
	padding: 5rem 2rem;
	background: linear-gradient(135deg, var(--tpms-blue) 0%, var(--tpms-blue-dark) 100%);
	text-align: center;
}

.tpms-solution-cta__container {
	max-width: 800px;
	margin: 0 auto;
}

.tpms-solution-cta__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	color: var(--tpms-white);
	margin: 0 0 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.tpms-solution-cta__text {
	font-family: var(--tpms-font-body);
	font-size: 1.1rem;
	color: var(--tpms-white);
	margin-bottom: var(--tpms-spacing-lg);
	opacity: 0.95;
	line-height: 1.7;
}

.tpms-solution-cta__buttons {
	display: flex;
	gap: var(--tpms-spacing-md);
	justify-content: center;
	flex-wrap: wrap;
}

.tpms-solution-cta .tpms-button--secondary {
	background-color: transparent;
	border: 2px solid var(--tpms-white);
	color: var(--tpms-white);
}

.tpms-solution-cta .tpms-button--secondary:hover {
	background-color: var(--tpms-white);
	color: var(--tpms-blue);
}

/* ---- Solution page responsive ---- */
@media (max-width: 960px) {
	.tpms-solution-timeline {
		padding: 3rem 1.5rem;
	}

	.tpms-solution-timeline__line {
		left: 24px;
	}

	.tpms-solution-block {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding-left: 60px;
		margin-bottom: 4rem;
	}

	.tpms-solution-block__dot {
		left: 24px;
		top: 0;
		transform: translate(-50%, 0);
	}

	.tpms-solution-block:hover .tpms-solution-block__dot {
		transform: translate(-50%, 0) scale(1.3);
	}

	/* Reset grid positions – always text first, then image */
	.tpms-solution-block--left .tpms-solution-block__text,
	.tpms-solution-block--right .tpms-solution-block__text {
		grid-column: 1;
		grid-row: 1;
		text-align: left;
		padding: 0;
	}

	.tpms-solution-block--left .tpms-solution-block__image,
	.tpms-solution-block--right .tpms-solution-block__image {
		grid-column: 1;
		grid-row: 2;
		padding: 0;
	}

	/* Uniform left bullets on mobile */
	.tpms-solution-block--left .tpms-solution-block__list li {
		padding-right: 0;
		padding-left: 1.5rem;
	}

	.tpms-solution-block--left .tpms-solution-block__list li::after {
		display: none;
	}

	.tpms-solution-block--left .tpms-solution-block__list li::before {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 8px;
		height: 8px;
		background-color: var(--tpms-red);
		border-radius: 50%;
	}
}

@media (max-width: 600px) {
	.tpms-solution-hero {
		min-height: 220px;
		padding: 3.5rem 1.5rem;
	}

	.tpms-solution-block {
		padding-left: 50px;
		margin-bottom: 3rem;
	}

	.tpms-solution-timeline__line {
		left: 18px;
	}

	.tpms-solution-block__dot {
		left: 18px;
		width: 16px;
		height: 16px;
	}

	.tpms-solution-block__title {
		font-size: 1.3rem;
	}

	.tpms-solution-cta {
		padding: 3rem 1.5rem;
	}
}

/* ============================================
   SAV PAGE
   ============================================ */

.tpms-sav {
	margin-block-start: 0;
}

/* Hero */
.tpms-sav-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	padding: 5rem 2rem;
	text-align: center;
	overflow: hidden;
	background: var(--tpms-blue);
}

.tpms-sav-hero__content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.tpms-sav-hero__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: var(--tpms-white);
	margin: 0 0 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
	line-height: 1.1;
}

.tpms-sav-hero__subtitle {
	font-family: var(--tpms-font-body);
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	line-height: 1.6;
}

/* Maintenance Section */
.tpms-sav-maintenance {
	padding: 5rem 2rem;
	background-color: #f8f9fa;
}

.tpms-sav-maintenance__container {
	max-width: var(--tpms-container-max);
	margin: 0 auto;
}

.tpms-sav-maintenance__label {
	font-family: var(--tpms-font-heading);
	font-size: 1.3rem;
	color: var(--tpms-blue);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0 0 0.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 3px solid var(--tpms-red);
	display: inline-block;
}

.tpms-sav-maintenance__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
	margin-top: 2.5rem;
}

.tpms-sav-maintenance__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(1.4rem, 2.5vw, 1.8rem);
	color: var(--tpms-blue);
	margin: 0 0 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1.3;
}

.tpms-sav-maintenance__intro {
	font-family: var(--tpms-font-body);
	font-size: 1.05rem;
	color: #444;
	line-height: 1.8;
	margin: 0 0 2rem;
}

/* Engagement block */
.tpms-sav-engagement {
	background-color: var(--tpms-white);
	border-radius: var(--tpms-radius-md);
	padding: 2rem;
	border-left: 4px solid var(--tpms-red);
	box-shadow: 0 4px 20px rgba(5, 42, 123, 0.06);
	margin-bottom: 2rem;
}

.tpms-sav-engagement__title {
	font-family: var(--tpms-font-heading);
	font-size: 1.2rem;
	color: var(--tpms-blue);
	margin: 0 0 1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.tpms-sav-engagement__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tpms-sav-engagement__list li {
	position: relative;
	font-family: var(--tpms-font-body);
	font-size: 1rem;
	color: #444;
	line-height: 1.7;
	padding: 0.3rem 0 0.3rem 1.5rem;
}

.tpms-sav-engagement__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background-color: var(--tpms-red);
	border-radius: 50%;
}

.tpms-sav-maintenance__closing {
	font-family: var(--tpms-font-body);
	font-size: 1.05rem;
	color: #444;
	line-height: 1.8;
	margin: 0;
}

.tpms-sav-maintenance__closing strong {
	color: var(--tpms-blue);
}

/* Image side */
.tpms-sav-maintenance__image-wrapper {
	position: relative;
	border-radius: var(--tpms-radius-md);
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(5, 42, 123, 0.12);
	aspect-ratio: 4 / 3;
	background-color: var(--tpms-gray-medium);
	border: 3px solid transparent;
	transition: border-color var(--tpms-transition-base), box-shadow var(--tpms-transition-base);
}

.tpms-sav-maintenance__image-wrapper:hover {
	border-color: var(--tpms-red);
	box-shadow: 0 15px 50px rgba(5, 42, 123, 0.18);
}

.tpms-sav-maintenance__image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tpms-sav-maintenance__image--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--tpms-gray-light) 0%, var(--tpms-gray-medium) 100%);
}

.tpms-sav-maintenance__image--placeholder::after {
	content: 'Image à venir';
	font-family: var(--tpms-font-body);
	font-size: 1rem;
	color: var(--tpms-gray-dark);
}

/* Advantages Section */
.tpms-sav-advantages {
	padding: 5rem 2rem;
	background-color: var(--tpms-white);
}

.tpms-sav-advantages__container {
	max-width: var(--tpms-container-max);
	margin: 0 auto;
}

.tpms-sav-advantages__heading {
	font-family: var(--tpms-font-heading);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	color: var(--tpms-blue);
	text-align: center;
	margin: 0 0 3rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.tpms-sav-advantages__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.tpms-sav-advantages__card {
	background-color: #f8f9fa;
	border-radius: var(--tpms-radius-md);
	padding: 2.5rem 2rem;
	text-align: center;
	border-top: 4px solid var(--tpms-red);
	transition: transform var(--tpms-transition-base), box-shadow var(--tpms-transition-base);
}

.tpms-sav-advantages__card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(5, 42, 123, 0.1);
}

.tpms-sav-advantages__icon {
	margin-bottom: 1.5rem;
	color: var(--tpms-blue);
}

.tpms-sav-advantages__icon svg {
	width: 48px;
	height: 48px;
}

.tpms-sav-advantages__title {
	font-family: var(--tpms-font-heading);
	font-size: 1.2rem;
	color: var(--tpms-blue);
	margin: 0 0 1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.tpms-sav-advantages__text {
	font-family: var(--tpms-font-body);
	font-size: 0.95rem;
	color: #555;
	line-height: 1.7;
	margin: 0;
}

/* CTA Section */
.tpms-sav-cta {
	padding: 5rem 2rem;
	background: linear-gradient(135deg, var(--tpms-blue) 0%, var(--tpms-blue-dark) 100%);
	text-align: center;
}

.tpms-sav-cta__container {
	max-width: 800px;
	margin: 0 auto;
}

.tpms-sav-cta__title {
	font-family: var(--tpms-font-heading);
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	color: var(--tpms-white);
	margin: 0 0 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.tpms-sav-cta__text {
	font-family: var(--tpms-font-body);
	font-size: 1.1rem;
	color: var(--tpms-white);
	margin-bottom: var(--tpms-spacing-lg);
	opacity: 0.95;
	line-height: 1.7;
}

.tpms-sav-cta__buttons {
	display: flex;
	gap: var(--tpms-spacing-md);
	justify-content: center;
	flex-wrap: wrap;
}

.tpms-sav-cta .tpms-button--secondary {
	background-color: transparent;
	border: 2px solid var(--tpms-white);
	color: var(--tpms-white);
}

.tpms-sav-cta .tpms-button--secondary:hover {
	background-color: var(--tpms-white);
	color: var(--tpms-blue);
}

/* ---- SAV responsive ---- */
@media (max-width: 960px) {
	.tpms-sav-maintenance__content {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.tpms-sav-maintenance__visual {
		order: -1;
	}

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

@media (max-width: 600px) {
	.tpms-sav-hero {
		min-height: 220px;
		padding: 3.5rem 1.5rem;
	}

	.tpms-sav-maintenance {
		padding: 3rem 1.5rem;
	}

	.tpms-sav-advantages {
		padding: 3rem 1.5rem;
	}

	.tpms-sav-advantages__grid {
		grid-template-columns: 1fr;
	}

	.tpms-sav-cta {
		padding: 3rem 1.5rem;
	}
}
