@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
	/* Ethereal Elegance Palette */
	/* --primary-color: #fb7185; */
	--primary-color: #e05ab2;
	/* Rose Gold */
	--primary-dark: #e11d48;
	--secondary-color: #818cf8;
	/* Soft Lavender */
	--accent-color: #f472b6;
	/* Soft Pink Accent */
	--dark-bg: #fff1f2;
	/* Very soft pink/white for "dark" sections alternative */
	--card-bg: rgba(255, 255, 255, 0.8);
	--text-dark: #334155;
	/* Slate 700 - Softer than black */
	--text-light: #fdfbf7;
	/* Cream White */
	--body-bg: #fdfbf7;
	--gradient-main: linear-gradient(135deg, #e05ab2 0%, #818cf8 100%);
	--gradient-glow: linear-gradient(135deg, #e05ab2 0%, #fb7185 50%, #ffffff 100%);
	--glass-border: 1px solid rgba(255, 255, 255, 0.5);
	--soft-shadow: 0 20px 40px rgba(251, 113, 133, 0.15);
}

body {
	font-family: 'Nunito', sans-serif;
	background-color: var(--body-bg);
	color: var(--text-dark);
	overflow-x: hidden;
	line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Quicksand', sans-serif;
	font-weight: 400;
	/* Light and airy */
	letter-spacing: 0.02em;
	color: var(--text-dark);
}

/* --- Navigation --- */
/* --- Navigation (Floating Glass Pill) --- */
.navbar {
	background: transparent !important;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	padding: 1rem 3rem;
	border-bottom: none;
	box-shadow: none;
	margin: 0;
	width: 100%;
	max-width: none;
	border-radius: 0;
	position: fixed;
	top: 0;
	left: 0;
	transform: none;
	z-index: 1000;
	overflow: visible;
	pointer-events: none;
	/* Let clicks pass through empty space */
}



.navbar-collapse {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	padding: 0.8rem 3rem;
	border-radius: 100px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
	border: 3px solid var(--primary-color);
	pointer-events: auto;
	flex-grow: 0;
	/* Prevent taking full width */
	/* Prevent taking full width */
	margin-right: 0;
	margin-left: auto;
}

.navbar-brand {
	pointer-events: auto;
	margin-right: auto;
	/* Circle Container */
	height: 140px;
	width: 140px;
	background: white;
	border-radius: 50%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 3px solid var(--primary-color);
	/* Clip the zoomed image */
}



.navbar-brand img {
	height: 125%;
	/* Zoomed in > 100% */
	width: 125%;
	object-fit: contain;
	transition: all 0.3s ease;
	margin: 0;
	padding: 0;
	z-index: 1001;
	/* Removed background/shadow from img, moved to parent */
	filter: none;
}



.nav-link {
	color: var(--text-dark) !important;
	font-weight: 600;
	font-size: 1.1rem;
	margin: 0 10px;
	position: relative;
	transition: color 0.3s ease;
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 3px;
	bottom: -4px;
	left: 0;
	background: var(--gradient-main);
	transition: width 0.3s ease;
	border-radius: 2px;
}

.nav-link:hover::after {
	width: 100%;
}

.nav-link:hover {
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* --- Hero Section --- */
.hero-section {
	position: relative;
	height: 100vh;
	min-height: 700px;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: white;
	/* Fallback for subpages without carousel */
	background: radial-gradient(circle at top right, #fff1f2, #fff7ed);
}

.hero-section::before {
	display: none;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.5;
	}

	100% {
		transform: scale(1.2);
		opacity: 0.8;
	}
}

#heroCarousel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.carousel-inner,
.carousel-item {
	height: 100%;
}

.carousel-item img {
	object-fit: cover;
	object-position: center;
	transform: scale(1.05);
	/* Slight zoom for cinema feel */
	animation: panZoom 20s infinite alternate;
}

@keyframes panZoom {
	from {
		transform: scale(1.05);
	}

	to {
		transform: scale(1.15);
	}
}

.hero-overlay {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(46, 16, 101, 0.8), rgba(30, 64, 175, 0.75));
	/* Brand Deep Purple/Blue */
	z-index: 1;
}



.hero-content {
	position: relative;
	z-index: 10;
	background: transparent;
	padding: 0;
	max-width: 900px;
	margin: 0 auto;
}

.hero-title {
	font-size: 4rem;
	font-weight: 700;
	/* Stronger weight for white text */
	line-height: 1.18;
	margin-bottom: 1.8rem;
	color: #ffffff;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.page-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: white !important;
	/* Force white for legibility */
	margin-bottom: 1rem;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* --- Buttons --- */
.btn-primary-custom {
	background: var(--gradient-main);
	border: 2px solid white;
	padding: 16px 40px;
	font-weight: 700;
	border-radius: 50px;
	font-size: 1.1rem;
	color: white;
	position: relative;
	overflow: hidden;
	z-index: 1;
	box-shadow: 0 10px 30px rgba(226, 78, 204, 0.4);
	transition: all 0.3s ease;
}

.btn-primary-custom::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #9333ea, #4f46e5);
	/* Purple */
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-primary-custom:hover::before {
	opacity: 1;
}

.btn-primary-custom:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 20px 40px rgba(147, 51, 234, 0.5);
	color: white !important;
	border: 2px solid white;
}

.btn-outline-custom {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.8);
	color: white;
	padding: 14px 40px;
	font-weight: 700;
	border-radius: 50px;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.btn-outline-custom:hover {
	background: white;
	color: #e05ab2;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);

}

/* --- Stats Section --- */
.stats-section {
	margin-top: -80px;
	position: relative;
	z-index: 20;
	background: transparent;
	padding-bottom: 80px;
}

.stats-container {
	background: white;
	border-radius: 30px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	padding: 3rem;
	display: flex;
	justify-content: space-around;
	align-items: center;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-family: 'Outfit', sans-serif;
	font-size: 3.5rem;
	font-weight: 800;
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1.1rem;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* --- Section Titles --- */
.section-title {
	font-size: 3.5rem;
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
	display: block;
	/* changed from inline-block to block for centering */
	width: 100%;
	/* ensure full width */
	left: auto;
	/* reset referencing */
	transform: none;
	/* reset transform */
}

.section-title span {
	/* New wrapper for gradient text if needed */
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--gradient-main);
	border-radius: 10px;
	opacity: 0.6;
}

/* --- Service Cards --- */
.service-card {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border-radius: 40px;
	padding: 4rem 2.5rem;
	height: 100%;
	border: 1px solid rgba(255, 255, 255, 0.8);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	z-index: 1;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.service-card::before,
.feature-card::before,
.bootcamp-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: var(--gradient-main);
	transition: height 0.4s ease;
	z-index: -1;
	border-radius: inherit;
}

.bg-gradient-custom::before {
	display: none !important;
}

.service-card:hover,
.feature-card:hover,
.bootcamp-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before,
.feature-card:hover::before,
.bootcamp-card:hover::before {
	height: 100%;
	background: var(--secondary-color);
}

.service-card:hover h1,
.service-card:hover h2,
.service-card:hover h3,
.service-card:hover h4,
.service-card:hover h5,
.service-card:hover h6,
.service-card:hover p,
.service-card:hover li,
.service-card:hover strong,
.service-card:hover span,
.service-card:hover i,
.service-card:hover a,
.feature-card:hover h1,
.feature-card:hover h2,
.feature-card:hover h3,
.feature-card:hover h4,
.feature-card:hover h5,
.feature-card:hover h6,
.feature-card:hover p,
.feature-card:hover li,
.feature-card:hover strong,
.feature-card:hover span,
.feature-card:hover i,
.feature-card:hover a,
.bootcamp-card:hover h1,
.bootcamp-card:hover h2,
.bootcamp-card:hover h3,
.bootcamp-card:hover h4,
.bootcamp-card:hover h5,
.bootcamp-card:hover h6,
.bootcamp-card:hover p,
.bootcamp-card:hover li,
.bootcamp-card:hover strong,
.bootcamp-card:hover span,
.bootcamp-card:hover i,
.bootcamp-card:hover a,
.service-card:hover .service-icon i,
.feature-card:hover .service-icon i,
.bootcamp-card:hover .service-icon i {
	color: white !important;
	-webkit-text-fill-color: white !important;
}

/* Specyficzny hover dla kart partnerstwa i maratonów */
.partnership-card:hover,
.marathon-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.marathon-card:hover {
	background: #fdfbf7 !important;
	/* Delikatne wyróżnienie bez zmiany tekstu na biały */
	border-color: var(--primary-color) !important;
}

/* Conflicting rule removed */

.service-card h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	transition: color 0.4s ease;
}

.service-card p {
	color: #64748b;
	line-height: 1.7;
	transition: color 0.4s ease;
}

/* --- Dark Sections (About & WMM) --- */
.section-dark {
	background-color: var(--dark-bg);
	color: white;
	padding: 100px 0;
	position: relative;
}

#o-mnie.section-light,
#wmm.section-light {
	background-color: var(--dark-bg);
	/* Override previous light bg */
	color: var(--text-dark);
}

#o-mnie .section-title,
#wmm .section-title {
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.image-placeholder {
	/* Removed placeholder styles, now handled by img tags */
	border-radius: 70px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border: 8px solid #ffffff;
	background: white;
	position: relative;
	z-index: 1;
}

.image-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
	position: relative;
	z-index: 2;
}

.image-placeholder:hover img {
	transform: scale(1.05);
}

.feature-list li i {
	color: var(--accent-color) !important;
}

.wmm-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.wmm-badge {
	background: white;
	box-shadow: 0 10px 20px rgba(251, 113, 133, 0.05);
	padding: 12px 28px;
	border-radius: 50px;
	font-weight: 500;
	color: var(--text-dark);
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.4s ease;
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.wmm-badge i {
	color: var(--primary-color);
	transition: color 0.3s ease;
}

.wmm-badge:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	background: var(--gradient-main);
	color: white;
	border-color: transparent;
}

.wmm-badge:hover i {
	color: white !important;
}

/* --- Testimonials --- */
.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: none;
	border: 1px solid rgba(224, 90, 178, 0.15);
	position: relative;
}

.testimonial-card::after {
	content: '"';
	position: absolute;
	top: 10px;
	right: 30px;
	font-family: 'Outfit', sans-serif;
	font-size: 8rem;
	color: rgba(0, 0, 0, 0.03);
	line-height: 1;
}

/* --- CTA Section --- */
#kontakt {
	color: var(--text-dark);
	position: relative;
	border-top: 1px solid rgba(251, 113, 133, 0.1);
}

#kontakt .section-title {
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

#kontakt .service-card {
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	box-shadow: var(--soft-shadow);
}

#kontakt .service-card:hover {
	transform: translateY(-10px);
	background: white;
}

/* --- Footer --- */
/* --- Footer --- */
/* --- Footer --- */
footer {
	background: white;
	border-top: 1px solid rgba(0, 0, 0, 0.03);
	padding: 80px 0 40px;
	margin-top: 0;
	font-size: 0.95rem;
	color: #64748b;
}

footer h5 {
	color: var(--text-dark);
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.footer-link {
	color: #64748b;
	text-decoration: none;
	transition: all 0.3s;
	display: block;
	padding: 5px 0;
}

.footer-link:hover {
	color: var(--primary-color);
	padding-left: 8px;
	text-shadow: none;
}

.footer-social-link {
	color: #64748b;
	font-size: 1.5rem;
	transition: all 0.3s;
	display: inline-block;
}

.footer-social-link:hover {
	color: var(--primary-color);
	transform: translateY(-3px);
}

.text-primary-color {
	color: var(--primary-color);
}

.copyright-link {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s;
}

.copyright-link:hover {
	color: var(--primary-color);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-content {
		padding: 2rem;
	}

	.stats-container {
		flex-direction: column;
		gap: 2rem;
	}

	.navbar-brand img {
		height: 60px;
		margin: 0;
	}
}

/* --- Responsive Navbar Fixes (New) --- */
@media (max-width: 991px) {
	.navbar {
		padding: 0.5rem 1rem;
	}

	/* Resize the white circle container on mobile */
	.navbar-brand {
		height: 80px;
		width: 80px;
	}

	.navbar-toggler {
		pointer-events: auto;
		background: white;
		border: none;
		border-radius: 50%;
		padding: 10px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	}

	.navbar-collapse {
		margin-top: 1rem;
		border-radius: 20px;
		/* Standard rounding for dropdown */
		width: 100%;
		padding: 1rem;
		text-align: center;
		background: rgba(255, 255, 255, 0.95);
		/* More opaque for readability */
	}

	.nav-link {
		margin: 5px 0;
	}
}

/* --- Subpage Hero --- */
.hero-section.subpage {
	height: 50vh;
	/* Shorter height for subpages */
	min-height: 550px;
	align-items: center;
	padding-top: 60px;
	/* Dodatkowe obniżenie treści względem menu */
}

.hero-section.subpage .hero-content {
	max-width: 800px;
}

.hero-section.subpage .page-title {
	font-size: 3rem;
	/* Slightly smaller than main hero */
	margin-bottom: 1.5rem;
}

.hero-section.subpage p.lead {
	font-size: 1.35rem;
	line-height: 1.8;
	font-weight: 400;
	letter-spacing: 0.5px;
	/* Breathe */
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section.subpage p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

/* --- New Content Components (Migrated & Themed) --- */
.service-card,
.feature-card,
.bootcamp-card,
.partnership-card,
.marathon-card {
	background: white;
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	/* Softer shadow */
	transition: all 0.3s ease;
}

/* Ujednolicony hover przeniesiony wyżej */

.bootcamp-card.women {
	border-bottom: 4px solid var(--primary-color);
}

.bootcamp-card.running {
	border-bottom: 4px solid var(--secondary-color);
}

.service-icon,
.value-icon,
.benefit-icon,
.feature-icon,
.marathon-icon {
	width: 70px;
	height: 70px;
	background: var(--gradient-main);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white !important;
	font-size: 1.8rem;
	flex-shrink: 0;
	position: relative;
	z-index: 10;
	border: 2px solid white;
	box-shadow: 0 10px 20px rgba(251, 113, 133, 0.3);
	margin-bottom: 1.5rem;
}

.service-icon i,
.value-icon i,
.benefit-icon i,
.feature-icon i,
.marathon-icon i {
	position: relative;
	z-index: 11;
}

.step-number {
	width: 50px;
	height: 50px;
	background: var(--gradient-main);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
	margin-right: 1.5rem;
	flex-shrink: 0;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border: 3px solid white;
}

.benefit-card {
	background: white;
	border-radius: 12px;
	padding: 1.2rem;
	border-left: 4px solid var(--secondary-color);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	margin-bottom: 1rem;
	font-weight: 500;
}

.benefit-box {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid var(--primary-color);
	/* keeping a thin border */
	box-shadow: var(--soft-shadow);
	margin-bottom: 1.5rem;
}

.stat-highlight {
	background: var(--gradient-main);
	color: white;
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	margin-bottom: 2rem;
	box-shadow: var(--soft-shadow);
}

.stat-highlight .stat-number {
	font-size: 3rem;
	font-weight: 700;
}

.stat-box {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 1.5rem 3rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 1.5rem;
}

.stat-box .stat-number {
	font-size: 3rem;
	font-weight: 800;
	color: white;
	text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	line-height: 1;
}

.cta-section {
	background: var(--gradient-main);
	color: white;
	padding: 80px 0;
	margin-top: 60px;
	position: relative;
	overflow: hidden;
}

.cta-section .btn-cta-premium {
	background: white;
	color: var(--primary-color);
	border: 2px solid white;
	border-radius: 50px;
	padding: 14px 45px;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-cta-premium:hover {
	background: var(--primary-color) !important;
	color: white !important;
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.section-light {
	background-color: #fff;
	/* Keeping it simple white */
}

.benefit-badge {
	display: inline-block;
	background: white;
	color: var(--primary-dark);
	padding: 8px 20px;
	border-radius: 30px;
	font-weight: 600;
	margin: 5px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(255, 20, 147, 0.1);
}

.quote-box {
	background: linear-gradient(135deg, #fff0f5 0%, #fff 100%);
	border-left: 4px solid var(--primary-color);
	padding: 2rem;
	border-radius: 12px;
	font-style: italic;
	font-size: 1.1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* --- B2B Specific Enhancements --- */
.benefits-glass-card {
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 40px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.benefits-glass-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: var(--gradient-main);
	z-index: 10;
}

.benefits-glass-card::after {
	content: '';
	position: absolute;
	top: -20%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(224, 90, 178, 0.15) 0%, transparent 70%);
	z-index: -1;
	filter: blur(30px);
}

.section-subtitle-custom {
	font-weight: 700;
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 0.5px;
}

.benefit-card-v2 {
	background: white;
	padding: 1.8rem 1.2rem;
	border-radius: 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(224, 90, 178, 0.05);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.benefit-card-v2:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(224, 90, 178, 0.15);
	border-color: rgba(224, 90, 178, 0.3);
}

.benefit-icon-v2 {
	width: 55px;
	height: 55px;
	background: var(--gradient-main);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.6rem;
	margin-bottom: 1.2rem;
	box-shadow: 0 8px 20px rgba(224, 90, 178, 0.3);
	transition: transform 0.3s ease;
}

.benefit-card-v2:hover .benefit-icon-v2 {
	transform: rotate(10deg);
}

.benefit-card-v2 h5 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.benefit-card-v2 p {
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.4;
}

.benefit-card-v2.featured {
	flex-direction: row;
	padding: 1.5rem 2rem;
	gap: 1.5rem;
	border: 2px solid rgba(224, 90, 178, 0.1);
	background: linear-gradient(to right, #ffffff, #fffafa);
}

.benefit-card-v2.featured .benefit-icon-v2 {
	margin-bottom: 0;
	flex-shrink: 0;
}

@media (max-width: 991px) {
	.benefit-card-v2.featured {
		flex-direction: column;
		text-align: center;
	}

	.benefit-card-v2.featured .text-start {
		text-align: center !important;
	}
}