.dark .tar-card {
	background: #353D49;
}
.dark .tar-name,
.dark .tar-price,
.dark .tar-list li,
.dark .tar-footer-text,
.dark .tar-desc
{
	color: var(--white);
}
.dark .tar-subtitle {
	background: #D7E1EC66;
	color: var(--white);
}
.dark .tar-list .tar-check svg {
	color: #1C293A;
}

.dark .tar-card:nth-last-child(-n + 2) {
    border-color: var(--blue);
    background: linear-gradient(115.96deg, #003770 0.07%, #00254F 100.07%);
}

.tariffs {
	background: var(--white);
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .5s ease,transform .5s ease;
}

.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

.tar-grid {
	gap: 14px;
	margin-top: 52px;
}

.tar-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1.5px solid var(--gray-200);
	border-radius: 14px;
	padding: 24px 20px;
	position: relative;
	transition: all .25s;
	background: var(--white);

}

.tar-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}


.tar-badge {
	position: absolute;
	top: -12px;
	right: 16px;
	background: #FF6B35;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .4px;
	padding: 4px 12px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	gap: 5px;

	font-family: Wix Madefor Text;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0;

}

.tar-name {
	font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.1;
}

.tar-subtitle {
	font-family: Wix Madefor Text;
	display: inline-block;
	background: var(--gray-100);
	color: var(--gray-600);
	font-size: 12px;
	font-weight: 500;
	padding: 4px 10px;
	border-radius: 6px;
	margin-bottom: 14px;
}

.tar-card:nth-last-child(-n + 2) {
	background: var(--blue);
	border-color: var(--blue);
}
.tar-card:nth-last-child(-n + 2):hover {
	box-shadow: 0 16px 48px rgba(43,90,255,.35);
}
.tar-card:nth-last-child(-n + 2) .tar-name {
	color: #fff;
}
.tar-card:nth-last-child(-n + 2) .tar-subtitle {
	background: rgba(255,255,255,.18);
	color: rgba(255,255,255,.85);
}
.tar-card:nth-last-child(-n + 2) .tar-price {
	color: #fff;
}
.tar-card:nth-last-child(-n + 2) .tar-desc {
	color: rgba(255,255,255,.9);
}
.tar-card:nth-last-child(-n + 2) .tar-list li {
	border-color: rgba(255,255,255,.14);
	color: rgba(255,255,255,.88);
}
.tar-card:nth-last-child(-n + 2) .tar-check {
	background: rgba(255,255,255,.22);
}
.tar-card:nth-last-child(-n + 2) .tar-check svg {
	color: #fff;
}
.tar-card:nth-last-child(-n + 2) .tar-geo {
	background: rgba(255,255,255,.15);
	border-color: rgba(255,255,255,.3);
	color: #fff;
}
.tar-card:nth-last-child(-n + 2) .tar-footer-text {
	color: rgba(255,255,255,.85);
	font-weight: 700;
	border-color: rgba(255,255,255,.2);
}

.tar-card:nth-last-child(-n + 2) .tar-btn {
	border: 2px solid rgba(255,255,255,.4);
	background: #fff;
	color: var(--blue);
}

.tar-card:nth-last-child(-n + 2) .tar-btn:hover {
	background: rgba(255,255,255,.9);
}

.tar-price {
	font-family: 'Unbounded', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 14px;
	line-height: 1;
}

.tar-btn {
	display: block;
	text-align: center;
	width: 100%;
	padding: 13px;
	border-radius: 10px;
	cursor: pointer;
	font-family: 'Wix Madefor Text',sans-serif;
	font-size: 14px;
	font-weight: 700;
	transition: all .22s;
	margin-bottom: 18px;
	border: none;
	background: var(--blue);
	color: #fff;
}

.tar-btn:hover {
	background: var(--blue-dark);
}

.tar-desc {
	font-family: 'Wix Madefor Text', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 14px;
	line-height: 1.2;
}

.tar-list {
	list-style: none;
	margin-bottom: 16px;
	padding:0;
}

.tar-list li {
	display: flex;
	align-items: flex-start;
	font-family: Wix Madefor Text;
	gap: 8px;
	padding: 6px 0;
	border-bottom: 1px solid var(--gray-200);
	font-size: 13px;
	line-height: 1.45;
	color: var(--ink);
}
.tar-list li:last-child {
	border-bottom: none;
}

.tar-check {
	width: 16px;
	height: 16px;
	border-radius: 4px;
	background: var(--blue-light);
	flex-shrink: 0;
	margin-top: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tar-check svg {
	color: var(--blue);
	width: 9px;
	height: 9px;
}

.tar-geo {
	display: flex;
	align-items: center;
	font-family: Wix Madefor Text;
	gap: 8px;
	background: rgba(43,90,255,.07);
	border: 1px solid rgba(43,90,255,.18);
	border-radius: 8px;
	padding: 9px 12px;
	font-size: 12px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 14px;
}

.tar-footer-text {
	font-family: Wix Madefor Text;
	font-size: 12px;
	color: var(--gray-600);
	line-height: 1.5;
	font-weight: 500;
	padding-top: 10px;
	border-top: 1px solid var(--gray-200);
}
.tar-note {
	text-align: center;
	font-size: 13px;
	color: var(--gray-400);
	margin-top: 20px;
}
.tar-note a {
	color: var(--blue);
}
