/**
 * Plume Creative — couche visuelle premium (verts, depth, motion).
 */

/* --- Ambiance globale --------------------------------------------------- */
body {
	background-color: var(--color-bg);
	background-image:
		radial-gradient(ellipse 80% 50% at 100% -10%, rgba(16, 185, 129, 0.09), transparent 55%),
		radial-gradient(ellipse 60% 40% at 0% 100%, rgba(5, 150, 105, 0.07), transparent 50%);
}

/* --- Boutons pill + glow ----------------------------------------------- */
.btn {
	border-radius: var(--radius-full);
	font-weight: 700;
}

.btn--primary:hover {
	transform: translateY(-3px);
}

.btn--ghost {
	border-radius: var(--radius-full);
	backdrop-filter: blur(6px);
}

/* --- Navigation -------------------------------------------------------- */
.primary-nav__list a {
	padding: 0.35em 0.65em;
	border-radius: var(--radius-full);
	transition: color var(--transition), background var(--transition);
}

.primary-nav__list a:hover {
	background: rgba(16, 185, 129, 0.08);
}

/* --- Hero premium ------------------------------------------------------ */
.hero {
	background:
		radial-gradient(ellipse 120% 80% at 80% -20%, rgba(16, 185, 129, 0.35), transparent 55%),
		radial-gradient(ellipse 80% 60% at 0% 100%, rgba(4, 120, 87, 0.4), transparent 50%),
		var(--color-hero-bg);
}

.hero__orb--3 {
	width: 280px;
	height: 280px;
	background: #34d399;
	top: 40%;
	left: 35%;
	opacity: 0.15;
	filter: blur(100px);
}

.hero__shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
	pointer-events: none;
}

.hero__highlight {
	background: linear-gradient(135deg, #6ee7b7 0%, #34d399 45%, #10b981 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.badge--hero {
	color: #6ee7b7;
	background: rgba(16, 185, 129, 0.15);
	border-color: rgba(110, 231, 183, 0.35);
	box-shadow: 0 0 24px rgba(16, 185, 129, 0.2);
}

.hero-card {
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-card--float {
	border-color: rgba(110, 231, 183, 0.35);
	background: rgba(4, 120, 87, 0.45);
}

.hero-card__bar--accent {
	box-shadow: 0 -4px 16px rgba(52, 211, 153, 0.45);
}

/* --- Sections & titres ------------------------------------------------- */
.section-label {
	padding: 0.35em 0.9em;
	background: rgba(16, 185, 129, 0.1);
	border-radius: var(--radius-full);
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-header:not(.text-center) .section-title::after {
	content: '';
	display: block;
	width: 3rem;
	height: 4px;
	margin-top: var(--space-md);
	border-radius: var(--radius-full);
	background: var(--color-gradient);
}

.section-header.text-center .section-title::after {
	content: '';
	display: block;
	width: 3rem;
	height: 4px;
	margin: var(--space-md) auto 0;
	border-radius: var(--radius-full);
	background: var(--color-gradient);
}

/* --- Stats / preuve sociale -------------------------------------------- */
.stats-bar {
	background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg-alt) 100%);
}

.stats-bar__item {
	padding: var(--space-md);
	border-radius: var(--radius-lg);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
}

.stats-bar__item:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.stats-bar__item strong {
	font-size: var(--text-3xl);
	background: var(--color-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.social-proof__logos li {
	transition: transform var(--transition), background var(--transition);
}

.social-proof__logos li:hover {
	transform: translateY(-2px);
	background: rgba(16, 185, 129, 0.12);
	color: var(--color-primary-dark);
}

/* --- Cartes offres & boutique ------------------------------------------ */
.offer-card,
.shop-card,
.service-card {
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.offer-card::before,
.shop-card:not(.shop-card--featured)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--color-gradient);
	opacity: 0;
	transition: opacity var(--transition);
}

.offer-card:hover::before,
.shop-card:not(.shop-card--featured):hover::before {
	opacity: 1;
}

.offer-card:hover,
.shop-card:not(.shop-card--featured):hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg), 0 12px 40px rgba(16, 185, 129, 0.12);
	border-color: rgba(16, 185, 129, 0.35);
}

.offer-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 1rem;
	background: linear-gradient(145deg, rgba(16, 185, 129, 0.14), rgba(5, 150, 105, 0.06));
	border: 1px solid rgba(16, 185, 129, 0.2);
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
}

/* --- Shop featured showcase -------------------------------------------- */
.shop-featured--showcase {
	background:
		linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg-alt) 50%, var(--color-surface) 100%);
	position: relative;
}

.shop-featured--showcase::before {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -5%;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent 70%);
	pointer-events: none;
}

.shop-featured__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: var(--space-md);
	padding: 0.45em 1rem;
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-primary-dark);
	background: rgba(16, 185, 129, 0.12);
	border: 1px solid rgba(16, 185, 129, 0.25);
	border-radius: var(--radius-full);
}

.shop-grid--featured {
	margin-top: var(--space-lg);
}

.shop-card--featured {
	padding: 0;
	border: none;
	background: transparent;
	box-shadow: none;
}

.shop-card--featured::before {
	display: none;
}

.shop-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.shop-card--featured:hover .shop-card__link {
	transform: translateY(-8px);
	border-color: rgba(16, 185, 129, 0.4);
	box-shadow: var(--shadow-lg), 0 20px 48px rgba(16, 185, 129, 0.14);
}

.shop-card__visual {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 11rem;
	padding: var(--space-xl);
	color: #fff;
	overflow: hidden;
}

.shop-card__visual--1 {
	background: linear-gradient(145deg, #047857 0%, #10b981 55%, #6ee7b7 100%);
}

.shop-card__visual--2 {
	background: linear-gradient(145deg, #065f46 0%, #059669 50%, #34d399 100%);
}

.shop-card__visual--3 {
	background: linear-gradient(145deg, #064e3b 0%, #0d9488 45%, #5eead4 100%);
}

.shop-card__visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.22), transparent 45%);
	pointer-events: none;
}

.shop-card__category {
	position: absolute;
	top: var(--space-md);
	left: var(--space-md);
	z-index: 1;
	font-size: var(--text-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.3em 0.75em;
	background: rgba(255, 255, 255, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: var(--radius-full);
	backdrop-filter: blur(4px);
}

.shop-card__icon {
	position: relative;
	z-index: 1;
	display: flex;
	opacity: 0.92;
	margin-bottom: var(--space-sm);
}

.shop-card__visual .shop-card__price {
	position: relative;
	z-index: 1;
	font-size: var(--text-3xl);
	font-weight: 800;
	color: #fff;
	background: none;
	padding: 0;
	margin: 0;
	line-height: 1.15;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
	display: inline-flex;
	align-items: baseline;
	gap: 0.45rem;
	flex-wrap: wrap;
	justify-content: center;
}

.shop-card__visual .price-was,
.product-single__price .price-was,
.shop-card__body .price-was {
	font-size: 0.55em;
	font-weight: 600;
	opacity: 0.85;
	text-decoration: line-through;
}

.shop-card__body .shop-card__price {
	display: inline-flex;
	align-items: baseline;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.shop-card__body .price-was {
	font-size: 0.85em;
	color: var(--color-text-muted);
}

.product-single__price {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.product-single__price .price-was {
	font-size: 0.65em;
	color: var(--color-text-muted);
}

.shop-card__body {
	padding: var(--space-xl);
	flex: 1;
	display: flex;
	flex-direction: column;
}

.shop-card__title {
	font-size: var(--text-lg);
	margin-bottom: var(--space-sm);
	color: var(--color-text);
	line-height: 1.3;
}

.shop-card__desc {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: 1.6;
	margin-bottom: var(--space-lg);
	flex: 1;
}

.shop-card:not(.shop-card--featured) .shop-card__price {
	padding: 0.2em 0.65em;
	border-radius: var(--radius-full);
	background: rgba(16, 185, 129, 0.1);
}

.shop-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	padding: 0.55em 1.25em;
	font-size: var(--text-sm);
	font-weight: 700;
	color: #fff;
	position: relative;
	z-index: 0;
	overflow: hidden;
	isolation: isolate;
	background-color: var(--color-primary-dark);
	border-radius: var(--radius-full);
	box-shadow: 0 4px 12px -2px rgba(5, 150, 105, 0.35);
	transition: transform var(--transition), box-shadow var(--transition);
}

.shop-card__cta::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: inherit;
	background: var(--color-gradient);
}

.shop-card--featured:hover .shop-card__cta {
	transform: translateX(4px);
	box-shadow: 0 6px 16px rgba(5, 150, 105, 0.35);
}

.shop-featured__more {
	text-align: center;
	margin-top: var(--space-2xl);
}

/* --- Process timeline premium ------------------------------------------ */
.process--timeline .section-header.text-center .section-title::after {
	margin-left: auto;
	margin-right: auto;
}

.process-step__card::before {
	content: '';
	display: block;
	width: 2.5rem;
	height: 3px;
	margin-bottom: var(--space-md);
	border-radius: var(--radius-full);
	background: var(--color-gradient);
	opacity: 0.85;
}

@media (max-width: 767px) {
	.process-step__connector {
		display: none;
	}

	.process-step__card {
		margin-top: var(--space-xs);
	}
}

/* --- Portfolio --------------------------------------------------------- */
.portfolio-card__link {
	box-shadow: var(--shadow-sm);
}

.portfolio-card__thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(7, 18, 16, 0.55) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.portfolio-card__thumb {
	position: relative;
}

.portfolio-card__link:hover .portfolio-card__thumb::after {
	opacity: 1;
}

/* --- Témoignages ------------------------------------------------------- */
.testimonials {
	background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-surface) 100%);
}

.testimonial-card {
	border: 1px solid rgba(16, 185, 129, 0.15);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.testimonial-card__avatar {
	background: var(--color-gradient);
	color: #fff;
	font-weight: 800;
}

/* --- Blog cards -------------------------------------------------------- */
.post-card__thumb--placeholder {
	background:
		linear-gradient(135deg, #047857 0%, #10b981 45%, #6ee7b7 100%);
	position: relative;
}

.post-card__thumb--placeholder::after {
	content: '✦';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: rgba(255, 255, 255, 0.35);
}

.post-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
	border-color: rgba(16, 185, 129, 0.25);
}

/* --- CTA final --------------------------------------------------------- */
.cta-banner {
	position: relative;
	overflow: hidden;
	background: linear-gradient(125deg, #047857 0%, #059669 40%, #34d399 100%);
}

.cta-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15), transparent 45%),
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1), transparent 40%);
	pointer-events: none;
}

.cta-banner__inner {
	position: relative;
	z-index: 1;
}

.cta-banner .btn--white {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* --- Pricing (page services) ------------------------------------------- */
.pricing-card {
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.pricing-card--highlight {
	box-shadow: var(--shadow-md), 0 0 0 1px rgba(16, 185, 129, 0.3);
}

/* --- Footer ------------------------------------------------------------ */
.site-footer {
	background:
		radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16, 185, 129, 0.12), transparent 60%),
		var(--color-hero-bg);
}

/* --- Micro-interactions ------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
	.hero-card__bar--accent {
		animation: bar-pulse 2.5s ease-in-out infinite;
	}

	@keyframes bar-pulse {
		0%, 100% { filter: brightness(1); }
		50% { filter: brightness(1.15); }
	}
}

@media (min-width: 768px) {
	.hero__inner {
		grid-template-columns: 1.05fr 0.95fr;
	}
}
