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;
}

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

.plan-header .plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF5C00 0%, #e65100 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(255, 92, 0, 0.3);
}

.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 #FF5C00;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 300px;
    max-width: 350px;
    box-shadow: 0 8px 24px rgba(255, 92, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(255, 92, 0, 0.3);
}

.pricing-card img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    margin: 0 auto 1rem;
    display: block;
    border: 2px solid rgba(255, 92, 0, 0.3);
}

.price-display {
    margin: 1rem 0;
}

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

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

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

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

.features-section {
    background: #242838;
    border: 2px solid #FF5C00;
    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 #FF5C00;
    padding-bottom: 0.75rem;
}

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

.feature-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 92, 0, 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(255, 92, 0, 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%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
