/* Pricing Page Styles - Dark Theme */

.pricing-hero {
    padding: 120px 20px 60px;
    text-align: center;
    background: #000000;
}

.pricing-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

.pricing-hero p {
    font-size: 20px;
    color: #a0a0a0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.pricing-section {
    padding: 60px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
    background: #000000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: #111111;
    border-radius: 24px;
    padding: 48px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid #222222;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: #333333;
}

.pricing-card.pro {
    border-color: #ffffff;
    background: #111111;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.pricing-card.pro:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: #ffffff;
    color: #000000;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.plan-description {
    font-size: 17px;
    color: #a0a0a0;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 24px 0;
    background: #1a1a1a;
    padding: 6px;
    border-radius: 12px;
    width: 100%;
}

.toggle-button {
    padding: 10px 24px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    color: #a0a0a0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.toggle-button.active {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.toggle-button:hover:not(.active) {
    color: #ffffff;
}

.save-label {
    font-size: 10px;
    font-weight: 700;
    color: #10B981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toggle-button.active .save-label {
    color: #10B981;
}

.plan-price {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.plan-price span {
    font-size: 12px;
    font-weight: 400;
    color: #a0a0a0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.plan-features li {
    padding: 14px 0;
    border-bottom: 1px solid #222222;
    font-size: 16px;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
}

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

.feature-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.feature-icon.check {
    color: #ffffff;
}

.feature-icon.cross {
    color: #333333;
}

.plan-cta {
    width: 100%;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    border: none;
    letter-spacing: 0.5px;
}

.plan-cta.primary {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.plan-cta.primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    background: #f0f0f0;
}

.plan-cta.primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.plan-cta.secondary {
    background: #222222;
    color: #666666;
    cursor: not-allowed;
    font-weight: 600;
}

.trial-notice {
    text-align: center;
    font-size: 14px;
    color: #a0a0a0;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.trial-notice strong {
    color: #ffffff;
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 80px 20px 40px;
    }

    .pricing-hero h1 {
        font-size: 40px;
    }

    .pricing-hero p {
        font-size: 18px;
    }

    .pricing-section {
        padding: 40px 20px 80px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card.pro {
        transform: scale(1);
    }

    .pricing-card.pro:hover {
        transform: translateY(-12px);
    }

    .plan-name {
        font-size: 28px;
    }

    .plan-price {
        font-size: 44px;
    }
}
