/* Performance Management Pricing - Page Styles */

.perf-pricing-hero {
    padding: 80px 0 100px;
    background: #fff;
}

.perf-hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.perf-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;
}

.perf-hero-content h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.perf-hero-content p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 17px;
    color: #64748B;
    margin: 0;
}

/* Billing Switcher */
.perf-billing-switcher {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.perf-switcher-track {
    display: inline-flex;
    position: relative;
    background: #F1F5F9;
    border-radius: 12px;
    padding: 4px;
}

.perf-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;
}

.perf-switch-btn.active {
    color: #0F172A;
    font-weight: 600;
}

.perf-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;
}

.perf-save-tag {
    font-size: 11px;
    color: #10B981;
    font-weight: 600;
}

/* Currency Toggle */
.perf-currency-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.perf-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;
}

.perf-curr-btn.active {
    background: #0F172A;
    color: #fff;
    border-color: #0F172A;
}

.perf-curr-btn:hover:not(.active) {
    border-color: #CBD5E1;
}

/* Pricing Grid */
.perf-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Cards */
.perf-card {
    background: #fff;
    border: 1.5px solid #E8ECF1;
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.perf-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.perf-card.popular {
    border-color: #2563EB;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
}

.perf-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;
}

.perf-card-header {
    margin-bottom: 28px;
}

.perf-card-header h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 4px;
}

.perf-card-desc {
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    color: #94A3B8;
    margin: 0 0 18px;
}

.perf-card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.perf-curr {
    font-family: 'Ubuntu', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1;
    align-self: flex-start;
    margin-top: 8px;
}

.perf-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;
}

.perf-period {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #94A3B8;
    margin-left: 4px;
    white-space: nowrap;
}

.perf-card-price-custom {
    min-height: 60px;
    align-items: center;
    margin-bottom: 10px;
}

.perf-custom-label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -1px;
}

/* Team price chip */
.perf-team-price {
    margin-bottom: 4px;
}

.perf-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;
}

.perf-team-curr,
.perf-team-amount {
    font-weight: 600;
    color: #334155;
}

.perf-team-price-spacer {
    min-height: 32px;
}

/* CTA Button */
.perf-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;
}

.perf-card-btn.outline {
    color: #0F172A;
    background: #fff;
    border: 1.5px solid #E2E8F0;
}

.perf-card-btn.outline:hover {
    border-color: #CBD5E1;
    background: #F8FAFC;
}

.perf-card-btn.filled {
    color: #fff;
    background: #2563EB;
    border: 1.5px solid #2563EB;
}

.perf-card-btn.filled:hover {
    background: #1D4ED8;
}

/* Feature List */
.perf-card-features {
    border-top: 1px solid #F1F5F9;
    padding-top: 24px;
}

.perf-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;
}

.perf-card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.perf-card-features li {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}

.perf-card-features li i {
    color: #10B981;
    font-size: 12px;
    flex-shrink: 0;
}

/* ── Section title (shared) ── */
.perf-section-title {
    text-align: center;
    margin-bottom: 52px;
}
.perf-section-title h2 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 10px;
}
.perf-section-title p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    color: #64748B;
    margin: 0;
}
.perf-section-title p a {
    color: #2563EB;
    text-decoration: none;
}
.perf-section-title p a:hover { text-decoration: underline; }

/* ── Comparison Table ── */
.perf-compare-section {
    padding: 80px 0;
    background: #F8FAFC;
}
.perf-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.perf-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}
.perf-compare-table thead th {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    padding: 16px 20px;
    text-align: center;
    background: #fff;
    border-bottom: 2px solid #F1F5F9;
}
.perf-th-feature { text-align: left !important; color: #94A3B8 !important; font-weight: 600 !important; }
.perf-th-pop {
    background: #2563EB !important;
    color: #fff !important;
}
.perf-compare-table tbody td {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #334155;
    padding: 13px 20px;
    border-bottom: 1px solid #F1F5F9;
    text-align: center;
}
.perf-compare-table tbody td:first-child {
    text-align: left;
    color: #475569;
}
.perf-compare-table tbody tr:last-child td { border-bottom: none; }
.perf-compare-table tbody tr:hover td { background: #FAFBFD; }
.perf-group-row td {
    background: #EEF2FF !important;
    color: #2563EB !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 10px 20px !important;
}
.perf-pop-col { background: rgba(37,99,235,0.03); }
.perf-yes { color: #10B981; font-size: 14px; }
.perf-no  { color: #CBD5E1; font-size: 14px; }
.perf-val { color: #2563EB; font-weight: 600; font-size: 13px; }

/* ── FAQ ── */
.perf-faq-section {
    padding: 80px 0;
    background: #fff;
}
.perf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.perf-faq-item {
    border-bottom: 1px solid #E8ECF1;
}
.perf-faq-item:first-child { border-top: 1px solid #E8ECF1; }
.perf-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 4px;
    background: none;
    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;
}
.perf-faq-btn:hover { color: #2563EB; }
.perf-faq-btn[aria-expanded="true"] { color: #2563EB; }
.perf-faq-icon {
    font-size: 13px;
    color: #94A3B8;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.perf-faq-btn[aria-expanded="true"] .perf-faq-icon {
    transform: rotate(45deg);
    color: #2563EB;
}
.perf-faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.perf-faq-body.open {
    max-height: 400px;
    padding-bottom: 20px;
}
.perf-faq-body p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
    padding: 0 4px;
}

/* ── Contact ── */
.perf-contact-section {
    padding: 80px 0 100px;
    background: #F8FAFC;
}
.perf-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.perf-contact-card {
    background: #fff;
    border: 1.5px solid #E8ECF1;
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    transition: box-shadow 0.2s ease;
}
.perf-contact-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.perf-contact-featured {
    border-color: #2563EB;
    box-shadow: 0 8px 32px rgba(37,99,235,0.1);
}
.perf-contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 20px;
    color: #64748B;
}
.perf-contact-icon.blue {
    background: #EFF6FF;
    color: #2563EB;
}
.perf-contact-card h3 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 10px;
}
.perf-contact-card p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0 0 24px;
}
.perf-contact-btn {
    display: inline-block;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.perf-contact-btn.outline {
    color: #0F172A;
    background: #fff;
    border: 1.5px solid #E2E8F0;
}
.perf-contact-btn.outline:hover {
    border-color: #CBD5E1;
    background: #F8FAFC;
}
.perf-contact-btn.filled {
    color: #fff;
    background: #2563EB;
    border: 1.5px solid #2563EB;
}
.perf-contact-btn.filled:hover { background: #1D4ED8; }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .perf-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .perf-pricing-hero { padding: 60px 0 80px; }
    .perf-hero-content h1 { font-size: 32px; }
    .perf-pricing-grid { grid-template-columns: 1fr; }
    .perf-section-title h2 { font-size: 26px; }
    .perf-contact-grid { grid-template-columns: 1fr; }
}
