/**
 * Theme Name: WinDIGITAL
 * Version: 3.0 - Premium Design (Industro-style)
 */

:root {
	--primary: #1a1a2e;
	--secondary: #0f3460;
	--accent-bright: #ff6b35;
	--text-light: #e0e0e0;
	--bg-light: #f5f5f5;
	--bg-dark: #0f0f1e;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body {
	font-family: 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #333;
	background: #fff;
	overflow-x: hidden;
}

img, svg {
	max-width: 100%;
}

/* HEADER TOP */
.header-top {
	background: var(--primary);
	color: var(--text-light);
	padding: 0.8rem 2rem;
	font-size: 0.85rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-contact span {
	margin-right: 2rem;
}

.lang-switch {
	margin-left: 1.5rem;
}

.lang-switch a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 600;
	padding: 0 0.2rem;
	transition: color 0.25s;
}

.lang-switch a:hover,
.lang-switch a.active {
	color: var(--accent-bright);
}

/* MAIN HEADER */
.site-header {
	background: white;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-header-inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: 1.2rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-logo {
	display: flex;
	align-items: center;
}

.site-logo img {
	height: 48px;
	width: auto;
	display: block;
}

.site-nav {
	flex: 1;
	margin: 0 3rem;
}

.site-nav > ul {
	list-style: none;
	display: flex;
	gap: 2rem;
	align-items: center;
	justify-content: center;
}

.site-nav a {
	color: #333;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	transition: color 0.3s;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.site-nav a:hover {
	color: var(--accent-bright);
}

/* HAMBURGER (masqué en desktop) */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 34px;
	height: 34px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
}

.nav-toggle span {
	display: block;
	height: 2px;
	background: var(--primary);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* DROPDOWN MENU */
.nav-dropdown {
	position: relative;
}

/* Vertical list dropdown, Industro style: orange top bar, white panel, square corners */
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	border-top: 3px solid #ff4a17;
	min-width: 250px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
	list-style: none;
	padding: 0;
	margin-top: 1.35rem;
	display: none;
	z-index: 1000;
}

/* invisible bridge so the hover survives the gap between the link and the panel */
.dropdown-menu::before {
	content: '';
	position: absolute;
	top: -1.5rem;
	left: 0;
	right: 0;
	height: 1.5rem;
}

.nav-dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-menu li {
	padding: 0;
}

.dropdown-menu li:not(:last-child) {
	border-bottom: 1px solid #eee;
}

.dropdown-menu a {
	display: block;
	padding: 0.95rem 1.5rem;
	color: #333;
	text-decoration: none;
	font-size: 0.92rem;
	text-transform: none;
	letter-spacing: normal;
	text-align: left;
	font-weight: 500;
	transition: all 0.25s ease;
}

.dropdown-menu a:hover {
	background: #f7f8fa;
	color: #ff4a17;
	padding-left: 1.8rem;
}

/* CTA BUTTON */
.btn-quote {
	background: var(--accent-bright);
	color: white;
	padding: 0.8rem 1.8rem;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-quote:hover {
	background: #e63d28;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* HERO SECTION — full-width image background (Industro style) */
.hero {
	position: relative;
	min-height: 760px;
	background: url("img/hero-growth-canva-v2.jpg") right center / cover no-repeat, linear-gradient(180deg, #eef4fb 0%, #d3e2f4 100%);
	padding: 7rem 0 0;
}

.hero-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 3rem;
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 3rem;
	align-items: start;
}

.hero-text {
	min-width: 0;
}

.hero-eyebrow {
	display: block;
	font-size: 1.05rem;
	color: #3a4560;
	margin-bottom: 1rem;
	font-weight: 500;
}

.hero h1 {
	font-size: 4rem;
	font-weight: 300;
	color: var(--primary);
	margin-bottom: 1.5rem;
	line-height: 1.15;
	letter-spacing: -0.5px;
}

.hero h1 strong {
	display: block;
	font-weight: 800;
}

.hero-subtitle {
	font-size: 1.1rem;
	color: #4a5568;
	margin-bottom: 2.5rem;
	line-height: 1.8;
	max-width: 460px;
	font-weight: 500;
}

.hero .btn {
	background: var(--accent-bright);
	color: white;
	padding: 1rem 2.6rem;
	border: none;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	border-radius: 4px;
	transition: all 0.3s ease;
	letter-spacing: 0.3px;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

.hero .btn:hover {
	background: #e63d28;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

/* PANNEAU FORMULAIRE TRANSPARENT DANS LE HÉROS */
.hero-contact-panel {
	background: rgba(255, 107, 53, 0.1);
	border: 1px solid rgba(255, 107, 53, 0.35);
	border-radius: 12px;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 2rem 1.8rem;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.hero-contact-panel h3 {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 1.1rem;
}

.hero-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.9rem;
}

.hero-form textarea,
.hero-form .btn-quote,
.hero-form .hp-field {
	grid-column: 1 / -1;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid rgba(26, 26, 46, 0.15);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.75);
	font-family: inherit;
	font-size: 0.92rem;
	color: #1a1a2e;
	transition: border-color 0.25s, background 0.25s;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
	color: #6b7280;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
	outline: none;
	border-color: var(--accent-bright);
	background: #fff;
}

.hero-form textarea {
	resize: vertical;
	min-height: 80px;
}

.hero-form .btn-quote {
	border: none;
	cursor: pointer;
	width: 100%;
	text-align: center;
}

.hero-contact-panel .form-success,
.hero-contact-panel .form-error {
	font-size: 0.85rem;
	padding: 0.9rem 1rem;
}

/* CARDS OVERLAPPING THE HERO BOTTOM (Industro style: 1 dark + 2 white, no gap)
   translateY = les cartes débordent visuellement sur la section blanche du dessous */
.hero-cards {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	max-width: 1150px;
	margin: 4rem auto 0;
	padding: 0 3rem;
	transform: translateY(120px);
}

.hero-card {
	background: white;
	padding: 2.8rem 2.5rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0s;
}

.hero-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
	z-index: 2;
}

/* Dark card: background image visible under the dark overlay + taller than the white cards (Industro) */
.hero-card.dark {
	background:
		linear-gradient(160deg, rgba(10, 16, 32, 0.78) 0%, rgba(16, 24, 44, 0.92) 100%),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300' preserveAspectRatio='xMidYMid slice'%3E%3Crect width='400' height='300' fill='%230e1526'/%3E%3Cpath d='M-40 320 L360 -40' stroke='%231d2942' stroke-width='60' opacity='0.6'/%3E%3Ccircle cx='300' cy='90' r='70' fill='none' stroke='%233a4a6e' stroke-width='16'/%3E%3Ccircle cx='300' cy='90' r='34' fill='none' stroke='%23ff6b35' stroke-width='7' opacity='0.8'/%3E%3Cline x1='300' y1='4' x2='300' y2='34' stroke='%233a4a6e' stroke-width='10'/%3E%3Cline x1='300' y1='146' x2='300' y2='176' stroke='%233a4a6e' stroke-width='10'/%3E%3Cline x1='214' y1='90' x2='244' y2='90' stroke='%233a4a6e' stroke-width='10'/%3E%3Cline x1='356' y1='90' x2='386' y2='90' stroke='%233a4a6e' stroke-width='10'/%3E%3Ccircle cx='80' cy='240' r='52' fill='none' stroke='%232c3a5c' stroke-width='13'/%3E%3Ccircle cx='80' cy='240' r='20' fill='none' stroke='%234a5d8f' stroke-width='6'/%3E%3Ccircle cx='150' cy='60' r='20' fill='none' stroke='%232c3a5c' stroke-width='8'/%3E%3Cpath d='M40 110 Q120 140 190 200' fill='none' stroke='%23ff6b35' stroke-width='4' opacity='0.35'/%3E%3C/svg%3E") center / cover no-repeat;
	color: white;
	padding: 2.8rem 2.5rem;
}

.hero-card h3 {
	font-size: 1.35rem;
	margin-bottom: 1rem;
	font-weight: 700;
	color: var(--primary);
}

.hero-card.dark h3 {
	color: white;
}

.hero-card p {
	font-size: 0.98rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 1.2rem;
}

.hero-card.dark p {
	color: #d5d9e4;
}

/* White cards: dark "View more"; only the dark card gets orange (Industro) */
.hero-card a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
	transition: color 0.3s;
}

.hero-card a:hover {
	color: var(--accent-bright);
}

.hero-card.dark a {
	color: var(--accent-bright);
}

.hero-card.dark a:hover {
	color: #ff8c42;
}

/* SERVICES SECTION — Industro "Our Specialization" style: flat, no cards */
.services {
	padding: 13rem 2rem 6rem;
	background: white;
}

.services-header {
	max-width: 1250px;
	margin: 0 auto 4.5rem;
	text-align: left;
}

.services-eyebrow {
	display: block;
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 1.5px;
	color: #3a4560;
	font-weight: 600;
	margin-bottom: 0.8rem;
}

.section-title {
	font-size: 2.6rem;
	font-weight: 800;
	color: var(--primary);
	letter-spacing: -0.5px;
	line-height: 1.2;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem 3.5rem;
	max-width: 1250px;
	margin: 0 auto;
}

.service-item {
	background: none;
	padding: 1.6rem;
	margin: -1.6rem;
	border-radius: 8px;
	transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-item:hover {
	background: #fbfbfd;
	box-shadow: 0 16px 36px rgba(20, 25, 45, 0.09);
	transform: translateY(-6px);
}

.spec-icon {
	width: 68px;
	height: 68px;
	stroke: #ff4a17;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	margin-bottom: 1.6rem;
	display: block;
	transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-item:hover .spec-icon {
	transform: scale(1.12) rotate(-6deg);
}

.service-item h3 {
	font-size: 1.3rem;
	color: var(--primary);
	margin-bottom: 1rem;
	font-weight: 700;
	transition: color 0.3s ease;
}

.service-item:hover h3 {
	color: #ff4a17;
}

.service-item p {
	color: #5a6372;
	line-height: 1.8;
	font-size: 0.98rem;
	margin-bottom: 1rem;
}

.service-item ul {
	list-style: disc;
	padding-left: 1.2rem;
	margin-bottom: 1.4rem;
}

.service-item ul li {
	color: #5a6372;
	line-height: 1.9;
	font-size: 0.95rem;
}

.more-details {
	color: var(--primary);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
	transition: color 0.3s;
}

.more-details:hover {
	color: #ff4a17;
}

/* DARK SECTION */
.dark-section {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	padding: 7rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.dark-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 0;
}

.dark-section > * {
	position: relative;
	z-index: 1;
}

.dark-section h2 {
	font-size: 3.2rem;
	margin-bottom: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.dark-section p {
	font-size: 1.2rem;
	opacity: 0.95;
	max-width: 650px;
	margin: 0 auto 2.8rem;
	line-height: 1.9;
	font-weight: 500;
}

.dark-section .btn {
	background: var(--accent-bright);
	color: white;
	padding: 1.1rem 2.8rem;
	border: none;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	border-radius: 6px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.dark-section .btn:hover {
	background: #e63d28;
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* FOOTER */
.site-footer {
	background: var(--bg-dark);
	color: var(--text-light);
}

.footer-main {
	max-width: 1250px;
	margin: 0 auto;
	padding: 4.5rem 2rem 3rem;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 2.5rem;
}

.footer-col h4 {
	color: white;
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 1.4rem;
}

.footer-about .footer-logo {
	height: 42px;
	width: auto;
	margin-bottom: 1.2rem;
	filter: brightness(0) invert(1);
}

.footer-about p {
	color: #b8bdd0;
	font-size: 0.92rem;
	line-height: 1.8;
	max-width: 320px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li {
	margin-bottom: 0.85rem;
}

.footer-col ul a {
	color: #b8bdd0;
	text-decoration: none;
	font-size: 0.92rem;
	transition: color 0.25s;
}

.footer-col ul a:hover {
	color: var(--accent-bright);
}

.footer-contact-list li {
	color: #b8bdd0;
	font-size: 0.92rem;
}

.footer-badges {
	margin-top: 1.8rem;
}

.footer-badges-label {
	display: block;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 1px;
	color: #7d84a0;
	margin-bottom: 0.7rem;
}

.google-partner-badge {
	display: inline-block;
	line-height: 0;
}

.google-partner-badge img {
	display: block;
	width: 175px;
	height: auto;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 1.6rem 2rem;
	text-align: center;
}

.footer-bottom p {
	opacity: 0.7;
	font-size: 0.85rem;
	margin: 0;
}

@media (max-width: 900px) {
	.footer-main {
		grid-template-columns: 1fr 1fr;
	}

	.footer-about {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.footer-main {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-about p {
		max-width: none;
		margin: 0 auto;
	}

	.footer-badges {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

/* ===== SERVICE PAGE LAYOUT (Industro style) ===== */

/* Breadcrumb bar */
.page-breadcrumb {
	background: linear-gradient(135deg, #eef2f8 0%, #dfe8f4 100%);
	padding: 3.5rem 2rem;
}

.page-breadcrumb-inner {
	max-width: 1250px;
	margin: 0 auto;
}

.page-breadcrumb h1 {
	font-size: 2.6rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.page-breadcrumb .crumbs {
	color: #5a6372;
	font-size: 0.95rem;
}

.page-breadcrumb .crumbs a {
	color: #ff4a17;
	text-decoration: none;
}

/* Two-column layout */
.page-layout {
	max-width: 1250px;
	margin: 0 auto;
	padding: 4rem 2rem;
}

.page-layout.with-sidebar {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 3.5rem;
	align-items: start;
}

/* Sidebar */
.service-nav {
	list-style: none;
	padding: 0;
	border: 1px solid #e8eaef;
}

.service-nav li {
	border-bottom: 1px solid #e8eaef;
}

.service-nav li:last-child {
	border-bottom: none;
}

.service-nav a {
	display: block;
	padding: 1.05rem 1.4rem;
	color: #333;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	background: #f8f9fb;
	transition: all 0.25s ease;
	border-left: 3px solid transparent;
}

.service-nav li.active a,
.service-nav a:hover {
	background: white;
	color: #ff4a17;
	border-left-color: #ff4a17;
}

.sidebar-contact {
	margin-top: 2rem;
	background: linear-gradient(160deg, #151b2e 0%, #1f2942 100%);
	color: white;
	padding: 2.2rem 1.8rem;
	text-align: center;
}

.sidebar-contact h4 {
	font-size: 1.2rem;
	margin-bottom: 0.8rem;
	font-weight: 700;
}

.sidebar-contact p {
	font-size: 0.92rem;
	color: #cdd3e0;
	margin-bottom: 1.4rem;
	line-height: 1.7;
}

/* Main content typographic styles */
.page-content h1 {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--primary);
	margin: 0 0 1.4rem;
	line-height: 1.25;
}

.page-content h2 {
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--primary);
	margin: 2.8rem 0 1.1rem;
}

.page-content h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary);
	margin: 1.8rem 0 0.7rem;
}

.page-content p {
	color: #4a5260;
	line-height: 1.9;
	margin-bottom: 1.2rem;
	font-size: 1rem;
}

.page-content ul {
	padding-left: 1.3rem;
	margin-bottom: 1.4rem;
}

.page-content ul li {
	color: #4a5260;
	line-height: 1.9;
}

.page-content a {
	color: #ff4a17;
}

/* Banner image at top of the service content */
.svc-banner {
	width: 100%;
	height: 340px;
	object-fit: cover;
	display: block;
	margin-bottom: 2rem;
}

/* Grid of sub-service boxes */
.svc-boxes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.4rem;
	margin: 1.6rem 0 1rem;
}

.svc-box {
	border: 1px solid #e8eaef;
	padding: 1.6rem;
	background: #fbfcfe;
}

.svc-box h3 {
	margin: 0 0 0.6rem !important;
	font-size: 1.05rem !important;
}

.svc-box p {
	margin: 0;
	font-size: 0.93rem !important;
	line-height: 1.75 !important;
}

/* Numbered steps */
.svc-steps {
	list-style: none !important;
	padding: 0 !important;
	counter-reset: step;
	margin: 1.6rem 0;
}

.svc-steps li {
	counter-increment: step;
	position: relative;
	padding: 0 0 1.3rem 3.4rem;
}

.svc-steps li::before {
	content: counter(step, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.4rem;
	font-weight: 800;
	color: #ff4a17;
}

/* CTA block at bottom of service content */
.svc-cta {
	background: linear-gradient(160deg, #151b2e 0%, #1f2942 100%);
	color: white;
	padding: 2.6rem;
	margin-top: 3rem;
	text-align: center;
}

.svc-cta h2 {
	color: white !important;
	margin: 0 0 0.8rem !important;
	font-size: 1.6rem !important;
}

.svc-cta p {
	color: #cdd3e0 !important;
	max-width: 560px;
	margin: 0 auto 1.6rem !important;
}

/* le lien-bouton doit rester blanc, même dans .page-content (sinon orange sur orange = illisible) */
.page-content .btn-quote,
.sidebar-contact .btn-quote {
	color: #fff;
}

.page-content .btn-quote:hover {
	color: #fff;
}

.service-page {
	padding: 4rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

/* ===== PAGE CONTACT ===== */
.contact-layout {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 3.5rem;
	align-items: start;
}

.contact-info {
	background: linear-gradient(160deg, #151b2e 0%, #1f2942 100%);
	color: white;
	padding: 2.8rem 2.4rem;
}

.contact-info h2 {
	font-size: 1.6rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: white;
}

.contact-info p {
	color: #cdd3e0;
	line-height: 1.8;
	margin-bottom: 2rem;
	font-size: 0.98rem;
}

.contact-info h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--accent-bright);
}

.contact-details {
	list-style: none;
	padding: 0;
}

.contact-details li {
	padding: 0.5rem 0;
	color: #e0e4ee;
	font-size: 0.95rem;
}

/* Formulaire */
.contact-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.4rem;
}

.form-field {
	margin-bottom: 1.4rem;
}

.form-field label {
	display: block;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 0.45rem;
	font-size: 0.92rem;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid #d9dee8;
	border-radius: 4px;
	font-size: 0.95rem;
	font-family: inherit;
	color: #333;
	background: #fbfcfe;
	transition: border-color 0.25s, box-shadow 0.25s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--accent-bright);
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
	background: white;
}

.form-submit {
	border: none;
	cursor: pointer;
	font-size: 1rem;
	padding: 1rem 2.6rem;
}

/* Honeypot invisible pour les humains */
.hp-field {
	position: absolute !important;
	left: -9999px !important;
	height: 0;
	width: 0;
	opacity: 0;
}

.form-success {
	background: #e8f8ee;
	border: 1px solid #34a853;
	color: #1e7a3c;
	padding: 1.4rem 1.6rem;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1.05rem;
}

.form-error {
	background: #fdeeee;
	border: 1px solid #e05252;
	color: #b02a2a;
	padding: 1rem 1.4rem;
	border-radius: 6px;
	font-weight: 600;
	margin-bottom: 1.4rem;
}

/* ===== ABOUT PAGE (Industro "About Us" layout) ===== */

.about-intro {
	max-width: 1000px;
	margin: 0 auto;
	padding: 5rem 2rem 2rem;
}

.about-intro-title {
	font-size: 2.6rem;
	font-weight: 300;
	color: var(--primary);
	line-height: 1.3;
	margin: 0.8rem 0 1.6rem;
	max-width: 750px;
}

.about-intro-text {
	color: #5a6372;
	font-size: 1.08rem;
	line-height: 1.9;
	max-width: 720px;
	margin-bottom: 3rem;
}

.about-features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.8rem 3rem;
}

.about-feature h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary);
	margin: 1.2rem 0 0.7rem;
}

.about-feature p {
	color: #5a6372;
	line-height: 1.8;
	font-size: 0.96rem;
}

/* Stats */
.about-stats-section {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	padding: 4.5rem 2rem;
	text-align: center;
	margin-top: 4rem;
}

.about-stats-section h2 {
	font-size: 2.2rem;
	font-weight: 800;
	margin-bottom: 3rem;
}

.about-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	max-width: 1100px;
	margin: 0 auto;
}

.stat-number {
	display: block;
	font-size: 3rem;
	font-weight: 800;
	color: var(--accent-bright);
	line-height: 1;
	margin-bottom: 0.8rem;
}

.stat-label {
	display: block;
	font-size: 0.95rem;
	color: #cdd3e0;
}

/* Process */
.about-process {
	max-width: 1250px;
	margin: 0 auto;
	padding: 5rem 2rem;
}

.about-process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
}

.process-step {
	border-top: 3px solid #ff4a17;
	padding-top: 1.4rem;
}

.process-number {
	display: block;
	font-size: 2.2rem;
	font-weight: 800;
	color: #e3e6ec;
	margin-bottom: 0.6rem;
}

.process-step h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.7rem;
}

.process-step p {
	color: #5a6372;
	font-size: 0.94rem;
	line-height: 1.8;
}

/* Team */
.about-team {
	max-width: 1250px;
	margin: 0 auto;
	padding: 1rem 2rem 5rem;
}

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

.team-card {
	text-align: center;
	padding: 2.2rem 1.6rem;
	background: #fafbfc;
	border: 1px solid #eee;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.team-card:hover {
	box-shadow: 0 16px 32px rgba(0,0,0,0.08);
	transform: translateY(-6px);
}

.team-avatar {
	width: 72px;
	height: 72px;
	margin: 0 auto 1.2rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-avatar svg {
	width: 38px;
	height: 38px;
	fill: none;
	stroke: white;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.team-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.6rem;
}

.team-card p {
	font-size: 0.88rem;
	color: #5a6372;
	line-height: 1.7;
}

/* Mission */
.about-mission {
	max-width: 1250px;
	margin: 0 auto;
	padding: 1rem 2rem 5rem;
}

.about-mission-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem;
}

.mission-card {
	background: #fbfbfd;
	border-left: 4px solid #ff4a17;
	padding: 1.8rem 2rem;
	position: relative;
}

.mission-quote {
	font-size: 2.4rem;
	color: #ff4a17;
	font-weight: 800;
	line-height: 1;
	display: block;
	margin-bottom: 0.4rem;
	font-family: Georgia, serif;
}

.mission-card p {
	color: var(--primary);
	font-size: 1.02rem;
	font-weight: 600;
	line-height: 1.7;
}

@media (max-width: 1024px) {
	.about-features-grid,
	.about-stats-grid,
	.about-process-grid,
	.about-team-grid,
	.about-mission-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.about-features-grid,
	.about-stats-grid,
	.about-process-grid,
	.about-team-grid,
	.about-mission-grid {
		grid-template-columns: 1fr;
	}

	.about-intro-title {
		font-size: 1.9rem;
	}
}

/* ===== ABOUT PREVIEW (homepage) — split photo / checklist, Industro style ===== */
.about-preview {
	background: #f7f8fa;
}

.about-preview-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
}

.ap-photo {
	position: relative;
	background-size: cover;
	background-position: center;
	min-height: 560px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ap-photo::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(15, 21, 40, 0.6);
}

.ap-photo-overlay {
	position: relative;
	text-align: center;
	color: white;
	max-width: 420px;
	padding: 2.5rem;
}

.ap-icon {
	width: 54px;
	height: auto;
	display: block;
	margin: 0 auto 1.4rem;
	stroke: white;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ap-photo-overlay h3 {
	font-size: 1.9rem;
	font-weight: 600;
	margin-bottom: 0.9rem;
}

.ap-photo-overlay p {
	color: #d5d9e4;
	font-size: 0.95rem;
	line-height: 1.85;
}

.ap-content {
	padding: 6rem 8% 6rem 5.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.ap-content h2 {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--primary);
	line-height: 1.25;
	margin: 0.8rem 0 1.4rem;
	max-width: 520px;
}

.ap-content > p {
	color: #5a6372;
	line-height: 1.9;
	max-width: 520px;
	margin-bottom: 2.2rem;
}

.ap-checklist {
	list-style: none;
	padding: 0;
	margin-bottom: 2.4rem;
}

.ap-checklist li {
	position: relative;
	padding-left: 2rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.ap-checklist li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent-bright);
	font-weight: 800;
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	border: 1px solid #d9dee8;
	padding: 0.9rem 1.8rem;
	border-radius: 4px;
	color: var(--primary);
	text-decoration: none;
	font-weight: 700;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	background: white;
}

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

@media (max-width: 900px) {
	.about-preview-inner {
		grid-template-columns: 1fr;
	}

	.ap-photo {
		min-height: 380px;
	}

	.ap-content {
		padding: 3.5rem 1.5rem;
		align-items: center;
		text-align: center;
	}

	.ap-checklist {
		display: inline-block;
		text-align: left;
	}
}

/* ===== TESTIMONIALS (homepage) ===== */
.testimonials-section {
	background: #f7f8fb;
	padding: 6rem 2rem;
}

.testimonials-inner {
	max-width: 1250px;
	margin: 0 auto;
}

.testimonials-subtitle {
	color: #5a6372;
	font-size: 1.05rem;
	line-height: 1.8;
	max-width: 640px;
	margin: -2.5rem 0 3rem;
}

.testimonials-carousel-wrap {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.testimonial-track {
	display: flex;
	gap: 1.8rem;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	flex: 1;
}

.testimonial-track::-webkit-scrollbar {
	display: none;
}

.testimonial-card {
	scroll-snap-align: start;
	flex: 0 0 340px;
	background: white;
	border-radius: 8px;
	padding: 2.2rem 2rem;
	box-shadow: 0 8px 24px rgba(20, 25, 45, 0.06);
	border: 1px solid #eee;
}

.testimonial-card .mission-quote {
	margin-bottom: 0.6rem;
}

.testimonial-card p {
	color: var(--primary);
	font-weight: 600;
	font-size: 1.02rem;
	line-height: 1.75;
	margin: 0;
}

.testimonial-card.link-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-decoration: none;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card.link-card:hover {
	box-shadow: 0 16px 36px rgba(20, 25, 45, 0.1);
	transform: translateY(-4px);
}

.carousel-btn {
	flex: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid #e0e4ee;
	background: white;
	color: var(--primary);
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
	transition: all 0.25s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-btn:hover {
	background: #ff4a17;
	border-color: #ff4a17;
	color: white;
}

/* ===== CLIENT LOGOS (homepage) ===== */
.logos-section {
	background: white;
	padding: 4rem 2rem 5.5rem;
	text-align: center;
}

.logos-eyebrow {
	display: block;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 1.5px;
	color: #9aa2b1;
	font-weight: 600;
	margin-bottom: 2.4rem;
}

.logos-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 3rem 3.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

.logo-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #9aa2b1;
	filter: grayscale(1);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.logo-item:hover {
	filter: grayscale(0);
	opacity: 1;
	color: #ff4a17;
}

.logo-item svg {
	width: 26px;
	height: 26px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.logo-item span {
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.3px;
}

@media (max-width: 768px) {
	.testimonial-card {
		flex-basis: 280px;
	}

	.carousel-btn {
		width: 38px;
		height: 38px;
	}
}

.service-page h1 {
	font-size: 3rem;
	color: var(--primary);
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.service-page .hero-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 4rem;
}

.service-page .hero-section img {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-benefits {
	margin: 3rem 0;
}

.service-benefits h2 {
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.benefits-list {
	list-style: none;
	padding: 0;
}

.benefits-list li {
	padding: 0.8rem 0;
	padding-left: 2rem;
	position: relative;
	color: #666;
	line-height: 1.8;
}

.benefits-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--accent-bright);
	font-weight: bold;
	font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
	.hero {
		min-height: auto;
		padding: 5rem 0 0;
	}

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

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

	.hero-contact-panel {
		max-width: 460px;
	}

	.hero {
		background-size: 75% auto, cover;
		background-position: right 20px top 90px, center;
	}

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

	.hero-cards {
		grid-template-columns: 1fr;
		transform: none;
		margin: 4rem auto -80px;
		max-width: 600px;
	}

	.hero-card.dark {
		margin: 0;
		padding: 2.8rem 2.5rem;
	}

	.page-layout.with-sidebar {
		grid-template-columns: 1fr;
	}

	.svc-boxes {
		grid-template-columns: 1fr;
	}

	.contact-layout {
		grid-template-columns: 1fr;
	}

	.contact-form .form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

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

	.services-header {
		text-align: center;
	}

	.service-item {
		text-align: center;
	}

	.service-item .spec-icon {
		margin-left: auto;
		margin-right: auto;
	}

	.service-item ul {
		display: inline-block;
		text-align: left;
	}

	.service-item .more-details {
		display: block;
		margin-top: 1rem;
	}

	.site-nav ul {
		gap: 1rem;
	}

	.dropdown-menu {
		position: static;
		display: none;
	}

	.nav-dropdown:hover .dropdown-menu {
		display: none;
	}

	.service-page .hero-section {
		grid-template-columns: 1fr;
	}

	.dark-section h2 {
		font-size: 2rem;
	}

	.dark-section p {
		font-size: 1rem;
	}

	.page-breadcrumb h1 {
		font-size: 1.9rem;
	}
}

/* MENU MOBILE (hamburger + sous-menu au clic) */
@media (max-width: 900px) {
	.site-header-inner {
		flex-wrap: wrap;
		padding: 1rem 1.2rem;
	}

	.nav-toggle {
		display: flex;
		order: 2;
	}

	.site-logo {
		order: 1;
	}

	.site-nav {
		order: 4;
		flex-basis: 100%;
		margin: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.site-header.nav-open .site-nav {
		max-height: 600px;
	}

	.site-nav > ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 1rem 0 0.5rem;
	}

	.site-nav a {
		padding: 0.9rem 0.5rem;
	}

	.nav-dropdown > a {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.dropdown-menu {
		position: static;
		display: none;
		box-shadow: none;
		border-top: none;
		margin-top: 0.3rem;
		background: #f8f9fb;
	}

	.dropdown-menu::before {
		display: none;
	}

	.nav-dropdown.open .dropdown-menu {
		display: block;
	}

	.site-header-inner > .btn-quote {
		order: 5;
		flex-basis: 100%;
		text-align: center;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		padding: 0;
		margin: 0;
		transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease, margin 0.3s ease;
	}

	.site-header.nav-open .btn-quote {
		max-height: 80px;
		opacity: 1;
		padding: 0.9rem 1.8rem;
		margin: 0.6rem 0 0.2rem;
	}
}

/* BARRE DU HAUT SUR MOBILE (adresse/tél/email masqués, pas de débordement) */
@media (max-width: 700px) {
	.header-top {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.4rem;
		padding: 0.6rem 1rem;
		font-size: 0.75rem;
	}

	.header-contact {
		display: none;
	}

	.header-social {
		width: 100%;
		justify-content: center;
	}
}

/* PETITS ÉCRANS : espacements resserrés, zéro scroll horizontal */
@media (max-width: 480px) {
	.hero-inner {
		padding: 0 1.2rem;
	}

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

	.hero-subtitle {
		max-width: none;
	}

	.hero-cards {
		padding: 0 1.2rem;
	}

	.services {
		padding: 8rem 1.2rem 4rem;
	}

	.section-title {
		font-size: 1.6rem;
	}

	.dark-section {
		padding: 4rem 1.2rem;
	}

	.dark-section h2 {
		font-size: 1.6rem;
	}

	.page-layout {
		padding: 2.5rem 1.2rem;
	}

	.contact-info,
	.hero-contact-panel {
		padding: 1.6rem 1.4rem;
	}

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

	.about-intro,
	.about-process,
	.about-team,
	.about-mission {
		padding-left: 1.2rem;
		padding-right: 1.2rem;
	}

	.about-stats-section {
		padding: 3rem 1.2rem;
	}

	.logos-row {
		gap: 1.6rem 2rem;
	}
}
