.services-section {
	position: relative;
	padding: 3.25rem 1.5rem 3.75rem;
	background: linear-gradient(
		180deg,
		var(--color-deep-dark-blue) 0%,
		var(--color-surface-elevated) 40%,
		var(--color-deep-dark-blue) 100%
	);
}

.services-section__inner {
	max-width: var(--hero-max-width);
	margin: 0 auto;
}

.services-section__header {
	direction: rtl;
	text-align: center;
	margin-bottom: 3rem;
}

.services-section__title {
	margin: 0 0 0.75rem;
	font-family: var(--font-arabic);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: var(--text-primary);
}

.services-section__subtitle {
	margin: 0 auto;
	max-width: 42ch;
	font-family: var(--font-arabic);
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: var(--text-muted);
	line-height: 1.7;
}

/* Bento Grid */
.bento-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, minmax(200px, auto));
	gap: 1.25rem;
	direction: rtl;
}

.bento-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin: 0;
	transition:
		transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.35s ease,
		background 0.35s ease;
}

.bento-card:hover {
	transform: translateY(-6px) scale(1.01);
	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.35),
		0 0 40px rgba(124, 58, 237, 0.15);
	border-color: rgba(167, 139, 250, 0.35);
	background: rgba(255, 255, 255, 0.09);
}

.bento-card--primary {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
	padding: 2.5rem;
}

.bento-card--primary .glass-card__title {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.bento-card--primary .glass-card__text {
	font-size: 1.1rem;
	max-width: 32ch;
}

.bento-card--hosting {
	grid-column: 3;
	grid-row: 1;
}

.bento-card--mobile {
	grid-column: 4;
	grid-row: 1;
}

.bento-card--highlight {
	grid-column: 3 / 5;
	grid-row: 2;
	position: relative;
	border-color: rgba(212, 175, 55, 0.35);
	background: linear-gradient(
		135deg,
		rgba(212, 175, 55, 0.08) 0%,
		var(--glass-bg) 50%,
		rgba(124, 58, 237, 0.1) 100%
	);
}

.bento-card--highlight:hover {
	border-color: var(--color-liquid-gold);
	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.35),
		0 0 48px rgba(212, 175, 55, 0.2);
}

.bento-card__badge {
	align-self: flex-start;
	margin-bottom: 0.75rem;
	padding: 0.35rem 0.85rem;
	font-family: var(--font-arabic);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-deep-dark-blue);
	background: linear-gradient(135deg, var(--color-liquid-gold), var(--color-accent-gold-soft));
	border-radius: 2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card--highlight:hover .bento-card__badge {
	transform: scale(1.05);
	box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.bento-card .glass-card__title {
	margin-bottom: 0.75rem;
}

.bento-card .glass-card__text {
	margin-bottom: 0;
	flex-grow: 1;
}

/* Process Timeline Section */
