/* 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(3, 1fr);
    gap: 24px;
}

/* Cards */
.pmp-card {
    background: #fff;
    border: 1.5px solid #E8ECF1;
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.pmp-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.pmp-card.pmp-popular {
    border-color: #2563EB;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}

.pmp-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: #2563EB;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Card Header */
.pmp-card-header {
    margin-bottom: 28px;
}

.pmp-card-header h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 6px;
}

.pmp-card-desc {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #94A3B8;
    margin: 0 0 24px;
    line-height: 1.5;
}

/* Price */
.pmp-card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 10px;
}

.pmp-curr {
    font-family: 'Ubuntu', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1;
    align-self: flex-start;
    margin-top: 8px;
}

.pmp-amount {
    font-family: 'Ubuntu', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1;
    letter-spacing: -1px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pmp-period {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #94A3B8;
    margin-left: 4px;
    white-space: nowrap;
}

/* Custom pricing */
.pmp-card-price-custom {
    min-height: 60px;
    align-items: center;
    margin-bottom: 10px;
}

.pmp-custom-label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -1px;
}

/* Team price chip */
.pmp-team-price {
    margin-bottom: 4px;
}

.pmp-team-chip {
    display: inline-flex;
    align-items: center;
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #64748B;
    background: #F1F5F9;
    padding: 5px 12px;
    border-radius: 8px;
    gap: 1px;
    transition: opacity 0.2s ease;
}

.pmp-team-curr,
.pmp-team-amount {
    font-weight: 600;
    color: #334155;
}

.pmp-team-price-spacer {
    min-height: 32px;
}

/* Billing Note */
.pmp-billing-note {
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    color: #94A3B8;
    margin: 6px 0 0;
}

/* CTA Button */
.pmp-card-btn {
    display: block;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 24px;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 28px;
    transition: all 0.2s ease;
}

.pmp-card-btn.outline {
    color: #0F172A;
    background: #fff;
    border: 1.5px solid #D1D9E0;
}

.pmp-card-btn.outline:hover {
    border-color: #94A3B8;
    background: #F8FAFC;
}

.pmp-card-btn.filled {
    color: #fff;
    background: #2563EB;
    border: 1.5px solid #2563EB;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.pmp-card-btn.filled:hover {
    background: #1D4ED8;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* 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: 11px;
}

.pmp-card-features li {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
}

.pmp-card-features li i {
    color: #10B981;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Section Title (shared) ── */
.pmp-section-title {
    text-align: center;
    margin-bottom: 52px;
}
.pmp-section-title h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 10px;
    letter-spacing: -0.4px;
}
.pmp-section-title p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    color: #64748B;
    margin: 0;
}

/* ── Comparison Table ── */
.pmp-compare-section {
    padding: 80px 0;
    background: #F8FAFC;
}
.pmp-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1.5px solid #E8ECF1;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.pmp-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    min-width: 640px;
}
.pmp-compare-table thead tr {
    background: #0F172A;
}
.pmp-compare-table th {
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}
.pmp-th-feature {
    text-align: left !important;
    width: 38%;
}
.pmp-th-pop {
    background: #2563EB !important;
}
.pmp-compare-table td {
    padding: 13px 20px;
    border-bottom: 1px solid #F1F5F9;
    color: #334155;
    text-align: center;
    vertical-align: middle;
}
.pmp-compare-table td:first-child {
    text-align: left;
    color: #1E293B;
    font-weight: 500;
}
.pmp-compare-table tbody tr:last-child td { border-bottom: none; }
.pmp-compare-table tbody tr:hover { background: #FAFBFD; }
.pmp-pop-col { background: rgba(37,99,235,0.03); }
.pmp-group-row td {
    background: #EEF2FF;
    color: #2563EB;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px 20px;
    text-align: left !important;
}
.pmp-yes { color: #10B981; font-size: 14px; }
.pmp-no  { color: #CBD5E1; font-size: 14px; }
.pmp-val { color: #2563EB; font-weight: 600; font-size: 13px; }

/* ── FAQ ── */
.pmp-faq-section {
    padding: 80px 0;
    background: #fff;
}
.pmp-faq-link {
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
}
.pmp-faq-link:hover { text-decoration: underline; }
.pmp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pmp-faq-item {
    border-bottom: 1px solid #E8ECF1;
}
.pmp-faq-item:first-child { border-top: 1px solid #E8ECF1; }
.pmp-faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0F172A;
    transition: color 0.2s ease;
}
.pmp-faq-btn:hover { color: #2563EB; }
.pmp-faq-btn[aria-expanded="true"] { color: #2563EB; }
.pmp-faq-icon {
    font-size: 13px;
    color: #94A3B8;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.pmp-faq-btn[aria-expanded="true"] .pmp-faq-icon {
    transform: rotate(45deg);
    color: #2563EB;
}
.pmp-faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.pmp-faq-body.open {
    max-height: 400px;
    padding-bottom: 20px;
}
.pmp-faq-body p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
    padding-right: 32px;
}

/* ── Contact ── */
.pmp-contact-section {
    padding: 80px 0 100px;
    background: #F8FAFC;
}
.pmp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 0 auto;
}
.pmp-contact-card {
    background: #fff;
    border: 1.5px solid #E8ECF1;
    border-radius: 20px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.pmp-contact-featured {
    border-color: #2563EB;
    box-shadow: 0 8px 32px rgba(37,99,235,0.1);
}
.pmp-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #64748B;
    margin-bottom: 4px;
}
.pmp-contact-icon-blue {
    background: #EFF6FF;
    color: #2563EB;
}
.pmp-contact-card h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}
.pmp-contact-card p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0 0 8px;
    flex-grow: 1;
}
.pmp-contact-card .pmp-card-btn {
    margin-bottom: 0;
    width: 100%;
}

/* ── 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-compare-section { padding: 60px 0; }
    .pmp-section-title h2 { font-size: 26px; }
    .pmp-faq-section { padding: 60px 0; }
    .pmp-contact-section { padding: 60px 0 80px; }
    .pmp-contact-grid { grid-template-columns: 1fr; max-width: 100%; }
    .pmp-contact-card { padding: 32px 24px; }
}
