/* ── Premium Cards Grid c688c698 ── */

.pcg-c688c698-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
}

/* Ambient glow orbs */
.pcg-c688c698-glow-orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	filter: blur(80px);
}
.pcg-c688c698-orb-1 {
	width: 500px;
	height: 500px;
	top: -120px;
	left: -100px;
	animation: pcg-c688c698-float 12s ease-in-out infinite;
}
.pcg-c688c698-orb-2 {
	width: 400px;
	height: 400px;
	bottom: -80px;
	right: -60px;
	animation: pcg-c688c698-float 15s ease-in-out infinite reverse;
}

@keyframes pcg-c688c698-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(30px, -20px) scale(1.05); }
	66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Grid */
.pcg-c688c698-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Card */
.pcg-c688c698-card {
	position: relative;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	padding: 36px 32px;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
				background-color 0.4s ease,
				box-shadow 0.4s ease,
				border-color 0.3s ease;
	overflow: hidden;
	cursor: default;
}

.pcg-c688c698-card:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.25);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(99, 102, 241, 0.1);
	transform: translateY(-8px);
}

/* Shine effect */
.pcg-c688c698-card-shine {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.06) 50%, transparent 70%);
	transition: left 0.6s ease;
	pointer-events: none;
	z-index: 2;
}
.pcg-c688c698-card:hover .pcg-c688c698-card-shine {
	left: 100%;
}

.pcg-c688c698-card-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

/* Icon wrap */
.pcg-c688c698-icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: rgba(99, 102, 241, 0.12);
	margin-bottom: 24px;
	transition: transform 0.3s ease, background-color 0.3s ease;
	flex-shrink: 0;
}
.pcg-c688c698-card:hover .pcg-c688c698-icon-wrap {
	transform: scale(1.1) rotate(-3deg);
}

.pcg-c688c698-icon-wrap i {
	font-size: 28px;
}
.pcg-c688c698-icon-wrap svg {
	width: 28px;
	height: 28px;
}

.pcg-c688c698-card-img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	border-radius: 8px;
}

/* Title */
.pcg-c688c698-title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 10px 0;
	color: #f1f5f9;
	transition: color 0.3s ease;
}

/* Description */
.pcg-c688c698-desc {
	font-size: 0.95rem;
	line-height: 1.65;
	color: #94a3b8;
	margin: 0 0 20px 0;
	flex-grow: 1;
}

/* Button */
.pcg-c688c698-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: 10px;
	background: rgba(99, 102, 241, 0.1);
	color: #818cf8;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	border: none;
	cursor: pointer;
}
.pcg-c688c698-btn:hover {
	background: #6366f1;
	color: #ffffff;
	transform: translateX(4px);
}
.pcg-c688c698-btn-arrow {
	transition: transform 0.3s ease;
	display: inline-block;
}
.pcg-c688c698-btn:hover .pcg-c688c698-btn-arrow {
	transform: translateX(4px);
}

/* ── Design Variants ── */

/* Glassmorphism (default) */
.pcg-c688c698-design-glassmorphism .pcg-c688c698-card {
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

/* Gradient */
.pcg-c688c698-design-gradient .pcg-c688c698-card {
	background: linear-gradient(145deg, rgba(99,102,241,0.15) 0%, rgba(139,92,246,0.08) 100%);
	border-color: rgba(139, 92, 246, 0.2);
}
.pcg-c688c698-design-gradient .pcg-c688c698-card:hover {
	background: linear-gradient(145deg, rgba(99,102,241,0.25) 0%, rgba(139,92,246,0.15) 100%);
	border-color: rgba(139, 92, 246, 0.4);
}

/* Clean */
.pcg-c688c698-design-clean .pcg-c688c698-card {
	background: rgba(255, 255, 255, 0.95);
	border-color: rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.pcg-c688c698-design-clean .pcg-c688c698-card:hover {
	background: #ffffff;
	border-color: rgba(99, 102, 241, 0.2);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.pcg-c688c698-design-clean .pcg-c688c698-title {
	color: #1e293b;
}
.pcg-c688c698-design-clean .pcg-c688c698-desc {
	color: #64748b;
}

/* ── Scroll Animations ── */
.pcg-c688c698-anim {
	will-change: transform, opacity;
}
.pcg-c688c698-anim-fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
				transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.pcg-c688c698-anim-fade-in {
	opacity: 0;
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.pcg-c688c698-anim-scale-up {
	opacity: 0;
	transform: scale(0.85);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
				transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.pcg-c688c698-anim-slide-left {
	opacity: 0;
	transform: translateX(50px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
				transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pcg-c688c698-anim.pcg-c688c698-visible {
	opacity: 1;
	transform: translateY(0) translateX(0) scale(1);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.pcg-c688c698-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
	.pcg-c688c698-grid {
		grid-template-columns: 1fr;
	}
	.pcg-c688c698-card {
		padding: 28px 24px;
	}
	.pcg-c688c698-glow-orb {
		display: none;
	}
}
