/* =============================================================================
   Pricing Page Styles
   Extracted from template-parts/new-pricing/*.php
   ============================================================================= */


/* =============================================================================
   Hero Panel — new-pricing-hero-panel.php
   ============================================================================= */

#new_pricing_hero_panel {
    position: relative;
    background: #16161D;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#new_pricing_hero_panel .nphp-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

#new_pricing_hero_panel .nphp-content {
    position: relative;
    z-index: 3;
    max-width: 56%;
    padding: 100px 0;
}

#new_pricing_hero_panel .nphp-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 65px;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -0.8px;
    color: #FF4D04;
    margin: 0 0 32px;
}

#new_pricing_hero_panel .nphp-heading span {
    font-weight: 600;
    color: #F4F8F5;
}

#new_pricing_hero_panel .nphp-pointers {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

#new_pricing_hero_panel .nphp-pointer {
    display: flex;
    align-items: center;
    gap: 10px;
}

#new_pricing_hero_panel .nphp-pointer-icon {
    width: 19px;
    height: 19px;
    object-fit: contain;
    flex-shrink: 0;
}

#new_pricing_hero_panel .nphp-pointer-text {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    color: #F4F8F5;
}

@media (max-width: 991px) {
    #new_pricing_hero_panel .nphp-bg {
        background-image: url('https://smartworking.io/wp-content/uploads/2026/05/intro_mobile.webp') !important;
        background-position: center center;
    }

    #new_pricing_hero_panel {
        align-items: start;
    }

    #new_pricing_hero_panel .nphp-content {
        max-width: 100%;
        padding: 80px 0;
    }

    #new_pricing_hero_panel .nphp-heading {
        font-size: 28px;
        line-height: 36px;
    }

    #new_pricing_hero_panel .nphp-pointer-text {
        font-size: 16px;
        line-height: 24px;
    }
}


/* =============================================================================
   Table Panel — new-pricing-table-panel.php
   ============================================================================= */

#new_pricing_table_panel {
    background: #16161D;
    padding: 80px 0 100px;
}

#new_pricing_table_panel .npt-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 48px;
    letter-spacing: -0.8px;
    color: #FF4D04;
    text-align: center;
    margin: 0 0 60px;
}

#new_pricing_table_panel .npt-heading span {
    font-weight: 600;
    color: #F4F8F5;
}

#new_pricing_table_panel .npt-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#new_pricing_table_panel .npt-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    table-layout: fixed;
}

#new_pricing_table_panel .npt-table thead th {
    background: #FF4D04;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    color: #F4F8F5;
    padding: 8px 10px;
    border: 0.5px solid #FF4D04;
    vertical-align: middle;
}

#new_pricing_table_panel .npt-table thead th:first-child {
    background: transparent;
    border-color: transparent;
}

#new_pricing_table_panel .npt-table tbody td {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    color: #F4F8F5;
    padding: 8px 10px;
    border: 0.5px solid #FF4D04;
    vertical-align: middle;
}

#new_pricing_table_panel .npt-table tbody td:first-child {
    color: #FF4D04;
    border-left: none;
}

#new_pricing_table_panel .npt-table tbody td:last-child {
    border-right: none;
}

#new_pricing_table_panel .npt-table tbody tr {
    transition: background 0.3s ease-in-out;
}

#new_pricing_table_panel .npt-table tbody tr:hover {
    background: rgba(255, 77, 4, 0.16);
    cursor: default;
}

#new_pricing_table_panel .npt-description {
    margin: 48px auto 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    color: #F4F8F5;
}

#new_pricing_table_panel .npt-description p {
    margin: 0;
}

#new_pricing_table_panel .npt-cta-wrap {
    max-width: 580px;
    margin: 24px auto 0;
}

#new_pricing_table_panel .npt-cta {
    display: block;
    width: 100%;
    background: #FF4D04;
    color: #F4F8F5;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    padding: 14px 40px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    transition: background 0.25s ease, color 0.25s ease;
}

#new_pricing_table_panel .npt-cta:hover {
    background: #F4F8F5;
    color: #FF4D04;
}

@media (max-width: 991px) {
    #new_pricing_table_panel .npt-heading {
        font-size: 28px;
        line-height: 36px;
        margin: 0 0 40px;
    }

    #new_pricing_table_panel .npt-description {
        font-size: 16px;
        line-height: 24px;
        padding: 0 16px;
    }

    #new_pricing_table_panel .npt-table tbody tr:hover {
        transform: none;
    }
}


/* =============================================================================
   Compliance Panel — new-pricing-compliance-panel.php
   ============================================================================= */

#new_pricing_compliance_panel .faq-heading {
    font-size: 40px;
    line-height: 52px;
    font-weight: 300;
    color: #FF4D04;
}

#new_pricing_compliance_panel .faq-heading span {
    color: #ffffff;
    font-weight: 700;
}

#nhfp_list_pricing {
    margin-top: 40px;
}

#new_pricing_compliance_panel .faq-sub-heading {
    font-size: 16px;
    line-height: 26px;
}

#new_pricing_compliance_panel .faq-item {
    padding-bottom: 16px;
}

#new_pricing_compliance_panel .faq-item.is-open {
    border-bottom: none;
}

#new_pricing_compliance_panel .faq-question {
    padding: 22px 40px;
    color: #16161D;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    background: #FF4D04;
}

#new_pricing_compliance_panel .faq-question:hover {
    color: #fff;
}

#new_pricing_compliance_panel .faq-item.is-open .faq-question {
    color: #FF4D04;
    font-size: 18px;
    font-weight: 600;
    background: #16161D;
}

#new_pricing_compliance_panel .faq-chevron {
    color: #16161D;
}

#new_pricing_compliance_panel .faq-item.is-open .faq-chevron {
    color: #FF4D04;
}

#new_pricing_compliance_panel .faq-answer-inner {
    background: #FF4D04;
    padding: 24px 28px;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
}

#new_pricing_compliance_panel .faq-show-more {
    border: 1px solid #FF4D04;
    color: #FF4D04;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 12px 36px;
    border-radius: 4px;
}

#new_pricing_compliance_panel .faq-show-more:hover {
    background: #FF4D04;
    color: #ffffff;
}

@media (max-width: 991px) {
    #new_pricing_compliance_panel .faq-heading {
        font-size: 28px;
        line-height: 36px;
    }

    #new_pricing_compliance_panel .faq-question {
        font-size: 14px;
        padding: 18px 10px;
    }

    #new_pricing_compliance_panel .faq-item.is-open .faq-question {
        font-size: 16px;
    }

    #new_pricing_compliance_panel {
        margin-bottom: 40px;
    }
}


/* =============================================================================
   Client Panel — new-pricing-client-panel.php
   ============================================================================= */

#new_pricing_client_panel {
    background: #16161D;
    padding: 80px 0 80px;
}

#new_pricing_client_panel .ncp-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 48px;
    letter-spacing: -0.8px;
    color: #FF4D04;
    text-align: center;
    margin-bottom: 60px;
}

#new_pricing_client_panel .ncp-heading span {
    font-weight: 600;
    color: #F4F8F5;
}

#new_pricing_client_panel .ncp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

#new_pricing_client_panel .ncp-card {
    background: #16161D;
    border: 1px solid #FF4D04;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    min-height: 450px;
    overflow: hidden;
}

#new_pricing_client_panel .ncp-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    line-height: 28px;
    color: #F4F8F5;
    margin: 0;
    flex: 1;
}

#new_pricing_client_panel .ncp-author {
    display: flex;
    align-items: center;
    gap: 30px;
}

#new_pricing_client_panel .ncp-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

#new_pricing_client_panel .ncp-divider {
    width: 1px;
    height: 71px;
    background: #F4F8F5;
    flex-shrink: 0;
    opacity: 0.4;
}

#new_pricing_client_panel .ncp-author-info {
    display: flex;
    flex-direction: column;
}

#new_pricing_client_panel .ncp-name {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    color: #F4F8F5;
    white-space: nowrap;
}

#new_pricing_client_panel .ncp-designation {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    color: #F4F8F5;
    white-space: nowrap;
}

@media (max-width: 991px) {
    #new_pricing_client_panel .ncp-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 40px;
    }

    #new_pricing_client_panel .ncp-grid {
        grid-template-columns: 1fr;
    }

    #new_pricing_client_panel .ncp-card {
        min-height: unset;
    }

    #new_pricing_client_panel .ncp-quote {
        font-size: 18px;
    }
}


/* =============================================================================
   Parallax Panel — new-pricing-parallax-panel.php
   ============================================================================= */

#new_pricing_parallax_panel {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}


/* =============================================================================
   Video and Table Panel — new-pricing-video-and-table.php
   ============================================================================= */

#new_pricing_video_and_table {
    background: #16161D;
    padding: 80px 0 0;
}

#new_pricing_video_and_table .nvt-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.8px;
    color: #F4F8F5;
    text-align: center;
}

#new_pricing_video_and_table .nvt-heading span {
    font-weight: 300;
    color: #FF4D04;
}

#new_pricing_video_and_table .nvt-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

#new_pricing_video_and_table .nvt-video-col {
    flex: 0 0 395px;
    width: 395px;
    height: 496px;
    overflow: hidden;
    position: relative;
}

#new_pricing_video_and_table .nvt-video-col video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#new_pricing_video_and_table .nvt-table-col {
    flex: 1 0 0;
    align-self: stretch;
    display: flex;
    align-items: center;
}

#new_pricing_video_and_table .nvt-table {
    width: 100%;
    border-collapse: collapse;
}

#new_pricing_video_and_table .nvt-table th,
#new_pricing_video_and_table .nvt-table td {
    padding: 8px 10px;
    color: #F4F8F5;
    vertical-align: middle;
}

#new_pricing_video_and_table .nvt-table thead th {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    border-bottom: 0.5px solid #FF4D04;
    text-align: left;
}

#new_pricing_video_and_table .nvt-table thead th:first-child {
    border-right: 0.5px solid #FF4D04;
}

#new_pricing_video_and_table .nvt-table thead th:last-child {
    border-left: 0.5px solid #FF4D04;
    width: 25%;
}

#new_pricing_video_and_table .nvt-table tbody td {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    border-top: 0.5px solid #FF4D04;
    border-bottom: 0.5px solid #FF4D04;
}

#new_pricing_video_and_table .nvt-table tbody td:first-child {
    border-right: 0.5px solid #FF4D04;
}

#new_pricing_video_and_table .nvt-table tbody td:last-child {
    border-left: 0.5px solid #FF4D04;
}

#new_pricing_video_and_table .nvt-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 991px) {
    #new_pricing_video_and_table .nvt-inner {
        flex-direction: column;
    }

    #new_pricing_video_and_table .nvt-video-col {
        flex: none;
        width: 100%;
        height: 280px;
    }

    #new_pricing_video_and_table .nvt-heading {
        font-size: 28px;
        line-height: 36px;
    }
}