/* =========================================================
   Fan Types Page
   Banner
========================================================= */


/* ---------------------------------------------------------
   Banner Full Width
--------------------------------------------------------- */

.FanTypesPage {
    width: 100%;
}


/*
 * Astra 默认内容区域通常存在 max-width / padding。
 * Banner 使用 viewport 宽度强制突破父级容器。
 */

.ft-banner {
    position: relative;

    width: 100vw;
    max-width: 100vw;

    min-height: 380px;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* ---------------------------------------------------------
   Banner Overlay
--------------------------------------------------------- */

.ft-banner-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.30);

    z-index: 1;
}


/* ---------------------------------------------------------
   Banner Inner
--------------------------------------------------------- */

.ft-banner-inner {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 80px 40px;

    box-sizing: border-box;
}


/* ---------------------------------------------------------
   Banner Alignment
--------------------------------------------------------- */

.ft-banner-left .ft-banner-inner {
    text-align: left;
}

.ft-banner-center .ft-banner-inner {
    text-align: center;
}

.ft-banner-right .ft-banner-inner {
    text-align: right;
}


/* ---------------------------------------------------------
   Banner Title
--------------------------------------------------------- */

.ft-banner-title {
    margin: 0 0 18px;

    max-width: 900px;

    font-size: 48px;
    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.5px;
}


/* ---------------------------------------------------------
   Center Title
--------------------------------------------------------- */

.ft-banner-center .ft-banner-title {
    margin-left: auto;
    margin-right: auto;
}


/* ---------------------------------------------------------
   Right Title
--------------------------------------------------------- */

.ft-banner-right .ft-banner-title {
    margin-left: auto;
}


/* ---------------------------------------------------------
   Banner Description
--------------------------------------------------------- */

.ft-banner-description {
    max-width: 900px;

    margin: 0;

    color: #ffffff;

    font-size: 18px;
    line-height: 1.7;

    font-weight: 400;
}


/* ---------------------------------------------------------
   Center Description
--------------------------------------------------------- */

.ft-banner-center .ft-banner-description {
    margin-left: auto;
    margin-right: auto;
}


/* ---------------------------------------------------------
   Right Description
--------------------------------------------------------- */

.ft-banner-right .ft-banner-description {
    margin-left: auto;
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1024px) {

    .ft-banner {
        min-height: 420px;
    }

    .ft-banner-inner {
        padding: 70px 30px;
    }

    .ft-banner-title {
        font-size: 40px;
    }

    .ft-banner-description {
        font-size: 17px;
    }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .ft-banner {

        min-height: 420px;

        background-position: center center;
    }


    .ft-banner-inner {

        padding: 60px 22px;
    }


    .ft-banner-title {

        margin-bottom: 14px;

        font-size: 32px;

        line-height: 1.2;

        letter-spacing: 0;
    }


    .ft-banner-description {

        font-size: 16px;

        line-height: 1.6;
    }


    .ft-banner-overlay {

        background: rgba(0, 0, 0, 0.38);
    }

}


/* =========================================================
   Small Mobile
========================================================= */

@media (max-width: 480px) {

    .ft-banner {

        min-height: 380px;
    }


    .ft-banner-inner {

        padding: 50px 20px;
    }


    .ft-banner-title {

        font-size: 28px;

        line-height: 1.2;
    }


    .ft-banner-description {

        font-size: 15px;

        line-height: 1.55;
    }

}

/* ========================================
   Socket, Bulb and Lighting Options
======================================== */

.nb-socket-options {
    padding: 70px 0 80px;
    background: #fff;
}

.nb-socket-options-header {
    max-width: 1100px;
    margin: 0 auto 55px;
}

.nb-socket-options-header h2 {
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
}

.nb-socket-options-description {
    font-size: 17px;
    line-height: 1.55;
    color: #999;
}

.nb-socket-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.nb-socket-options-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.nb-socket-options-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f5f5f5;
}

.nb-socket-options-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nb-socket-options-content {
    padding: 22px 16px 26px;
}

.nb-socket-options-content h3 {
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
}

.nb-socket-options-text {
    font-size: 16px;
    line-height: 1.8;
    color: #999;
}

.nb-socket-options-text p {
    margin: 0;
}


/* Tablet */

@media (max-width: 991px) {

    .nb-socket-options {
        padding: 60px 0;
    }

    .nb-socket-options-grid {
        gap: 20px;
    }

    .nb-socket-options-header h2 {
        font-size: 32px;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .nb-socket-options {
        padding: 50px 0;
    }

    .nb-socket-options-header {
        margin-bottom: 35px;
    }

    .nb-socket-options-header h2 {
        font-size: 28px;
    }

    .nb-socket-options-description {
        font-size: 15px;
    }

    .nb-socket-options-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .nb-socket-options-content {
        padding: 20px;
    }

}

/* ========================================
   SECTION B
======================================== */

.nb-section-b {
    width: 100%;
    padding: 80px 0;
}


/* ========================================
   TOP - 1200px
======================================== */

.nb-section-b-header {
    width: 1200px;
    max-width: calc(100% - 30px);
    margin: 0 auto 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nb-section-b-title {
    margin: 0;
    max-width: 650px;
}


/* Header Button */

.nb-section-b-header-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 24px;
    border-radius: 30px;
    text-decoration: none;
}


/* ========================================
   MIDDLE - 1440px
======================================== */

.nb-section-b-products {
    width: 1440px;
    max-width: calc(100vw - 30px);
    height: 680px;

    /* 关键：相对于整个 viewport 居中 */
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    overflow: hidden;
    border-radius: 12px;
}


/* Slider */

.nb-section-b-slider {
    position: relative;
    width: 100%;
    height: 100%;
}


/* Slides */

.nb-section-b-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.nb-section-b-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.nb-section-b-slide.active {
    opacity: 1;
    visibility: visible;
}


/* Background Image */

.nb-section-b-slide-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: translateY(30px);
    opacity: 0;

    transition:
        transform 1s ease,
        opacity 1s ease;
}

.nb-section-b-slide.active .nb-section-b-slide-image {
    transform: translateY(0);
    opacity: 1;
}


/* Overlay */

.nb-section-b-slide-overlay {
    position: absolute;
    inset: 0;

    
}


/* Product Content */

.nb-section-b-product-content {
    position: absolute;

    left: 53%;
    top: 50%;
    width: 520px;
    transform: translate(40px, -50%);
    opacity: 0;

    transition:
        transform 0.9s ease,
        opacity 0.9s ease;
}

.nb-section-b-slide.active .nb-section-b-product-content {
    transform: translate(0, -50%);
    opacity: 1;
}

.nb-section-b-product-content h3 {
    margin: 0 0 18px;
}

.nb-section-b-product-description {
    margin-bottom: 28px;
}

.nb-section-b-product-description ul {
    margin: 12px 0 20px;
    padding-left: 20px;
}


/* Product Button */

.nb-section-b-product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
	color: #111;
    padding: 14px 28px;

    border: 1px solid #111;
    border-radius: 30px;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.15s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.nb-section-b-product-button:hover {
    background: #111;
    color: #fff;

    transform: translateY(-4px);

    box-shadow:
        0 10px 20px rgba(0,0,0,0.16);
}

.nb-section-b-product-button:active {
    filter: saturate(55%);
    transform: translateY(-2px);
}


/* ========================================
   LEFT NUMBERS
======================================== */

.nb-section-b-numbers {
    position: absolute;

    z-index: 5;

    left: 130px;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.nb-section-b-number {
    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid transparent;
    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    font-size: 15px;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.nb-section-b-number.active {
    border-color: #111;
    background: #ffffff30;
    color: #111;
}


/* ========================================
   BOTTOM FEATURES - 1200px
======================================== */

.nb-section-b-features {
    width: 1200px;
    max-width: calc(100% - 30px);

    margin: 80px auto 50px;

    display: flex;
}


/* Three fixed cards */

.nb-section-b-feature {
    flex: 1;
    margin-left: 15px;
    margin-right: 15px;
    padding: 0 20px;
}




/* Feature Heading */

.nb-section-b-feature-heading {
    display: flex;
    align-items: center;
    min-height: 50px;
    margin-bottom: 28px;
}

.nb-section-b-feature-line {
    width: 3px;
    height: 42px;
    margin-right: 18px;
    background: #111;
}

.nb-section-b-feature-heading h3 {
    margin: 0;
}

.nb-section-b-feature-icon {
    width: 46px;
    height: 46px;

    object-fit: contain;

    margin-left: 14px;
}


/* Subtitle */

.nb-section-b-feature h4 {
    margin: 0 0 14px;
}


/* Description */

.nb-section-b-feature-description {
    line-height: 1.7;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1469px) {

    .nb-section-b-products {
        width: calc(100vw - 30px);
    }

    .nb-section-b-numbers {
        left: 80px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

    .nb-section-b {
        padding: 50px 0;
    }

    .nb-section-b-header {
        display: block;
        width: calc(100% - 30px);
        margin-bottom: 30px;
    }

    .nb-section-b-header-button {
        margin-top: 25px;
    }

    .nb-section-b-products {
        width: calc(100% - 30px);
        height: 600px;

        left: auto;
        transform: none;

        margin: 0 auto;
    }

    .nb-section-b-numbers {
        left: 20px;
        top: 30px;

        transform: none;

        flex-direction: row;
    }

    .nb-section-b-product-content {
        left: 30px;
        right: 30px;
        top: auto;
        bottom: 40px;

        width: auto;

        transform: translateY(30px);
    }

    .nb-section-b-slide.active .nb-section-b-product-content {
        transform: translateY(0);
    }

    .nb-section-b-slide-overlay {
        background: linear-gradient(
            180deg,
            rgba(255,255,255,0.05) 30%,
            rgba(255,255,255,0.92) 100%
        );
    }

    .nb-section-b-features {
        width: calc(100% - 30px);
        display: block;
        margin-top: 40px;
    }

    .nb-section-b-feature {
        margin: 0 0 35px;
        padding: 0;
    }

    .nb-section-b-feature + .nb-section-b-feature {
        border-left: 0;
    }

}

/* Easy Installation */

.nb-easy-installation-img {
    overflow: hidden;
}

.nb-easy-installation-img img {
    display: block;
    width: 100%;
    height: auto;
}

.nb-easy-installation-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nb-easy-installation-content h2 {
    margin-bottom: 25px;
}

.nb-easy-installation-text {
    color: #999;
    line-height: 1.7;
}

.nb-easy-installation-text p {
    margin-bottom: 25px;
}

.nb-easy-installation-text p:last-child {
    margin-bottom: 0;
}

@media(max-width: 991px) {

    .nb-easy-installation-content {
        display: block;
    }

}

/* =========================================
   C. Featured Products - Section 4
========================================= */

.pc2Section4 .pc2FeaturedProductsHeading {
    margin: 0;
    line-height: 1.25;
}


/* Section Description */

.pc2Section4 .pc2FeaturedProductsDescription {
    max-width: 900px;
    margin: 15px auto 0;
    font-size: 14px;
    line-height: 1.6;
}


/* Product Card */

.pc2Section4 .pc2FeaturedProductBox {
    width: 100%;
    height: 100%;
}


/* Product Image */

.pc2Section4 .pc2FearturedProductImg {
    width: 100%;
    overflow: hidden;
}

.pc2Section4 .pc2FearturedProductImg img {
    display: block;
    width: 100%;
    height: auto;
}


/* Product Title */

.pc2Section4 .pc2FeaturedProductTitle {
    padding-top: 15px;
    padding-bottom: 8px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}


/* Product Description */

.pc2Section4 .pc2FeaturedProductText {
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .pc2Section4 .pc2FeaturedProductsDescription {
        max-width: 760px;
    }

    .pc2Section4 .pc2FeaturedProductTitle {
        font-size: 17px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .pc2Section4 {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .pc2Section4 .pc2FeaturedProductsHeading {
        line-height: 1.3;
    }

    .pc2Section4 .pc2FeaturedProductsDescription {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.6;
    }

    .pc2Section4 .pc2FeaturedProductTitle {
        padding-top: 12px;
        padding-bottom: 6px;
        font-size: 17px;
    }

    .pc2Section4 .pc2FeaturedProductText {
        font-size: 14px;
        line-height: 1.65;
    }

}

/* =========================================================
   Customization Section
========================================================= */

.nb-customization-section {
    background: #f8f8f8;
    padding: 80px 0 100px;
}


/* =========================================================
   Section Header
========================================================= */

.nb-customization-header {
    max-width: 900px;
    margin: 0 auto 45px;
    text-align: center;
}

.nb-customization-title {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}

.nb-customization-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
    color: #777;
}


/* =========================================================
   Three Cards
========================================================= */

.nb-customization-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}


/* =========================================================
   Card
========================================================= */

.nb-customization-card {
    position: relative;
    display: flex;
    flex-direction: column;

    min-height: 500px;
    padding: 30px 28px 28px;

    background: #fff;
    border-radius: 7px;

    color: #222;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   Card Hover
========================================================= */

.nb-customization-card:hover {
    background: #ff7a21;
    color: #fff;

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   Badge
========================================================= */

.nb-customization-badge {
    position: absolute;
    top: -10px;
    left: 50%;

    transform: translateX(-50%);

    padding: 5px 14px;

    background: #222;
    color: #fff;

    border-radius: 20px;

    font-size: 11px;
    line-height: 1.3;
    white-space: nowrap;
}


/* =========================================================
   Icon
========================================================= */

.nb-customization-icon {
    width: 42px;
    height: 42px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.nb-customization-icon img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    transition: opacity 0.3s ease;
}


/* Default Icon */

.nb-icon-default {
    opacity: 1;
}


/* Hover Icon */

.nb-icon-hover {
    position: absolute;

    opacity: 0;
}


/* Switch Icon */

.nb-customization-card:hover .nb-icon-default {
    opacity: 0;
}

.nb-customization-card:hover .nb-icon-hover {
    opacity: 1;
}


/* =========================================================
   Card Title
========================================================= */

.nb-customization-card-title {
    margin: 0 0 5px;

    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;

    color: inherit;

    transition: color 0.3s ease;
}


/* =========================================================
   Subtitle
========================================================= */

.nb-customization-card-subtitle {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    transition: color 0.3s ease;
}

.nb-customization-card:hover .nb-customization-card-subtitle {
    color: rgba(255, 255, 255, 0.9);
}


/* =========================================================
   Description
========================================================= */

.nb-customization-card-description {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.65;
    color: #666;
    transition: color 0.3s ease;
}

.nb-customization-card:hover .nb-customization-card-description {
    color: rgba(255, 255, 255, 0.92);
}


/* =========================================================
   Best For
========================================================= */

.nb-customization-bestfor {
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    transition: color 0.3s ease;
}

.nb-customization-bestfor strong {
    display: inline-block;
    margin-right: 4px;
    color: #222;
    transition: color 0.3s ease;
}

.nb-customization-card:hover .nb-customization-bestfor {
    color: rgba(255, 255, 255, 0.92);
}

.nb-customization-card:hover .nb-customization-bestfor strong {
    color: #fff;
}


/* =========================================================
   Button
========================================================= */

.nb-customization-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: auto;
    margin-bottom: 20px;
    padding: 10px 18px;
    border-radius: 5px;
    background: #222;
    color: #fff;
    border: 1px solid #222;
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


/* Hover card → button becomes white */

.nb-customization-card:hover .nb-customization-button {
    background: #fff;
    color: #ff7a21;
    border-color: #fff;
}


/* Button hover */

.nb-customization-card:hover .nb-customization-button:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    text-decoration: none;
}


/* =========================================================
   Features
========================================================= */

.nb-customization-features {
    margin: 0;
    padding: 0;

    list-style: none;
}

.nb-customization-features li {
    display: flex;
    align-items: flex-start;
    gap: 5px;

    margin-bottom: 7px;

    font-size: 12px;
    line-height: 1.5;

    color: #777;

    transition: color 0.3s ease;
}

.nb-feature-check {
    flex: 0 0 auto;

    color: #ff7a21;
    font-weight: 700;

    transition: color 0.3s ease;
}


/* Hover */

.nb-customization-card:hover .nb-customization-features li {
    color: rgba(255, 255, 255, 0.92);
}

.nb-customization-card:hover .nb-feature-check {
    color: #fff;
}


/* =========================================================
   Comparison Table
========================================================= */

.nb-customization-comparison {
    width: 100%;
    margin-top: 80px;
}

/* Table Title */
.nb-customization-table-title {
    margin: 0 0 22px;
    text-align: center;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: #222222;
}

.nb-customization-table {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
    overflow-x: auto;
}


/* Table */

.nb-customization-table table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    font-size: 13px;
    line-height: 1.5;
}


/* Table Cells */

.nb-customization-table th,
.nb-customization-table td {
    padding: 12px 10px;

    border-bottom: 1px solid #e5e5e5;

    text-align: center;

    vertical-align: middle;
}


/* First column */

.nb-customization-table th:first-child,
.nb-customization-table td:first-child {
    text-align: left;
}


/* Header */

.nb-customization-table thead th {
    font-weight: 700;

    color: #222;

    background: #fff;
}


/* Orange highlight */

.nb-customization-table thead th:nth-child(3) {
    color: #ff7a21;
}


/* Table body */

.nb-customization-table tbody td {
    color: #777;
}


/* First column body */

.nb-customization-table tbody td:first-child {
    color: #555;
    font-weight: 500;
}


/* Last row */

.nb-customization-table tbody tr:last-child td {
    border-bottom: none;
}


/* Table hover */

.nb-customization-table tbody tr:hover {
    background: #fafafa;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 991px) {

    .nb-customization-section {
        padding: 60px 0 80px;
    }

    .nb-customization-cards {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .nb-customization-section {
        padding: 50px 0 60px;
    }

    .nb-customization-header {
        margin-bottom: 30px;
    }

    .nb-customization-title {
        font-size: 26px;
    }

    .nb-customization-description {
        font-size: 14px;
    }

    .nb-customization-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nb-customization-card {
        min-height: auto;
    }

    .nb-customization-table {
        margin-top: 35px;
        padding: 18px 15px;
    }

    .nb-customization-table table {
        min-width: 700px;
    }

}

/* ========================================
   Customization Card Icon
======================================== */

.nb-custom-icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 25px;
}

.nb-custom-icon img {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: contain;
    transition: opacity 0.25s ease;
}

.nb-custom-icon .nb-icon-normal {
    opacity: 1;
}

.nb-custom-icon .nb-icon-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* Hover */
.nb-customization-card:hover .nb-custom-icon .nb-icon-normal {
    opacity: 0;
}

.nb-customization-card:hover .nb-custom-icon .nb-icon-hover {
    opacity: 1;
}

.nb-customization-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.nb-customization-bestfor {
    min-height: 56px;
}

.nb-customization-button {
    margin-top: 10px;
}

.nb-customization-features {
    margin-top: 35px;
}

/* ========================================
   Comparison Table
======================================== */

.nb-customization-table {
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
    overflow-x: auto;
}

/* Table */
.nb-customization-table table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
    background: #ffffff;
}

/* Remove all default borders */
.nb-customization-table table,
.nb-customization-table th,
.nb-customization-table td {
    border: 0;
}

/* Table Header */
.nb-customization-table thead th,
.nb-customization-table tr:first-child th {
    padding: 16px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #222222;
    border-bottom: 1px solid #dddddd;
}

/* First header cell */
.nb-customization-table thead th:first-child,
.nb-customization-table tr:first-child th:first-child {
    text-align: left;
}

/* Light Customization header */
.nb-customization-table thead th:nth-child(3),
.nb-customization-table tr:first-child th:nth-child(3) {
    color: #ff7625;
}

/* Table Body */
.nb-customization-table tbody td,
.nb-customization-table tr:not(:first-child) td {
    padding: 14px 12px;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    color: #777777;
    border-bottom: 1px solid #dddddd;
}

/* First column */
.nb-customization-table tbody td:first-child,
.nb-customization-table tr:not(:first-child) td:first-child {
    text-align: left;
    color: #666666;
}

/* Last row */
.nb-customization-table tbody tr:last-child td,
.nb-customization-table tr:last-child td {
    border-bottom: none;
}

/* Hover */
.nb-customization-table tbody tr:hover td {
    background: #fafafa;
}

/* Links inside table */
.nb-customization-table a {
    color: inherit;
    text-decoration: none;
}

/* Check mark */
.nb-customization-table .check {
    color: #ff7625;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 767px) {

    .nb-customization-table {
        margin-top: 35px;
        padding: 12px;
        overflow-x: auto;
    }

    .nb-customization-table table {
        min-width: 700px;
    }

    .nb-customization-table th,
    .nb-customization-table td {
        white-space: nowrap;
    }

}

/* Remove alternating row background */
.nb-customization-table tbody tr:nth-child(even) td,
.nb-customization-table tbody tr:nth-child(odd) td {
    background: #ffffff;
}

/* ========================================
   Section 6
======================================== */

.nb-section-6 {
    padding: 80px 0 70px;
}

.nb-section-6-header {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.nb-section-6-header h2 {
    margin: 0 0 15px;
}

.nb-section-6-description {
    max-width: 1000px;
    margin: 0 auto;
}

.nb-section-6-list {
    display: flex;
    flex-wrap: wrap;
}

.nb-section-6-item {
    margin-bottom: 55px;
}

.nb-section-6-box {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.nb-section-6-image {
    flex: 0 0 142px;
    width: 142px;
    height: 142px;
    margin-right: 28px;
    overflow: hidden;
    border-radius: 12px;
}

.nb-section-6-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nb-section-6-content {
    flex: 1;
    min-width: 0;
}

.nb-section-6-content h3 {
    margin: 8px 0 15px;
}

.nb-section-6-text {
    line-height: 1.65;
}


/* ========================================
   Mobile
======================================== */

@media (max-width: 767px) {

    .nb-section-6 {
        padding: 60px 0 40px;
    }

    .nb-section-6-header {
        margin-bottom: 40px;
    }

    .nb-section-6-item {
        margin-bottom: 35px;
    }

    .nb-section-6-box {
        align-items: flex-start;
    }

    .nb-section-6-image {
        flex: 0 0 100px;
        width: 100px;
        height: 100px;
        margin-right: 20px;
    }

}

/* ========================================
   CTA + FAQ Section
======================================== */

.nb-cta-faq-section {
    padding: 90px 0;
    background: #FAF8F6;
    border-top: 1px solid #dddddd;
}

.nb-cta-faq-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}


/* ========================================
   Left CTA
======================================== */

.nb-cta-content {
    padding-top: 5px;
}

.nb-cta-content h2 {
    margin: 0 0 35px;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #292929;
}

.nb-cta-description {
    max-width: 540px;
    margin-bottom: 42px;
    font-size: 14px;
    line-height: 1.65;
    color: #777;
}

.nb-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 115px;
    min-height: 44px;
    padding: 10px 22px;
    border: 1px solid #292929;
    border-radius: 24px;
    background: transparent;
    color: #292929;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: all 0.25s ease;
}

.nb-cta-button:hover {
    background: #292929;
    color: #fff;
    text-decoration: none;
}


/* ========================================
   FAQ
======================================== */

.nb-faq-list {
    width: 100%;
}

.nb-faq-item {
    border-bottom: 1px solid #d8d8d8;
}

.nb-faq-item:first-child {
    border-top: 0;
}

.nb-faq-question {
    width: 100%;
    min-height: 56px;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
}

.nb-faq-title {
    padding-right: 30px;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
    color: #202020;
}

.nb-faq-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
}

.nb-faq-plus,
.nb-faq-minus {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.2s ease,
                transform 0.2s ease;
}

.nb-faq-minus {
    opacity: 0;
    transform: translateY(-50%) rotate(-90deg);
}

.nb-faq-item.active .nb-faq-plus {
    opacity: 0;
    transform: translateY(-50%) rotate(90deg);
}

.nb-faq-item.active .nb-faq-minus {
    opacity: 1;
    transform: translateY(-50%) rotate(0);
}


/* ========================================
   FAQ Answer
======================================== */

.nb-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.nb-faq-answer-inner {
    overflow: hidden;
    font-size: 15px;
    line-height: 1.65;
    color: #777;
}

.nb-faq-item.active .nb-faq-answer {
    grid-template-rows: 1fr;
}

.nb-faq-item.active .nb-faq-answer-inner {
    padding-bottom: 25px;
}


/* ========================================
   Mobile
======================================== */

@media (max-width: 991px) {

    .nb-cta-faq-section {
        padding: 70px 0;
    }

    .nb-cta-faq-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .nb-cta-content h2 {
        font-size: 40px;
    }

}


@media (max-width: 767px) {

    .nb-cta-faq-section {
        padding: 55px 0;
    }

    .nb-cta-faq-inner {
        gap: 45px;
    }

    .nb-cta-content h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .nb-cta-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .nb-faq-title {
        font-size: 16px;
    }

}

/* =========================================================
   ARTICLE + SMART FIXED FORM
========================================================= */

.articleSection {
    position: relative;
    overflow: visible !important;
    padding-bottom: 100px !important;
}

.articleSection .container {
    overflow: visible !important;
}

.articleStickyLayout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    gap: 40px;
    align-items: stretch;
}

.articleContentCol {
    min-width: 0;
}

.articleFormCol {
    position: relative;
    min-width: 0;
}

.articleSmartForm {
    width: 100%;
    margin: 0;
}

/* 滚动过程中固定 */

.articleSmartForm.is-fixed {
    position: fixed !important;
    z-index: 50;
}

/* 到文章底部后停住 */

.articleSmartForm.is-bottom {
    position: absolute !important;
    top: auto !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
}


/* Tablet / Mobile */

@media (max-width: 991px) {

    .articleSection {
        padding-bottom: 70px !important;
    }

    .articleStickyLayout {
        display: block;
    }

    .articleFormCol {
        margin-top: 35px;
    }

    .articleSmartForm,
    .articleSmartForm.is-fixed,
    .articleSmartForm.is-bottom {
        position: static !important;
        width: 100% !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
    }

}

.articleSmartForm {
    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.articleSmartForm.is-fixed {
    position: fixed !important;
    z-index: 50;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.06),
        0 24px 50px rgba(0, 0, 0, 0.10);

    border-color: rgba(0, 0, 0, 0.06);
}

.articleSmartForm.is-bottom {
    position: absolute !important;
    top: auto !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;

    box-shadow: none;
}



/* =========================================================
   FAQ Button - Remove Global Theme Hover Effects
========================================================= */

.FanTypesPage .nb-faq-question,
.FanTypesPage .nb-faq-question:hover,
.FanTypesPage .nb-faq-question:focus,
.FanTypesPage .nb-faq-question:active {

    width: 100%;

    background: transparent !important;
    background-color: transparent !important;

    color: #202020 !important;

    border: 0 !important;
    outline: none !important;

    box-shadow: none !important;

    transform: none !important;

    opacity: 1 !important;

    text-decoration: none !important;

    border-radius: 0 !important;
}


/* 防止主题 hover 修改 FAQ 标题颜色 */
.FanTypesPage .nb-faq-question:hover .nb-faq-title,
.FanTypesPage .nb-faq-question:focus .nb-faq-title,
.FanTypesPage .nb-faq-question:active .nb-faq-title {

    color: #202020 !important;
}


/* 防止主题修改 +/- 图标颜色 */
.FanTypesPage .nb-faq-question:hover .nb-faq-icon,
.FanTypesPage .nb-faq-question:focus .nb-faq-icon,
.FanTypesPage .nb-faq-question:active .nb-faq-icon {

    color: #777 !important;
}


/* 防止主题给 button 添加遮挡型伪元素 */
.FanTypesPage .nb-faq-question::before,
.FanTypesPage .nb-faq-question::after {

    content: none !important;
    display: none !important;
}

/* CTA + FAQ Section Minimum Height */
.nb-cta-faq-section {
    min-height: 650px;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .nb-cta-faq-section {
        min-height: auto;
        display: block;
    }
}