.csn8n-plans-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.csn8n-plans-header {
    text-align: center;
    margin-bottom: 60px;
}

.csn8n-plans-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.csn8n-plans-header p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.csn8n-billing-toggle {
    display: inline-flex;
    gap: 10px;
    background: #f5f7fa;
    padding: 5px;
    border-radius: 50px;
}

.csn8n-toggle-btn {
    padding: 12px 30px;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.csn8n-toggle-btn.active {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.discount-badge {
    background: #46b450;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    margin-left: 5px;
}

.csn8n-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.csn8n-plan-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.csn8n-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.csn8n-plan-card.recommended {
    border-color: #0073aa;
    transform: scale(1.05);
}

.csn8n-plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.csn8n-plan-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.csn8n-plan-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.csn8n-plan-price {
    margin: 30px 0;
    text-align: center;
}

.csn8n-plan-price .currency {
    font-size: 20px;
    vertical-align: top;
    margin-right: 5px;
}

.csn8n-plan-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: #0073aa;
}

.csn8n-plan-price .period {
    font-size: 16px;
    color: #666;
}

.csn8n-plan-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.csn8n-plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.csn8n-plan-features li i {
    color: #46b450;
    font-size: 16px;
    margin-top: 2px;
}

.csn8n-plan-features li i.fa-info-circle {
    color: #0073aa;
}

.csn8n-plan-cta {
    margin-top: 30px;
}

.csn8n-btn-plan {
    display: block;
    width: 100%;
    padding: 16px;
    background: #0073aa;
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.csn8n-btn-plan:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
    color: white;
}

.csn8n-plan-card.recommended .csn8n-btn-plan {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.csn8n-plan-trial {
    text-align: center;
    margin-top: 15px;
}

.csn8n-plan-trial small {
    color: #46b450;
    font-weight: 600;
}

.csn8n-plans-faq {
    margin-top: 80px;
    text-align: center;
}

.csn8n-plans-faq h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.csn8n-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.csn8n-faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.csn8n-faq-item h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.csn8n-faq-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .csn8n-plans-grid {
        grid-template-columns: 1fr;
    }
    
    .csn8n-plan-card.recommended {
        transform: scale(1);
    }
}