body {
	margin: 0;
	padding: 0;
	background: #fafafa;
	font-family: "Inter", "Roboto", Arial, sans-serif;
	color: #1e1e1e;
}

.applications.corporate {
	max-width: 1300px;
	margin: 60px auto;
	padding: 0 20px;
}

.applications.corporate h2 {
	text-align: center;
	font-size: 34px;
	margin-bottom: 30px;
	font-weight: 700;
}

/* ------------ SCROLL + DRAG + CURSEUR ------------ */
.app-scroll {
	display: flex;
	gap: 25px;
	overflow-x: auto;
	padding-bottom: 15px;
	scroll-behavior: smooth;
	cursor: url("imgsolu/scroll.png") 12 12, grab;
	user-select: none;
}

.app-scroll:active {
	cursor: url("imgsolu/scroll.png") 12 12, grabbing;
}

.app-scroll::-webkit-scrollbar {
	display: none;
}

/* ------------ CARD CLASSIQUE (les cartes non-flip) ------------ */
.app-card {
	min-width: 260px;
	background: #ffffff;
	border-radius: 14px;
	padding: 35px 25px 30px;
	text-align: center;
	border: 1px solid #e5e5e5;
	transition: all 0.25s ease;
	flex-shrink: 0;
}

.app-card:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
	transform: translateY(-6px);
	border-color: #d1d1d1;
}

.img-wrap {
	width: 110px;
	height: 110px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: #f3f4f7;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s ease;
}

.app-card:hover .img-wrap {
	background: #e8eaf0;
}

.app-card img {
	width: 65%;
	max-width: 90px;
}

.app-card h3 {
	font-size: 20px;
	margin-bottom: 8px;
	font-weight: 600;
}

.app-card p {
	font-size: 15px;
	color: #555;
}

/* ------------ FLIP-CARD PREMIUM ------------ */
.app-flip {
	width: 260px;
	height: 300px;
	flex-shrink: 0;
	border-radius: 16px;
	overflow: hidden;
	perspective: 1200px;
}

.flip-card-inner {
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 16px;
}

.app-flip:hover .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 16px;
}

.app-front-full {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid #e5e5e5;
	background: #eee;
}

.app-front-full img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.app-back-full {
	width: 100%;
	height: 100%;
	border-radius: 16px;
	padding: 30px 20px;
	background: linear-gradient(135deg, #2d7fce, #1a4f88);
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	transform: rotateY(180deg);
}

.app-back-full h1 {
	font-size: 23px;
	margin-bottom: 10px;
}

.app-back-full p {
	opacity: 0.9;
	font-size: 15px;
}

.img-title {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 12px 0;
	background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
	color: #fff;
	text-align: center;
	font-size: 17px;
	font-weight: 600;
	border-radius: 0 0 16px 16px;
	pointer-events: none;
}