/* PROMO.FAIRHILLLAWYERS.COM */
/* pricing-cards.css */

/* Колонка з position: relative для позиціонування іконки */
#price .pricing-col {
	padding-top: 35px;
	position: relative;
}

#price .pricing-card {
	background: #ffffff;
	padding: 40px 30px;
	padding-top: 55px;
	height: 100%;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 12px rgba(26, 36, 63, 0.08);
}

#price .pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: #ffb11f;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

/* Hover тепер на колонці */
#price .pricing-col:hover .pricing-card::before {
	transform: scaleX(1);
}

#price .pricing-col:hover .pricing-card {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(26, 36, 63, 0.15);
}

/* Популярний пакет */        
#price .card-popular::after, #price .card-self-sponsorship::after {
	content: var(--popular-text, 'ПОПУЛЯРНИЙ');
	position: absolute;
	top: 35px;
	right: -35px;
	background: #f5ba4b;
	color: #1A243F;
	padding: 5px 40px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	transform: rotate(45deg);
	box-shadow: 0 2px 8px rgba(255, 177, 31, 0.4);
}
#price .card-self-sponsorship::after {
	content: var(--popular-text, 'SELF-SPONSORSHIP');
	top: 40px;
	right: -50px;
}

/* Іконка позиціонується відносно .pricing-col */
#price .icon-wrapper {
	width: 70px;
	height: 70px;
	background-color: #f5ba4b;
	box-shadow: 0 4px 10px #bfc1c2;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 30px;
	transition: all 0.3s ease;
	z-index: 10;
}

/* Hover іконки тепер на колонці */
#price .pricing-col:hover .icon-wrapper {
	transform: scale(1.08);
}

#price .icon-wrapper img {
	width: 40px;
	height: 40px;
}

#price .card-title {
	margin-top: 20px;
	margin-bottom: 20px;
}

#price .price-wrapper {
	margin-bottom: 16px;
}

#price .old-price {
	font-size: 1rem;
	color: #6c757d;
	text-decoration: line-through;
	text-decoration-color: #dc3545;
	text-decoration-thickness: 2px;
	display: block;
}

#price .new-price {
	font-size: 1.4rem;
	font-weight: 700;
	color: #e2a514;
	display: block;
	line-height: 1.2;
}

#price .card-description {
	font-size: 0.9rem;
	color: #474b4e;
	font-style: italic;
	margin-bottom: 24px;
	padding: 14px 16px;
	background: #f8f9fa;
	border-left: 3px solid #ffb11f;
	line-height: 1.6;
}

#price .features-title {
	font-weight: 500;
}

#price .features-list {
	list-style: none;
	padding: 0;
	margin-bottom: 24px;
}

#price .features-list li {
	padding: 10px 0;
	color: #495057;
	font-size: 0.9rem;
	display: flex;
	align-items: flex-start;
	border-bottom: 1px solid #e9ecef;
	transition: all 0.2s ease;
}

#price .features-list li:last-child {
	border-bottom: none;
}

#price .features-list li:hover {
	color: #1A243F;
	padding-left: 4px;
}

#price .features-list li::before {
	content: '✓';
	color: #f5ba4b;
	font-weight: bold;
	font-size: 1.1rem;
	margin-right: 10px;
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	background: rgba(40, 167, 69, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
}

#price .card-footer-text {
	font-weight: 500;
	color: #1A243F;
	font-size: 0.9rem;
	padding: 14px 16px;
	background: rgb(248 249 250);
	line-height: 1.6;
	border-left: 3px solid #F5BA4B;
}

