/* ===========================
   PLOTRESUME MODERN PRICING PAGE
=========================== */


.pricing-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: #002d6b;
}

.pricing-header p {
    color: #4a5568;
    font-size: 18px;
    margin-top: 10px;
}

/* ===========================
   BILLING TOGGLE
=========================== */

.toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}

.toggle-label {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.discount-badge {
    background: #3f6ac9;
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    margin-left: 4px;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 58px;
    height: 28px;
}

.switch input { display: none; }

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #3f6ac9;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

/* ===========================
   PRICING GRID
=========================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

/* Card Styling */
.pricing-card {
    padding: 30px;
    background: #ffffffc7;
    backdrop-filter: blur(6px);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.plan-title {
    font-size: 22px;
    font-weight: 700;
    color: #002d6b;
}

.plan-desc {
    font-size: 14px;
    margin-bottom: 24px;
    color: #555;
}

/* Featured Card */
.featured {
    background: linear-gradient(135deg, #3f6ac9, #002d6b);
    color: #fff;
}

.featured .plan-title,
.featured .plan-desc,
.featured .features li {
    color: #fff !important;
}

.badge {
    position: absolute;
    top: 5px;
    right: 20px;
    background: #ffb400;
    color: #111;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
}

/* Pricing Display */
.price {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #002d6b;
}

.featured .price {
    color: #fff;
}

.price .currency {
    font-size: 22px;
    margin-right: 2px;
}

.price .duration {
    font-size: 14px;
    color: #4a5568;
}

.featured .duration {
    color: #dce6ff;
}

ol, ul {
    padding-left: 0.5rem !important;
}

/* Features */
.features {
    list-style: none;
    margin-bottom: 25px;
}

.features li {
    padding: 6px 0;
    font-size: 15px;
    color: #444;
    list-style-type: none;
}

.features li::before {
    content: "✔";
    margin-right: 8px;
    color: #3f6ac9;
}

.featured .features li::before {
    color: #fff;
}

/* Buttons */
.pricing-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: #002d6b;
    color: white;
    border: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: #3f6ac9;
    transform: translateY(-2px);
}

.featured-btn {
    background: #ffb400;
    color: #111;
}

.featured-btn:hover {
    background: #ffd45e;
}

/* Responsive */
@media(max-width: 640px) {
    .pricing-header h1 {
        font-size: 32px;
    }
}
