/* Project Management Pricing - Page Styles */

.pmp-pricing-hero {
    padding: 80px 0 100px;
    background: #fff;
}

.pmp-hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.pmp-badge {
    display: inline-block;
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #2563EB;
    background: #EFF6FF;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.pmp-hero-content h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.pmp-hero-content p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 17px;
    color: #64748B;
    margin: 0;
}

/* Billing Switcher */
.pmp-billing-switcher {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.pmp-switcher-track {
    display: inline-flex;
    position: relative;
    background: #F1F5F9;
    border-radius: 12px;
    padding: 4px;
}

.pmp-switch-btn {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 28px;
    border: none;
    background: transparent;
    color: #64748B;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 0.25s ease;
    border-radius: 10px;
}

.pmp-switch-btn.active {
    color: #0F172A;
    font-weight: 600;
}

.pmp-switch-indicator {
    position: absolute;
    top: 4px;
    height: calc(100% - 8px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    z-index: 1;
}

.pmp-save-tag {
    font-size: 11px;
    color: #10B981;
    font-weight: 600;
}

/* Currency Toggle */
.pmp-currency-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.pmp-curr-btn {
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 8px;
    border: 1.5px solid #E2E8F0;
    background: #fff;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pmp-curr-btn.active {
    background: #0F172A;
    color: #fff;
    border-color: #0F172A;
}

.pmp-curr-btn:hover:not(.active) {
    border-color: #CBD5E1;
}

/* Pricing Grid */
.pmp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Cards */
.pmp-card {
    background: #fff;
    border: 1.5px solid #E8ECF1;
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.pmp-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.pmp-card.popular {
    border-color: #2563EB;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}

.pmp-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #2563EB;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.pmp-card-header {
    margin-bottom: 24px;
}

.pmp-card-header h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 4px;
}

.pmp-card-desc {
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    color: #94A3B8;
    margin: 0 0 18px;
}

.pmp-card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pmp-curr {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
}

.pmp-amount {
    font-family: 'Ubuntu', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pmp-period {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #94A3B8;
    margin-left: 4px;
}

/* CTA Button */
.pmp-card-btn {
    display: block;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 28px;
    transition: all 0.2s ease;
}

.pmp-card-btn.outline {
    color: #0F172A;
    background: #fff;
    border: 1.5px solid #E2E8F0;
}

.pmp-card-btn.outline:hover {
    border-color: #CBD5E1;
    background: #F8FAFC;
}

.pmp-card-btn.filled {
    color: #fff;
    background: #2563EB;
    border: 1.5px solid #2563EB;
}

.pmp-card-btn.filled:hover {
    background: #1D4ED8;
}

/* Feature List */
.pmp-card-features {
    border-top: 1px solid #F1F5F9;
    padding-top: 24px;
}

.pmp-features-label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 14px;
}

.pmp-card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pmp-card-features li {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pmp-card-features li i {
    color: #10B981;
    font-size: 12px;
    flex-shrink: 0;
}

/* Enterprise */
.pmp-enterprise {
    background: #F8FAFC;
    border: 1.5px solid #E8ECF1;
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.pmp-enterprise-info h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 6px;
}

.pmp-enterprise-info p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #64748B;
    margin: 0;
    max-width: 600px;
    line-height: 1.6;
}

.pmp-enterprise .pmp-card-btn {
    margin-bottom: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .pmp-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pmp-pricing-hero { padding: 60px 0 80px; }
    .pmp-hero-content h1 { font-size: 32px; }
    .pmp-pricing-grid { grid-template-columns: 1fr; }
    .pmp-enterprise {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 32px 24px;
    }
}
