/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background: var(--bg);
}

.pricing-section .section-header {
    margin-bottom: 50px;
}

.pricing-section .section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.pricing-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--card);
    border-radius: 16px;
    padding: 30px;
    border: 2px solid var(--border);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.pricing-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.pricing-price {
    text-align: center;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-monthly {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-yearly {
    background: var(--light-blue);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.price-yearly-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.price-yearly-amount {
    margin: 0;
}

.price-yearly-amount .strike {
    text-decoration: line-through;
    color: #dc3545;
    font-size: 0.9rem;
}

.price-yearly-amount strong {
    color: var(--primary);
    font-size: 1.3rem;
}

.price-yearly-billed {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 5px 0 0;
}

.pricing-features {
    flex: 1;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    width: 20px;
    text-align: center;
}

.feature-item.included i {
    color: #28a745;
}

.feature-item.not-included i {
    color: #dc3545;
}

.feature-item.not-included span {
    color: var(--text-secondary);
}

.feature-item strong {
    margin-left: auto;
    color: var(--primary);
    font-size: 0.9rem;
}

.pricing-action {
    text-align: center;
}

.pricing-action .btn {
    width: 100%;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.btn-info {
    background: #17a2b8;
    border-color: #17a2b8;
    color: white;
}

.btn-info:hover {
    background: #138496;
    border-color: #138496;
    color: white;
}

.pricing-note {
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-note p {
    margin-bottom: 10px;
}

.link-primary {
    color: var(--primary);
    font-weight: 600;
}

.link-primary:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
