.open-creative-how-section {
	padding: 110px 20px;
	background: #ffffff;
}

.open-creative-how-container {
	max-width: 1200px;
	margin: 0 auto;
}

.open-creative-how-heading {
	max-width: 760px;
	margin: 0 auto 56px;
	text-align: center;
}

.open-creative-how-kicker {
	display: inline-block;
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ff4f93;
}

.open-creative-how-heading h2 {
	margin: 0 0 16px;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.05;
	font-weight: 800;
	color: #07143b;
	letter-spacing: -0.03em;
}

.open-creative-how-heading p {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.7;
	color: #4c556a;
}

.open-creative-how-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.open-creative-how-card {
	padding: 34px 30px 32px;
	border-radius: 26px;
	background: #f5f5f3;
	box-shadow: 0 1px 0 rgba(7, 20, 59, 0.03);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.open-creative-how-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(7, 20, 59, 0.08);
}

.open-creative-how-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.open-creative-how-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 52px;
	height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 79, 147, 0.12);
	color: #ff4f93;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.06em;
}

.open-creative-how-icon {
	width: 58px;
	height: 58px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	box-shadow: 0 8px 24px rgba(7, 20, 59, 0.06);
	flex-shrink: 0;
}

.open-creative-how-icon svg {
	width: 26px;
	height: 26px;
	fill: #07143b;
}

.open-creative-how-card h3 {
	margin: 0 0 14px;
	font-size: 1.5rem;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #07143b;
}

.open-creative-how-card p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.75;
	color: #4c556a;
}

@media (max-width: 1024px) {
	.open-creative-how-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.open-creative-how-section {
		padding: 80px 16px;
	}

	.open-creative-how-heading {
		margin-bottom: 40px;
	}

	.open-creative-how-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.open-creative-how-card {
		padding: 26px 22px;
		border-radius: 22px;
	}

	.open-creative-how-card h3 {
		font-size: 1.3rem;
	}
}