.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Pricing section */
.pricing-section {
    padding: 80px 0;
}

/* Pricing grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        margin: 5px auto;
        padding: 25px;
    }
    .featured-badge {
        font-size: 11px;
    }
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid #e2e8f0;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 30px;
}

.dark-theme .pricing-card {
    background-color: #1e293b;
    border-color: #334155;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border: 1px solid #3b82f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.2);
}

.pricing-tier {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.dark-theme .pricing-tier {
    color: #f8fafc;
}

.pricing-price {
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
}

.dark-theme .pricing-price {
    color: #e2e8f0;
}

.pricing-price:before {
    content: "$";
    font-size: 1rem;
    font-weight: 300;
    vertical-align: super;
    margin-right: 2px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-period {
    font-size: 16px;
    font-weight: 400;
    color: #64748b;
}

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

.pricing-features li {
    list-style: none;
    padding: 8px 0;
    color: #475569;
}

.dark-theme .pricing-features li {
    color: #94a3b8;
}

.pricing-button {
    width: 100%;
    padding: 12px;
    background: white;
    color: #3b82f6;
    border: 1px solid #3b82f6;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dark-theme .pricing-button {
    background-color: #3b82f6;
    color: white;
}

.pricing-button:hover {
    background: #eff6ff;
}

.pricing-button.primary {
    background: #3b82f6;
    color: white;
}

.pricing-button.primary:hover {
    background: #1d4ed8;
}
