/* === PRICING PAGE === */

/* ── Hero ── */
.fp-pricing-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding-top: 3.5rem;
    padding-bottom: 1rem;
}

.fp-pricing-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.fp-pricing-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

/* ── Toggle ── */
.fp-pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    padding: 0.4rem 1.2rem;
    margin-bottom: 0.5rem;
}

.fp-toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #a0aec0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}

.fp-toggle-label--active {
    color: #1a202c;
}

.fp-toggle-badge {
    background: #48bb78;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 1px 7px;
    letter-spacing: 0.3px;
}

.fp-toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.fp-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.fp-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #cbd5e0;
    border-radius: 24px;
    transition: background 0.25s;
}

.fp-toggle-slider:before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.fp-toggle-switch input:checked + .fp-toggle-slider {
    background: #e53e3e;
}

.fp-toggle-switch input:checked + .fp-toggle-slider:before {
    transform: translateX(20px);
}

/* ── Section ── */
.fp-pricing-section {
    background: #f7fafc;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

/* ── Plan card ── */
.fp-plan-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 2rem 1.75rem 2rem;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.fp-plan-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}

.fp-plan-card--pro {
    border-color: #e53e3e;
    box-shadow: 0 8px 28px rgba(229,62,62,0.12);
}

.fp-plan-card--pro:hover {
    box-shadow: 0 16px 40px rgba(229,62,62,0.18);
}

.fp-plan-card--liga {
    border-color: #805ad5;
    box-shadow: 0 8px 28px rgba(128,90,213,0.1);
}

.fp-plan-card--liga:hover {
    box-shadow: 0 16px 40px rgba(128,90,213,0.16);
}

.fp-plan-badge-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #e53e3e;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(229,62,62,0.3);
}

.fp-plan-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.fp-plan-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.fp-plan-card--pro .fp-plan-icon {
    color: #e53e3e;
}

.fp-plan-card--liga .fp-plan-icon {
    color: #805ad5;
}

.fp-plan-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.fp-plan-tagline {
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.5;
}

/* ── Price display ── */
.fp-plan-price {
    text-align: center;
    margin-bottom: 0.15rem;
}

.fp-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
}

.fp-price-amount--pro {
    color: #e53e3e;
}

.fp-price-period {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

.fp-price-pln {
    text-align: center;
    font-size: 0.82rem;
    color: #a0aec0;
    margin-bottom: 1.25rem;
}

/* ── Buttons ── */
.fp-plan-btn-free {
    width: 100%;
    font-weight: 700;
    border-radius: 8px;
    border-color: #cbd5e0;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.fp-plan-btn-free:hover {
    border-color: #a0aec0;
    color: #1a202c;
}

.fp-plan-btn-pro {
    width: 100%;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(229,62,62,0.25);
}

.fp-plan-btn-pro:hover {
    box-shadow: 0 6px 18px rgba(229,62,62,0.35);
    transform: translateY(-1px);
}

.fp-plan-btn-liga {
    width: 100%;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: #805ad5;
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(128,90,213,0.25);
    transition: box-shadow 0.2s, transform 0.15s;
}

.fp-plan-btn-liga:hover {
    background: #6b46c1;
    color: #fff;
    box-shadow: 0 6px 18px rgba(128,90,213,0.35);
    transform: translateY(-1px);
}

/* ── Feature list ── */
.fp-plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #edf2f7;
    padding-top: 1.25rem;
    flex: 1;
}

.fp-plan-features li {
    font-size: 0.9rem;
    color: #2d3748;
    padding: 0.35rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.fp-check {
    color: #48bb78;
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.fp-times {
    color: #cbd5e0;
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.fp-clock {
    color: #ed8936;
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.fp-feat-disabled {
    color: #a0aec0;
}

.fp-feat-limit {
    color: #dd6b20;
    font-weight: 600;
}

/* ── Liga explainer ── */
.fp-liga-explainer {
    background: #fff;
    padding: 2.5rem 1.5rem;
}

.fp-liga-box {
    background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
    border: 1px solid #d6bcfa;
    border-radius: 16px;
    padding: 2rem 2.5rem;
}

.fp-liga-big-icon {
    font-size: 2.5rem;
    color: #805ad5;
}

.fp-liga-explainer-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.fp-liga-explainer-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.65;
}

.fp-liga-tag {
    background: #805ad5;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 999px;
}

/* ── FAQ / Notes ── */
.fp-pricing-notes {
    background: #f7fafc;
    padding: 3rem 1.5rem;
}

.fp-faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    height: 100%;
}

.fp-faq-q {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.fp-faq-icon {
    color: #e53e3e;
    margin-top: 2px;
    flex-shrink: 0;
}

.fp-faq-a {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.65;
}
