.section-price {
    background-color: #E6EBF1;
    font-family: 'Inter', sans-serif
}

.pricing-pill {
    background: #E0F2FE;
    color: #0D92F4;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 16px
}

.pricing-title {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px
}

.pricing-subtitle {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 30px
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px
}

.pricing-toggle-label {
    font-size: 16px;
    font-weight: 500;
    color: #6B7280
}

.pricing-toggle-label.active {
    color: #0052FF
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0052FF;
    transition: .4s;
    border-radius: 34px
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%
}

input:checked+.slider:before {
    transform: translateX(22px)
}

.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px
}

.price-card.active {
    border: 2px solid #0052FF;
    box-shadow: 0 10px 25px rgba(0, 82, 255, 0.1)
}

.most-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #8AC142;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px
}

.pricing-card.active .card-icon {
    background-color: #0052FF
}

.card-icon img {
    width: 24px;
    height: 24px
}

.card-icon .inner-circle {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px
}

.card-price {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline
}

.card-price span {
    font-size: 16px;
    font-weight: 500;
    color: #6B7280;
    margin-left: 4px
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #576A82;
    margin-bottom: 12px;
    transition: 0.3s ease-in-out
}

.price-card.active .card-features li {
    color: #fff
}

.price-card:hover .card-features li {
    color: #fff
}

.card-features li svg {
    flex-shrink: 0
}

.view-features {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    margin-bottom: 24px;
    display: block
}

.card-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    display: block
}

.card-btn.outline {
    background: white;
    border: 1px solid #8AC142;
    color: #8AC142
}

.card-btn.outline:hover {
    background: #f4faeb;
    color: #8AC142
}

.card-btn.solid {
    background: #0052FF;
    border: 1px solid #0052FF;
    color: white
}

.card-btn.solid:hover {
    background: #0040cc;
    color: white
}

.pricing-table-container {
    border-radius: 24px;
    padding: 0;
    overflow-x: auto
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px
}

.feature-row-administration:last-child td {
    border: unset !important
}

.pricing-table th,
.pricing-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    font-size: 15px;
    color: #020E1D;
    font-weight: 500
}

.pricing-table th:first-child,
.pricing-table td:first-child {
    text-align: left;
    width: 30%
}

.pricing-table th:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.7)
}

.pricing-table th:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.7)
}

.pricing-table th {
    color: #042145;
    background: #FFFFFF4D;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%
}

.pricing-table tr.category-row td {
    background: #FFFFFF80;
    color: #020E1D;
    text-transform: uppercase;
    text-align: left;
    padding-top: 12px;
    padding-bottom: 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%
}

.pricing-table tr.category-row td .cat-title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.table-dash {
    color: #9CA3AF;
    font-weight: bold
}

.table-text {
    color: #020E1D;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%
}

.table-pill {
    background: #C2410C;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500
}

.pricing-footer-banner {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 24px
}

.banner-icon {
    width: 56px;
    height: 56px;
    background: #0052FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.banner-icon svg {
    color: white;
    width: 24px;
    height: 24px
}

.banner-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 4px 0
}

.banner-text p {
    font-size: 15px;
    color: #475569;
    margin: 0
}

.banner-btn {
    background: #0052FF;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s
}

.banner-btn:hover {
    background: #0040cc;
    color: white
}

@media (max-width:991px) {
    .pricing-footer-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px
    }

    .banner-left {
        flex-direction: column
    }

    .pricing-cards-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }

    .pricing-table tr.category-row td {
        font-size: 14px
    }

    .card-features li {
        font-size: 14px;
        margin-bottom: 10px
    }

    .pricing-table th,
    .pricing-table td {
        font-size: 13px
    }
}

@media (max-width:575px) {
    .pricing-cards-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr)
    }

    .pricing-table tr.category-row td {
        font-size: 14px
    }

    .card-features li {
        font-size: 14px;
        margin-bottom: 10px
    }

    .pricing-table th,
    .pricing-table td {
        font-size: 13px
    }

    .pricing-table td svg {
        height: 16px;
        width: 16px
    }
}