/* Pricing Page Custom Styles */

/* Tab Switcher Styles */
.tab-switcher {
    margin-bottom: 3rem;
}

.tab-buttons {
    background: white;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    color: #666;
    min-width: 120px;
}

.tab-btn.active {
    background: #333;
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.tab-btn:hover:not(.active) {
    background: #f5f5f5;
    color: #333;
}

/* Custom Tab Styling for Bootstrap Tabs */
.tab-style-04 {
    border: none !important;
    background: transparent !important;
}

.tab-style-04 .nav-tabs {
    border: none !important;
    background: transparent !important;
}

.nav-tabs .nav-item {
    margin: 0;
}

.nav-tabs .nav-link {
    border: none;
    padding: 12px 32px;
    font-size: 1rem !important;
    font-weight: 600;
    color: #000000;
    background: transparent;
    transition: all 0.3s ease;
    margin: 0;
    min-width: 160px;
    text-align: center;
}

.nav-tabs .nav-link:hover {
    background: #f9dfdc !important;
    color: #333 !important;
    border: none !important;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #ff6557 0%, #ff367c 100%) !important;
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(181, 107, 247, 0.3);
    transform: translateY(-1px);
}

.nav-tabs .tab-bg-active {
    display: none;
}

@media (max-width: 768px) {
    .nav-tabs .nav-link {
        padding: 10px 24px;
        font-size: 1rem;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .nav-tabs .nav-link {
        padding: 8px 20px;
        font-size: 0.95rem;
        min-width: 120px;
    }
}

.tab-text {
    display: block;
    font-size: 2rem;
    font-weight: 600;
}

.save-badge {
    display: block;
    font-size: 10px;
    color: #ff6b6b;
    font-weight: 700;
    margin-top: 2px;
}

.tab-btn.active .save-badge {
    color: #ffb3b3;
}

.tab-content {
    margin-top: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

@media (max-width: 768px) {
    .tab-btn {
        padding: 10px 16px;
        min-width: 100px;
    }
    
    .tab-text {
        font-size: 13px;
    }
    
    .save-badge {
        font-size: 9px;
    }
}

/* Modern Pricing Cards Styling */
.modern-pricing-container {
    margin: 0;
    padding: 0 10rem;
}

@media (max-width: 768px) {
    .modern-pricing-container {
        padding: 0 5rem;
    }
}

@media (max-width: 480px) {
    .modern-pricing-container {
        padding: 0 2rem;
    }
}

.pricing-header-section {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.modern-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.modern-pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.modern-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.card-gradient-header {
    height: 8px;
    position: relative;
}

.card-gradient-header.individuals {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.card-gradient-header.teams {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.card-gradient-header.enterprise {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.trial-badge {
    position: absolute;
    top: -2px;
    right: 2px;
    background: #1a1a1a;
    color: white;
    padding: 2px 12px;
    border-bottom-left-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-content {
    padding: 2rem;
}

@media (max-width: 1024px) {
    .card-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .card-content {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .card-content {
        padding: 1rem;
    }
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.card-price {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1.2rem;
    color: #aaa;
    font-weight: 600;
    text-decoration: line-through;
}

.price-separator {
    height: 1px;
    background: #e5e7eb;
    margin: 1.5rem 0;
}

@media (max-width: 1024px) {
    .card-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .card-price {
        font-size: 3rem;
        margin-bottom: 0.4rem;
    }
    
    .original-price {
        font-size: 1.1rem;
    }
    
    .price-separator {
        margin: 1.2rem 0;
    }
}

@media (max-width: 768px) {
    .card-title {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .card-price {
        font-size: 2.5rem;
        margin-bottom: 0.3rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    .price-separator {
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .card-price {
        font-size: 2rem;
        margin-bottom: 0.2rem;
    }
    
    .original-price {
        font-size: 0.9rem;
    }
    
    .price-separator {
        margin: 0.8rem 0;
    }
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.card-features li {
    padding: 0.2rem 0;
    color: #1a1a1a;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.card-features li b {
    white-space: nowrap;
    display: inline;
}

.card-features li {
    flex-wrap: wrap;
    gap: 0.25rem;
}

.card-features li b + * {
    display: inline;
    white-space: nowrap;
}


.card-features li:before {
    content: "✓";
    color: #ffffff;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem;
    height: 1.2rem;
    background: rgb(0, 184, 58);
    border-radius: 50%;
    flex-shrink: 0;
}

.card-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: linear-gradient(135deg, #b56bf7 0%, #726dff 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.card-button:hover {
    background: linear-gradient(135deg, #b56bf7 0%, #fecfef 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.card-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.popular-card {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.popular-card:hover {
    transform: scale(1.05) translateY(-5px);
}

@media (max-width: 1024px) {
    .modern-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .popular-card {
        transform: none;
    }
    
    .popular-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .modern-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-main-title {
        font-size: 3rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
}

/* Yearly plans styling */
.yearly-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 100%;
    margin: 0;
}

@media (max-width: 768px) {
    .yearly-pricing-grid {
        grid-template-columns: 1fr;
    }
}


