/* ============================================================
   #plans — Font Scale (matches home page feel)
   ============================================================ */

/* Section header */
#plans .section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 700;
}
#plans .section-header p.lead {
    font-size: 1.05rem;
}

/* Pricing card — plan name, description, price */
#plans .pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
#plans .pricing-card p.small {
    font-size: 0.875rem;
}
#plans .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
}
#plans .price-currency {
    font-size: 1.2rem;
    margin-top: 4px;
}
#plans .pricing-card .text-muted {
    font-size: 0.875rem;
}

/* Features list inside card */
#plans .features-list h6 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
}
#plans .features-list li {
    font-size: 0.9rem;
    padding: 5px 0;
}
#plans .features-list .feature-icon {
    font-size: 1rem;
}

/* Comparison table header */
#plans .card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}
#plans .card-header p {
    font-size: 0.9rem;
}

/* Comparison table cells */
#plans .table th {
    font-size: 0.875rem;
    padding: 0.7rem 0.9rem;
}
#plans .table td {
    font-size: 0.875rem;
    padding: 0.65rem 0.9rem;
}
#plans .table td .fw-bold {
    font-size: 0.9rem;
}
#plans .table .badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
}
#plans .table .small,
#plans .table .text-muted {
    font-size: 0.8rem;
}
#plans .table i.fs-5 {
    font-size: 1.1rem !important;
}
#plans .tool-icon-wrapper {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    padding: 0.35rem !important;
}

/* KB info icon in table */
#plans .kb-info-icon {
    font-size: 1rem;
}

/* Billing toggle label */
#plans .fw-semibold {
    font-size: 0.95rem;
}
#plans .badge.bg-success {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
}

/* Plan card CTA button */
#plans .btn-lg {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
}

/* Base Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.bg-blob-shape-1, .bg-blob-shape-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    z-index: 0;
}

.bg-blob-shape-1 {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    top: -100px;
    right: -100px;
}

.bg-blob-shape-2 {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    bottom: -100px;
    left: -100px;
}

/* Pricing Card Styles */
.pricing-card {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.popular-plan {
    background: linear-gradient(160deg, #1e2156 0%, #2d3270 100%);
    border: none;
    box-shadow: 0 20px 60px rgba(30, 33, 86, 0.35) !important;
    overflow: hidden;
    transform: translateY(-8px);
}

/* All text inside popular card */
.popular-plan .card-body,
.popular-plan h3,
.popular-plan h2,
.popular-plan .fw-bold {
    color: #fff;
}

.popular-plan .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.popular-plan .features-list {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.popular-plan .features-list li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.popular-plan .features-list h6 {
    color: rgba(255, 255, 255, 0.5);
}

.popular-plan .text-success,
.popular-plan .text-danger {
    filter: brightness(1.4);
}

/* CTA button override */
.popular-plan .btn-primary {
    background: #fff;
    color: #1e2156;
    border: none;
    font-weight: 700;
}

.popular-plan .btn-primary:hover {
    background: #f0f0ff;
    color: #1e2156;
}

/* Top bar on dark card */
.popular-badge-bar {
    background: rgba(255, 255, 255, 0.08);
    color: #ffd700;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popular-badge-bar i {
    color: #ffd700;
    font-size: 0.72rem;
}

.pricing-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

.pricing-icon i {
    font-size: 24px;
}

.bg-primary-soft {
    background-color: rgba(78, 84, 200, 0.1);
    color: #4e54c8;
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.bg-info-soft {
    background-color: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

/* Price Display */
.price-display {
    transition: all 0.3s ease;
}

.price-currency {
    font-size: 1.5rem;
    align-self: flex-start;
    margin-top: 5px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 5px;
}

/* Features List */
.features-list {
    border-top: 1px solid #f1f1f1;
    padding-top: 1.5rem;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #f1f1f1;
}

.feature-icon {
    font-size: 1.2rem;
}

/* Billing Toggle */
.form-check-input {
    width: 50px !important;
    height: 26px !important;
    background-color: #e9ecef;
    border: none;
}

.form-check-input:checked {
    background-color: #4e54c8;
}

/* Comparison Table */
.table-compare {
    border-radius: 12px;
    overflow: hidden;
}

.table-compare thead th {
    background-color: #f8f9fa;
    font-weight: 600;
    padding: 1rem;
    text-align: center;
}

.table-compare tbody td {
    padding: 1rem;
    vertical-align: middle;
}

.table-compare tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}

/* Accordion */
.accordion-button {
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 8px !important;
    background-color: #f8f9fa;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #4e54c8;
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section {
        padding: 3rem 0;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .bg-blob-shape-1, .bg-blob-shape-2 {
        width: 300px;
        height: 300px;
    }
    
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Tailored Solutions for Enterprise Growth
 */
/* Tailored Solutions for Enterprise Growth
*/

.enterprise-banner {
    background: linear-gradient(135deg,rgb(6, 51, 110), #2a2a2a); /* Deep charcoal gradient */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.enterprise-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.3;
    z-index: 0;
}

.enterprise-banner .card-body {
    position: relative;
    z-index: 1;
}

.enterprise-banner h2 {
    color: #ffffff;
}

.enterprise-banner .btn-light {
    background-color: #ffffff;
    color: #000000;
    border: none;
    transition: background-color 0.3s ease;
}

.enterprise-banner .btn-light:hover {
    background-color: #f1f1f1;
    color: #000000;
}
 .savings-info {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-display {
    transition: all 0.3s ease;
}

.badge.bg-success {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}

.savings-info .small {
    font-size: 0.825rem;
    line-height: 1.3;
}
/* social channel
*/
    .bg-gradient-social {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #f093fb 100%);
        background-size: 400% 400%;
        animation: gradientSocial 15s ease infinite;
    }

  
    .social-icon-wrapper {
        transition: all 0.3s ease;
    }

    .social-icon-wrapper:hover {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

    .checkmark-pulse {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        background-color: rgba(34, 197, 94, 0.2);
        animation: pulse 2s infinite;
        z-index: -1;
    }

    @keyframes pulse {
        0% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.2); opacity: 0.2; }
        100% { transform: scale(1); opacity: 0.5; }
    }

    .table-compare th {
        background-color: #f8f9fa;
        border-bottom: 2px solid #dee2e6;
        font-weight: 600;
        padding: 1rem;
    }

    .table-compare td {
        padding: 1.25rem;
        vertical-align: middle;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .table-compare tbody tr:hover {
        background-color: #f8f9fa;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .plan-header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #plans .progress {
        background-color: rgba(255,255,255,0.2);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
    }

    #plans .progress-bar {
        border-radius: 10px;
        transition: width 0.6s ease;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    #plans .bg-light-subtle {
        background-color: rgba(248, 249, 250, 0.7);
    }

    /* social channel
*/


            /* Common styles for all three sections */
            .bg-gradient-tools {
                background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
            }
            
            .bg-gradient-social {
                background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
            }
            
            .bg-gradient-primary {
                background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
            }
            
            #plans .card {
                border-radius: 12px;
                overflow: hidden;
            }

            #plans .table {
                border-collapse: separate;
                border-spacing: 0;
            }

            #plans .table th {
                font-weight: 600;
                padding: 1rem;
                border-bottom: 2px solid #dee2e6;
            }

            #plans .table td {
                padding: 1rem;
                vertical-align: middle;
                border-bottom: 1px solid #f0f0f0;
            }

            #plans .table > :not(:first-child) {
                border-top: 2px solid #dee2e6;
            }

            #plans .table-hover tbody tr:hover {
                background-color: rgba(0, 123, 255, 0.05);
            }

            #plans .bg-light-subtle {
                background-color: #f8f9fa;
            }

            #plans .rounded {
                border-radius: 8px;
                overflow: hidden;
            }
            
            .plan-header {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .tool-icon-wrapper, .social-icon-wrapper, .platform-icon {
                transition: transform 0.2s ease;
            }
            
            .tool-icon-wrapper:hover, .social-icon-wrapper:hover, .platform-icon:hover {
                transform: scale(1.1);
            }

    .bg-gradient-social {
        background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    }
    
    .social-icon-wrapper {
        transition: transform 0.2s ease;
    }
    
    .social-icon-wrapper:hover {
        transform: scale(1.1);
    }

    .bg-gradient-primary {
        background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    }
    
    .platform-icon {
        transition: transform 0.2s ease;
    }
    
    .platform-icon:hover {
        transform: scale(1.1);
    }
    
    .feature-card {
        transition: all 0.2s ease;
        border-radius: 8px;
    }
    
    .feature-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

/* ============================================================
   KB Info Icon — inline with feature label
   ============================================================ */
.kb-info-icon {
    display: inline;
    font-size: 1rem;
    color: #1e2156;
    background: rgba(30, 33, 86, 0.1);
    border-radius: 50%;
    padding: 2px 4px;
    cursor: pointer;
    vertical-align: middle;
    margin-left: 5px;
    transition: background 0.2s ease, color 0.2s ease;
    user-select: none;
}
.kb-info-icon:hover {
    background: #1e2156;
    color: #fff;
}

/* SEO-visible KB content — hidden visually, readable by crawlers */
.kb-seo-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   Coming Soon Badge Animations
   ============================================================ */
.pulse-animation {
    animation: pricingPulse 2s ease-in-out infinite;
}

@keyframes pricingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.1); opacity: 0.8; }
}

.coming-soon-badge {
    display: inline-block;
}

.coming-soon-shimmer {
    background: linear-gradient(
        110deg,
        rgba(255,255,255,0.2) 0%,
        rgba(255,255,255,0.4) 20%,
        rgba(255,215,0,0.6)   40%,
        rgba(255,255,255,0.4) 60%,
        rgba(255,255,255,0.2) 80%,
        rgba(255,215,0,0.4)   100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    border: 1px solid rgba(255,215,0,0.5);
    border-radius: 50px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
    box-shadow:
        0 0 15px rgba(255,215,0,0.3),
        0 0 30px rgba(255,215,0,0.2),
        inset 0 0 10px rgba(255,255,255,0.1);
}

@keyframes shimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.shimmer-text {
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0%   { text-shadow: 0 0 5px rgba(255,255,255,0.5); }
    100% { text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,215,0,0.6), 0 0 30px rgba(255,215,0,0.4); }
}

.rocket-bounce {
    display: inline-block;
    animation: rocketBounce 1.5s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50%       { transform: translateY(-5px) rotate(-15deg); }
}

.sparkle-blink {
    display: inline-block;
    animation: sparkleBlink 1s ease-in-out infinite;
}

@keyframes sparkleBlink {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    25%       { opacity: 0.6; transform: scale(0.8) rotate(-10deg); }
    50%       { opacity: 1; transform: scale(1.2) rotate(10deg); }
    75%       { opacity: 0.8; transform: scale(0.9) rotate(-5deg); }
}
