/* Plans Page Styles */

.plans-page-wrapper {
    background-color: #ffffff;
    padding: 60px 0;
    min-height: 100vh;
}

.plans-header {
    text-align: center;
    margin-bottom: 0px;
}

.unlock-exclusive-btn {
    display: inline-block;
    background-color: transparent;
    border: 2px solid #3b82f6;
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #1e40af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plans-header{margin-top:40px;}

.plans-title {
    font-size: 48px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.plans-description {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.plan-type-selector {
    display: flex;
    justify-content: center;
    gap: 0;
    background-color: #f3f4f6;
    border-radius: 25px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto;
}

.plan-type-btn {
    background-color: transparent;
    border: none;
    margin-top: 0px;
    padding: 12px 30px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-type-btn.active {
    background-color: #000000;
    color: #ffffff;
}

.plan-type-btn:hover:not(.active) {
    background-color: #e5e7eb;
}

/* Force 4 columns on desktop */
@media (min-width: 1024px) {
    .plans-page-wrapper .plans-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: #2563eb; /* blue highlight */
    box-shadow: 0 18px 40px -12px rgba(37, 99, 235, 0.35);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

/* Tinted accents on hover */
.plan-card:hover .addon-title,
.plan-card:hover .regular-label {
    color: #1f3a8a; /* deep blue text */
}

.plan-card:hover .plan-footer-banner {
    background: #1d4ed8; /* stronger blue banner on hover */
}

.plan-card:hover .get-started-btn {
    background-color: #1d4ed8;
}

.plan-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /*padding: 15px 25px;*/
    border-radius: 15px;
    color: #ffffff;
    font-weight: 600;
    min-width: 120px;
}

/*.plan-badge-blue {*/
/*    background-color: #3b82f6;*/
/*}*/

/*.plan-badge-green {*/
/*    background-color: #10b981;*/
/*}*/

/*.plan-badge-orange {*/
/*    background-color: #f59e0b;*/
/*}*/

/*.plan-badge-red {*/
/*    background-color: #ef4444;*/
/*}*/

.plan-data {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.plan-name {
    font-size: 14px;
    font-weight: 500;
    margin-top: 2px;
}

.plan-pricing {
    margin-top: 30px;
    margin-bottom: 30px;
}

.plan-old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 18px;
    margin-bottom: 5px;
}

.plan-price {
    font-size: 32px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 10px;
}

.plan-details {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.plan-features {
    text-align: left;
    margin-bottom: 30px;
}

.plan-features h3 {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #374151;
}

.checkmark {
    color: #10b981;
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
}

.get-started-btn {
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.get-started-btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

/* Add-on section under each card */
.plan-addon {
    /* margin-top: auto; */
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}
ul{
    font-size: small;
}

.addon-title {
    color: #374151;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.addon-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    color: #d3543b; /* warm orange like screenshot */
    margin-bottom: 12px;
}

.addon-currency {
    font-size: 18px;
    font-weight: 600;
}

.addon-amount {
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
}

.addon-per {
    font-size: 16px;
    font-weight: 600;
}

.addon-note {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
}

.addon-legal {
    color: #d3543b;
    font-size: 12px;
    font-weight: 700;
    margin-top: 6px;
    text-align: center;
}

/* Regular price section */
.plan-regular {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed #e5e7eb;
    text-align: center;
}

.regular-label {
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 6px;
}

.regular-strike {
    text-decoration: line-through;
    color: #9ca3af;
}

.regular-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    color: #d3543b;
    margin-bottom: 10px;
}

.regular-currency {
    font-size: 16px;
    font-weight: 600;
}

.regular-amount {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.regular-per {
    font-size: 14px;
    font-weight: 600;
}

.regular-note {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.5;
}

.regular-legal {
    color: #d3543b;
    font-size: 12px;
    font-weight: 700;
    margin-top: 6px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .plans-page-wrapper {
        padding: 40px 0;
    }
    
    .plans-title {
        font-size: 36px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .plan-card {
        padding: 25px;
    }
    
    .plan-type-selector {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .plan-type-btn {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .plans-title {
        font-size: 28px;
    }
    
    .plan-card {
        padding: 20px;
    }
    
    .plan-badge {
        padding: 12px 20px;
        min-width: 100px;
    }
    
    .plan-data {
        font-size: 20px;
    }
    
    .plan-price {
        font-size: 28px;
    }
}
