/* ============================================
   PRICING PAGE STYLES
   ============================================ */

/* Hero Small Version */
.hero-small {
    padding: 80px 32px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666666;
    text-align: center;
    margin-top: -24px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Cards */
.pricing-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Recommended Badge */
.pricing-card-recommended {
    border: 2px solid #2C5F8D;
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2C5F8D;
    color: #FFFFFF;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Tier Name */
.tier-name {
    font-size: 28px;
    font-weight: 700;
    color: #2C5F8D;
    margin-bottom: 16px;
    text-align: center;
}

/* Price */
.price {
    text-align: center;
    margin-bottom: 16px;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: #333333;
}

.price-period {
    font-size: 18px;
    color: #666666;
}

/* Perfect For */
.perfect-for {
    font-size: 16px;
    font-style: italic;
    color: #666666;
    background: #F8F9FA;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 24px;
}

/* Includes Text */
.includes {
    font-size: 16px;
    color: #666666;
    margin-bottom: 16px;
    text-align: center;
}

.includes strong {
    color: #2C5F8D;
}

/* Features List */
.features-list {
    list-style: none;
    margin: 24px 0 32px 0;
    padding: 0;
    flex-grow: 1;
}

.features-list li {
    font-size: 16px;
    color: #333333;
    padding: 12px 0;
    border-bottom: 1px solid #F8F9FA;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    background-color: #28A745;
    border-radius: 50%;
    vertical-align: middle;
}

/* Button Full Width */
.btn-full {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Pricing Note */
.pricing-note {
    text-align: center;
    margin-top: 64px;
    padding: 32px;
    background: #F8F9FA;
    border-radius: 8px;
}

.pricing-note p {
    font-size: 16px;
    color: #666666;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .tier-name {
        font-size: 24px;
    }
    
    .price-amount {
        font-size: 36px;
    }
}
