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

.pricing-card {
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    background: #ffffff;
}

.pricing-card.featured {
    border: 2px solid var(--accent-color, #ff6600);
    box-shadow: 0 8px 32px rgba(255, 102, 0, 0.15);
    transform: scaleY(1.05);
}

.pricing-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color, #ff6600);
}

.pricing-badge {
    display: inline-block;
    background: var(--accent-color, #ff6600);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 1rem 0 0.25rem 0;
    letter-spacing: -0.02em;
}

.price-period {
    color: #737373;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-cta {
    width: 100%;
    margin-top: 2rem;
    font-weight: 600;
    padding: 0.875rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-cta-primary {
    background: var(--accent-color, #ff6600);
    color: white;
    border: none;
}

.pricing-cta-primary:hover {
    background: #e65c00;
    color: white;
}

.pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-feature-list li {
    padding: 0.75rem 0;
    color: #525252;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
}

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

.pricing-feature-list i {
    color: #28A745;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.pricing-section-hero {
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.comparison-table {
    margin-top: 3rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.comparison-table th {
    background: #1a1a1a;
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-color, #ff6600);
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    color: #525252;
}

.comparison-table tr:hover {
    background: #fafafa;
}

.faq-section {
    background: #fafafa;
    padding: 4rem 0;
}

.tier-description {
    color: #737373;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.glowing-accent {
    position: relative;
    overflow: hidden;
}

.glowing-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    animation: glow 3s infinite;
}

@keyframes glow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}
