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

.pricing-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    font-family: 'Inter', -apple-system, sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}

.pricing-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Header */
.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 16px;
}

.pricing-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.pricing-header p {
    color: #999;
    font-size: 1rem;
    margin: 0;
}

/* Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

/* Cards */
.pricing-card {
    background: #111;
    border: 2px solid #222;
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent, #66bb6a);
    box-shadow: 0 0 30px rgba(102, 187, 106, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -11px;
    right: 20px;
    background: var(--accent, #66bb6a);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent, #66bb6a);
    margin: 4px 0 8px;
    line-height: 1;
}

.pricing-currency {
    font-size: 1.2rem;
    vertical-align: super;
    margin-right: 2px;
}

.pricing-period {
    font-size: 0.9rem;
    font-weight: 400;
    color: #777;
}

.pricing-description {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 16px;
    min-height: 40px;
}

/* Buttons */
.pricing-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--accent, #66bb6a);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
}

.pricing-btn:hover {
    background: #5aa503;
    transform: translateY(-1px);
}

.pricing-btn.secondary {
    background: #222;
    border: 1px solid #333;
}

.pricing-btn.secondary:hover {
    background: #2a2a2a;
    border-color: #444;
}

/* Billing toggle */
.billing-toggle {
    display: flex;
    gap: 0;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 6px;
    overflow: hidden;
    padding: 3px;
    margin-bottom: 12px;
}

.billing-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    color: #777;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.billing-option input[type="radio"] {
    display: none;
}

.billing-option.active {
    background: var(--accent, #66bb6a);
    color: #fff;
}

.billing-option:hover:not(.active) {
    color: #ccc;
}

.save-badge {
    background: #e53935;
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 700;
}

/* Feature lists */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.pricing-features li::before {
    font-weight: bold;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.pricing-features li.included {
    color: #ccc;
}

.pricing-features li.included::before {
    content: '✓';
    color: var(--accent, #66bb6a);
}

.pricing-features li.excluded {
    color: #555;
}

.pricing-features li.excluded::before {
    content: '—';
    color: #444;
}

/* Footer links */
.pricing-links {
    text-align: center;
    margin-top: 32px;
    font-size: 0.9rem;
}

.pricing-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.pricing-links a:hover {
    color: var(--accent, #66bb6a);
}

.pricing-links-divider {
    color: #444;
    margin: 0 8px;
}

.pricing-footer {
    text-align: center;
    margin-top: 24px;
    padding: 16px 0;
    color: #555;
    font-size: 0.8rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        order: -1;
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        order: -1;
    }

    .pricing-description {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .pricing-page {
        padding: 24px 12px;
    }

    .pricing-header h1 {
        font-size: 1.6rem;
    }

    .pricing-card {
        padding: 20px 16px;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.82rem;
        padding: 6px 0;
    }
}
