.compare-grid-section th, .compare-grid-section table, .compare-grid-section td {
    border: none;
}

.compare-grid-section .features-text {
    margin-bottom: 10px;
    color: #0D4B97;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}

.compare-grid-section thead th:not(:first-child) {
    padding: 30px 0 40px;
    text-align: center;
}

.compare-grid-section thead th:not(:first-child) p {
    margin-bottom: 10px;
}

.compare-grid-section .feature-package {
    font-size: 14px;
    font-weight: 600;
}

.compare-grid-section .feature-price {
    font-size: 14px;
    font-weight: 400;
}

.compare-grid-section .feature-price p {
    margin-bottom: 20px;
}

.compare-grid-section .content-button {
    background: var(--pale-blue);
    color: var(--black);
    border: 1px solid var(--pale-blue);
    padding: 10px 20px;
}

.compare-grid-section .professional-column .content-button {
    background: var(--blue-darker);
    color: #fff;
    transition: ease all .3s;
}

.compare-grid-section .professional-column .content-button:hover, .compare-grid-section .professional-column .content-button:focus, .compare-grid-section .content-button:hover, .compare-grid-section .content-button:focus {
    background: var(--blue-light);
}

/* Professional Column Border */
.compare-grid-section .feature-row .professional-column, td.professional-column {
    background: #f7f7f7;
    border-left: 1px solid var(--blue-darker);
    border-right: 1px solid var(--blue-darker);
}

.compare-grid-section thead .professional-column {
    border-top: 1px solid var(--blue-darker);
    border-left: 1px solid var(--blue-darker);
    border-right: 1px solid var(--blue-darker);
    border-radius: 20px 20px 0 0;
    background: #f7f7f7;
}

tbody tr:last-child .professional-column {
    border-radius: 0 0 20px 20px;
    border-bottom: 1px solid var(--blue-darker);
}

.compare-grid-section .professional-spacer {
    border-left: 1px solid var(--blue-darker);
    border-right: 1px solid var(--blue-darker);
}

.compare-grid-section .group-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare-grid-section .group-title-text {
    margin: 0;
}

.feature-group-header:first-of-type .title-column {
    border-radius: 20px 0 0 0;
}

.feature-group-header:first-of-type .enterprise-column {
    border-radius: 0 20px 0 0;
}

/* Pulse Icon */
.pulse-icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #2CC1DF;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    animation: pulse 2s infinite;
}

.pulse-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #2CC1DF;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Feature Groups & Rows */
.feature-group-header td {
    background-color: #F3F4F6;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: background-color 0.3s ease;
}

.accordion-chevron {
    position: static;
    margin-right: 10px;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.feature-group-header[data-accordion="open"] .accordion-chevron {
    transform: rotate(180deg);
}

.group-icon {
    display: flex;
}

.accordion-content {
    display: none;
}

.accordion-content.show {
    display: table-row;
}

.feature-group-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

.feature-row td {
    padding: 5px 20px;
    border-bottom: 1px solid #F5F7FA;
}

.feature-row .feature-name {
    padding-left: 60px;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
}

.feature-row .feature-value {
    text-align: center;
    font-size: 14px;
}

.feature-row .feature-value svg {
    display: inline-block;
    vertical-align: middle;
}


/* ========================================
   Compare Grid Section - Mobile Styles
======================================== */

@media (max-width: 992px) {
    .compare-grid-section {
        display: none;
    }
    
    .compare-grid-section-mobile {
        display: block;
    }
}

@media (min-width: 992px) {
    
    .compare-grid-section-mobile {
        display: none;
    }
}

.compare-grid-section-mobile {
    background: #f7f7f7;
}

.compare-grid-section-mobile .features-text { 
    margin-bottom: 10px;
}

.compare-grid-section-mobile h3 { 
    font-size: 32px;
}

.compare-grid-section-mobile .mobile-plan-switcher {
    display: flex;
    gap: 15px;
    width: 100%;
}

.compare-grid-section-mobile .mobile-plan-switcher .plan-select {
    flex: 1;
}

.compare-grid-section-mobile .mobile-plan-switcher select {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    color: var(--blue-darker);
    text-align: center;
    font-family: Inter;
    background: #fff;
    border-bottom: 0.5px solid #D2DEF2;
}

.compare-table-mobile {
    background: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 20px;
}

.mobile-price-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.price-card {
    text-align: center;
    padding: 16px;
}

.price-amount {
    font-size: 25px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.price-period {
    font-size: 11px;
    color: #666;
    font-weight: 400;
    text-align: center;
    line-height: normal;
}

.mobile-cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.compare-table-mobile .mobile-cta-btn {
    padding: 9px 16px;
    font-size: 12px;
    background: var(--pale-blue);
    color: var(--black);
    border: 1px solid var(--pale-blue);
}

.mobile-cta-btn.is-professional {
    background: var(--blue-darker);
    color: var(--white);
    border: 1px solid var(--blue-darker);
}

.mobile-group-header {
    display: flex;
    padding: 10px 0;
    border-top: 0.5px solid #D2DEF2;
}

.mobile-group-header[data-accordion="open"] .accordion-chevron {
  transform: rotate(180deg);
}

.compare-grid-section-mobile .accordion-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.compare-grid-section-mobile .group-title-text {
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.compare-grid-section-mobile .feature-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.compare-grid-section-mobile .feature-value {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.compare-grid-section-mobile .mobile-group-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-group-header[data-accordion="open"] + .mobile-group-content {
    max-height: 2000px;
    padding-top: 20px;
}