body {
    background: #1a1d29;
    overflow-x: hidden;
}

.plan-detail-section {
    background: #1a1d29;
    padding: 2rem 1.5rem;
    min-height: calc(100vh - 150px);
    max-width: 1400px;
    margin: 0 auto;
}

.plan-header {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.plan-header h1 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.plan-header .plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.plan-header .popular-badge {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.plan-header p {
    color: #b0b3b8;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.pricing-cards-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: linear-gradient(135deg, #242838 0%, #2a3142 100%);
    border: 2px solid #007bff;
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    width: 280px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 123, 255, 0.3);
    border-color: #007bff;
}

.pricing-card.featured {
    border-color: #007bff;
    box-shadow: 0 0 32px rgba(0, 123, 255, 0.35);
    min-height: 320px;
}

.pricing-card.featured:hover {
    transform: translateY(-5px);
    border-color: #3d9bff;
    box-shadow: 0 12px 32px rgba(0, 123, 255, 0.4);
}

.option-badge {
    display: block;
    background: #007bff;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0 auto 0.75rem auto;
    text-align: center;
    width: fit-content;
}

.option-badge.popular {
    background: #28a745;
}

.price-display {
    margin: 0.75rem 0;
    text-align: center;
}

.price-amount {
    font-size: 2rem;
    color: white;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-period {
    color: #b0b3b8;
    font-size: 0.85rem;
}

.price-original {
    color: #888;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.price-savings {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.btn-option {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    margin-top: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    line-height: 1.2;
}

.btn-option i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.btn-option-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.78);
    margin-top: 0.5rem;
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
    min-height: 42px;
}

.btn-option-secondary:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.trial-inline-note {
    margin-top: 0.65rem;
    color: #4ade80;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

.trial-inline-note i {
    margin-right: 0.3rem;
}

.btn-option:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.btn-option-secondary:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.btn-option:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.features-section {
    background: #242838;
    border: 2px solid #007bff;
    border-radius: 16px;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-section h2 {
    color: white;
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.75rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: all 0.2s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 123, 255, 0.4);
    transform: translateX(4px);
}

.feature-item::before {
    content: "\2713";
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.feature-item-content {
    flex: 1;
}

.feature-item h3 {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.35rem 0;
}

.feature-item p {
    color: #b0b3b8;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .plan-detail-section {
        padding: 1.5rem 0.75rem;
    }
    
    .plan-header h1 {
        font-size: 1.5rem;
    }
    
    .pricing-cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 100%;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
