:root {
	color-scheme: dark;
	--bg-dark: #07090e;
	--bg-card: #0e121a;
	--bg-card-hover: #131924;
	--bg-card-highlight: #121826;
	--border-subtle: #1e2638;
	--border-light: #2c364e;
	--electric-blue: #00f0ff;
	--electric-blue-hover: #38f9ff;
	--electric-blue-dark: #0099cc;
	--electric-blue-glow: rgba(0, 240, 255, 0.35);
	--electric-blue-soft: rgba(0, 240, 255, 0.12);
	--electric-accent-2: #3b82f6;
	--text-white: #ffffff;
	--text-muted: #94a3b8;
	--text-dim: #64748b;
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--radius-full: 9999px;
	--font-display: 'Syne', 'Plus Jakarta Sans', sans-serif;
	--font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
	scroll-behavior: smooth;
	background-color: var(--bg-dark);
}

body {
	min-height: 100vh;
	background-color: var(--bg-dark);
	/* Textured geometric relief pattern in matte black & dark slate */
	background-image: 
		radial-gradient(circle at 50% -10%, rgba(0, 240, 255, 0.15), transparent 45%),
		radial-gradient(circle at 90% 40%, rgba(0, 150, 255, 0.08), transparent 40%),
		radial-gradient(circle at 10% 80%, rgba(0, 240, 255, 0.08), transparent 45%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
		linear-gradient(225deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
		linear-gradient(45deg, rgba(255, 255, 255, 0.015) 25%, transparent 25%),
		linear-gradient(315deg, rgba(255, 255, 255, 0.015) 25%, rgba(10, 13, 19, 0.95) 25%),
		repeating-linear-gradient(45deg, #090c12 0px, #090c12 18px, #0c1017 18px, #0c1017 36px);
	background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px, 48px 48px, 48px 48px, 36px 36px;
	background-attachment: fixed;
	color: var(--text-white);
	font-family: var(--font-sans);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* Base link styles */
a {
	color: inherit;
	text-decoration: none;
}

/* Ambient glow & geometry overlay */
.geometric-bg-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	background-image: 
		radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.15), transparent),
		radial-gradient(1px 1px at 40px 70px, rgba(0, 240, 255, 0.2), transparent),
		radial-gradient(1px 1px at 50px 160px, rgba(255, 255, 255, 0.1), transparent),
		radial-gradient(1px 1px at 90px 40px, rgba(0, 240, 255, 0.25), transparent),
		radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent);
	background-repeat: repeat;
	background-size: 200px 200px;
	opacity: 0.6;
}

/* Top Navbar */
.nav-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	background: rgba(7, 9, 14, 0.85);
	border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0.9rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand-badge {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: -0.02em;
	color: #ffffff;
}

.brand-icon {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: linear-gradient(135deg, #00f0ff, #0066ff);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 16px var(--electric-blue-glow);
	color: #050811;
	font-weight: 900;
}

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

.nav-link {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-muted);
	transition: color 0.2s ease;
}

.nav-link:hover {
	color: var(--electric-blue);
}

.nav-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 1.1rem;
	border-radius: var(--radius-full);
	background: var(--electric-blue-soft);
	border: 1px solid var(--electric-blue);
	color: var(--electric-blue);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.02em;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta-btn:hover {
	background: var(--electric-blue);
	color: #050811;
	box-shadow: 0 0 18px var(--electric-blue-glow);
	transform: translateY(-1px);
}

/* Main Container */
.page-wrapper {
	position: relative;
	z-index: 1;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1.5rem 5rem;
}

/* Hero Section */
.hero-section {
	padding: 4.5rem 0 3.5rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 1rem;
	border-radius: var(--radius-full);
	background: rgba(14, 22, 36, 0.9);
	border: 1px solid var(--border-light);
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--text-muted);
	margin-bottom: 2rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #10b981;
	box-shadow: 0 0 10px #10b981;
	animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 6.5vw, 4.2rem);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--electric-blue);
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	max-width: 960px;
	text-shadow: 
		0 0 20px rgba(0, 240, 255, 0.45),
		0 0 60px rgba(0, 240, 255, 0.2);
}

.hero-subtitle {
	font-size: clamp(1.15rem, 2.8vw, 1.45rem);
	font-weight: 500;
	color: var(--text-white);
	max-width: 720px;
	margin-bottom: 2.5rem;
	line-height: 1.5;
}

.hero-stats-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.25rem;
	margin-top: 1rem;
	width: 100%;
	max-width: 860px;
}

.stat-item {
	flex: 1 1 180px;
	background: rgba(14, 18, 26, 0.7);
	backdrop-filter: blur(8px);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1.1rem 1.2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	transition: transform 0.2s, border-color 0.2s;
}

.stat-item:hover {
	border-color: var(--electric-blue);
	transform: translateY(-2px);
}

.stat-number {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.4rem;
	color: var(--electric-blue);
}

.stat-label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Portfolio Showcase Section */
.section-wrapper {
	padding: 3.5rem 0 2.5rem;
}

.section-header {
	text-align: center;
	margin-bottom: 2.75rem;
}

.section-tag {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--electric-blue);
	margin-bottom: 0.5rem;
}

.section-heading {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--text-white);
	letter-spacing: -0.02em;
}

/* Portfolio Gallery Showcase */
.gallery-nav {
	display: flex;
	justify-content: center;
	gap: 0.6rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.gallery-tab {
	padding: 0.5rem 1.1rem;
	background: rgba(16, 21, 31, 0.8);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-full);
	color: var(--text-muted);
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.gallery-tab:hover {
	color: #fff;
	border-color: var(--border-light);
}

.gallery-tab.active {
	background: var(--electric-blue);
	color: #050811;
	border-color: var(--electric-blue);
	font-weight: 800;
	box-shadow: 0 0 16px var(--electric-blue-glow);
}

.showcase-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
	gap: 1.5rem;
	margin-bottom: 3.5rem;
}

.showcase-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s, box-shadow 0.25s;
	display: flex;
	flex-direction: column;
}

.showcase-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 240, 255, 0.5);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.15);
}

.showcase-preview {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #111624;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.showcase-preview.square {
	aspect-ratio: 1 / 1;
}

.showcase-art {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
}

.showcase-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 0.25rem 0.65rem;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-full);
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--electric-blue);
	text-transform: uppercase;
}

.showcase-stats-tag {
	position: absolute;
	bottom: 10px;
	right: 10px;
	padding: 0.25rem 0.6rem;
	background: rgba(0, 240, 255, 0.95);
	border-radius: 6px;
	font-size: 0.72rem;
	font-weight: 800;
	color: #060910;
}

.showcase-content {
	padding: 1.1rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.showcase-title {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
}

.showcase-desc {
	font-size: 0.82rem;
	color: var(--text-muted);
}

/* =======================================
   PRICING SECTION (Mes Tarifs)
   ======================================= */
.pricing-section {
	padding: 3rem 0 3.5rem;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	align-items: stretch;
	margin-bottom: 2rem;
}

@media (max-width: 860px) {
	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-left: auto;
		margin-right: auto;
	}
}

.pricing-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-xl);
	padding: 2rem 1.6rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.pricing-card:hover {
	transform: translateY(-4px);
}

/* Highlighted Offer 3: Pack Complet (Larger with electric blue border) */
.pricing-card.featured {
	background: linear-gradient(180deg, #121828 0%, #0d121c 100%);
	border: 2px solid var(--electric-blue);
	box-shadow: 
		0 0 30px rgba(0, 240, 255, 0.28),
		0 12px 36px rgba(0, 0, 0, 0.6);
	transform: scale(1.04);
	z-index: 2;
}

.pricing-card.featured:hover {
	transform: scale(1.06) translateY(-4px);
	box-shadow: 
		0 0 45px rgba(0, 240, 255, 0.42),
		0 16px 40px rgba(0, 0, 0, 0.7);
}

@media (max-width: 860px) {
	.pricing-card.featured {
		transform: scale(1.02);
	}
	.pricing-card.featured:hover {
		transform: scale(1.03) translateY(-3px);
	}
}

.card-ribbon {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--electric-blue);
	color: #040810;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.3rem 1.1rem;
	border-radius: var(--radius-full);
	box-shadow: 0 0 14px var(--electric-blue-glow);
	white-space: nowrap;
}

.pricing-header {
	margin-bottom: 1.5rem;
}

.offer-tag {
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--electric-blue);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.4rem;
}

.offer-name {
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 0.8rem;
}

.price-container {
	display: flex;
	align-items: baseline;
	gap: 0.35rem;
	margin-bottom: 1rem;
}

.price-amount {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 900;
	line-height: 1;
	color: #ffffff;
}

.pricing-card.featured .price-amount {
	color: var(--electric-blue);
	text-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
}

.price-unit {
	font-size: 0.85rem;
	color: var(--text-muted);
	font-weight: 500;
}

.pricing-desc {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.45;
	margin-bottom: 1.5rem;
	min-height: 2.6rem;
}

.pricing-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 2rem;
	border-top: 1px solid var(--border-subtle);
	padding-top: 1.25rem;
}

.pricing-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.88rem;
	color: #e2e8f0;
}

.feature-check {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--electric-blue-soft);
	color: var(--electric-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 800;
	margin-top: 2px;
}

.card-action-btn {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-light);
	color: #ffffff;
	font-weight: 700;
	font-size: 0.9rem;
	text-align: center;
	display: block;
	cursor: pointer;
	transition: all 0.2s ease;
}

.card-action-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--electric-blue);
	color: var(--electric-blue);
}

.pricing-card.featured .card-action-btn {
	background: var(--electric-blue);
	color: #040810;
	border-color: var(--electric-blue);
	font-weight: 800;
	box-shadow: 0 0 16px var(--electric-blue-glow);
}

.pricing-card.featured .card-action-btn:hover {
	background: var(--electric-blue-hover);
	box-shadow: 0 0 24px var(--electric-blue-glow);
	transform: translateY(-1px);
}

/* Highly visible electric blue gift card note */
.gift-card-note-box {
	margin-top: 1.75rem;
	text-align: center;
	padding: 1.1rem 1.5rem;
	background: rgba(0, 240, 255, 0.06);
	border: 1px dashed var(--electric-blue);
	border-radius: var(--radius-lg);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 0 25px rgba(0, 240, 255, 0.1);
}

.gift-card-note {
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 3.2vw, 1.55rem);
	font-weight: 900;
	color: var(--electric-blue);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-shadow: 0 0 14px rgba(0, 240, 255, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
}

.gift-card-subnote {
	font-size: 0.82rem;
	color: var(--text-muted);
	margin-top: 0.35rem;
}

/* =======================================
   STEPS TO ORDER (Processus simple)
   ======================================= */
.process-section {
	padding: 3rem 0;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.25rem;
}

.process-card {
	background: rgba(14, 18, 26, 0.6);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.process-step-num {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 900;
	color: var(--electric-blue);
	line-height: 1;
}

.process-card-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #ffffff;
}

.process-card-desc {
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* =======================================
   CONTACT & CTA SECTION
   ======================================= */
.contact-section {
	padding: 4.5rem 1.5rem;
	margin-top: 2rem;
	background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.12), transparent 70%),
				linear-gradient(180deg, rgba(14, 18, 26, 0.9) 0%, rgba(8, 10, 15, 0.95) 100%);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-xl);
	text-align: center;
	box-shadow: 
		0 0 40px rgba(0, 240, 255, 0.15),
		0 20px 50px rgba(0, 0, 0, 0.7);
	position: relative;
	overflow: hidden;
}

.contact-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 20%;
	right: 20%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
}

.contact-icon-wrap {
	width: 60px;
	height: 60px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	background: rgba(0, 240, 255, 0.12);
	border: 1px solid var(--electric-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--electric-blue);
	box-shadow: 0 0 25px var(--electric-blue-glow);
}

.contact-text-main {
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 3.8vw, 2.25rem);
	font-weight: 900;
	color: #ffffff;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	margin-bottom: 2.25rem;
	line-height: 1.3;
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

/* BIG ULTRA-ROUNDED WHITE BUTTON WITH ELECTRIC BLUE TEXT (100% CLICKABLE LINK) */
.magic-order-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
	padding: 1.35rem 2.5rem;
	background-color: #ffffff;
	color: #0070e0;
	border-radius: var(--radius-full);
	border: none;
	text-decoration: none;
	font-family: var(--font-display);
	font-size: clamp(1.05rem, 2.4vw, 1.35rem);
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 
		0 0 25px rgba(255, 255, 255, 0.4),
		0 10px 30px rgba(0, 0, 0, 0.5),
		0 0 40px rgba(0, 240, 255, 0.35);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

.magic-order-btn .btn-text {
	color: #0088ff;
	font-weight: 900;
	transition: color 0.2s;
	display: inline-block;
}

.magic-order-btn:hover {
	transform: translateY(-4px) scale(1.02);
	background-color: #ffffff;
	box-shadow: 
		0 0 40px rgba(255, 255, 255, 0.6),
		0 14px 40px rgba(0, 0, 0, 0.6),
		0 0 60px rgba(0, 240, 255, 0.6);
}

.magic-order-btn:hover .btn-text {
	color: #0066ee;
}

.magic-order-btn:active {
	transform: translateY(-1px) scale(0.99);
}

.magic-order-btn svg {
	width: 24px;
	height: 24px;
	color: #0088ff;
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.magic-order-btn:hover svg {
	transform: translateX(4px);
}

.contact-note {
	margin-top: 1.5rem;
	font-size: 0.85rem;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

/* Footer */
.footer-wrap {
	margin-top: 5rem;
	border-top: 1px solid var(--border-subtle);
	padding-top: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.85rem;
	color: var(--text-dim);
}

.footer-highlight {
	color: var(--electric-blue);
	font-weight: 700;
}

/* Custom Visual SVG Miniatures preview mocks */
.svg-mockup {
	width: 100%;
	height: 100%;
	display: block;
}

/* Responsive tweaks */
@media (max-width: 640px) {
	.nav-links {
		display: none;
	}
	.hero-section {
		padding: 3rem 0 2rem;
	}
	.hero-title {
		font-size: 2.1rem;
	}
	.contact-section {
		padding: 3rem 1.2rem;
	}
	.magic-order-btn {
		padding: 1.15rem 1.75rem;
		font-size: 1rem;
	}
}
