/* Pricing Page Styles */

:root {
    --bg-dark: #050505;
    --bg-card: #0A0A0A;
    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;
    --accent-gold: #C5A059;
    --accent-gold-hover: #D4B06A;
    --border-color: #222222;
}

/* Pricing Hero */
.pricing-hero {
    background: var(--bg-dark);
    padding: 160px 0 80px;
    text-align: center;
}

.pricing-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.pricing-hero h1 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-gray);
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--accent-gold);
    color: var(--text-white);
}

.tab-btn.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-dark);
    padding: 60px 0 80px;
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
}

.pricing-category-title {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    border-color: var(--accent-gold);
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.15);
}

.pricing-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 25px;
}

.price {
    margin-bottom: 10px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-gold);
}

.price-period {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 400;
}

.price-note {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.features-list li {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
    padding-left: 5px;
}

/* Card Buttons */
.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-buttons .btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
}

/* Pricing Notes */
.pricing-notes {
    max-width: 900px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-subtitle {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.note-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.note-icon {
    font-size: 24px;
}

.note-item span:last-child {
    font-size: 13px;
    color: var(--text-white);
    font-weight: 500;
}

/* CTA Section */
.pricing-cta {
    background: #0a0a0a;
    padding: 80px 0;
    text-align: center;
}

.pricing-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .notes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 140px 0 60px;
    }

    .pricing-tabs {
        flex-direction: column;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .notes-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        max-width: 280px;
        margin: 0 auto;
    }

    .pricing-cta h2 {
        font-size: 24px;
    }
}