/* === TOGGLE SWITCH === */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px 0;
}
.toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
.toggle-switch {
    position: relative;
    width: 56px;
    height: 32px;
    background: #e2e8f0;
    border-radius: 32px;
    cursor: pointer;
    transition: background 0.3s;
}
.toggle-switch.active {
    background: #111; /* Black instead of blue */
}
.toggle-circle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.toggle-switch.active .toggle-circle {
    transform: translateX(24px);
}
.discount-badge {
    background: #111; /* Black badge */
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
}

/* === COMPARISON TABLE === */
.comparison-section {
    padding: 60px 0;
    max-width: 1000px;
    margin: 0 auto;
}
.comparison-container {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    -webkit-overflow-scrolling: touch;
}
.comparison-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Force scroll on small screens */
}
.comparison-table th, .comparison-table td {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.comparison-table th {
    font-size: 1.1rem;
    font-weight: 700;
    background: #fff;
    top: 0;
    z-index: 10;
}
.comparison-table th:first-child, .comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    width: 40%;
}
.comparison-table td.text-muted {
    color: var(--text-muted);
}
.comparison-table tr.category-row td {
    background: #f8fafc;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    text-align: left;
}
.check-icon-table {
    color: #111; /* Black check mark */
    font-weight: bold;
    font-size: 1.2rem;
}
.cross-icon-table {
    color: #cbd5e1;
    font-weight: bold;
    font-size: 1.2rem;
}
.table-btn-row td {
    border-bottom: none;
    padding-top: 32px;
}

/* === TRUST BADGES === */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-icon {
    color: #111; /* Black icon */
}

/* === FAQ === */
.faq-section {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}
.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: #111;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-question {
    padding: 24px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: color 0.2s;
}
.faq-question:hover {
    color: #000;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    line-height: 1.6;
}
.faq-answer-content {
    padding-bottom: 24px;
    font-size: 1rem;
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-icon {
    font-size: 1.5rem;
    color: #aaa;
    transition: transform 0.3s, color 0.3s;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #111;
}

/* === BOTTOM BLACK CTA === */
.black-cta {
    background: #111; /* Black background */
    color: white;
    text-align: center;
    padding: 80px 48px;
    border-radius: 20px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}
.black-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}
.black-cta p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.black-cta-btn {
    background: white;
    color: #111;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.2s, background 0.2s;
}
.black-cta-btn:hover {
    transform: translateY(-2px);
    background: #f0f0f0;
}
.cta-security {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.7;
}

/* === RESPONSIVE STYLES === */

@media (max-width: 992px) {
    .pricing-grid-2 {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 32px;
    }
    .price-card.dark {
        transform: none;
    }
}

@media (max-width: 768px) {
    .pricing-page-hero h1 {
        font-size: 2.5rem !important;
    }
    .pricing-toggle {
        flex-wrap: wrap;
    }
    .comparison-title, .faq-title {
        font-size: 2rem;
    }
    .black-cta {
        padding: 60px 24px;
        margin: 40px 16px;
    }
    .black-cta h2 {
        font-size: 2rem;
    }
    .cta-security {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* === PREMIUM ANIMATIONS === */
@keyframes premium-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@keyframes premium-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

.premium-icon-floating {
    display: inline-flex;
    animation: premium-float 3s ease-in-out infinite;
}

.premium-icon-bounce {
    display: inline-flex;
    animation: premium-bounce 2s ease-in-out infinite;
}
