.north-star-page {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Banner */
.north-star-banner {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-image: url("/north-star-assets/images/banner-pc.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.banner-title-container {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 100px;
}

.banner-title-container .banner-title {
    width: 40%;
    min-width: 500px;
    max-width: 600px;
    height: auto;
}

.banner-title-container .banner-divider {
    width: 50%;
    max-width: 700px;
    height: auto;
    margin-top: 20px;
}

.banner-title-container .banner-subtitle {
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 0;
    letter-spacing: 2px;
}

.banner-title-container .banner-subtitle .subtitle-dot {
    display: inline;
}

.banner-title-container .banner-subtitle .subtitle-br {
    display: none;
}

.banner-title-container .banner-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.banner-title-container .banner-desc .desc-br {
    display: none;
}

.north-star-section {
    width: 100%;
    background-color: #5f6090;
    background-image: url("/north-star-assets/images/section-background.png");
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 28px 0px 0px 0px;
}

.section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 60px;
}

.section-title {
    font-weight: 700;
    color: #d1ddf4;
    font-size: 44px;
}

/* Section Cards - 共用 */
.section-card {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
}

.section-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

.section-card-text {
    position: absolute;
}

.section-card-text p {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
    white-space: nowrap;
}

/* --- PC: 每張卡片獨立定位 --- */

/* Card 1: 圖左，文右偏中下 */
.section-card-1 .section-card-img {
}
.section-text-1 {
    right: 0%;
    top: 75%;
    transform: translateY(-50%);
}

/* Card 2: 圖右，文左偏中 */
.section-card-2 .section-card-img {
    margin-left: auto;
}
.section-text-2 {
    left: 5%;
    top: 15%;
}

/* Card 3: 圖偏左，文右偏下 */
.section-card-3 .section-card-img {
}
.section-text-3 {
    right: -10%;
    top: 75%;
    transform: translateY(-50%);
}

/* Arrow 置中 */
.section-arrow {
    display: block;
    width: 48px;
    margin: 120px auto;
}

/* ========== Selector ========== */
.selector-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 1530px;
    margin: 0 auto;
}

.selector {
    flex: 1;
    max-width: 765px;
    height: 200px;
    border: none;
    position: relative;
    overflow: visible;
    cursor: pointer;
    padding: 0;
    background: none;
}

/* 背景圖層 */
.selector-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.selector-firecuda .selector-bg {
    border-radius: 40px 0 0 0;
}

.selector-onetouch .selector-bg {
    border-radius: 0 40px 0 0;
}

/* 紫色遮罩層 */
.selector-overlay {
    position: absolute;
    inset: 0;
    background-color: #7e8dd6b2;
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
    z-index: 1;
}

.selector-firecuda .selector-overlay {
    border-radius: 40px 0 0 0;
}

.selector-onetouch .selector-overlay {
    border-radius: 0 40px 0 0;
}

/* 啟動時遮罩消失 */
.selector.active .selector-overlay {
    opacity: 0;
}

/* 內容層 (圖片 + 文字) */
.selector-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 20px;
}

.selector-icon {
    width: 350px;
    height: 265px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -65%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}

/* 非啟動時：預設顯示 blur */
.selector:not(.active) .selector-icon-blur {
    opacity: 1;
}

/* 非啟動 hover 時：顯示 hover 圖，淡出 blur */
@media (hover: hover) {
    .selector:not(.active):hover .selector-icon-hover {
        opacity: 1;
    }

    .selector:not(.active):hover .selector-icon-blur {
        opacity: 0;
    }

    .selector:not(.active):hover .selector-overlay {
        opacity: 0.5;
    }
}

.selector:not(.active).img-hovered .selector-icon-hover {
    opacity: 1;
}

.selector:not(.active).img-hovered .selector-icon-blur {
    opacity: 0;
}

/* 啟動時：顯示 active */
.selector.active .selector-icon-active {
    opacity: 1;
}

/* Hover 時遮罩透明度為 blur 狀態的一半 */
.selector:not(.active).img-hovered .selector-overlay {
    opacity: 0.5;
}

.selector-label {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: color 0.4s ease-in-out;
    color: #fff;
}

/* FireCuda 啟動文字色 */
.selector-firecuda.active .selector-label {
    color: #cd4f2b;
}

/* OneTouch 啟動文字色 */
.selector-onetouch.active .selector-label {
    color: #d1ddf4;
}

/* FireCuda Hero */
.firecuda-hero {
    position: relative;
}

.firecuda-hero-bg {
    width: 100%;
    display: block;
}

.firecuda-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
}

.firecuda-hero-text {
    display: flex;
    flex-direction: column;
    gap: 60px;
    text-align: left;
}

.firecuda-hero-title {
    font-size: 44px;
    font-weight: 700;
    color: #eaae87;
    line-height: 1.3;
    margin: 0;
}

.firecuda-hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    color: #cd4f2b;
    line-height: 1.5;
    margin: 0;
}

.firecuda-hero-product {
    max-width: 35%;
    height: auto;
}

/* OneTouch Hero */
.onetouch-hero {
    position: relative;
}

.onetouch-hero-bg {
    width: 100%;
    display: block;
}

.onetouch-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
}

.onetouch-hero-text {
    display: flex;
    flex-direction: column;
    gap: 60px;
    text-align: left;
}

.onetouch-hero-title {
    font-size: 44px;
    font-weight: 700;
    color: #d1ddf4;
    line-height: 1.3;
    margin: 0;
}

.onetouch-hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.onetouch-hero-product {
    max-width: 35%;
    height: auto;
}

/* FireCuda Section (區域二) */
.firecuda-section {
    position: relative;
}

.firecuda-section-bg {
    width: 100%;
    display: block;
}

.firecuda-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10%;
}

.firecuda-section-text {
    text-align: left;
    max-width: 400px;
}

.firecuda-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.firecuda-section-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #eaae87;
    line-height: 1.5;
    margin: 12px 0 0;
}

/* OneTouch Section (區域二) */
.onetouch-section {
    position: relative;
}

.onetouch-section-bg {
    width: 100%;
    display: block;
}

.onetouch-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 15%;
}

.onetouch-section-text {
    text-align: left;
    max-width: 400px;
}

.onetouch-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.onetouch-section-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #d1ddf4;
    line-height: 1.5;
    margin: 12px 0 0;
}

/* FireCuda Block 3 (區域三) */
.firecuda-block3 {
    position: relative;
}

.firecuda-block3-bg {
    width: 100%;
    display: block;
}

.firecuda-block3-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.mobile-br {
    display: none;
}

.firecuda-block3-text {
    text-align: center;
}

.firecuda-block3-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.firecuda-block3-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #eaae87;
    line-height: 1.5;
    margin: 16px 0 0;
}

.firecuda-block3-content {
    max-width: 30%;
    height: auto;
}

.usb-note {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 16px;
    font-weight: 400;
    color: #D6D6D6;
    line-height: 1.5;
    margin-top: 16px;
    text-align: left;
}

.usb-note img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}

.onetouch-section-text .usb-note {
    margin-top: 50px;
}

.firecuda-block3-hero {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    height: auto;
    z-index: 1;
}

/* OneTouch Block 3 (區域三) */
.onetouch-block3 {
    position: relative;
}

.onetouch-block3-bg {
    width: 100%;
    display: block;
}

.onetouch-block3-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.onetouch-block3-text {
    text-align: center;
}

.onetouch-block3-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.onetouch-block3-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #d1ddf4;
    line-height: 1.5;
    margin: 16px 0 0;
}

.onetouch-block3-content {
    max-width: 30%;
    height: auto;
}

.onetouch-block3-hero {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    height: auto;
    z-index: 1;
}

/* FireCuda Block 4 (區域四) */
.firecuda-block4 {
    background-color: #000;
}

.firecuda-block4-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 650px;
    height: auto;
    padding: 60px 40px;
}

.firecuda-block4-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.firecuda-block4-deco {
    position: absolute;
    top: -10px;
    left: 10%;
    width: 24px;
    height: auto;
    object-fit: contain;
}

.firecuda-block4-text {
    text-align: left;
    padding-left: 200px;
}

.firecuda-block4-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.firecuda-block4-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #eaae87;
    line-height: 1.5;
    margin: 16px 0 0;
}

.firecuda-block4-content {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 45%;
    height: auto;
}

/* OneTouch Block 4 (區域四) */
.onetouch-block4 {
    background-color: #1c1e33;
}

.onetouch-block4-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 650px;
    height: auto;
    padding: 60px 40px;
}

.onetouch-block4-right {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-left: auto;
}

.onetouch-block4-deco {
    position: absolute;
    top: -10px;
    right: 10%;
    width: 24px;
    height: auto;
    object-fit: contain;
}

.onetouch-block4-text {
    text-align: left;
    padding-right: 200px;
}

.onetouch-block4-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.onetouch-block4-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #d1ddf4;
    line-height: 1.5;
    margin: 16px 0 0;
}

.onetouch-block4-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 45%;
    height: auto;
}

/* 產品內容區 */
.product-content {
    min-height: 200px;
}

.product-panel {
    display: none;
    text-align: center;
    color: #333;
}

.product-panel.active {
    display: block;
}

/* Trust Section (不只是儲存) */
.trust-section {
    background-color: #5f6090;
    padding: 80px 0 0;
    text-align: center;
}

.trust-title {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 40px;
    line-height: 1.3;
}

.trust-liner {
    width: 100%;
    height: 12px;
    display: flex;
}

.trust-liner-left {
    width: 50%;
    background: linear-gradient(270deg, #cd4f2b 0%, rgba(5, 0, 0, 0) 100%);
}

.trust-liner-right {
    width: 50%;
    background: linear-gradient(
        270deg,
        rgba(5, 0, 0, 0) 0%,
        rgba(87, 129, 255, 0.4) 76.44%
    );
}

.trust-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 60px 40px 80px;
}

.trust-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.trust-card-icon {
    width: auto;
    height: 240px;
    object-fit: contain;
    margin-bottom: 24px;
}

.trust-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 12px;
}

.trust-card-desc {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.trust-rescue {
    background: linear-gradient(
        90deg,
        rgba(84, 90, 153, 0) 0%,
        rgba(28, 30, 51, 0.5) 48.08%,
        rgba(56, 60, 102, 0) 100%
    );
    padding: 20px 30px;
    margin: 0px 250px;
}

.trust-rescue-text {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.trust-rescue-link {
    display: inline-block;
    color: #1c1e33;
    font-size: 20px;
    font-weight: 700;
    background: #fff;
    border: none;
    border-radius: 40px;
    padding: 12px 26px;
    margin-left: 8px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.trust-rescue-link:hover {
    opacity: 0.85;
}

/* Trust CTA (選擇最適合你的儲存方式) */
.trust-cta {
    position: relative;
    text-align: center;
    margin-top: 300px;
}

.trust-cta-liner {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 0;
}

.trust-cta-liner-left {
    width: 50%;
    background: linear-gradient(270deg, #cd4f2ba1 0%, rgba(5, 0, 0, 0) 100%);
}

.trust-cta-liner-right {
    width: 50%;
    background: linear-gradient(
        270deg,
        rgba(5, 0, 0, 0) 0%,
        rgba(87, 129, 255, 0.2) 76.44%
    );
}

.trust-cta-title {
    position: relative;
    z-index: 1;
    font-size: 44px;
    font-weight: 700;
    color: #d1ddf4;
    margin: 60px 0;
    padding: 0 40px;
    line-height: 1.3;
    transform: translateY(-150px);
}

.trust-cta-links {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 832px;
    margin: 0 auto;
    padding: 0 40px;
    transform: translateY(-150px);
}

.trust-cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 832px;
    height: 147px;
    border-radius: 74px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: opacity 0.3s;
    overflow: hidden;
}

.trust-cta-link span {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
}

.trust-cta-onetouch span {
    color: #98aae1;
}

.trust-cta-firecuda span {
    color: #eaae87;
}

.trust-cta-link:hover {
    opacity: 0.85;
}

.trust-cta-onetouch {
    background-image: url("/north-star-assets/images/trust-onetouch-bg.png");
}

.trust-cta-firecuda {
    background-image: url("/north-star-assets/images/trust-firecuda-bg.png");
}

.trust-cta-buy {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: #fff;
    color: #000;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    padding: 20px 82px;
    border-radius: 999px;
    margin-top: 40px;
    transform: translateY(-150px);
    transition: opacity 0.3s;
}

.trust-cta-buy:hover {
    opacity: 0.85;
}

@media (max-width: 1280px) {
    .section-card-text p {
        font-size: 28px;
    }
    .section-text-1 {
        right: 2%;
    }
    .section-text-3 {
        right: 2%;
    }
    .firecuda-hero {
        min-height: 600px;
    }
    .firecuda-hero-bg {
        min-height: 600px;
    }
    .firecuda-hero-product {
        max-width: 25%;
    }
    .onetouch-hero-product {
        max-width: 25%;
    }
    .onetouch-hero {
        min-height: 600px;
    }
    .onetouch-hero-bg {
        min-height: 600px;
    }
    .firecuda-block3-content {
        max-width: 25%;
    }
    .onetouch-block3-content {
        max-width: 25%;
    }
    .firecuda-block4-text {
        padding-left: 150px;
    }
    .firecuda-section-overlay {
        padding-right: 2%;
    }
    .onetouch-section-overlay {
        padding-left: 10%;
    }
    .firecuda-block4-content {
        top: 70%;
        transform: translateY(-50%);
    }
    .onetouch-block4-text {
        padding-right: 150px;
    }
    .onetouch-block4-content {
        top: 70%;
        transform: translateY(-50%);
    }
    .trust-rescue {
        margin: 0px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .firecuda-hero-overlay {
        gap: 3%;
    }

    .firecuda-hero-title {
        font-size: 32px;
    }

    .firecuda-hero-subtitle {
        font-size: 20px;
    }

    .firecuda-section-title {
        font-size: 28px;
    }

    .firecuda-section-subtitle {
        font-size: 18px;
    }

    .firecuda-section-text {
        max-width: 300px;
    }

    .firecuda-block3-title {
        font-size: 28px;
    }

    .firecuda-block3-subtitle {
        font-size: 18px;
    }

    .firecuda-block4-text {
        padding-left: 80px;
    }

    .firecuda-block4-inner {
        min-height: 450px;
    }

    .firecuda-block4-title {
        font-size: 28px;
    }

    .firecuda-block4-subtitle {
        font-size: 18px;
    }

    .firecuda-block4-content {
        max-width: 50%;
    }

    .firecuda-block4-deco {
        left: 5%;
    }

    .onetouch-hero-overlay {
        gap: 3%;
    }

    .onetouch-hero-title {
        font-size: 32px;
    }

    .onetouch-hero-subtitle {
        font-size: 20px;
    }

    .onetouch-section-title {
        font-size: 28px;
    }

    .onetouch-section-subtitle {
        font-size: 18px;
    }

    .onetouch-section-text {
        max-width: 300px;
    }

    .onetouch-block3-title {
        font-size: 28px;
    }

    .onetouch-block3-subtitle {
        font-size: 18px;
    }

    .onetouch-block4-text {
        padding-right: 80px;
    }

    .onetouch-block4-inner {
        min-height: 450px;
    }

    .onetouch-block4-title {
        font-size: 28px;
    }

    .onetouch-block4-subtitle {
        font-size: 18px;
    }

    .onetouch-block4-content {
        max-width: 50%;
    }

    .onetouch-block4-deco {
        right: 5%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .north-star-banner {
        aspect-ratio: 375 / 516;
        background-image: url("/north-star-assets/images/banner-mobile.png");
    }

    .banner-title-container {
        bottom: 10%;
        padding: 0 30px;
    }

    .banner-title-container .banner-title {
        width: 55%;
        min-width: 300px;
    }

    .banner-title-container .banner-divider {
        width: 70%;
        margin-top: 14px;
    }

    .banner-title-container .banner-subtitle {
        font-size: 20px;
        font-weight: 500;
        margin-top: 12px;
        letter-spacing: 1px;
    }

    .banner-title-container .banner-subtitle .subtitle-dot {
        display: none;
    }

    .banner-title-container .banner-subtitle .subtitle-br {
        display: inline;
    }

    .banner-title-container .banner-desc {
        font-size: 16px;
        font-weight: 400;
        margin-top: 8px;
    }

    .banner-title-container .banner-desc .desc-br {
        display: inline;
    }
    .north-star-section {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 24px 0px 0px 0px;
    }

    .section-title-container {
        gap: 28px;
    }
    .section-title-icon {
        width: 38px;
    }
    .section-title {
        font-size: 24px;
    }

    /* Section Cards Mobile - 共用 */
    .section-card {
        max-width: 85%;
        margin: 30px auto 0;
    }

    .section-card-text p {
        font-size: 20px;
    }

    /* Card 1 Mobile: 圖滿版，文右下 */
    .section-card-1 .section-card-img {
        width: 100%;
    }
    .section-text-1 {
        top: 80%;
        left: 30%;
        transform: translateY(0%);
    }

    /* Card 2 Mobile: 圖滿版，文左下 */
    .section-card-2 .section-card-img {
        width: 100%;
        margin-left: 0;
    }
    .section-text-2 {
        top: 80%;
        left: 30%;
        transform: translateY(0%);
    }

    /* Card 3 Mobile: 圖滿版，文右下 */
    .section-card-3 .section-card-img {
        width: 100%;
        margin: 0;
    }
    .section-text-3 {
        top: 80%;
        left: 30%;
        transform: translateY(0%);
    }

    .section-arrow {
        width: 38px;
        margin: 28px auto;
    }

    .selector {
        height: 120px;
    }

    .selector-icon {
        width: 150px;
        height: auto;
        transform: translate(-50%, -50%);
    }

    .selector-inner {
        padding-bottom: 12px;
    }

    .selector-label {
        font-size: 22px;
    }

    /* FireCuda Hero Mobile */
    .firecuda-hero-overlay {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .firecuda-hero-text {
        text-align: center;
        gap: 16px;
    }

    .firecuda-hero-title {
        font-size: 24px;
    }

    .firecuda-hero-subtitle {
        font-size: 16px;
    }

    .firecuda-hero-product {
        max-width: 55%;
    }

    /* OneTouch Hero Mobile */
    .onetouch-hero-overlay {
        flex-direction: column-reverse;
        justify-content: center;
        gap: 20px;
    }

    .onetouch-hero-text {
        text-align: center;
        gap: 16px;
    }

    .onetouch-hero-title {
        font-size: 24px;
    }

    .onetouch-hero-subtitle {
        font-size: 16px;
    }

    .onetouch-hero-product {
        max-width: 55%;
    }

    /* FireCuda Section Mobile */
    .firecuda-section-overlay {
        align-items: flex-end;
        justify-content: flex-start;
        padding: 0 20px 120px;
    }

    .firecuda-section-title {
        font-size: 24px;
    }

    .firecuda-section-subtitle {
        font-size: 16px;
    }

    /* OneTouch Section Mobile */
    .onetouch-section-overlay {
        align-items: flex-end;
        justify-content: flex-start;
        padding: 0 20px 80px;
    }

    .onetouch-section-title {
        font-size: 24px;
    }

    .onetouch-section-subtitle {
        font-size: 16px;
    }

    /* FireCuda Block 3 Mobile */
    .mobile-br {
        display: block;
    }

    .firecuda-block3-overlay {
        justify-content: flex-start;
        padding-top: 50%;
    }

    .firecuda-block3-title {
        font-size: 24px;
    }

    .firecuda-block3-subtitle {
        font-size: 16px;
    }

    .firecuda-block3-content {
        max-width: 55%;
        min-width: 250px;
    }

    .firecuda-block3-hero {
        width: 100%;
    }

    /* OneTouch Block 3 Mobile */
    .onetouch-block3-overlay {
        justify-content: flex-start;
        padding-top: 50%;
    }

    .onetouch-block3-title {
        font-size: 24px;
    }

    .onetouch-block3-subtitle {
        font-size: 16px;
    }

    .onetouch-block3-content {
        max-width: 55%;
        min-width: 250px;
    }

    .onetouch-block3-hero {
        width: 100%;
    }

    /* FireCuda Block 4 Mobile */
    .firecuda-block4-inner {
        flex-direction: column;
        gap: 30px;
        min-height: 500px;
    }

    .firecuda-block4-text {
        padding-left: 30px;
    }

    .firecuda-block4-title {
        font-size: 24px;
    }

    .firecuda-block4-subtitle {
        font-size: 16px;
    }

    .firecuda-block4-content {
        position: absolute;
        top: auto;
        bottom: 50px;
        right: 0;
        transform: none;
        max-width: 60%;
        min-width: 300px;
    }

    /* OneTouch Block 4 Mobile */
    .onetouch-block4-inner {
        flex-direction: column;
        gap: 30px;
        min-height: 500px;
    }

    .onetouch-block4-right {
        margin-left: 0;
    }

    .onetouch-block4-deco {
        right: auto;
        left: 10%;
    }

    .onetouch-block4-text {
        padding-right: 0;
        padding-left: 30px;
    }

    .onetouch-block4-title {
        font-size: 24px;
    }

    .onetouch-block4-subtitle {
        font-size: 16px;
    }

    .onetouch-block4-content {
        position: absolute;
        top: auto;
        bottom: 50px;
        left: 0;
        right: auto;
        transform: none;
        max-width: 60%;
        min-width: 300px;
    }
    .firecuda-block3-overlay {
        gap: 20px;
    }
    .onetouch-block3-overlay {
        gap: 20px;
    }

    .usb-note {
        font-size: 14px;
        margin-top: 60px;
    }

    .firecuda-block3 .usb-note {
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 20%;
        z-index: 3;
        margin-top: 0;
    }

    /* Trust Section Mobile */
    .trust-section {
        padding: 50px 0px 0;
    }

    .trust-title {
        font-size: 24px;
        margin: 0 0 24px;
    }

    .trust-title-line {
        display: block;
    }

    .trust-cards {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 40px 20px 60px;
    }

    .trust-card {
        max-width: 250px;
    }

    .trust-card-icon {
        height: 180px;
    }

    .trust-card-title {
        font-size: 22px;
    }

    .trust-card-desc {
        font-size: 16px;
    }

    .trust-rescue {
        padding: 16px 20px;
    }

    .trust-rescue-text {
        font-size: 16px;
    }

    .trust-rescue-link {
        font-size: 16px;
        display: block;
        width: fit-content;
        margin: 12px auto 0;
    }

    /* Trust CTA Mobile */
    .trust-cta {
        margin-top: 220px;
    }

    .trust-cta-title {
        font-size: 24px;
        padding: 0 20px;
        transform: translateY(-130px);
    }

    .trust-cta-links {
        padding: 0 20px;
        transform: translateY(-130px);
    }

    .trust-cta-title-line {
        display: block;
    }

    .trust-cta-link {
        height: 60px;
        border-radius: 30px;
    }

    .trust-cta-link span {
        font-size: 20px;
    }

    .trust-cta-buy {
        font-size: 20px;
        padding: 10px 32px;
        margin-top: 24px;
        transform: translateY(-100px);
    }
}

/* ========== North Star Footer ========== */
.ns-footer {
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: #e6e6e6;
}

.ns-footer-title {
    text-align: center;
    padding: 40px 0 20px;
    font-size: 32px;
    color: #000;
    margin: 0;
}

/* 推薦通路 */
.ns-recommend {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ns-recommend-product-title {
    font-size: 28px;
    font-weight: 700;
    color: #575757;
    margin: 24px 0px;
    text-align: center;
}

.ns-recommend-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ns-recommend-logo {
    background-color: #fff;
    border-radius: 12px;
    height: 70px;
    flex: 1;
    max-width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.ns-recommend-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 追蹤 Seagate 區塊 - 黑底白字 */
.ns-footer-bottom {
    background-color: #000;
    color: #fff;
    padding: 40px 80px 15px;
}

.ns-fallow {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
}

.ns-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
}

.ns-social-icons a img {
    width: 44px;
    height: 44px;
}

.ns-footer-hr {
    border-color: #fff;
}

.ns-footer-link {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    color: #fff;
}

.ns-footer-link a {
    font-size: 11.5px;
    color: #fff;
    text-decoration: none;
    padding: 10px;
}

.ns-footer-link div {
    color: rgba(255, 255, 255, 0.5);
}

.ns-copyright {
    background-color: #000;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    padding-bottom: 30px;
}

/* Mobile */
@media (max-width: 768px) {
    .ns-recommend {
        padding: 0 16px 30px;
        gap: 12px;
    }

    .ns-recommend-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .ns-recommend-logo {
        flex: 1 1 calc(50% - 6px);
        max-width: calc(50% - 6px);
        height: 56px;
    }
    .ns-recommend-product-title {
        font-size: 20px;
        margin: 16px 0px;
    }

    .ns-footer-title {
        font-size: 24px;
        padding: 30px 0 16px;
    }

    .ns-footer-bottom {
        padding: 30px 40px 15px;
    }

    .ns-fallow {
        display: block;
        text-align: center;
    }

    .ns-copyright {
        display: block;
        line-height: 2;
    }
}
