h1, h2, h3, h4, h5, h6 {
		color: var(--light);
		text-transform: none;
}

h4 {
		text-transform: uppercase;
		font-weight: 500;
		letter-spacing: 3px;
		opacity: 0.7;
		font-size: 1.3em;
}

.custom-hero-font-1 {
		padding: 0;
		line-height: 1;
		font-size: clamp(16px, 8vw, 90px);
		font-weight: 500;
		letter-spacing: 12px;
		text-transform: uppercase;
		white-space: nowrap;
}

.custom-perspective {
		perspective: 1000px;
}

.sticky-wrapper.sticky-wrapper-effect-1.sticky-wrapper-effect-1-dark.sticky-effect-active .sticky-body {
		background: var(--dark);
}

html.side-header-overlay-full-screen #header {
		background: var(--dark);
}

.custom-hero .custom-el-2:nth-child(1) {
		opacity: 0.9;
		transition: all 1s;
}

.custom-hero .custom-el-2:nth-child(2) {
		mix-blend-mode: hard-light;
		opacity: 0;
		transition: all 1s;
}

.custom-hero:hover .custom-el-2:nth-child(1) {
		opacity: 0;
}

.custom-hero:hover .custom-el-2:nth-child(2) {
		opacity: 0.9;
}

.custom-el-1,
.custom-el-2,
.custom-el-2-wrapper {
		width: 425px;
		height: 500px;
		border-radius: 10px;
}

@media (max-width: 500px) {
		.custom-el-1,
		.custom-el-2,
		.custom-el-2-wrapper {
				width: 340px;
				height: 400px;
		}
}

.custom-el-1 {
		margin: -10px;
}

.custom-el-2 {
		margin: 10px;
}

.custom-el-2 img {
		opacity: 0;
		transition: all 300ms;
}

.custom-el-2 img.lazyloaded {
		opacity: 1;
}

.thumb-info-floating-element {
		z-index: -1;
}

/* Clone positionné en fixed au-dessus de tout lors du tracking curseur */
.thumb-info-floating-element-clone {
		z-index: 9999;
		border-radius: 8px;
		overflow: hidden;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(230, 145, 108, 0.15);
		pointer-events: none;
}

.bg-color-changer {
		transition: background-color 700ms cubic-bezier(0.25, 1, 0.5, 1);
		bottom: 0;
		left: 0;
		min-height: 100vh;
		min-width: 100vw;
		pointer-events: none;
		position: absolute;
		right: 0;
		top: 0;
		z-index: -1;
}

.custom-portfolio-item-1 .custom-portfolio-item-1-img {
		border-radius: 4px 0px 0px 4px;
}

@media (max-width: 991px) {
		.custom-portfolio-item-1 .custom-portfolio-item-1-img {
				border-radius: var(--border-radius);
		}
}

.custom-portfolio-item-1 .custom-portfolio-item-1-type {
		padding: 10px;
		width: 60px;
		position: relative;
		overflow: hidden;
}

.custom-portfolio-item-1 .custom-portfolio-item-1-type span {
		display: block;
		white-space: nowrap;
		transform-origin: 0 0;
		transform: translate3d(32px, 10px, 0) rotate(90deg);
		text-align: left;
}

@media (max-width: 991px) {
		.custom-portfolio-item-1 .custom-portfolio-item-1-type {
				display: none;
		}
}

@keyframes arrowMove {
		0% {
				transform: translateY(5px);
		}
		50% {
				transform: translateY(10px);
		}
		100% {
				transform: translateY(5px);
		}
}

.custom-arrow-anim {
		animation: arrowMove 600ms ease;
		animation-iteration-count: infinite;
}

/* ── SVG ILLUSTRATIONS ──────────────────────────────────────────────────── */
.bb-illustration {
		display: block;
		opacity: 0.92;
		transition: opacity 0.4s;
		filter: drop-shadow(0 0 24px rgba(230, 145, 108, 0.12));
}

.bb-illustration:hover {
		opacity: 1;
		filter: drop-shadow(0 0 32px rgba(230, 145, 108, 0.22));
}

@media (max-width: 767px) {
		.bb-illustration {
				max-width: 320px !important;
				margin-top: 2rem;
		}
}

/* ── SERVICES GRID ──────────────────────────────────────────────────────── */
.bb-svc-col {
		padding-top: 6px;
		padding-bottom: 6px;
}

.bb-service-item {
		position: relative;
		padding: 18px 20px 18px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		transition: padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		            background 0.4s,
		            border-color 0.4s;
		overflow: hidden;
}

/* Left accent bar — slides down from top on hover */
.bb-service-item::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 2px;
		height: 0;
		background: linear-gradient(to bottom, var(--primary), var(--secondary));
		transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Scan-line sweep */
.bb-service-item::after {
		content: '';
		position: absolute;
		top: 0;
		left: -60%;
		width: 40%;
		height: 100%;
		background: linear-gradient(
				90deg,
				transparent 0%,
				rgba(230, 145, 108, 0.06) 50%,
				transparent 100%
		);
		pointer-events: none;
		opacity: 0;
}

.bb-service-item:hover {
		padding-left: 16px;
		background: linear-gradient(90deg, rgba(230, 145, 108, 0.05) 0%, transparent 100%);
		border-bottom-color: rgba(230, 145, 108, 0.25);
}

.bb-service-item:hover::before {
		height: 100%;
}

.bb-service-item:hover::after {
		animation: svcScanSweep 0.55s ease-out forwards;
		opacity: 1;
}

@keyframes svcScanSweep {
		0%   { left: -60%; }
		100% { left: 110%; }
}

.bb-service-item a {
		display: flex;
		align-items: center;
		gap: 0.6em;
		letter-spacing: 4px;
		color: var(--light);
		text-decoration: none;
		transition: color 0.3s, letter-spacing 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bb-service-item:hover a {
		color: #fff;
		letter-spacing: 6px;
		text-decoration: none;
}

.bb-svc-label {
		transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.bb-service-item:hover .bb-svc-label {
		transform: translateX(4px);
}

/* bb-svc-wrap — icon container with cube rings */
.bb-svc-wrap {
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 1em;
		height: 1em;
		flex-shrink: 0;
		line-height: 1;
}

/* Cube ring 1 — solid, rotates CW */
.bb-svc-wrap::before {
		content: '';
		position: absolute;
		inset: -8px;
		border: 1.5px solid var(--primary);
		border-radius: 5px;
		opacity: 0;
		transform: rotate(45deg);
		transition: opacity 0.35s;
		pointer-events: none;
}

/* Cube ring 2 — dashed, rotates CCW */
.bb-svc-wrap::after {
		content: '';
		position: absolute;
		inset: -16px;
		border: 1px dashed var(--secondary);
		border-radius: 8px;
		opacity: 0;
		transform: rotate(0deg);
		transition: opacity 0.35s;
		pointer-events: none;
}

.bb-service-item:hover .bb-svc-wrap::before {
		opacity: 0.75;
		animation: svcCubeCW 1.6s linear infinite;
}

.bb-service-item:hover .bb-svc-wrap::after {
		opacity: 0.38;
		animation: svcCubeCCW 3s linear infinite;
}

@keyframes svcCubeCW {
		from { transform: rotate(45deg); }
		to   { transform: rotate(405deg); }
}

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

/* bb-service-icon */
.bb-service-icon {
		display: block;
		color: var(--primary);
		opacity: 0.85;
		font-size: 0.78em;
		line-height: 1;
		transition: color 0.3s, filter 0.4s;
}

.bb-service-item:hover .bb-service-icon {
		filter: drop-shadow(0 0 6px var(--primary)) drop-shadow(0 0 14px rgba(230, 145, 108, 0.45));
		animation: svcIconLevitate 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

@keyframes svcIconLevitate {
		0%   { transform: scale(1)    translateY(0); }
		18%  { transform: scale(1.38) translateY(-5px); }
		40%  { transform: scale(1.3)  translateY(-4px); }
		60%  { transform: scale(1.34) translateY(-6px); }
		80%  { transform: scale(1.3)  translateY(-4px); }
		100% { transform: scale(1.34) translateY(-5px); }
}

/* ── PROCESS TIMELINE ───────────────────────────────────────────────────── */
.bb-process-timeline {
		position: relative;
		padding-left: 90px;
		max-width: 820px;
		counter-reset: process-step;
}

/* Ligne verticale — derrière les bulles */
.bb-process-timeline::before {
		content: '';
		position: absolute;
		left: 23px;
		top: 28px;
		bottom: 28px;
		width: 2px;
		background: linear-gradient(to bottom, var(--primary), rgba(254, 70, 64, 0.25));
		z-index: 1;
}

/* Flux de données descendant sur la ligne (effet AI data-stream) */
.bb-process-timeline::after {
		content: '';
		position: absolute;
		left: 22px;
		top: 28px;
		width: 4px;
		height: 56px;
		background: linear-gradient(to bottom, transparent, var(--primary), transparent);
		z-index: 2;
		pointer-events: none;
		animation: dataStream 2.8s ease-in-out infinite;
}

@keyframes dataStream {
		0%   { top: 28px;           opacity: 0; }
		10%  { opacity: 0.9; }
		90%  { opacity: 0.6; }
		100% { top: calc(100% - 56px); opacity: 0; }
}

.bb-process-step {
		position: relative;
		display: flex;
		align-items: flex-start;
		margin-bottom: 52px;
		counter-increment: process-step;
}

.bb-process-step:last-child {
		margin-bottom: 0;
}

/* Marqueur — positionné sur la ligne, au-dessus d'elle */
.bb-process-marker {
		position: absolute;
		left: -90px;
		width: 48px;
		height: 48px;
		z-index: 3;
}

/* Numéro d'étape — badge solide au coin supérieur droit de la bulle */
.bb-process-num {
		position: absolute;
		top: -9px;
		right: -11px;
		z-index: 5;
		font-size: 0.58rem;
		font-weight: 800;
		color: #1c1c1c;
		background: var(--primary);
		letter-spacing: 0.5px;
		line-height: 1;
		padding: 3px 5px;
		border-radius: 3px;
		pointer-events: none;
		transition: background 0.3s;
}

.bb-process-step:hover .bb-process-num {
		background: var(--secondary);
}

/* Bulle icône — fond solide pour masquer la ligne */
.bb-process-icon {
		position: relative;
		width: 48px;
		height: 48px;
		border-radius: 50%;
		background: #1c1c1c;            /* ← fond opaque, masque la ligne */
		border: 2px solid var(--primary);
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--primary);
		font-size: 1rem;
		z-index: 3;
		overflow: visible;              /* cubes dépassent */
		transition: background 0.35s, color 0.35s, border-color 0.35s,
		            transform 0.35s, box-shadow 0.35s;
}

/* ── Cube ring 1 : carré intérieur rotatif (sens horaire) */
.bb-process-icon::before {
		content: '';
		position: absolute;
		inset: -10px;
		border: 2px solid var(--primary);
		border-radius: 6px;
		opacity: 0;
		transform: rotate(0deg);
		transition: opacity 0.35s;
		z-index: -1;
		pointer-events: none;
}

/* ── Cube ring 2 : carré extérieur rotatif (sens antihoraire) */
.bb-process-icon::after {
		content: '';
		position: absolute;
		inset: -22px;
		border: 1px dashed var(--secondary);
		border-radius: 9px;
		opacity: 0;
		transform: rotate(0deg);
		transition: opacity 0.35s;
		z-index: -1;
		pointer-events: none;
}

/* Hover — activation des effets */
.bb-process-step:hover .bb-process-icon {
		background: var(--primary);
		color: #1c1c1c;
		border-color: var(--primary);
		transform: scale(1.12);
		box-shadow:
				0 0 0 5px rgba(230, 145, 108, 0.14),
				0 0 22px rgba(230, 145, 108, 0.35),
				0 0 44px rgba(230, 145, 108, 0.14);
}

.bb-process-step:hover .bb-process-icon::before {
		opacity: 0.7;
		animation: cubeRotateCW 1.8s linear infinite;
}

.bb-process-step:hover .bb-process-icon::after {
		opacity: 0.4;
		animation: cubeRotateCCW 3.4s linear infinite;
}

@keyframes cubeRotateCW {
		from { transform: rotate(45deg); }
		to   { transform: rotate(405deg); }
}

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

/* Zone de contenu */
.bb-process-content {
		position: relative;
		padding-top: 6px;
		padding-left: 20px;
		border-left: 1px solid rgba(255, 255, 255, 0.07);
		overflow: hidden;
}

/* Numéro décoratif fantôme (CSS counter) en arrière-plan du contenu */
.bb-process-content::before {
		content: counter(process-step, decimal-leading-zero);
		position: absolute;
		top: -14px;
		right: 4px;
		font-size: 5.5rem;
		font-weight: 900;
		color: var(--primary);
		opacity: 0.05;
		letter-spacing: -6px;
		line-height: 1;
		pointer-events: none;
		font-family: 'Poppins', sans-serif;
		user-select: none;
		transition: opacity 0.4s;
}

.bb-process-step:hover .bb-process-content::before {
		opacity: 0.11;
}

/* Balayage laser (scan-line) au hover */
.bb-process-content::after {
		content: '';
		position: absolute;
		top: -2px;
		left: -4px;
		right: -4px;
		height: 1px;
		background: linear-gradient(
				90deg,
				transparent 0%,
				var(--primary) 35%,
				var(--secondary) 65%,
				transparent 100%
		);
		opacity: 0;
		pointer-events: none;
}

.bb-process-step:hover .bb-process-content::after {
		animation: scanSweep 0.6s ease-out forwards;
}

@keyframes scanSweep {
		0%   { top: -2px;   opacity: 0.9; }
		70%  { opacity: 0.5; }
		100% { top: 100%;   opacity: 0; }
}

.bb-process-title {
		font-size: 0.9rem;
		font-weight: 600;
		color: var(--light);
		text-transform: uppercase;
		letter-spacing: 3px;
		margin-bottom: 8px;
		opacity: 0.95;
		transition: letter-spacing 0.35s, color 0.35s;
}

.bb-process-step:hover .bb-process-title {
		letter-spacing: 4.5px;
		color: var(--primary);
}

.bb-process-desc {
		font-size: 0.875rem;
		color: var(--light);
		opacity: 0.5;
		line-height: 1.85;
		margin: 0;
		max-width: 580px;
		transition: opacity 0.35s;
}

.bb-process-step:hover .bb-process-desc {
		opacity: 0.75;
}

@media (max-width: 576px) {
		.bb-process-timeline {
				padding-left: 62px;
		}

		.bb-process-timeline::before {
				left: 20px;
		}

		.bb-process-timeline::after {
				left: 19px;
		}

		.bb-process-marker {
				left: -62px;
				width: 40px;
				height: 40px;
		}

		.bb-process-icon {
				width: 40px;
				height: 40px;
				font-size: 0.875rem;
		}

		.bb-process-content::before {
				font-size: 4rem;
		}
}

/* ── CTA BUTTON (section À propos) ──────────────────────────────────────── */
.bb-cta-btn {
		display: inline-flex;
		align-items: center;
		gap: 0.5em;
		padding: 14px 32px;
		background: transparent;
		border: 1px solid rgba(230, 145, 108, 0.45);
		color: var(--light);
		font-size: 0.75rem;
		font-weight: 600;
		letter-spacing: 3px;
		text-transform: uppercase;
		text-decoration: none;
		border-radius: 2px;
		position: relative;
		overflow: hidden;
		transition: color 0.35s, border-color 0.35s, letter-spacing 0.35s;
}

.bb-cta-btn::before {
		content: '';
		position: absolute;
		inset: 0;
		background: var(--primary);
		transform: scaleX(0);
		transform-origin: left;
		transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
		z-index: -1;
}

.bb-cta-btn:hover {
		color: #1c1c1c;
		border-color: var(--primary);
		letter-spacing: 4px;
		text-decoration: none;
}

.bb-cta-btn:hover::before {
		transform: scaleX(1);
}

/* ── PROJECT PLACEHOLDER ─────────────────────────────────────────────────── */
.bb-project-placeholder {
		width: 100%;
		min-height: 220px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 14px;
		background: #1c1c1c;
		border: 1px dashed rgba(230, 145, 108, 0.18);
		border-radius: 4px 0 0 4px;
}

.bb-project-placeholder i {
		font-size: 2rem;
		color: var(--primary);
		opacity: 0.3;
}

.bb-project-placeholder span {
		font-size: 0.65rem;
		font-weight: 600;
		letter-spacing: 4px;
		text-transform: uppercase;
		color: var(--light);
		opacity: 0.22;
}

/* ── CONTACT FORM ─────────────────────────────────────────────────────────── */
.bb-contact-sub {
		font-size: 0.95rem;
		opacity: 0.45;
		max-width: 500px;
		line-height: 1.7;
}

.bb-contact-form {
		width: 100%;
		margin-top: 2.5rem;
}

.bb-form-row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
}

@media (max-width: 576px) {
		.bb-form-row {
				grid-template-columns: 1fr;
		}
}

.bb-form-group {
		margin-bottom: 22px;
}

.bb-form-label {
		display: block;
		font-size: 0.65rem;
		font-weight: 600;
		letter-spacing: 2.5px;
		text-transform: uppercase;
		color: var(--light);
		opacity: 0.45;
		margin-bottom: 8px;
		transition: opacity 0.3s, color 0.3s;
}

.bb-form-group:focus-within .bb-form-label {
		opacity: 0.9;
		color: var(--primary);
}

.bb-form-input {
		display: block;
		width: 100%;
		background: rgba(255, 255, 255, 0.04);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 3px;
		padding: 14px 18px;
		color: var(--light);
		font-size: 0.875rem;
		font-family: 'Poppins', sans-serif;
		outline: none;
		-webkit-appearance: none;
		appearance: none;
		transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.bb-form-input::placeholder {
		color: rgba(255, 255, 255, 0.18);
}

.bb-form-input:focus {
		border-color: var(--primary);
		background: rgba(230, 145, 108, 0.05);
		box-shadow: 0 0 0 3px rgba(230, 145, 108, 0.1);
}

.bb-form-select {
		cursor: pointer;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e6916c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: right 16px center;
		background-color: rgba(255, 255, 255, 0.04);
		padding-right: 44px;
}

.bb-form-select option {
		background: #212529;
		color: var(--light);
}

.bb-form-textarea {
		resize: vertical;
		min-height: 140px;
}

.bb-form-submit {
		display: inline-flex;
		align-items: center;
		gap: 0.5em;
		padding: 15px 36px;
		background: var(--primary);
		border: none;
		border-radius: 3px;
		color: #1c1c1c;
		font-size: 0.75rem;
		font-weight: 700;
		letter-spacing: 2.5px;
		text-transform: uppercase;
		font-family: 'Poppins', sans-serif;
		cursor: pointer;
		margin-top: 8px;
		transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.bb-form-submit:hover {
		background: #f0a882;
		transform: translateY(-2px);
		box-shadow: 0 8px 24px rgba(230, 145, 108, 0.3);
}

.bb-form-submit:active {
		transform: translateY(0);
}

/* Validation states */
.bb-form-input.bb-input-error {
		border-color: #fe4640;
		background: rgba(254, 70, 64, 0.06);
		box-shadow: 0 0 0 3px rgba(254, 70, 64, 0.12);
}

.bb-form-input.bb-input-ok {
		border-color: rgba(230, 145, 108, 0.5);
}

/* Status messages */
.bb-form-msg {
		margin-top: 16px;
		padding: 14px 18px;
		border-radius: 3px;
		font-size: 0.82rem;
		letter-spacing: 0.5px;
		line-height: 1.5;
}

.bb-form-msg--success {
		background: rgba(230, 145, 108, 0.1);
		border: 1px solid rgba(230, 145, 108, 0.35);
		color: #f0a882;
}

.bb-form-msg--error {
		background: rgba(254, 70, 64, 0.08);
		border: 1px solid rgba(254, 70, 64, 0.3);
		color: #ff7a76;
}

/* Submit button spinner */
.bb-btn-spinner {
		display: inline-block;
		width: 14px;
		height: 14px;
		border: 2px solid rgba(28, 28, 28, 0.3);
		border-top-color: #1c1c1c;
		border-radius: 50%;
		animation: bbSpin 0.7s linear infinite;
		margin-right: 8px;
		vertical-align: middle;
}

@keyframes bbSpin {
		to { transform: rotate(360deg); }
}

/* ── CONTACT ILLUSTRATION + INFO ─────────────────────────────────────────── */
.bb-contact-illustration {
		opacity: 0.88;
		transition: opacity 0.4s;
}

.bb-contact-illustration:hover {
		opacity: 1;
}

.bb-contact-info h4 {
		font-size: 0.65rem;
		letter-spacing: 2px;
		text-transform: uppercase;
}

/* ── MOBILE RESPONSIVE ───────────────────────────────────────────────────── */

/* General: remove horizontal overflow */
body, .main, [data-scroll-container] {
		overflow-x: hidden;
		max-width: 100vw;
}

@media (max-width: 991px) {
		/* Header: stack logo + hamburger properly */
		.p-absolute.w-100.z-index-1 .col-8 {
				display: none !important;
		}
		.p-absolute.w-100.z-index-1 .col-2:last-child {
				display: block !important;
		}

		/* Hero text */
		.custom-hero-font-1 {
				letter-spacing: 4px;
		}

		/* About sections: stack columns */
		#about .row.align-items-center.mb-5 {
				flex-direction: column;
		}
		#about .row.align-items-center.mb-5 .col-md-6 {
				width: 100%;
				max-width: 100%;
				flex: 0 0 100%;
		}

		/* Illustration: smaller on tablets */
		.bb-illustration {
				max-width: 260px !important;
				margin: 0 auto 2rem auto;
		}

		/* Team section */
		.bg-transparent.py-16 > div:nth-child(2) {
				flex-direction: column !important;
				align-items: center !important;
		}
		.bg-transparent.py-16 .text-center {
				float: none !important;
				margin-bottom: 1.5rem;
		}

		/* Services */
		.bb-service-item a {
				letter-spacing: 2px;
		}
		.bb-service-item:hover a {
				letter-spacing: 3px;
		}

		/* Process timeline */
		.bb-process-title {
				letter-spacing: 2px;
		}

		/* Contact: stack columns */
		.bb-contact-illustration {
				max-width: 280px;
				margin: 0 auto 2rem auto;
		}
}

@media (max-width: 767px) {
		/* Hero */
		#home .min-vh-100 {
				padding-top: 100px;
		}

		/* About sections: ensure order is correct (text first) */
		#about .row.align-items-center.mb-5 > .col-md-6:first-child {
				order: 1;
		}
		#about .row.align-items-center.mb-5 > .col-md-6:last-child {
				order: 2;
		}
		/* Missions: SVG before text — keep illustration on top */
		#about .row.align-items-center.mb-5:nth-of-type(2) > .col-md-6:first-child {
				order: 1;
		}

		/* Illustrations: hide on small mobile to save space */
		.bb-illustration {
				max-width: 200px !important;
		}

		/* Typography adjustments */
		h3.text-13 {
				font-size: clamp(2.5rem, 12vw, 5rem) !important;
		}
		.display-5 {
				font-size: clamp(1.5rem, 6vw, 2.5rem);
		}

		/* Services: full letter-spacing reduction */
		.bb-service-item a {
				letter-spacing: 1.5px;
				font-size: 0.85em;
		}

		/* Portfolio */
		.custom-portfolio-item-1 {
				flex-direction: column;
		}
		.custom-portfolio-item-1-type {
				display: none;
		}
		.bb-project-placeholder {
				min-height: 160px;
				border-radius: 4px;
		}

		/* Contact form */
		.bb-contact-illustration {
				display: none;
		}
		.bb-form-submit {
				width: 100%;
				justify-content: center;
		}

		/* Footer / contact info */
		.bb-contact-info {
				width: 100%;
		}

		/* Process timeline */
		.bb-process-desc {
				font-size: 0.82rem;
		}
}

@media (max-width: 480px) {
		/* Logo */
		.p-absolute.w-100.z-index-1 img {
				max-width: 130px;
		}

		/* Hero words */
		.custom-hero-font-1 {
				letter-spacing: 2px;
				white-space: normal;
		}

		/* Side menu nav text */
		#header .header-nav-links-side-header .nav > li > a {
				font-size: 1.4rem;
				letter-spacing: 5px;
		}

		/* Process timeline: tighter */
		.bb-process-timeline {
				padding-left: 56px;
		}
		.bb-process-marker {
				left: -56px;
				width: 36px;
				height: 36px;
		}
		.bb-process-icon {
				width: 36px;
				height: 36px;
				font-size: 0.8rem;
		}

		/* Contact form */
		.bb-contact-form {
				margin-top: 1.5rem;
		}
		.bb-form-input {
				padding: 12px 14px;
				font-size: 0.82rem;
		}
}

/* bb-form-submit used on <a> tags — keep dark text, no underline */
a.bb-form-submit,
a.bb-form-submit:hover,
a.bb-form-submit:focus {
		color: #1c1c1c;
		text-decoration: none;
}

/* ── SIDE HEADER MENU — brand styling ───────────────────────────────────── */
html.side-header-overlay-full-screen #header {
		background: rgba(18, 18, 18, 0.97) !important;
		backdrop-filter: blur(24px);
		-webkit-backdrop-filter: blur(24px);
}

#header .header-nav-links-side-header .nav > li > a {
		color: rgba(255, 255, 255, 0.45) !important;
		font-size: clamp(1.6rem, 4vw, 2.8rem);
		font-weight: 300;
		letter-spacing: 8px;
		text-transform: uppercase;
		text-decoration: none !important;
		transition: color 0.3s, letter-spacing 0.35s;
		padding: 0.4rem 0;
		display: block;
}

#header .header-nav-links-side-header .nav > li > a:hover {
		color: var(--primary) !important;
		letter-spacing: 10px;
}

/* Accent bar left on nav items */
#header .header-nav-links-side-header .nav > li {
		position: relative;
		overflow: hidden;
}

#header .header-nav-links-side-header .nav > li::before {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 0;
		height: 1px;
		background: var(--primary);
		transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

#header .header-nav-links-side-header .nav > li:hover::before {
		width: 28px;
}

#header .header-nav-links-side-header .nav > li:hover > a {
		padding-left: 38px;
}

/* Hamburger button */
.hamburguer-btn-side-header .close span {
		background: var(--primary) !important;
}

/* ── VALUES LIST (Nos missions) ──────────────────────────────────────────── */
.bb-values-list {
		list-style: none;
		padding: 0;
		margin: 1rem 0 0;
}

.bb-values-list li {
		padding: 10px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		font-size: 0.875rem;
		line-height: 1.6;
		color: rgba(255, 255, 255, 0.65);
}

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

.bb-values-list li strong {
		color: var(--primary);
		font-weight: 600;
		letter-spacing: 0.5px;
}

/* ── INSTAGRAM ICON COLOR ────────────────────────────────────────────────── */
.bb-insta-icon {
		background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
}
