/* Pricing Page Specific Styles */

:root {
    --pricing-primary: #1e60ff;
    --pricing-bg: #fdfdfd;
    --pricing-card-bg: #ffffff;
    --pricing-text-main: #111827;
    --pricing-text-muted: #6b7280;
    --pricing-border: #e5e7eb;
}

body {
    background-color: white;
}





.logo-icon-new {
    background: var(--pricing-primary);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.logo-icon-new.small {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
}

.logo-text-new {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--pricing-text-main);
    letter-spacing: -0.5px;
}

/* main-nav styles now handled globally by style.css */
/* header-right styles now handled globally by style.css */


.btn-login {
    text-decoration: none;
    color: var(--pricing-text-main);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-register {
    background: var(--pricing-primary);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(30, 96, 255, 0.2);
}

/* Main Content */
.pricing-main {
    max-width: 1100px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.pricing-

.pricing-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pricing-text-main);
    margin-bottom: 1.5rem;
}

.pricing-header p {
    font-size: 1.15rem;
    color: var(--pricing-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border: 1px solid var(--pricing-border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
}

.pricing-card.featured {
    border: 2.5px solid var(--pricing-primary);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 96, 255, 0.1);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pricing-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.period {
    color: var(--pricing-text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.card-description {
    color: var(--pricing-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 500;
}

.features-list i.active {
    color: #10b981;
}

.features-list i.disabled {
    color: #9ca3af;
}

.disabled-text {
    color: #9ca3af;
    text-decoration: line-through;
}

.btn-plan-primary {
    background: var(--pricing-primary);
    color: white;
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-plan-primary:hover {
    transform: translateY(-2px);
}

.btn-plan-secondary {
    background: #eff6ff;
    color: var(--pricing-primary);
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-plan-secondary:hover {
    background: #dbeafe;
}

/* Footer Section */
.pricing-footer {
    margin-top: 5rem;
    text-align: center;
}

.faq-link {
    color: var(--pricing-text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
    cursor: pointer;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.trust-badges span {
    background: #f3f4f6;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badges i {
    font-size: 1rem;
}

/* Global Footer */
footer {
    border-top: 1px solid var(--pricing-border);
    padding: 4rem 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    margin-top: 5rem;
}

.footer-center {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.footer-center a {
    text-decoration: none;
    color: var(--pricing-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-right {
    text-align: right;
    color: var(--pricing-text-muted);
    font-size: 0.85rem;
}

.footer-right p {
    margin-bottom: 4px;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    footer {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }
}
html, body { overflow-y: scroll !important; scrollbar-gutter: stable !important; }
