/* Pricing */
.pricing .box {
	padding: 40px 20px;
	background: #fff;
	text-align: center;
	box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	transition: 0.3s;
}
.pricing .box:hover {
	transform: scale(1.1);
	box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}
.pricing h3 {
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 15px;
}
.pricing .price {
	font-size: 36px;
	color: #444444;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
}
.pricing .price sup {
	font-size: 20px;
	top: -15px;
	left: -3px;
}
.pricing .price span {
	color: #bababa;
	font-size: 16px;
	font-weight: 300;
}
.pricing img {
	padding: 30px 40px;
}
.pricing ul {
	padding: 0;
	list-style: none;
	color: #444444;
	text-align: center;
	line-height: 26px;
	font-size: 16px;
	margin-bottom: 25px;
}
.pricing ul li {
	padding-bottom: 10px;
}
.pricing ul .na {
	color: #ccc;
	text-decoration: line-through;
}
.pricing .btn-buy {
	display: inline-block;
	padding: 8px 40px 10px 40px;
	border-radius: 50px;
	color: #696cff;
	transition: none;
	font-size: 16px;
	font-weight: 400;
	font-family: "Nunito", sans-serif;
	font-weight: 600;
	transition: 0.3s;
	border: 1px solid #696cff;
}
.pricing .btn-buy:hover {
	background: #696cff;
	color: #fff;
}
.pricing .featured {
	width: 200px;
	position: absolute;
	top: 18px;
	right: -68px;
	transform: rotate(45deg);
	z-index: 1;
	font-size: 14px;
	padding: 1px 0 3px 0;
	background: #696cff;
	color: #fff;
}

/* Dark-theme integration for the v3 pricing page (batch8b) */
.v3-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
    margin: 2rem 0;
}

.pricing .box { color: #444444; display: flex; flex-direction: column; }
.pricing .box h3 { color: #1a1a1a; }
.pricing .box ul { flex-grow: 1; }
.pricing .box .price { color: #1a1a1a; }
.v3-price-note { color: #8a8a8a; font-size: 0.8rem; margin: 0.25rem 0 1rem; }

@media (max-width: 768px) {
    .pricing .box:hover { transform: none; }
}

/* Specificity + layout fixes for the v3 pricing page (batch8c) */
.v3-page-content .pricing {
    width: min(1180px, calc(100vw - 2.5rem));
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.v3-page-content .pricing .box ul {
    padding-left: 0;
    margin: 0 0 22px;
}

.v3-page-content .pricing .box li {
    color: #444444;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.45;
}

.v3-page-content .pricing .box li.na {
    color: #bbbbbb;
    text-decoration: line-through;
}

.v3-page-content .pricing .box h3 { color: #1a1a1a; }
.v3-page-content .pricing .box .price { color: #1a1a1a; }
.v3-page-content .pricing .box .v3-price-note { color: #8a8a8a; }

.pricing .box:hover { transform: none; box-shadow: 0px 0 30px rgba(1, 41, 112, 0.12); }

/* Native dark pricing cards (batch8d) */
.v3-page-content .v3-plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    width: min(1180px, calc(100vw - 2.5rem));
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 2.5rem 0;
}

.v3-plan {
    background: #161616;
    border: 1px solid #2c2c2c;
    border-radius: 14px;
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.v3-plan--featured {
    border-color: var(--primary, #696cff);
    box-shadow: 0 0 0 1px var(--primary, #696cff);
}

.v3-plan-badge {
    align-self: flex-start;
    background: rgba(105, 108, 255, 0.16);
    color: #9a9cff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
}

.v3-page-content .v3-plan-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.2rem;
}

.v3-page-content .v3-plan-for {
    color: #999999;
    font-size: 0.83rem;
    margin: 0 0 1.1rem;
    min-height: 2.4em;
}

.v3-plan-price {
    color: #ffffff;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1;
}

.v3-plan-price span {
    color: #8a8a8a;
    font-size: 0.85rem;
    font-weight: 400;
}

.v3-page-content .v3-plan-note {
    color: #8a8a8a;
    font-size: 0.78rem;
    line-height: 1.55;
    margin: 0.55rem 0 1.2rem;
}

.v3-page-content .v3-plan ul {
    list-style: none;
    margin: 0 0 1.4rem;
    padding: 1.1rem 0 0;
    border-top: 1px solid #2c2c2c;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex-grow: 1;
}

.v3-page-content .v3-plan li {
    color: #d6d6d6;
    font-size: 0.86rem;
    line-height: 1.45;
    margin: 0;
    padding-left: 1.35rem;
    position: relative;
}

.v3-page-content .v3-plan li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary, #696cff);
    font-weight: 600;
}

.v3-page-content .v3-plan li.off { color: #666666; }
.v3-page-content .v3-plan li.off::before { content: "–"; color: #555555; }

.v3-page-content .v3-plan .btn {
    width: 100%;
    text-align: center;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .v3-page-content .v3-plans { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .v3-page-content .v3-plans { grid-template-columns: 1fr; }
}

.v3-page-content .v3-plan .btn.btn-primary { color: #ffffff; }
.v3-page-content .v3-plan .btn.btn-primary:hover { color: #ffffff; }
