.saas-tabs-wrapper-0552d0d3 {
	--saas-accent-color: #DFA822;
	background-color: #000000;
	color: #ffffff;
	padding: 60px 20px;
	border-radius: 20px;
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	overflow: hidden;
}

.saas-header-0552d0d3 {
	text-align: center;
	margin-bottom: 50px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.saas-title-0552d0d3 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #DFA822;
	letter-spacing: -0.02em;
}

.saas-desc-0552d0d3 {
	font-size: 1.125rem;
	line-height: 1.6;
	color: #a1a1aa;
}

.saas-tabs-nav-0552d0d3 {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
	flex-wrap: wrap;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 15px;
}

.saas-tab-btn-0552d0d3 {
	background: transparent;
	border: none;
	color: #a1a1aa;
	font-size: 1.05rem;
	font-weight: 600;
	padding: 10px 20px;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	font-family: 'Poppins', sans-serif;
}

.saas-tab-btn-0552d0d3:hover {
	color: #ffffff;
}

.saas-tab-btn-0552d0d3.active {
	color: var(--saas-accent-color);
	text-shadow: 0 0 15px rgba(223, 168, 34, 0.4);
}

.saas-tab-btn-0552d0d3.active::after {
	content: '';
	position: absolute;
	bottom: -16px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--saas-accent-color);
	box-shadow: 0 0 10px var(--saas-accent-color);
	border-radius: 3px 3px 0 0;
}

.saas-tab-pane-0552d0d3 {
	display: none;
	animation: saasFadeIn 0.5s ease forwards;
}

.saas-tab-pane-0552d0d3.active {
	display: block;
}

.saas-cards-grid-0552d0d3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.saas-card-0552d0d3 {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 30px;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.saas-card-0552d0d3:hover {
	transform: translateY(-5px);
	border-color: rgba(223, 168, 34, 0.3);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(223, 168, 34, 0.1);
}

.saas-card-0552d0d3::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 100%;
	background: radial-gradient(circle at top right, rgba(223, 168, 34, 0.1), transparent 70%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.saas-card-0552d0d3:hover::before {
	opacity: 1;
}

.saas-card-icon-0552d0d3 {
	font-size: 2rem;
	color: var(--saas-accent-color);
	margin-bottom: 20px;
	display: inline-block;
}

.saas-card-icon-0552d0d3 svg {
	width: 2rem;
	height: 2rem;
	fill: var(--saas-accent-color);
}

.saas-card-title-0552d0d3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #ffffff;
}

.saas-card-desc-0552d0d3 {
	font-size: 0.95rem;
	line-height: 1.5;
	color: #a1a1aa;
	margin: 0;
}

@keyframes saasFadeIn {
	from {
		opacity: 0;
		transform: translateY(15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Stagger card animations */
.saas-tab-pane-0552d0d3.active .saas-card-0552d0d3:nth-child(1) { animation-delay: 0.1s; animation-fill-mode: both; animation-name: saasFadeIn; animation-duration: 0.5s; }
.saas-tab-pane-0552d0d3.active .saas-card-0552d0d3:nth-child(2) { animation-delay: 0.2s; animation-fill-mode: both; animation-name: saasFadeIn; animation-duration: 0.5s; }
.saas-tab-pane-0552d0d3.active .saas-card-0552d0d3:nth-child(3) { animation-delay: 0.3s; animation-fill-mode: both; animation-name: saasFadeIn; animation-duration: 0.5s; }
.saas-tab-pane-0552d0d3.active .saas-card-0552d0d3:nth-child(4) { animation-delay: 0.4s; animation-fill-mode: both; animation-name: saasFadeIn; animation-duration: 0.5s; }

@media (max-width: 991px) {
	.saas-cards-grid-0552d0d3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.saas-title-0552d0d3 {
		font-size: 2rem;
	}
	.saas-tabs-nav-0552d0d3 {
		flex-direction: column;
		align-items: center;
		border-bottom: none;
	}
	.saas-tab-btn-0552d0d3.active::after {
		display: none;
	}
	.saas-tab-btn-0552d0d3.active {
		background: rgba(223, 168, 34, 0.1);
		border-radius: 8px;
	}
	.saas-cards-grid-0552d0d3 {
		grid-template-columns: 1fr;
	}
}