/* Systems Page CSS */
.wsali-systems { padding: 4rem 0 5rem; }
.wsali-systems__tabs {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}
.wsali-systems__tab {
	padding: 0.75rem 2rem;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	color: var(--wsali-gray-600);
	background: var(--wsali-gray-100);
	border: 2px solid transparent;
	border-radius: var(--wsali-radius);
	cursor: pointer;
	transition: all var(--wsali-transition);
}
.wsali-systems__tab.is-active,
.wsali-systems__tab:hover {
	color: var(--wsali-accent);
	background: rgba(0, 102, 255, 0.06);
	border-color: var(--wsali-accent);
}
.wsali-systems__panel-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}
.wsali-systems__info h2 {
	font-size: 1.75rem;
	margin-bottom: 1rem;
}
.wsali-systems__info p {
	color: var(--wsali-gray-600);
	margin-bottom: 1.5rem;
}
.wsali-systems__features li {
	padding: 0.5rem 0;
	padding-inline-start: 1.5rem;
	position: relative;
	color: var(--wsali-gray-800);
}
.wsali-systems__features li::before {
	content: '✓';
	position: absolute;
	inset-inline-start: 0;
	color: var(--wsali-teal);
	font-weight: 700;
}
.wsali-systems__visual {
	height: 320px;
	border-radius: var(--wsali-radius-lg);
	background: var(--wsali-gray-100);
}
.wsali-systems__visual--crm { background: linear-gradient(135deg, rgba(0,102,255,.1), rgba(0,102,255,.05)); }
.wsali-systems__visual--erp { background: linear-gradient(135deg, rgba(0,201,167,.1), rgba(0,201,167,.05)); }
.wsali-systems__visual--saas { background: linear-gradient(135deg, rgba(139,92,246,.1), rgba(139,92,246,.05)); }
.wsali-systems__content {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--wsali-gray-200);
}

/* Sector systems */
.wsali-systems__sectors {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid var(--wsali-gray-200);
}

.wsali-systems__sectors-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: #0a2521;
	text-align: center;
	margin: 0 0 0.5rem;
}

.wsali-systems__sectors-desc {
	text-align: center;
	color: var(--wsali-gray-600);
	margin: 0 0 2rem;
}

.wsali-systems__sectors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.25rem;
}

.wsali-systems__sector {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 1.5rem;
	background: #fff;
	border: 1px solid var(--wsali-gray-200);
	border-radius: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.wsali-systems__sector:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(10, 37, 33, 0.1);
	border-color: rgba(197, 160, 89, 0.4);
}

.wsali-systems__sector-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.wsali-systems__sector strong {
	display: block;
	font-size: 1rem;
	font-weight: 800;
	color: #0a2521;
	margin-bottom: 0.375rem;
}

.wsali-systems__sector span {
	font-size: 0.8125rem;
	color: var(--wsali-gray-600);
}

.wsali-systems__sector--clinic:hover { border-color: rgba(0, 201, 167, 0.5); }
.wsali-systems__sector--workshop:hover { border-color: rgba(245, 158, 11, 0.5); }
.wsali-systems__sector--wa:hover { border-color: rgba(37, 211, 102, 0.5); }
.wsali-systems__sector--mail:hover { border-color: rgba(56, 189, 248, 0.5); }
.wsali-systems__sector--chat:hover { border-color: rgba(99, 102, 241, 0.5); }
.wsali-systems__sector--ai:hover { border-color: rgba(139, 92, 246, 0.5); }
.wsali-systems__sector--db:hover { border-color: rgba(197, 160, 89, 0.5); }

@media (max-width: 767px) {
	.wsali-systems__panel-inner { grid-template-columns: 1fr; }
	.wsali-systems__visual { height: 200px; }
}
