.bph-services {
	--bph-services-accent: #6d2db3;
	--bph-services-accent-strong: #351056;
	--bph-services-highlight: #6cb6ff;
	--bph-services-surface: #ffffff;
	--bph-services-surface-soft: linear-gradient(180deg, #f6f2ff 0%, #ece5fb 100%);
	--bph-services-border: rgba(83, 40, 130, 0.14);
	--bph-services-text: #22133b;
	--bph-services-muted: #5f5674;
	display: grid;
	gap: 16px;
}

.bph-services__unit {
	background: var(--bph-services-surface-soft);
	border: 1px solid var(--bph-services-border);
	border-radius: 14px;
	box-shadow: 0 14px 36px rgba(45, 18, 77, 0.1);
	overflow: hidden;
	position: relative;
}

.bph-services__unit::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(90deg, #7f35d1 0%, #5e2fb0 45%, #5296ff 100%);
}

.bph-services__unit-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 22px;
	border: 0;
	background: transparent;
	color: var(--bph-services-text);
	font: inherit;
	font-size: 1.05rem;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
	letter-spacing: 0.01em;
}

.bph-services__unit-title-wrap {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.bph-services__unit-symbol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(108, 182, 255, 0.18) 0%, rgba(127, 53, 209, 0.14) 100%);
	color: #4d1f84;
	border: 1px solid rgba(83, 40, 130, 0.12);
}

.bph-services__unit-symbol svg {
	width: 18px;
	height: 18px;
	display: block;
}

.bph-services__unit-title {
	min-width: 0;
}

.bph-services__unit-icon {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: #5e2fb0;
	border: 1px solid rgba(83, 40, 130, 0.12);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bph-services__unit-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.bph-services__unit-toggle[aria-expanded="true"] .bph-services__unit-icon {
	transform: rotate(180deg);
	background: linear-gradient(180deg, #7a36cb 0%, #4d1f84 100%);
	color: #ffffff;
}

.bph-services__unit-panel {
	padding: 0 22px 22px;
}

.bph-services__section-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.bph-services__section-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid rgba(83, 40, 130, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #4b2378;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.bph-services__section-symbol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	opacity: 0.9;
}

.bph-services__section-symbol svg {
	width: 18px;
	height: 18px;
	display: block;
}

.bph-services__section-label {
	min-width: 0;
}

.bph-services__section-toggle:hover,
.bph-services__section-toggle:focus-visible,
.bph-services__section-toggle.is-active {
	background: linear-gradient(180deg, #7a36cb 0%, #4d1f84 100%);
	border-color: #4d1f84;
	color: #ffffff;
	outline: none;
	box-shadow: 0 10px 20px rgba(77, 31, 132, 0.2);
}

.bph-services__content {
	background: var(--bph-services-surface);
	border-radius: 12px;
	border: 1px solid rgba(83, 40, 130, 0.09);
	box-shadow: 0 10px 24px rgba(45, 18, 77, 0.06);
	position: relative;
	overflow: hidden;
}

.bph-services__content::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: linear-gradient(180deg, #6cb6ff 0%, #6d2db3 100%);
}

.bph-services__content-inner {
	padding: 22px 20px;
	color: var(--bph-services-text);
}

.bph-services__content-inner > :first-child {
	margin-top: 0;
}

.bph-services__content-inner > :last-child {
	margin-bottom: 0;
}

.bph-services__content-inner p,
.bph-services__content-inner li {
	color: var(--bph-services-muted);
	line-height: 1.7;
}

.bph-services-empty {
	padding: 20px 24px;
	border-radius: 12px;
	background: #f7f2ff;
	border: 1px solid rgba(83, 40, 130, 0.1);
	color: #3a255b;
}

@media (max-width: 767px) {
	.bph-services__unit-toggle {
		padding: 20px;
		font-size: 1rem;
	}

	.bph-services__unit-panel {
		padding: 0 20px 20px;
	}

	.bph-services__section-list {
		flex-direction: column;
	}

	.bph-services__section-toggle {
		width: 100%;
		text-align: left;
		border-radius: 10px;
	}

	.bph-services__content-inner {
		padding: 18px 16px;
	}
}
