/*
Theme Name: HAWATECH
Theme URI: https://hawatech.net
Author: HAWATECH
Author URI: https://hawatech.net
Description: Thème léger sur mesure pour HAWATECH (infogérance, cybersécurité, cloud, Conakry). Thème d'édition complète du site (FSE), sans constructeur de pages lourd type Elementor : tous les styles sont pilotés par theme.json pour un chargement rapide.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hawatech
Tags: full-site-editing, block-patterns, custom-colors, custom-menu, translation-ready
*/

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

/* La quasi-totalité des styles est gérée par theme.json (bonnes pratiques FSE). Ce fichier ne contient que quelques ajustements ponctuels. */

.wp-block-button__link {
	border-radius: 4px;
	font-weight: 700;
	text-transform: none;
}

.hawatech-header {
	font-family: Arial, Helvetica, sans-serif;
}

/* Barre utilitaire */
.hawatech-topbar {
	background: #244081;
	color: #FFFFFF;
}

.hawatech-topbar-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

@media (max-width: 480px) {
	.hawatech-topbar-inner {
		padding: 0.6rem 1rem;
		justify-content: center;
		text-align: center;
	}

	.hawatech-topbar-contact,
	.hawatech-topbar-cta {
		font-size: 12px;
	}
}

.hawatech-topbar-contact {
	font-size: 13px;
	letter-spacing: 0.02em;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.hawatech-topbar-contact svg {
	flex-shrink: 0;
}

.hawatech-topbar-cta {
	font-size: 13px;
	font-weight: 700;
	color: #FFFFFF;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 999px;
	padding: 0.3rem 0.9rem;
}

.hawatech-topbar-cta:hover {
	background: #A12E31;
	border-color: #A12E31;
	color: #FFFFFF;
}

/* Bandeau défilant "site en construction" (sur toutes les pages) */
.hawatech-ticker {
	background: #A12E31;
	color: #FFFFFF;
	overflow: hidden;
	white-space: nowrap;
	padding: 0.5rem 0;
}

.hawatech-ticker-track {
	display: inline-flex;
	animation: hawatech-ticker-scroll 28s linear infinite;
}

.hawatech-ticker-track span {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.01em;
	padding-right: 4rem;
}

@keyframes hawatech-ticker-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.hawatech-ticker-track {
		animation: none;
	}
}

/* Navigation en pastilles (aperçu de structure, non cliquable pendant la construction du site) */
.hawatech-pillnav {
	position: relative;
	background: #FFFFFF;
	border-bottom: 1px solid #F4F4F5;
	padding: 0.75rem 2rem;
}

.hawatech-pillnav-bar {
	display: contents;
}

.hawatech-pillnav-list {
	display: contents;
	list-style: none;
	padding: 0;
	margin: 0;
}

.hawatech-menu-toggle {
	display: none;
}

.hawatech-pill {
	background: #244081;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.03em;
	border-radius: 6px;
	padding: 0.65rem 1.1rem;
	cursor: default;
	user-select: none;
	position: relative;
}

.hawatech-pill-home {
	background: #A12E31;
}

.hawatech-pill-link {
	color: #FFFFFF;
	text-decoration: none;
	cursor: pointer;
}

.hawatech-pill-link:hover {
	text-decoration: underline;
}

.hawatech-pill-dropdown {
	position: static;
	padding: 0;
}

.hawatech-dropdown-trigger {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	background: transparent;
	border: none;
	color: #FFFFFF;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.03em;
	padding: 0.65rem 1.1rem;
	cursor: pointer;
}

.hawatech-dropdown-caret {
	transition: transform 0.2s ease;
}

.hawatech-pill-dropdown.is-open .hawatech-dropdown-caret {
	transform: rotate(180deg);
}

.hawatech-dropdown-panel {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 0.5rem;
	background: #FFFFFF;
	border: 1px solid #F4F4F5;
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	list-style: none;
	padding: 0.5rem 0;
	min-width: 260px;
	z-index: 20;
}

.hawatech-pill-dropdown.is-open .hawatech-dropdown-panel {
	display: block;
}

.hawatech-dropdown-panel li {
	color: #1A1A1A;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 14px;
	letter-spacing: normal;
	text-transform: none;
	padding: 0.55rem 1.1rem;
	cursor: default;
	user-select: none;
}

.hawatech-dropdown-panel li:hover {
	background: #F4F4F5;
}

.hawatech-megamenu {
	width: max-content;
	max-width: 1100px;
	min-width: 700px;
	left: 50%;
	transform: translateX(-50%);
	padding: 1.5rem;
}

.hawatech-megamenu-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: start;
	gap: 1.25rem 1.5rem;
}

.hawatech-megamenu-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	width: 100%;
	height: 92px;
	background: #244081;
	color: #FFFFFF;
	border: none;
	border-radius: 8px;
	padding: 0.9rem 1rem;
	margin: 0;
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(36,64,129,0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hawatech-megamenu-heading:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(36,64,129,0.28);
}

.hawatech-megamenu-heading .heading-left {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	text-align: left;
}

.hawatech-megamenu-heading svg {
	flex-shrink: 0;
}

.hawatech-megamenu-heading .heading-text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.hawatech-megamenu-heading .heading-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 12.5px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.25;
}

.hawatech-megamenu-heading .heading-count {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 11px;
	opacity: 0.8;
}

.hawatech-megamenu-heading .heading-caret {
	display: block;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.hawatech-megamenu-col.is-expanded .heading-caret {
	transform: rotate(180deg);
}

.hawatech-megamenu-col.is-highlight .hawatech-megamenu-heading {
	background: #A12E31;
	box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.hawatech-megamenu-col.is-highlight .hawatech-megamenu-heading:hover {
	box-shadow: 0 10px 22px rgba(0,0,0,0.24);
}

.hawatech-megamenu-col ul {
	display: none;
	list-style: none;
	margin: 0.6rem 0 0;
	padding: 0.75rem;
	background: #F9F9FA;
	border-radius: 8px;
}

.hawatech-megamenu-col.is-expanded ul {
	display: block;
}

.hawatech-megamenu-col ul li {
	font-size: 12.5px;
	line-height: 1.5;
	color: #1A1A1A;
	padding: 0.3rem 0.4rem;
	border-radius: 4px;
	cursor: default;
	user-select: none;
}

.hawatech-megamenu-col ul li:hover {
	background: #F4F4F5;
}

.hawatech-megamenu-cta {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-top: 1.5rem;
	padding: 0.9rem 1.1rem;
	background: rgba(161,46,49,0.06);
	border: 1px solid rgba(161,46,49,0.25);
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease;
}

.hawatech-megamenu-cta:hover {
	background: rgba(161,46,49,0.12);
}

.hawatech-megamenu-cta-badge {
	flex-shrink: 0;
	background: #A12E31;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 999px;
}

.hawatech-megamenu-cta-text {
	flex: 1;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #1A1A1A;
}

.hawatech-megamenu-cta-arrow {
	flex-shrink: 0;
	color: #A12E31;
	font-weight: 700;
}

@media (min-width: 641px) and (max-width: 1024px) {
	.hawatech-megamenu {
		min-width: 520px;
		max-width: 90vw;
	}

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

/* Desktop uniquement : tous les pills alignés sur une seule ligne */
@media (min-width: 641px) {
	.hawatech-pillnav {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 0.6rem;
		max-width: 1280px;
		margin: 0 auto;
	}
}

/* Mobile et tablette étroite : menu burger + accordéon */
@media (max-width: 640px) {
	.hawatech-pillnav {
		padding: 0.65rem 1rem;
	}

	.hawatech-pillnav-bar {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}

	.hawatech-menu-toggle {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		background: #244081;
		color: #FFFFFF;
		border: none;
		border-radius: 6px;
		padding: 0.6rem 0.9rem;
		font-family: 'Montserrat', sans-serif;
		font-weight: 700;
		font-size: 11px;
		letter-spacing: 0.03em;
		cursor: pointer;
	}

	.hawatech-menu-toggle-bars {
		display: flex;
		flex-direction: column;
		gap: 3px;
	}

	.hawatech-menu-toggle-bars span {
		width: 16px;
		height: 2px;
		background: #FFFFFF;
		border-radius: 2px;
	}

	.hawatech-pillnav-list {
		display: none;
		width: 100%;
		flex-direction: column;
		gap: 0.5rem;
		margin-top: 0.75rem;
	}

	.hawatech-pillnav-list.is-open {
		display: flex;
	}

	.hawatech-pill {
		font-size: 12px;
		padding: 0.75rem 1rem;
	}

	.hawatech-dropdown-trigger {
		width: 100%;
		justify-content: space-between;
		font-size: 12px;
		padding: 0.75rem 1rem;
	}

	.hawatech-dropdown-panel {
		position: static;
		display: none;
		margin-top: 0.5rem;
		box-shadow: none;
		border: none;
		background: rgba(255,255,255,0.08);
		min-width: 0;
		width: 100%;
	}

	.hawatech-pill-dropdown.is-open .hawatech-dropdown-panel {
		display: block;
	}

	.hawatech-dropdown-panel li {
		color: #FFFFFF;
	}

	.hawatech-dropdown-panel li:hover {
		background: rgba(255,255,255,0.15);
	}

	.hawatech-megamenu {
		width: 100%;
		min-width: 0;
		max-width: none;
		left: 0;
		transform: none;
		padding: 0;
		background: transparent;
		box-shadow: none;
	}

	.hawatech-megamenu-grid {
		grid-template-columns: 1fr;
		gap: 0.9rem;
	}

	.hawatech-megamenu-col ul li {
		color: #1A1A1A;
	}

	.hawatech-megamenu-col ul li:hover {
		background: #F0F0F2;
	}

	.hawatech-megamenu-cta {
		background: rgba(255,255,255,0.1);
		border-color: rgba(255,255,255,0.3);
	}

	.hawatech-megamenu-cta:hover {
		background: rgba(255,255,255,0.18);
	}

	.hawatech-megamenu-cta-text {
		color: #FFFFFF;
	}

	.hawatech-megamenu-cta-arrow {
		color: #FFFFFF;
	}

	.hawatech-pill-dropdown {
		width: 100%;
	}
}



/* ================= PARTENARIATS ================= */

.hawatech-partners {
	background: #FFFFFF;
	padding: 4rem 2rem;
}

.hawatech-partners-inner {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.hawatech-partners-eyebrow {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 16px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #A12E31;
	margin: 0 0 0.5rem;
}

.hawatech-partners-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: clamp(26px, 3.4vw, 36px);
	color: #244081;
	margin: 0 0 1rem;
}

.hawatech-partners-intro {
	max-width: 680px;
	margin: 0 auto 2.5rem;
	color: #5A5A5A;
	font-size: 15px;
	line-height: 1.65;
}

.hawatech-partners-group {
	margin-bottom: 2.5rem;
}

.hawatech-partners-group:last-child {
	margin-bottom: 0;
}

.hawatech-partners-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #1A1A1A;
	margin: 0 0 1.25rem;
}

.hawatech-partners-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
	max-width: 1180px;
	margin: 0 auto;
}

.hawatech-partner-card {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
	padding: 1.5rem 2rem;
	background: #FFFFFF;
	border: 1px solid #EDEDEE;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.05);
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hawatech-partner-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #244081;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.hawatech-partner-card:hover::before {
	transform: scaleX(1);
}

.hawatech-partner-card:hover {
	border-color: #244081;
	box-shadow: 0 14px 30px rgba(36,64,129,0.16);
	transform: translateY(-3px);
}

.hawatech-partner-card img {
	max-width: 85%;
	max-height: 64px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.hawatech-partner-card-swap {
	position: relative;
}

.hawatech-partner-card-swap .hawatech-partner-img-default {
	opacity: 1;
	transition: opacity 0.25s ease;
}

.hawatech-partner-img-hover {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-height: 56px;
	border-radius: 8px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.hawatech-partner-card-swap:hover .hawatech-partner-img-default {
	opacity: 0;
}

.hawatech-partner-card-swap:hover .hawatech-partner-img-hover {
	opacity: 1;
}

.hawatech-partner-placeholder {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	padding: 1rem 2rem;
	border: 1px dashed #D0D0D3;
	border-radius: 12px;
	color: #8A8A8E;
	font-size: 13px;
	text-align: center;
}

@media (max-width: 700px) {
	.hawatech-partners {
		padding: 2.75rem 1.25rem;
	}

	.hawatech-partners-grid {
		grid-template-columns: 1fr;
		max-width: 340px;
	}
}

.hawatech-footer {
	background: #244081;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	padding: 3rem 2rem 1.5rem;
}

.hawatech-footer-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
}

.hawatech-footer-col {
	flex: 1 1 260px;
	min-width: 0;
}

@media (max-width: 480px) {
	.hawatech-footer {
		padding: 2.5rem 1.25rem 1.25rem;
	}

	.hawatech-footer-inner {
		gap: 2rem;
	}

	.hawatech-footer-col {
		flex-basis: 100%;
	}
}

.hawatech-footer-brand {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 22px;
	margin: 0 0 0.4rem;
	color: #FFFFFF;
}

.hawatech-footer-baseline {
	font-size: 14px;
	color: #A12E31;
	font-weight: 700;
	margin: 0;
}

.hawatech-footer-heading {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin: 0 0 1rem;
}

.hawatech-footer-line {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 0.9rem;
}

.hawatech-footer-line svg {
	flex-shrink: 0;
	margin-top: 3px;
	color: #A12E31;
}

.hawatech-footer a {
	color: #FFFFFF;
	text-decoration: none;
}

.hawatech-footer a:hover {
	text-decoration: underline;
}

.hawatech-footer-bottom {
	max-width: 1280px;
	margin: 2rem auto 0;
	border-top: 1px solid rgba(255,255,255,0.15);
	padding-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 13px;
}

.hawatech-footer-bottom p {
	margin: 0;
}

.hawatech-footer-links {
	display: flex;
	gap: 1.25rem;
	flex-wrap: wrap;
}

.hawatech-services-section {
	max-width: 1600px;
	margin: 0 auto;
	padding-left: 2rem;
	padding-right: 2rem;
	box-sizing: border-box;
}

.hawatech-services-eyebrow {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 16px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #A12E31;
	margin: 0 0 0.5rem;
}

.hawatech-services-intro-row {
	display: flex;
	align-items: stretch;
	gap: 2.5rem;
	max-width: 1100px;
	margin: 2rem auto 3rem;
}

.hawatech-services-stat {
	position: relative;
	overflow: hidden;
	flex: 0 0 260px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: linear-gradient(135deg, #2A4A94 0%, #1B3163 100%);
	border-radius: 12px;
	padding: 2rem 1.75rem;
	text-align: left;
	box-shadow: 0 14px 32px rgba(36,64,129,0.25);
}

.hawatech-services-stat::before {
	content: "";
	position: absolute;
	top: -40px;
	right: -40px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
}

.hawatech-services-stat::after {
	content: "";
	position: absolute;
	bottom: -50px;
	right: 20px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: rgba(161,46,49,0.15);
}

.hawatech-services-stat-number {
	position: relative;
	z-index: 1;
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 48px;
	line-height: 1;
	color: #FFFFFF;
	text-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.hawatech-services-stat-number::after {
	content: "";
	display: block;
	width: 42px;
	height: 4px;
	margin-top: 0.6rem;
	background: #A12E31;
	border-radius: 999px;
}

.hawatech-services-stat-label {
	position: relative;
	z-index: 1;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #FFFFFF;
	margin-top: 0.6rem;
}

.hawatech-services-stat-sub {
	position: relative;
	z-index: 1;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: rgba(255,255,255,0.75);
	margin-top: 0.6rem;
	padding-top: 0.6rem;
	border-top: 1px solid rgba(255,255,255,0.2);
}

.hawatech-services-intro-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hawatech-services-intro-text p {
	text-align: justify;
	color: #3A3A3A;
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 1rem;
}

.hawatech-services-intro-text p:last-child {
	margin-bottom: 0;
}

.hawatech-services-intro-cta {
	font-weight: 700;
	color: #A12E31;
	text-decoration: underline;
}

.hawatech-services-intro-cta:hover {
	color: #244081;
}

@media (max-width: 780px) {
	.hawatech-services-intro-row {
		flex-direction: column;
		gap: 1.5rem;
		margin: 1.5rem auto 2.5rem;
	}

	.hawatech-services-stat {
		flex-basis: auto;
		flex-direction: row;
		align-items: center;
		flex-wrap: wrap;
		gap: 0.5rem 1rem;
	}

	.hawatech-services-stat-sub {
		flex-basis: 100%;
		border-top: none;
		padding-top: 0;
		margin-top: 0;
	}
}

.hawatech-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	grid-auto-rows: minmax(300px, auto);
	align-items: stretch;
	gap: 1.5rem;
}

.hawatech-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid #EDEDEE;
	border-radius: 14px;
	padding: 2rem 1.85rem 1.85rem;
	width: 100%;
	background: rgba(36,64,129,0.025);
	transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hawatech-card-accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: #244081;
}

.hawatech-card.is-highlighted .hawatech-card-accent {
	background: #A12E31;
}

.hawatech-card-number {
	position: absolute;
	top: 0.75rem;
	right: 1.1rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 28px;
	color: rgba(36,64,129,0.08);
	line-height: 1;
}

.hawatech-card.is-highlighted .hawatech-card-number {
	color: rgba(161,46,49,0.12);
}

.hawatech-card:hover {
	box-shadow: 0 14px 32px rgba(36,64,129,0.12);
	border-color: #244081;
	transform: translateY(-3px);
}

.hawatech-card-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #FFFFFF;
	color: #244081;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.1rem;
	box-shadow: 0 4px 14px rgba(36,64,129,0.16);
}

.hawatech-card.is-highlighted {
	background: rgba(161,46,49,0.035);
	border-color: #A12E31;
	border-width: 2px;
}

.hawatech-card.is-highlighted .hawatech-card-icon {
	color: #A12E31;
	box-shadow: 0 4px 14px rgba(161,46,49,0.2);
}

.hawatech-card h3 {
	font-size: 1.08rem;
	line-height: 1.3;
	letter-spacing: 0;
	margin-bottom: 0.6rem;
}

.hawatech-card p {
	font-size: 14px;
	line-height: 1.6;
	color: #3A3A3A;
}

.hawatech-card.is-highlighted:hover {
	border-color: #A12E31;
	box-shadow: 0 14px 32px rgba(161,46,49,0.18);
}

@media (max-width: 480px) {
	.hawatech-services-section {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.hawatech-services-grid {
		grid-template-columns: 1fr;
	}
	.hawatech-card {
		padding: 1.4rem;
	}
}

.hawatech-badge {
	display: inline-block;
	background: #A12E31;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 2px 10px;
	border-radius: 999px;
	margin-bottom: 0.75rem;
}

.hawatech-construction-banner {
	text-align: center;
}

.hawatech-construction-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 20px;
	letter-spacing: 0.04em;
	color: #A12E31;
	margin: 0 0 0.4rem;
}

.hawatech-construction-text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #1A1A1A;
	margin: 0;
}

.hawatech-form label {
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 0.35rem;
	color: #1A1A1A;
}

.hawatech-form input,
.hawatech-form select,
.hawatech-form textarea {
	width: 100%;
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	padding: 0.65rem 0.75rem;
	margin-bottom: 1.1rem;
	border: 1px solid #6B7280;
	border-radius: 4px;
	background: #FFFFFF;
	color: #1A1A1A;
}

.hawatech-form textarea {
	min-height: 130px;
	resize: vertical;
}

.hawatech-form button {
	background: #A12E31;
	color: #FFFFFF;
	border: none;
	border-radius: 4px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 16px;
	padding: 0.75rem 1.75rem;
	cursor: pointer;
}

.hawatech-form button:hover {
	background: #244081;
}

.hawatech-form-honeypot {
	position: absolute;
	left: -9999px;
}

.hawatech-form-success {
	background: #F4F4F5;
	border-left: 4px solid #A12E31;
	padding: 1.25rem 1.5rem;
	border-radius: 4px;
}

/* ================= PAGE CONTACT (carte bicolore bleu / blanc) ================= */

.hawatech-contact-wrap {
	background: #F4F4F5;
	padding: 4rem 1.5rem;
}

.hawatech-contact-card {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

.hawatech-contact-left {
	flex: 1 1 380px;
	background: #244081;
	color: #FFFFFF;
	padding: 3rem 2.5rem;
}

.hawatech-contact-right {
	flex: 1 1 380px;
	background: #FFFFFF;
	padding: 3rem 2.5rem;
	display: flex;
	align-items: center;
}

.hawatech-contact-right .hawatech-form {
	width: 100%;
}

.hawatech-contact-breadcrumb {
	display: inline-block;
	border: 1px solid rgba(255,255,255,0.35);
	border-radius: 999px;
	padding: 0.4rem 1.1rem;
	font-size: 12px;
	margin-bottom: 1.5rem;
}

.hawatech-contact-breadcrumb a {
	color: #FFFFFF;
	text-decoration: none;
}

.hawatech-contact-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: clamp(26px, 3vw, 36px);
	margin: 0 0 0.5rem;
	color: #FFFFFF;
}

.hawatech-contact-subtitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #FFFFFF;
	opacity: 0.85;
	font-weight: 700;
	margin: 0 0 1.5rem;
}

.hawatech-contact-label {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 13px;
	margin: 0 0 0.75rem;
	opacity: 0.9;
}

.hawatech-contact-checklist {
	list-style: none;
	padding: 0;
	margin: 0 0 1.25rem;
}

.hawatech-contact-checklist:last-of-type {
	margin-bottom: 2rem;
}

.hawatech-contact-checklist li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 0.9rem;
	font-size: 14px;
	line-height: 1.5;
}

.hawatech-contact-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: -1px;
	width: 20px;
	height: 20px;
	background: #A12E31;
	color: #FFFFFF;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hawatech-contact-response-badge {
	display: inline-block;
	background: #A12E31;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	padding: 0.75rem 1.75rem;
	border-radius: 4px;
}

.hawatech-form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 1.25rem;
}

.hawatech-form-checkbox input {
	width: auto;
	margin: 0.2rem 0 0;
}

.hawatech-form-checkbox a {
	color: #A12E31;
	text-decoration: underline;
}

.hawatech-form-privacy-note {
	text-align: center;
	font-size: 12px;
	opacity: 0.7;
	margin: 0.75rem 0 0;
}

.hawatech-form-error {
	color: #FFFFFF;
	background: #A12E31;
	padding: 0.75rem 1rem;
	border-radius: 4px;
	font-size: 13px;
}

@media (max-width: 700px) {
	.hawatech-contact-wrap {
		padding: 2.5rem 1rem;
	}
	.hawatech-contact-left,
	.hawatech-contact-right {
		padding: 2.25rem 1.5rem;
	}
}

@media (max-width: 400px) {
	.hawatech-contact-wrap {
		padding: 1.75rem 0.75rem;
	}
	.hawatech-contact-left,
	.hawatech-contact-right {
		padding: 1.75rem 1.1rem;
	}
	.hawatech-contact-response-badge {
		font-size: 13px;
		padding: 0.65rem 1.25rem;
	}
}
