:root {
	--navy: #0c1e3c;
	--navy-light: #162d50;
	--gold: #3b82f6;
	--gold-light: #60a5fa;
	--cream: #f0f7ff;
	--cream-dark: #dbeafe;
	--text-dark: #0c1e3c;
	--text-muted: #4b6a9b;
	--white: #ffffff;
	--accent: #1d4ed8;
	--accent-light: #93c5fd;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Outfit', sans-serif;
	background: var(--cream);
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4 {
	font-family: 'Playfair Display', serif;
	font-weight: 400;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 2rem;
	transition: all 0.3s ease;
}

.header.scrolled {
	background: var(--navy);
	box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.header-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--white);
}

.logo:hover {
	text-decoration: none;
}

.logo-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.logo-text {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	letter-spacing: -0.5px;
}

.logo-text2 {
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	letter-spacing: -0.5px;
}

.nav {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.nav a {
	color: var(--white);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	opacity: 0.85;
	transition: opacity 0.2s;
}

.nav a:hover {
	opacity: 1;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	color: var(--white);
}

.btn-primary:hover {
}

.btn-outline {
	border: 2px solid var(--gold);
	color: var(--gold);
	background: transparent;
}

.btn-outline:hover {
	background: var(--gold);
	color: var(--navy);
}

.btn-dark {
	background: var(--navy);
	color: var(--white);
}

.btn-dark:hover {
	background: var(--navy-light);
	transform: translateY(-2px);
}

.mobile-menu {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.mobile-menu span {
	width: 25px;
	height: 2px;
	background: var(--white);
	transition: 0.3s;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	background: var(--navy);
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(ellipse at 20% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 20%, rgba(96, 165, 250, 0.15) 0%, transparent 40%);
}

.hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
	background-size: 60px 60px;
}

.hero-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 8rem 2rem 4rem;
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-text {
	animation: fadeInUp 0.8s ease forwards;
}

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

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(59, 130, 246, 0.15);
	border: 1px solid rgba(59, 130, 246, 0.3);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	color: var(--gold-light);
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: var(--white);
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.hero h1 span {
	color: var(--gold);
}

.hero-description {
	font-size: 1.15rem;
	color: rgba(255,255,255,0.7);
	margin-bottom: 2rem;
	max-width: 540px;
}

.hero-cta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.hero-stats {
	display: flex;
	gap: 3rem;
}

.stat {
	text-align: left;
}

.stat-value {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	color: var(--gold);
	line-height: 1;
}

.stat-label {
	font-size: 0.9rem;
	color: rgba(255,255,255,0.6);
	margin-top: 0.25rem;
}

.hero-visual {
	position: relative;
	animation: fadeInUp 0.8s 0.2s ease forwards;
	opacity: 0;
}

.hero-card {
	background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 
		0 40px 80px rgba(0,0,0,0.4),
		inset 0 1px 0 rgba(255,255,255,0.1);
	position: relative;
	border: 1px solid rgba(59, 130, 246, 0.3);
}

.hero-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(ellipse at 30% 0%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
		radial-gradient(ellipse at 100% 100%, rgba(96, 165, 250, 0.15) 0%, transparent 40%);
	border-radius: 24px;
	z-index: 0;
}

.hero-card > * {
	position: relative;
	z-index: 1;
}

.card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255,255,255,0.15);
}

.card-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.card-title {
	font-size: 1.4rem;
	color: var(--white);
	letter-spacing: -0.3px;
}

.card-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.card-feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1rem;
	background: rgba(255,255,255,0.08);
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.1);
	transition: all 0.2s ease;
	color: rgba(255,255,255,0.9);
}

.card-feature:hover {
	transform: translateX(4px);
	background: rgba(255,255,255,0.12);
	border-color: rgba(59, 130, 246, 0.4);
}

.feature-check {
	width: 26px;
	height: 26px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 0.8rem;
	font-weight: 700;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Trust Bar */
.trust-bar {
	background: var(--navy-light);
	padding: 2rem;
}

.trust-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4rem;
	flex-wrap: wrap;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: rgba(255,255,255,0.7);
	font-size: 0.95rem;
}

.trust-icon {
	color: var(--gold);
	font-size: 1.25rem;
}

/* Services Section */
.services {
	padding: 6rem 2rem;
	background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
	position: relative;
	overflow: hidden;
}

.services::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(ellipse at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 40%);
}

.services .section-header h2 {
	color: var(--white);
}

.services .section-header p {
	color: rgba(255,255,255,0.7);
}

.section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.section-tag {
	display: inline-block;
	background: var(--navy);
	color: var(--gold);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}

.section-header h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--navy);
	margin-bottom: 1rem;
}

.section-header p {
	color: var(--text-muted);
	font-size: 1.1rem;
}

.services-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.service-card {
	background: rgba(255,255,255,0.03);
	backdrop-filter: blur(10px);
	border-radius: 24px;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
	border: 1px solid rgba(255,255,255,0.1);
}

.service-card:hover {
	transform: translateY(-8px);
	background: rgba(255,255,255,0.08);
	border-color: var(--gold);
	box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

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

.service-icon {
	width: 72px;
	height: 72px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.75rem;
	box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.service-icon svg {
	width: 32px;
	height: 32px;
	stroke: white;
	stroke-width: 2;
	fill: none;
}

.service-card h3 {
	font-size: 1.5rem;
	color: var(--white);
	margin-bottom: 1rem;
}

.service-card p {
	color: rgba(255,255,255,0.7);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.service-list {
	list-style: none;
}

.service-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.6rem 0;
	color: rgba(255,255,255,0.9);
	font-size: 0.95rem;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.service-list li::before {
	content: '✓';
	color: var(--gold);
	font-weight: 700;
	font-size: 0.85rem;
	background: rgba(59, 130, 246, 0.2);
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
}

/* Process Section */
.process {
	padding: 6rem 2rem;
	background: var(--navy);
	position: relative;
	overflow: hidden;
}

.process::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
}

.process .section-header h2 {
	color: var(--white);
}

.process .section-header p {
	color: rgba(255,255,255,0.6);
}

.process-steps {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	position: relative;
}

.process-steps::before {
	content: '';
	position: absolute;
	top: 50px;
	left: 12.5%;
	right: 12.5%;
	height: 2px;
	background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
	opacity: 0.3;
}

.step {
	text-align: center;
	position: relative;
}

.step-number {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	color: var(--white);
	margin: 0 auto 1.5rem;
	position: relative;
	z-index: 2;
}

.step h3 {
	color: var(--white);
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.step p {
	color: rgba(255,255,255,0.6);
	font-size: 0.95rem;
}

/* Advantages Section */
.advantages {
	padding: 6rem 2rem;
	background: var(--cream);
	position: relative;
	overflow: hidden;
}

.advantages::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.advantages::after {
	content: '';
	position: absolute;
	bottom: -200px;
	left: -200px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(29, 78, 216, 0.08) 0%, transparent 70%);
	border-radius: 50%;
}

.advantages-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.advantages-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.advantages-header h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--navy);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.advantages-header p {
	color: var(--text-muted);
	font-size: 1.15rem;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 4rem;
}

.advantage-card {
	background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
	border-radius: 24px;
	padding: 2rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(12, 30, 60, 0.25);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(59, 130, 246, 0.2);
}

.advantage-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at 30% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
	pointer-events: none;
}

.advantage-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 25px 60px rgba(59, 130, 246, 0.3);
	border-color: var(--gold);
}

.advantage-number {
	position: absolute;
	top: 1rem;
	right: 1.25rem;
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(96, 165, 250, 0.1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	font-weight: 400;
	z-index: 1;
}

.advantage-icon-wrap {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	position: relative;
	z-index: 2;
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.advantage-icon-wrap svg {
	width: 28px;
	height: 28px;
	stroke: white;
	stroke-width: 2;
	fill: none;
}

.advantage-card h3 {
	font-size: 1.25rem;
	color: var(--white);
	margin-bottom: 0.6rem;
	position: relative;
	z-index: 2;
}

.advantage-card > p {
	color: rgba(255,255,255,0.7);
	font-size: 0.95rem;
	line-height: 1.6;
	position: relative;
	z-index: 2;
}

.advantage-card .feature-list {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255,255,255,0.1);
	list-style: none;
	position: relative;
	z-index: 2;
}

.advantage-card .feature-list li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: rgba(255,255,255,0.85);
	font-size: 0.88rem;
	padding: 0.3rem 0;
}

.advantage-card .feature-list li::before {
	content: '✓';
	color: var(--gold-light);
	font-weight: 700;
	font-size: 0.8rem;
	background: rgba(59, 130, 246, 0.25);
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	flex-shrink: 0;
}

/* Stats Banner */
.stats-banner {
	background: var(--white);
	border-radius: 24px;
	padding: 2.5rem 2rem 1.5rem 2rem;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(12, 30, 60, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.1);
}

.stat-item {
	text-align: center;
	position: relative;
	z-index: 2;
	padding-top: 1rem;
}

.stat-item::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 60%;
	background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.stat-item:last-child::after {
	display: none;
}

.stat-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.stat-icon svg {
	width: 26px;
	height: 26px;
	stroke: white;
	stroke-width: 2;
	fill: none;
}

.stat-item .stat-value {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	color: var(--navy);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-item .stat-value span {
	color: var(--gold);
}

.stat-item .stat-label {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.stats-banner .stat-insee {
	font-family: 'Playfair Display', serif;
	font-size: .8rem;
	color: var(--navy);
	line-height: 1;
}

/* Sectors Section */
.sectors {
	padding: 6rem 2rem;
	background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
	position: relative;
	overflow: hidden;
}

.sectors::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(ellipse at 10% 90%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
		radial-gradient(ellipse at 90% 10%, rgba(96, 165, 250, 0.1) 0%, transparent 40%);
}

.sectors .section-header h2 {
	color: var(--white);
}

.sectors .section-header p {
	color: rgba(255,255,255,0.7);
}

.sectors-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	position: relative;
	z-index: 1;
}

.sector-card {
	background: rgba(255,255,255,0.04);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2rem;
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(255,255,255,0.08);
	position: relative;
	overflow: hidden;
}

.sector-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.sector-card:hover {
	background: rgba(255,255,255,0.1);
	border-color: var(--gold);
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.sector-card:hover::before {
	opacity: 1;
}

.sector-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
	position: relative;
	z-index: 1;
}

.sector-icon svg {
	width: 26px;
	height: 26px;
	stroke: white;
	stroke-width: 2;
	fill: none;
}

.sector-card > div {
	position: relative;
	z-index: 1;
}

.sector-card h3 {
	font-size: 1.2rem;
	color: var(--white);
	margin-bottom: 0.5rem;
}

.sector-card p {
	color: rgba(255,255,255,0.7);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* FAQ Section */
.faq {
	padding: 6rem 2rem;
	background: var(--cream);
	position: relative;
	overflow: hidden;
}

.faq::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
	border-radius: 50%;
}

.faq::after {
	content: '';
	position: absolute;
	bottom: -100px;
	left: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(29, 78, 216, 0.06) 0%, transparent 70%);
	border-radius: 50%;
}

.faq-container {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.faq-item {
	background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
	border-radius: 20px;
	margin-bottom: 1rem;
	overflow: hidden;
	border: 1px solid rgba(59, 130, 246, 0.2);
	box-shadow: 0 8px 30px rgba(12, 30, 60, 0.15);
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: rgba(59, 130, 246, 0.4);
	box-shadow: 0 12px 40px rgba(12, 30, 60, 0.2);
	transform: translateY(-2px);
}

.faq-item.active {
	border-color: var(--gold);
}

.faq-question {
	width: 100%;
	padding: 1.5rem 2rem;
	background: none;
	border: none;
	text-align: left;
	font-family: 'Playfair Display', serif;
	font-size: 1.15rem;
	color: var(--white);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: rgba(255,255,255,0.05);
}

.faq-icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--white);
	flex-shrink: 0;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
	background: linear-gradient(135deg, var(--gold-light) 0%, var(--accent) 100%);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-answer-inner {
	padding: 0 2rem 1.75rem;
	color: rgba(255,255,255,0.75);
	line-height: 1.8;
	font-size: 1rem;
	border-top: 1px solid rgba(255,255,255,0.1);
	margin: 0 1rem;
	padding-top: 1.25rem;
}

.faq-item.active .faq-answer {
	max-height: 350px;
}

/* Contact Section */
.contact {
	padding: 6rem 2rem;
	background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
	position: relative;
	overflow: hidden;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(ellipse at 0% 0%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
		radial-gradient(ellipse at 100% 100%, rgba(96, 165, 250, 0.15) 0%, transparent 50%);
}

.contact::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 50px 50px;
}

.contact-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
	position: relative;
	z-index: 2;
	align-items: start;
}

.contact-info {
	padding-top: 1rem;
}

.contact-info h2 {
	font-size: clamp(2rem, 4vw, 2.75rem);
	color: var(--white);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.contact-info > p {
	color: rgba(255,255,255,0.7);
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
	line-height: 1.7;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-method {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.25rem 1.5rem;
	background: rgba(255,255,255,0.04);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.08);
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.contact-method::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.contact-method:hover {
	background: rgba(255,255,255,0.1);
	border-color: var(--gold);
	transform: translateX(8px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-method:hover::before {
	opacity: 1;
}

.contact-method-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
	position: relative;
	z-index: 1;
}

.contact-method-icon svg {
	width: 26px;
	height: 26px;
	stroke: white;
	stroke-width: 2;
	fill: none;
}

.contact-method-text {
	position: relative;
	z-index: 1;
}

.contact-method-text strong {
	display: block;
	color: var(--white);
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
	font-weight: 600;
}

.contact-method-text span {
	color: rgba(255,255,255,0.6);
	font-size: 0.9rem;
}

.contact-form {
	background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,1) 100%);
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 0 30px 60px rgba(0,0,0,0.3);
	border: 1px solid rgba(59, 130, 246, 0.1);
	position: relative;
}

.contact-form::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 20%;
	right: 20%;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
	border-radius: 0 0 10px 10px;
}

.form-title {
	font-size: 1.5rem;
	color: var(--navy);
	margin-bottom: 1.75rem;
	text-align: center;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.form-group {
	margin-bottom: 1rem;
}

.form-group.full {
	grid-column: span 2;
}

.form-group label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	border: 2px solid rgba(59, 130, 246, 0.15);
	border-radius: 12px;
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: rgba(240, 247, 255, 0.5);
	color: var(--navy);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--gold);
	background: var(--white);
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-submit {
	width: 100%;
	padding: 1.1rem;
	margin-top: 0.75rem;
	text-align: center;
	color: var(--white);
	border: none;
	border-radius: 12px;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
/*
.form-submit::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
	transition: left 0.5s ease;
}
*/
/* Styles du formulaire sécurisé */
.form-message {
	padding: 1rem 1.25rem;
	border-radius: 12px;
	margin-bottom: 1.5rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.form-message.success {
	background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
	color: #065f46;
	border: 1px solid #6ee7b7;
}

.form-message.error {
	background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
	color: #991b1b;
	border: 1px solid #fca5a5;
}

.form-message svg {
	flex-shrink: 0;
}

.field-error {
	display: block;
	color: #dc2626;
	font-size: 0.8rem;
	margin-top: 0.35rem;
	min-height: 1.2em;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
	border-color: #dc2626;
	background: #fef2f2;
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
	border-color: #16a34a;
}

/* Checkbox RGPD */
.form-consent {
	margin-top: 0.5rem;
}

.consent-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.5;
}

.consent-label input[type="checkbox"] {
	width: auto;
	margin-top: 0.2rem;
	accent-color: var(--gold);
	transform: scale(1.2);
}

.consent-text a {
	color: var(--gold);
	text-decoration: underline;
}

.consent-text a:hover {
	color: var(--accent);
}

.spinner {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.form-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none !important;
}

/* Footer */
.footer {
	background: var(--navy-light);
	padding: 4rem 2rem 2rem;
}

.footer-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-brand p {
	color: rgba(255,255,255,0.6);
	margin-top: 1rem;
	font-size: 0.95rem;
	/*max-width: 350px;*/
}

.footer h4 {
	color: var(--white);
	font-size: 1.1rem;
	margin-bottom: 1.25rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--gold);
}

.footer-bottom {
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid rgba(255,255,255,0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-bottom p {
	color: rgba(255,255,255,0.5);
	font-size: 0.9rem;
}

.footer-legal {
	display: flex;
	gap: 2rem;
}

.footer-legal a {
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	font-size: 0.9rem;
}

.footer-legal a:hover {
	color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-description {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-cta {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.hero-visual {
		max-width: 500px;
		margin: 0 auto;
	}

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

	.process-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}

	.process-steps::before {
		display: none;
	}

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

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

	.stat-item::after {
		display: none;
	}

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

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

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

@media (max-width: 768px) {
	.nav {
		display: none;
	}

	.mobile-menu {
		display: flex;
	}

	.hero {
		min-height: auto;
	}

	.hero-content {
		padding: 7rem 1.5rem 3rem;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
		align-items: center;
	}

	.stat {
		text-align: center;
	}

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

	.stats-banner {
		grid-template-columns: 1fr;
		padding: 2rem;
	}

	.process-steps {
		grid-template-columns: 1fr;
	}

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

	.form-group.full {
		grid-column: span 1;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-brand p {
		margin-left: auto;
		margin-right: auto;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.trust-inner {
		gap: 2rem;
	}
}

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

	.hero-cta {
		flex-direction: column;
	}

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

	.stats-grid {
		grid-template-columns: 1fr;
	}
}
/* Suppression des effets du bouton submit uniquement */
.btn-submit,
#submitBtn {
	transition: none !important;
}

.btn-submit:hover,
#submitBtn:hover {
	transform: none !important;
	box-shadow: none !important;
}

.btn-submit::before,
#submitBtn::before {
	display: none !important;
}
