﻿body {
    font-family: "Sans", "Sans_SC", "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

header {
    background-color: transparent; /* 瀵艰埅鏍忚儗鏅€忔槑 */
    transition: background-color 0.3s; /* 骞虫粦杩囨浮鏁堟灉 */
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed; /* 鍥哄畾鍦ㄩ《閮?*/
    width: 100%; /* 瀹藉害鍗犳弧鏁翠釜瑙嗗彛瀹藉害 */
    top: 0; /* 椤堕儴瀵归綈 */
    z-index: 1000; /* 纭繚瀹冨湪鍏朵粬鍐呭涔嬩笂 */
    font-family: "Sans_SC", "Sans", "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.header-scrolled {
    background-color: #2a6aa1; /* 婊氬姩鍚庣殑涓嶉€忔槑鑳屾櫙锛屾偍鍙互鏍规嵁闇€瑕佹洿鏀归鑹?*/
}

/* 楂樺垎杈ㄧ巼灞忓箷涓婇殣钘忚彍鍗曞浘鏍?*/
.menu-icon {
    display: none;
}

.menu-icon::before {
    content: "MENU";
}

.header-logo {
    height: auto; /* 璋冩暣鍥炬爣澶у皬 */
    width: 10%;
    margin-left: 10%;
}

.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%; /* 璁剧疆瀹藉害 */
    font-size: 18px; /* 鍔犲ぇ瀛椾綋澶у皬锛岃繖閲岀殑鍊煎彲浠ユ牴鎹偍鐨勫叿浣撻渶姹傝皟鏁?*/
    font-weight: bold; /* 鍔犵矖瀛椾綋 */
}

.navigation a {
    color: black;
    text-decoration: none;
    margin: 0 20px;

}

/* Shipping calculator (CN) */
.fp-shipping-calc {
    --calc-primary: #0a2a43;
    --calc-accent: #0b63c6;
    --calc-muted: #6c7a89;
    --calc-border: #e4eaf0;
    --calc-bg: #f6f9fc;
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 24px 80px;
}

.fp-calc-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.fp-calc-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--calc-primary);
}

.fp-calc-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 6px;
    background: var(--calc-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.fp-calc-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.fp-calc-card {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--calc-border);
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fp-calc-card.is-active {
    border-color: rgba(11, 99, 198, 0.4);
    box-shadow: 0 12px 26px rgba(11, 99, 198, 0.12);
}

.fp-calc-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eef5ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fp-calc-icon svg {
    width: 24px;
    height: 24px;
    fill: #2a6edb;
}

.fp-calc-icon-text {
    font-size: 20px;
    font-weight: 700;
    color: #2a6edb;
}

.fp-calc-card-title {
    font-size: 14px;
    color: var(--calc-muted);
    display: block;
}

.fp-calc-card-summary {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--calc-primary);
    margin-top: 4px;
    min-height: 20px;
}

.fp-calc-card-summary.is-empty {
    color: transparent;
}

.fp-calc-panels {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.fp-calc-panel {
    border: 1px solid var(--calc-border);
    border-radius: 16px;
    background: #fff;
    padding: 22px 24px;
    display: none;
}

.fp-calc-panel.is-open {
    display: block;
}

.fp-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--calc-border);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.fp-panel-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--calc-primary);
}

.fp-panel-sub {
    font-size: 13px;
    color: var(--calc-muted);
    margin: 6px 0 0;
}

.fp-panel-link {
    font-size: 12px;
    color: var(--calc-accent);
    text-decoration: none;
}

.fp-panel-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fp-panel-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fp-panel-label {
    font-size: 13px;
    color: var(--calc-muted);
}

.fp-panel-input {
    border: 1px solid var(--calc-border);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    background: #fff;
}

.fp-panel-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.fp-panel-half {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fp-panel-half-insurance {
    align-items: flex-end;
    text-align: right;
}

.fp-panel-half-insurance .fp-toggle {
    align-self: flex-end;
}

.fp-panel-static,
.fp-panel-dest {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fp-panel-static-country {
    border: 1px solid var(--calc-border);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    background: #f8fafc;
    color: var(--calc-primary);
    min-width: 120px;
    text-align: center;
}

.fp-panel-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.fp-remote-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
}

.fp-remote-tag.is-remote {
    background: #fff3e0;
    color: #e65100;
}

.fp-remote-tag.is-pending {
    background: #eef2f6;
    color: #61708a;
}

.fp-panel-currency {
    max-width: 120px;
}

.fp-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--calc-muted);
}

.fp-toggle input {
    display: none;
}

.fp-toggle-slider {
    width: 40px;
    height: 22px;
    border-radius: 999px;
    background: #dfe6ed;
    position: relative;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.fp-toggle-slider::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.2s ease;
}

.fp-toggle input:checked + .fp-toggle-slider {
    background: var(--calc-accent);
}

.fp-toggle input:checked + .fp-toggle-slider::after {
    transform: translateX(18px);
}

.fp-toggle-text {
    color: var(--calc-muted);
}

.fp-panel-note {
    background: #fff7e6;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 12px;
    color: #7a5b25;
}

.fp-panel-note-warning {
    background: #fff8ef;
    color: #9c5c1b;
    margin-top: 10px;
}

.fp-panel-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.fp-panel-confirm {
    border: none;
    background: #111;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.fp-goods-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 24px;
}

.fp-panel-weight-box {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.fp-panel-weight {
    background: var(--calc-bg);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 12px;
    color: var(--calc-muted);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fp-panel-weight strong {
    color: var(--calc-primary);
    font-size: 15px;
}

.fp-goods-visual {
    background: var(--calc-bg);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fp-goods-visual svg {
    width: 100%;
    max-width: 260px;
    height: auto;
}

.fp-goods-legend {
    font-size: 12px;
    color: var(--calc-muted);
}

.fp-calc-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin: 30px 0;
}

.fp-calc-quote-btn {
    padding: 12px 24px;
    border: none;
    background: #111;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.fp-calc-error {
    color: #b00020;
    font-size: 13px;
}

.fp-calc-result {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--calc-border);
    padding: 24px;
}

.fp-result-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.fp-result-tabs {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.fp-result-tab {
    border: none;
    background: transparent;
    font-size: 14px;
    padding: 6px 0;
    color: var(--calc-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.fp-result-tab.is-active {
    color: var(--calc-primary);
    border-color: var(--calc-primary);
    font-weight: 600;
}

.fp-result-card {
    border: 1px solid #dfe8f3;
    background: #f6fbff;
    border-radius: 14px;
    padding: 18px 20px;
}

.fp-result-route {
    font-size: 13px;
    color: var(--calc-muted);
    margin-bottom: 10px;
}

.fp-result-main {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.fp-result-title-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fp-result-badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: #eaf2ff;
    color: var(--calc-accent);
    font-size: 12px;
    font-weight: 600;
}

.fp-result-days {
    font-size: 12px;
    color: #2e7d32;
}

.fp-result-weight {
    font-size: 13px;
    color: var(--calc-primary);
    margin-top: 6px;
}

.fp-result-note {
    font-size: 12px;
    color: var(--calc-muted);
    margin-top: 4px;
}

.fp-result-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--calc-primary);
}

.fp-result-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.fp-result-link {
    border: none;
    background: transparent;
    color: var(--calc-accent);
    font-size: 12px;
    cursor: pointer;
}

.fp-result-valid {
    font-size: 12px;
    color: var(--calc-muted);
}

.fp-fee-details {
    margin-top: 16px;
    border-top: 1px solid var(--calc-border);
    padding-top: 14px;
    display: grid;
    gap: 8px;
}

.fp-fee-row,
.fp-fee-total {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--calc-primary);
}

.fp-fee-total {
    font-weight: 700;
    font-size: 15px;
}

.fp-result-disclaimer {
    margin-top: 16px;
    font-size: 12px;
    color: var(--calc-muted);
}

/* Contact us (customer service) */
.fp-contact-page {
    padding-bottom: 80px;
}

.fp-contact-hero {
    background: #f3eded;
    border-bottom: 1px solid #e6e1e1;
    padding: 32px 12px;
}

.fp-contact-title {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: #111;
    padding-left: 6px;
    text-align: left;
}

.fp-contact-body {
    max-width: 1600px;
    margin: 28px auto 0;
    padding: 0 8px;
}

.fp-contact-card {
    border: 1px solid #cfcaca;
    background: #fff;
    padding: 28px;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fp-contact-text {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.fp-contact-qr img {
    width: 380px;
    max-width: 100%;
    height: auto;
}

.fp-calc-service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 40px;
}

.fp-policy-page {
    padding-bottom: 80px;
}

.fp-policy-hero {
    background: #f3eded;
    border-bottom: 1px solid #e6e1e1;
    padding: 30px 12px;
}

.fp-policy-title {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    color: #111;
    padding-left: 6px;
}

.fp-policy-body {
    max-width: 1400px;
    margin: 28px auto 0;
    padding: 0 8px;
}

.fp-policy-card {
    border: 1px solid #cfcaca;
    background: #fff;
    padding: 28px;
}

.fp-policy-card h2 {
    font-size: 22px;
    margin: 20px 0 10px;
    color: #111;
}

.fp-policy-card h3 {
    font-size: 16px;
    margin: 18px 0 8px;
    color: #111;
}

.fp-policy-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #222;
    margin: 8px 0;
}

.fp-policy-card ul,
.fp-policy-card ol {
    margin: 8px 0 12px 20px;
    padding: 0;
    color: #222;
    font-size: 14px;
    line-height: 1.7;
}

.fp-policy-card em {
    color: #333;
}

.fp-goods-page {
    padding-bottom: 80px;
}

.fp-goods-body {
    max-width: 1500px;
    margin: 28px auto 0;
    padding: 0 4px;
}

.fp-goods-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(240px, 42%) minmax(0, 1fr);
    gap: 28px;
    border: 1px solid #cfcaca;
    background: #fff;
    padding: 26px;
    overflow: hidden;
}

.fp-goods-media,
.fp-goods-content {
    transition: opacity 0.35s ease, transform 0.35s ease;
    will-change: opacity, transform;
}

.fp-goods-card.is-switching .fp-goods-media,
.fp-goods-card.is-switching .fp-goods-content {
    opacity: 0;
    transform: translateX(-24px);
}

.fp-goods-card.is-entering .fp-goods-media,
.fp-goods-card.is-entering .fp-goods-content {
    opacity: 0;
    transform: translateX(24px);
}

.fp-goods-controls {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 10px;
}

.fp-goods-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccd6e2;
    background: #f5f8fc;
    color: #111;
    font-size: 18px;
    cursor: pointer;
}

.fp-goods-arrow:hover {
    background: #e8f0fb;
}

.fp-goods-media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.fp-goods-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fp-goods-category {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.fp-goods-section {
    border-top: 1px solid #e1e1e1;
    padding-top: 14px;
}

.fp-goods-section h2 {
    font-size: 18px;
    margin: 8px 0 8px;
    color: #111;
}

.fp-goods-section h3 {
    font-size: 15px;
    margin: 12px 0 6px;
    color: #111;
}

.fp-goods-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #222;
    margin: 6px 0;
}

.fp-goods-section strong {
    color: #111;
}

@media (max-width: 960px) {
    .fp-goods-card {
        grid-template-columns: 1fr;
    }

    .fp-goods-controls {
        position: static;
        justify-content: flex-end;
        margin-bottom: 10px;
    }
}

.fp-service-card {
    background: #f3f9ff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #e6f0fb;
    min-height: 220px;
}

.fp-service-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf4ff;
    border-radius: 12px;
}

.fp-service-icon svg {
    width: 36px;
    height: 36px;
}

.fp-service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--calc-primary);
}

.fp-service-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.fp-service-tag {
    background: #dce9f7;
    color: #4b6b8b;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
}

.fp-service-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #6c7a89;
    margin: 0;
}

@media (max-width: 980px) {
    .fp-calc-cards {
        grid-template-columns: 1fr;
    }

    .fp-panel-row {
        grid-template-columns: 1fr;
    }

    .fp-goods-grid {
        grid-template-columns: 1fr;
    }

    .fp-panel-weight-box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fp-calc-actions {
        align-items: flex-start;
    }

    .fp-result-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .fp-calc-service-cards {
        grid-template-columns: 1fr;
    }

    .fp-contact-title {
        font-size: 30px;
    }

    .fp-contact-card {
        min-height: auto;
    }
}

.navigation a:empty {
    display: none;
}

@media (min-width: 1024px) and (max-width: 1600px) {
    .col {
        width: 14.4%; /* 鍦ㄥ皬灞忓箷涓婏紝姣忎釜col鍗犳嵁鏇村绌洪棿 */
    }
}

@media (min-width: 860px) and (max-width: 1080px) {
    .navigation a {
        font-size: 14px; /* 杈冨皬鐨勫瓧浣撳ぇ灏?*/
        margin-right: 2%; /* 杈冨皬鐨勫彸闂磋窛 */
    }

    .col {
        width: 19.2%; /* 鍦ㄦ洿灏忓睆骞曚笂锛屾瘡涓猚ol鍗犳嵁鏁翠釜瀹藉害 */
    }

    /*.dimension, .dimension .value,.dimension .unit{*/
    /*    font-size: 14px;*/
    /*}*/
}

.navigation a.active {
    background-color: #254680; /* 杩欓噷鐨勯鑹蹭唬鐮?0000ff浠ｈ〃钃濊壊锛屾偍鍙互鏍规嵁闇€瑕佽皟鏁?*/
    border-radius: 20px; /* 杩欎細鍒涘缓鍦嗚锛屾偍鍙互鏍规嵁闇€瑕佽皟鏁村渾瑙掑ぇ灏?*/
    padding: 10px 20px; /* 鏍规嵁闇€瑕佸鍔犲唴杈硅窛鏉ラ€傞厤鏂囨湰 */
    color: #ffffff; /* 鏂囨湰棰滆壊鏀逛负鐧借壊 */
}


.language-switch {
    margin-left: auto;
    margin-right: 5%;
    width: 15%;
    display: flex;
    align-items: center;
    gap: 10px;
    --lang-switch-offset: 0px;
}

#language-select {
    border: none;
    background-color: #ffffff; /* 鎴栬€呮偍甯屾湜鐨勮儗鏅壊 */
    cursor: pointer;
}

.language-switch .language-flag {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
    flex: 0 0 auto;
    cursor: pointer;
}

.recharge-arc-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #111111;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    text-decoration: none;
    flex: 0 0 auto;
}

.recharge-arc-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

.recharge-arc-btn:hover {
    background: #f2f2f2;
}

main {
    padding: 0; /* 绉婚櫎鍐呰竟璺?*/
    margin: 0; /* 绉婚櫎澶栬竟璺濓紝濡傛灉鏈夌殑璇?*/
    width: 100%; /* 瑙嗗彛瀹藉害 */
    max-width: 100%;
    min-height: 100vh; /* 瑙嗗彛楂樺害 */
    overflow-x: hidden;
}

main img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 杩欎釜灞炴€х‘淇濆浘鐗囦笉澶辩湡涓旇鐩栨暣涓鍣?*/
}

img,
video,
canvas,
svg,
iframe {
    max-width: 100%;
}

/* Recharge page */
.recharge-section {
    position: relative;
    min-height: 100vh;
}

.recharge-section > img.page-bg-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recharge-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 110px 16px 40px;
}

.recharge-overlay .checkout-container {
    width: min(1100px, 100%);
}

.recharge-overlay .checkout-container:empty {
    display: none;
}

.recharge-overlay .checkout-container {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 12px;
}

.recharge-card {
    width: min(520px, 100%);
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
}

.recharge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.recharge-row label {
    min-width: 90px;
    font-weight: 700;
}

.recharge-row input,
.recharge-row select {
    flex: 1;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #d0d7de;
    border-radius: 10px;
    background: #ffffff;
}

#recharge-pay-btn {
    width: 100%;
    margin-top: 16px;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    background: #254680;
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
}

#recharge-pay-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

#cashier-back-btn {
    width: 100%;
    margin-top: 12px;
    padding: 12px 16px;
    border: 1px solid #254680;
    border-radius: 10px;
    background: #ffffff;
    color: #254680;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
}

/* Recharge page: centered card */
.recharge-overlay--center {
    min-height: 100%;
    justify-content: center;
    padding-top: 120px; /* leave room for fixed header */
    padding-bottom: 40px;
}

#recharge .recharge-center-card {
    width: min(420px, 92vw);
    padding: 18px 18px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(37, 70, 128, 0.18);
}

/* Policy pages */
.policy-overlay {
    padding-left: 8px;
    padding-right: 8px;
    gap: 12px;
}

.policy-header {
    width: min(1200px, 100%);
}

.policy-card {
    width: min(1200px, 100%);
    padding: 22px 24px;
}

.policy-title {
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    color: #1e2f57;
}

.policy-content {
    color: rgba(0, 0, 0, 0.78);
    line-height: 1.8;
    font-size: 14px;
}

.policy-content p {
    margin: 0 0 12px;
}

.policy-content h2 {
    margin: 18px 0 10px;
    font-size: 16px;
    font-weight: 800;
    color: #1e2f57;
}

.policy-content ul {
    margin: 0 0 12px;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 6px;
}

.policy-lead {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.84);
}

.policy-updated {
    margin-bottom: 18px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
}

.policy-label {
    margin-bottom: 8px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.78);
}

/* Get a quote page */
.fp-quote-page {
    background: #ffffff;
    padding-bottom: 0;
    min-height: auto;
}

.fp-quote-section {
    width: 100%;
    margin-bottom: 0;
}

.fp-quote-header {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 120px 16px 36px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.fp-quote-title {
    margin: 0;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    color: #121212;
    line-height: 1.08;
}

.fp-quote-title span {
    display: block;
}

.fp-quote-sub {
    max-width: 320px;
    text-align: right;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

.fp-quote-art {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.fp-quote-bg {
    width: 100%;
    height: clamp(380px, 56vw, 640px);
    object-fit: cover;
    display: block;
}

.fp-quote-actions {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 16px;
}

.fp-quote-btn {
    display: inline-block;
    min-width: 220px;
    padding: 12px 18px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: #202020;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(2px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fp-quote-btn:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.55);
    transform: translateY(-1px);
}

/* Quote form pages */
.fp-quote-form-page {
    background: #ffffff;
}

.fp-quote-form-header {
    width: min(1400px, 96vw);
    margin: 0 auto;
    padding: 100px 8px 12px;
}

.fp-quote-form-title {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: #121212;
}

.fp-quote-form-desc {
    margin: 0;
    max-width: 920px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.78);
}

.fp-quote-form-body {
    width: min(1400px, 96vw);
    margin: 0 auto 18px;
    padding: 0 8px 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
    gap: 0;
}

.fp-quote-form-panel {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-right: none;
    background: #ffffff;
    padding: 18px 20px;
    box-sizing: border-box;
}

.fp-quote-form-section-title {
    margin: 10px 0 12px;
    font-size: 15px;
    font-weight: 800;
    color: #111111;
}

.fp-quote-field {
    margin-bottom: 16px;
}

.fp-quote-field-half {
    width: 100%;
}

.fp-quote-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.78);
}

.fp-quote-required {
    color: #b30000;
    margin-left: 4px;
}

.fp-quote-input {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 14px;
    box-sizing: border-box;
    background: #ffffff;
}

.fp-quote-textarea {
    resize: vertical;
}

.fp-quote-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
}

.fp-quote-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.76);
}

.fp-quote-form-media {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-left: none;
    overflow: hidden;
    height: 100%;
    display: flex;
}

.fp-quote-form-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-quote-submit {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    background: #111111;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.fp-quote-submit:hover {
    background: #000000;
}

@media (max-width: 960px) {
    .fp-quote-form-body {
        grid-template-columns: 1fr;
    }

    .fp-quote-form-media {
        order: -1;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .fp-quote-header {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 110px;
    }

    .fp-quote-sub {
        max-width: none;
        text-align: left;
    }

    .fp-quote-btn {
        width: min(260px, 70vw);
        min-width: 0;
    }
}

#recharge .recharge-center-title {
    margin: 0 0 14px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    color: #254680;
}

#recharge .recharge-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.78);
}

#recharge .recharge-amount-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

#recharge .recharge-amount-row input {
    flex: 1;
    padding: 12px 12px;
    font-size: 16px;
    border: 1px solid rgba(37, 70, 128, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    margin: 0;
}

#recharge .recharge-amount-row select {
    width: 110px;
    padding: 12px 10px;
    font-size: 16px;
    border: 1px solid rgba(37, 70, 128, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
}

#recharge .recharge-pay-btn {
    width: 100%;
    margin-top: 14px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #254680, #2a6aa1);
    color: #ffffff;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}

/* Cashier page */
#cashier.cashier-section {
    min-height: 300vh; /* 椤甸潰闀垮害绾︿负褰撳墠鐨?3 鍊?*/
}

#cashier .cashier-overlay {
    min-height: 260vh;
    padding-bottom: 55vh; /* 鐣欑┖闂磋搴曢儴 ForePax 鍥剧墖灞曠ず */
}

#cashier .cashier-info-card {
    width: min(420px, 92vw);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

#cashier .cashier-info-card h1 {
    margin: 0;
}

#cashier #cashier-summary {
    margin: 0;
}

#cashier .cashier-meta {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

#cashier .cashier-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.65);
}

#cashier .cashier-meta-row span:last-child {
    font-weight: 700;
    color: #111111;
    text-align: right;
}

#cashier #cashier-back-btn {
    width: min(220px, 100%);
    margin-top: 10px;
}

#cashier #ckp-embed-wrapper {
    width: min(1100px, 100%);
    margin: 0 auto;
    height: min(800px, 240vh); /* 绾︿负鍘熸潵鐨?3 鍊嶆樉绀洪珮搴︼紙鍙傝€冨畼鏂?Demo 800px锛?*/
    overflow: auto; /* 鏀寔鍦ㄦ敹閾跺彴瀹瑰櫒鍐呮粴鍔?*/
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

/* ForePax 鍥剧墖鏀惧埌椤甸潰鏈€涓嬫柟 */
#cashier .cashier-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: 55vh;
    object-fit: cover;
    z-index: 0;
}

.recharge-message {
    margin-top: 12px;
    min-height: 20px;
    color: #111111;
}

/* Recharge page: modern layout */
.recharge-section--modern {
    background: linear-gradient(140deg, #f4f7fb 0%, #e6eef9 55%, #f9fbff 100%);
}

.recharge-overlay--grid {
    align-items: stretch;
    padding: 120px 0 70px;
}

.recharge-shell {
    width: min(1280px, 92vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.recharge-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.recharge-title {
    margin: 0 0 6px;
    font-size: clamp(30px, 3.2vw, 40px);
    font-weight: 900;
    color: #111111;
}

.recharge-subtitle {
    margin: 0;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.68);
}

.recharge-status {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.recharge-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #ffffff;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.recharge-pill-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.55);
}

.recharge-pill-value {
    font-weight: 800;
    color: #111111;
}

.recharge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2dbf6f;
    box-shadow: 0 0 0 4px rgba(45, 191, 111, 0.18);
}

.recharge-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 24px;
}

.recharge-grid--single {
    grid-template-columns: minmax(0, 1fr);
}

.recharge-panel {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 22px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.recharge-panel-head h2 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 800;
    color: #111111;
}

.recharge-panel-head p {
    margin: 0 0 12px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

.recharge-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 6px 0 18px;
}

.recharge-chip {
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 10px;
    background: #f3f6fb;
    padding: 12px 10px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.recharge-chip:hover,
.recharge-chip.is-active {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.recharge-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recharge-field input,
.recharge-field textarea {
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 15px;
    background: #ffffff;
}

.recharge-field textarea {
    resize: vertical;
    min-height: 90px;
}

.recharge-label-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 12px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.72);
    font-size: 13px;
}

.recharge-amount-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 12px;
}

.recharge-amount-row input,
.recharge-amount-row select {
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 15px;
    background: #ffffff;
}

.recharge-pay-btn {
    margin-top: 16px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    background: #111111;
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
}

.recharge-section--modern #recharge-pay-btn {
    background: #111111;
    color: #ffffff;
}

.recharge-link-panel {
    margin-top: 16px;
    padding: 12px;
    border-radius: 10px;
    border: 1px dashed rgba(0, 0, 0, 0.18);
    background: #f6f9ff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recharge-link-panel.is-hidden {
    display: none;
}

.recharge-link-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
}

.recharge-link-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.recharge-link-row input {
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    background: #ffffff;
}

.recharge-link-copy {
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    background: #111111;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.recharge-link-help {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.5;
}

/* Join us page */
.fp-join-page {
    background: #ffffff;
    color: #111111;
}

.fp-join-hero {
    position: relative;
    padding: 160px 0 96px;
    background: linear-gradient(140deg, #f4f7fb 0%, #e6eef9 55%, #f9fbff 100%);
    overflow: hidden;
}

.fp-join-hero::before,
.fp-join-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0;
}

.fp-join-hero::before {
    width: 520px;
    height: 520px;
    top: -220px;
    right: -160px;
    background: #cfe2fb;
}

.fp-join-hero::after {
    width: 420px;
    height: 420px;
    bottom: -200px;
    left: -160px;
    background: #dbeefe;
}

.fp-join-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1360px, 96vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
    text-align: center;
}

.fp-join-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 800;
    font-size: 14px;
    color: #254680;
    box-shadow: 0 8px 18px rgba(16, 42, 84, 0.12);
}

.fp-join-hero-copy {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fp-join-hero-copy h1 {
    margin: 12px 0 10px;
    font-weight: 900;
    line-height: 1.12;
    color: #0f2a4d;
    text-shadow: 0 12px 30px rgba(12, 41, 74, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.fp-join-hero-line {
    display: block;
}

.fp-join-hero-line--primary {
    font-size: clamp(44px, 5.2vw, 72px);
    font-weight: 900;
}

.fp-join-hero-line--secondary {
    font-size: clamp(34px, 4.2vw, 58px);
    font-weight: 800;
}

.fp-join-hero-line--tertiary {
    font-size: clamp(30px, 3.8vw, 50px);
    font-weight: 800;
}

.fp-join-hero-copy p {
    margin: 0;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.68);
    max-width: 760px;
    text-align: center;
}

.fp-join-hero-highlight {
    color: #0b63c6;
    background: linear-gradient(90deg, rgba(11, 99, 198, 0.15), rgba(11, 99, 198, 0));
    padding: 0 6px;
    border-radius: 999px;
}

.fp-join-hero-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.fp-join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    border: 1px solid transparent;
}

.fp-join-btn--primary {
    background: #0b63c6;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(11, 99, 198, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fp-join-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(11, 99, 198, 0.35);
}

.fp-join-btn--ghost {
    background: #ffffff;
    color: #111111;
    border-color: rgba(0, 0, 0, 0.15);
}

.fp-join-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding-top: 10px;
    width: min(1120px, 96vw);
}

.fp-join-stat {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 18px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.fp-join-stat-value {
    font-size: 26px;
    font-weight: 900;
}

.fp-join-stat-label {
    margin-top: 6px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
}

.fp-join-section {
    padding: 70px 0;
}

.fp-join-section--light {
    background: #f5f7fb;
}

.fp-join-section-inner {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.fp-join-section-head {
    margin-bottom: 28px;
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.fp-join-section-head h2 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 900;
}

.fp-join-section-head p {
    margin: 0;
    color: rgba(0, 0, 0, 0.65);
}

.fp-join-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 14px;
    background: #f2f6fb;
    box-shadow: inset 0 0 0 1px rgba(15, 42, 77, 0.05);
    width: fit-content;
    margin: 0 auto 28px;
}

.fp-join-tab {
    border: none;
    background: transparent;
    padding: 10px 26px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    color: #5b6b80;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fp-join-tab.is-active {
    background: #ffffff;
    color: #0b63c6;
    box-shadow: 0 10px 20px rgba(21, 42, 74, 0.15);
}

.fp-join-tab-panels {
    position: relative;
}

.fp-join-tab-panel {
    display: none;
    opacity: 0;
    pointer-events: none;
}

.fp-join-tab-panel.is-active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.fp-join-tab-panel.is-active.from-left {
    animation: fp-join-slide-in-left 0.35s ease;
}

.fp-join-tab-panel.is-active.from-right {
    animation: fp-join-slide-in-right 0.35s ease;
}

@keyframes fp-join-slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fp-join-slide-in-right {
    from {
        opacity: 0;
        transform: translateX(32px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fp-join-detail-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 40px rgba(21, 42, 74, 0.08);
}

.fp-join-detail-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.fp-join-detail-head h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    color: #0f2a4d;
}

.fp-join-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: #e8f1ff;
    color: #0b63c6;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(11, 99, 198, 0.12);
}

.fp-join-detail-desc {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.65);
}

.fp-join-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.fp-join-detail-box {
    border-radius: 18px;
    padding: 18px;
    border: 1px solid transparent;
}

.fp-join-detail-box h4 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 900;
}

.fp-join-detail-box ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: rgba(0, 0, 0, 0.65);
    font-size: 13px;
}

.fp-join-detail-box--positive {
    background: #f3fff5;
    border-color: rgba(43, 173, 94, 0.2);
    color: #1f7a43;
}

.fp-join-detail-box--negative {
    background: #fff5f5;
    border-color: rgba(230, 90, 90, 0.2);
    color: #b24343;
}

.fp-join-benefits-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.fp-join-benefits-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fp-join-benefit-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 40px rgba(21, 42, 74, 0.08);
}

.fp-join-benefit-card--icon {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.fp-join-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #e8f1ff;
    color: #0b63c6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(11, 99, 198, 0.12);
}

.fp-join-benefit-icon svg {
    width: 28px;
    height: 28px;
}

.fp-join-benefit-copy h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
    color: #0f2a4d;
}

.fp-join-benefit-copy p {
    margin: 0;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.6;
}

.fp-join-commission-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fp-join-commission-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    color: #10233f;
    box-shadow: 0 12px 30px rgba(21, 42, 74, 0.07);
}

.fp-join-commission-card strong {
    font-size: 20px;
    color: #0b63c6;
}

.fp-join-benefits-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 2px;
}

.fp-join-note-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(11, 99, 198, 0.4);
    color: #0b63c6;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fp-join-chart-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 26px 26px 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 40px rgba(21, 42, 74, 0.08);
}

.fp-join-chart-card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 800;
    color: #0f2a4d;
    text-align: center;
}

.fp-join-chart {
    position: relative;
    height: 320px;
    padding: 20px 18px 40px 58px;
    border-radius: 16px;
    background-image: linear-gradient(to top, rgba(15, 42, 77, 0.08) 1px, transparent 1px);
    background-size: 100% 20%;
}

.fp-join-chart-axis {
    position: absolute;
    left: 14px;
    top: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(15, 42, 77, 0.55);
}

.fp-join-chart-bars {
    position: absolute;
    left: 64px;
    right: 18px;
    top: 20px;
    bottom: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.fp-join-chart-bar {
    flex: 0 0 clamp(56px, 12vw, 96px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    height: 100%;
    cursor: pointer;
}

.fp-join-chart-bar-fill {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 16px 22px rgba(11, 99, 198, 0.2);
    position: relative;
    overflow: visible;
    transform-origin: bottom;
    transition: transform 0.2s ease;
}

.fp-join-chart-bar:hover .fp-join-chart-bar-fill {
    transform: scaleY(1.05);
}

.fp-join-chart-amount {
    position: absolute;
    left: 50%;
    top: -46px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #0b1f3b;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(6, 18, 36, 0.3);
    opacity: 0;
    transform: translate(-50%, 6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    white-space: nowrap;
}

.fp-join-chart-bar:hover .fp-join-chart-amount {
    opacity: 1;
    transform: translate(-50%, 0);
}

.fp-join-chart-amount-title {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
}

.fp-join-chart-amount-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fp-join-chart-swatch {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #1f88e8;
    box-shadow: 0 2px 6px rgba(31, 136, 232, 0.4);
    flex-shrink: 0;
}

.fp-join-chart-amount-text {
    font-size: 12px;
    font-weight: 600;
    color: #dce8ff;
}

.fp-join-chart-bar-fill--strong,
.fp-join-chart-bar-fill--mid,
.fp-join-chart-bar-fill--light {
    background: #1f88e8;
}

.fp-join-chart-bar-label {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

.fp-join-chart-legend {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.55);
    text-align: center;
}

.fp-join-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.fp-join-service-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
}

.fp-join-service-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
}

.fp-join-service-card p {
    margin: 0 0 12px;
    color: rgba(0, 0, 0, 0.65);
}

.fp-join-service-card ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.7;
    font-size: 13px;
}

.fp-join-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.fp-join-audience-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 40px rgba(21, 42, 74, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fp-join-audience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 99, 198, 0.18);
    box-shadow: 0 24px 48px rgba(21, 42, 74, 0.16);
}

.fp-join-audience-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef5ff;
    color: #0b63c6;
    box-shadow: inset 0 0 0 1px rgba(11, 99, 198, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fp-join-audience-icon svg {
    width: 28px;
    height: 28px;
}

.fp-join-audience-card:hover .fp-join-audience-icon {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 22px rgba(11, 99, 198, 0.2);
}

.fp-join-audience-card h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 900;
    color: #0f2a4d;
}

.fp-join-audience-card p {
    margin: 0;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}

.fp-join-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    position: relative;
    align-items: stretch;
}

.fp-join-process-grid::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 46px;
    height: 2px;
    background: #e8eef7;
    z-index: 0;
}

.fp-join-process-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    box-shadow: 0 16px 32px rgba(21, 42, 74, 0.08);
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fp-join-process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(11, 99, 198, 0.2);
    box-shadow: 0 22px 44px rgba(21, 42, 74, 0.16);
}

.fp-join-process-card span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #0b63c6;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 14px;
    box-shadow: 0 12px 20px rgba(11, 99, 198, 0.25);
}

.fp-join-process-card h4 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 900;
    color: #0f2a4d;
}

.fp-join-process-card p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
}

.fp-join-faq {
    background: #ffffff;
}

.fp-join-faq-head h2 {
    font-size: 30px;
}

.fp-join-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 40px;
}

.fp-join-faq-item {
    padding: 8px 6px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.fp-join-faq-item h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 900;
    color: #0f2a4d;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fp-join-faq-marker {
    color: #0b63c6;
    font-weight: 900;
}

.fp-join-faq-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.62);
}

.fp-join-faq-item:hover {
    transform: translateY(-4px);
}

.fp-join-cta {
    padding: 80px 0;
    background: transparent;
    color: #0f2a4d;
}

.fp-join-cta-inner {
    width: min(1080px, 92vw);
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #0f3a72 0%, #0b4b93 45%, #0a3f7c 100%);
    color: #ffffff;
    border-radius: 28px;
    padding: 48px 32px;
    box-shadow: 0 22px 48px rgba(9, 39, 88, 0.24);
}

.fp-join-cta-inner h2 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 900;
}

.fp-join-cta-inner p {
    margin: 0 0 22px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.fp-join-cta-note {
    margin-top: 14px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
}

.fp-join-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 14px;
    background: #ffffff;
    color: #0b3f78;
    font-weight: 900;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 16px 28px rgba(9, 39, 88, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fp-join-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(9, 39, 88, 0.32);
}

@media (max-width: 960px) {
    .fp-join-hero {
        padding: 130px 0 70px;
    }

    .fp-join-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fp-join-benefits {
        grid-template-columns: 1fr;
    }

    .fp-join-service-grid {
        grid-template-columns: 1fr;
    }

    .fp-join-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fp-join-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .fp-join-benefits-layout {
        grid-template-columns: 1fr;
    }

    .fp-join-process-grid::before {
        display: none;
    }

    .fp-join-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fp-join-faq-grid {
        grid-template-columns: 1fr;
    }

    .fp-join-detail-grid {
        grid-template-columns: 1fr;
    }

    .fp-join-chart {
        height: 260px;
    }
}

@media (max-width: 640px) {
    .fp-join-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .fp-join-chart {
        height: 230px;
        padding: 16px 12px 32px 44px;
    }

    .fp-join-chart-axis {
        left: 10px;
        font-size: 11px;
    }

    .fp-join-chart-bars {
        left: 50px;
        right: 12px;
        gap: 16px;
    }

    .fp-join-audience-grid {
        grid-template-columns: 1fr;
    }
}

.recharge-method-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recharge-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #f6f8fb;
    cursor: pointer;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.recharge-method:hover {
    border-color: rgba(37, 70, 128, 0.6);
    box-shadow: 0 12px 20px rgba(37, 70, 128, 0.18);
}

.recharge-method-name {
    font-weight: 800;
    color: #111111;
}

.recharge-method-badges {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
}

.recharge-badge {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #ffffff;
    color: rgba(0, 0, 0, 0.7);
}

.recharge-foot {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 960px) {
    .recharge-grid {
        grid-template-columns: 1fr;
    }

    .recharge-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .recharge-label-row {
        grid-template-columns: 1fr;
    }

    .recharge-amount-row {
        grid-template-columns: 1fr;
    }
}

#ckp-embed-wrapper {
    /* 榛樿涓嶅己鍒跺昂瀵革紝閬垮厤瑕嗙洊 #cashier 鐨勮缃?*/
}

@media only screen and (max-width: 860px) {
    header {
        background: white;
    }

    main {
        margin-top: 10%
    }

    .header {
        position: relative;
        z-index: 2;
    }

    .header-logo {
        height: auto; /* 璋冩暣鍥炬爣澶у皬 */
        width: 30%;
        margin-left: 10%;
    }

    .navigation {
        display: none;
    }

    .menu-icon {
        display: block;
        cursor: pointer;
        position: absolute; /* 鏂板瀹氫綅灞炴€?*/
        right: 4%; /* 灏嗚彍鍗曞浘鏍囩Щ鑷冲彸渚?*/
        /*top: 10px; !* 鍙牴鎹渶瑕佽皟鏁撮《閮ㄤ綅缃?*!*/
        /* 鍏朵粬鏍峰紡鏍规嵁闇€瑕佹坊鍔?*/
    }


    .menu-icon + .navigation {
        display: none; /* 榛樿闅愯棌瀵艰埅鏍?*/
        position: fixed; /* 鍥哄畾浣嶇疆 */
        flex-direction: column; /* 绾靛悜鎺掑垪 */
        background-color: white; /* 鐧借壊鑳屾櫙 */
        color: black; /* 榛戣壊瀛椾綋 */
        top: 5.8%; /* 浠庨《閮ㄥ紑濮?*/
        left: 0; /* 浠庡乏渚у紑濮?*/
        width: 100%; /* 璁剧疆瀹藉害涓?00% */
        height: 37%; /* 楂樺害涓鸿鍙ｉ珮搴?*/
        z-index: 1;
    }

    .menu-icon + .navigation a {
        display: block; /* 鍧楃骇鏄剧ず */
        text-align: center; /* 鏂囨湰灞呬腑 */
        margin: 10px 0; /* 娣诲姞涓€浜涢棿璺?*/
    }

    .language-switch {
        margin-left: auto;
        margin-right: 18%;
        width: 10%;
    }

    .hide-currency {
        display: none;
    }

}

/* 娣诲姞鑷畾涔夋牱寮?*/
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-header {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#form-header-first {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 4%;
}

.toggle-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: none;
    border-top: 7px solid black; /* 纭繚杩欐槸鎸囧悜涓婃柟鐨勭澶?*/
    margin-left: 10px;
}

.toggle-arrow.expanded {
    /* 绠ご鍚戜笅鐨勬牱寮?*/
    transform: rotate(180deg);
}

.form-and-box-container {
    display: flex; /* 浣跨敤 Flexbox 甯冨眬 */
    flex-direction: row; /* 姘村钩鎺掑垪 */
    justify-content: left; /* 姘村钩灞呬腑 */
    align-items: start; /* 椤堕儴瀵归綈 */
    width: 100%; /* 璁剧疆閫傚綋鐨勫搴?*/
}

.container.expanded .toggle-arrow {
    /* 绠ご鏂瑰悜鏀瑰彉鐨勬牱寮?*/
    border-top: none;
    border-bottom: 7px solid black;
}

/* 鍏朵粬蹇呰鐨勬牱寮忚皟鏁?*/


.calculator-form {
    width: 50%;
    margin-left: 20%;
    margin-right: 0;
    font-size: large;
}

.text-form {
    width: 50%;
    margin-left: 20%;
    text-align: left;
    font-size: x-large;
}


.form-group {
    text-align: left;
    margin-left: 2%;
    margin-top: 1%;
    margin-bottom: 1%;
    width: 80%;
}

.form-group-mt-3-weight-display {
    text-align: left;
    margin-left: 2%;
    margin-top: 1%;
    margin-bottom: 2%;
}

.form-check {
    display: inline-block; /* 璁╁崟閫夋寜閽按骞虫帓鍒?*/
    margin-right: 2%; /* 娣诲姞鍙充晶闂撮殧 */
    margin-left: 2%;
    margin-top: 1%;
    margin-bottom: 1%;
}

.form-row-dimensions {
    text-align: left;
    margin-left: 2%;
    margin-top: 2%;
    margin-bottom: 2%;
}

.col {
    border: 2px solid #ddd; /* 娣诲姞杈规 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 娣诲姞闃村奖 */
    border-radius: 5px; /* 鍦嗚 */
    display: inline-block;
    margin-right: 10%;
    width: 12%; /* 榛樿瀹藉害 */
    height: 100%;
}

#box-quantity, #quantity-input, #sku-input, #storage-sku-input, #pack-sku-input {
    margin-left: 3%;
}

.form-control-range {
    margin-left: 5%;
}

.weight-value {
    margin-left: 7%;
}

.form-control {
    margin-left: 3%;
}


/* 閲嶉噺婊戝姩鏉″拰鏁板€兼樉绀?*/
.weight-display {
    display: flex;
    align-items: center;
}

.weight-value {
    margin-left: 10px;
}

.result-flex-container {
    display: flex;
    align-items: center; /* 鍨傜洿灞呬腑 */
    justify-content: start; /* 姘村钩寮€濮嬩綅缃榻?*/
}

.result-title {
    margin-right: 3%; /* 鏍囬涓庣涓€涓垂鐢ㄦ樉绀轰箣闂寸殑闂磋窛 */
}

.or-separator {
    margin: 0 1%; /* 鍦ㄨ繛鎺ョ涓や晶娣诲姞闂磋窛 */
}

.cost-display {
    /* 濡傛灉闇€瑕侊紝涓鸿垂鐢ㄦ樉绀鸿缃牱寮?*/
}

.visualization-box {
    width: 20%;
    margin-left: 0;
    margin-right: 10%;
    order: 2;
    /* 娣诲姞绔嬫柟浣撶洅瀛愮殑鏍峰紡 */
}

.box3d {
    perspective: 500px;
    margin-top: -5%;
}

.dimensions-display {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*text-align: right;*/
    padding-left: 20px; /* 鏍规嵁闇€瑕佽皟鏁?*/
}

.dimension {
    display: flex;
    margin-bottom: 5px; /* 姣忎釜灏哄涔嬮棿鐨勮窛绂?*/
    margin-left: 35%;
    font-size: large;
}

.hidden-initially {
    display: none;
}


.dimension .value {
    /*display: inline-block;*/
    width: 50px; /* 纭繚鎵€鏈夋暟鍊煎搴︿竴鑷达紝鏍规嵁鏈€闀跨殑鍙兘鏁板€艰皟鏁?*/
    text-align: right;
}

.dimension .unit {
    margin-left: 5px; /* 鍗曚綅涓庢暟鍊间箣闂寸殑闂磋窛 */
}


@font-face {
    font-family: 'Sans';
    src: url('/static/font/Sans.ttf') format('truetype'); /* TTF鏍煎紡浣滀负澶囬€?*/
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sans_SC';
    src: url('/static/font/Sans_SC_Regular.ttf') format('truetype'); /* TTF鏍煎紡浣滀负澶囬€?*/
    font-weight: normal;
    font-style: normal;
}

/* Payment success modal */
.fp-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2147483647;
}

.fp-modal.hidden {
    display: none;
}

.fp-modal-card {
    width: min(360px, 92vw);
    padding: 18px 18px 16px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.fp-modal-title {
    font-size: 20px;
    font-weight: 900;
    color: #254680;
    margin-bottom: 8px;
}

.fp-modal-desc {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.72);
}

.fp-modal-btn {
    width: 100%;
    margin-top: 14px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #254680, #2a6aa1);
    color: #ffffff;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}

/* Cashier container sizing (override) */
#cashier #ckp-embed-wrapper {
    height: min(2400px, 240vh) !important; /* 绾︿负鍘熸潵鐨?3 鍊?*/
    overflow: auto !important;
}

/* Mobile tweaks */
@media only screen and (max-width: 860px) {
    #cashier.cashier-section {
        min-height: auto !important;
    }

    #cashier .cashier-overlay {
        min-height: auto !important;
        padding-top: 96px !important;
        padding-bottom: 16px !important;
    }

    #cashier #ckp-embed-wrapper {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }

    #cashier .cashier-info-card {
        width: min(340px, 92vw);
        aspect-ratio: auto;
        padding: 16px;
    }

    #cashier .cashier-bg {
        position: relative !important;
        height: 32vh !important;
    }

    .recharge-overlay .checkout-container {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }
}

/* Final overrides: ensure cashier is scrollable on mobile */
#cashier #ckp-embed-wrapper {
    height: min(2400px, 300vh) !important;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
}

@media only screen and (max-width: 860px) {
    #cashier #ckp-embed-wrapper {
        height: calc(100vh - 180px) !important;
        height: calc(100dvh - 180px) !important;
        min-height: 560px !important;
        overflow: auto !important;
        -webkit-overflow-scrolling: touch;
    }
}

/* Cashier (clean): only currency + amount */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

#cashier.cashier-clean {
    min-height: 100vh !important;
    background: radial-gradient(1200px 600px at 50% 0%, rgba(42, 106, 161, 0.18), rgba(37, 70, 128, 0.06) 60%, rgba(255, 255, 255, 0) 100%);
}

#cashier.cashier-clean .cashier-clean-overlay {
    width: min(1100px, 100%);
    margin: 0 auto;
    padding-top: 110px;
    padding-bottom: 32px;
    gap: 18px;
}

#cashier.cashier-clean .cashier-summary-card {
    width: 100%;
    padding: 22px 22px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(37, 70, 128, 0.14);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

#cashier.cashier-clean .cashier-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 900;
    color: #254680;
}

#cashier.cashier-clean .cashier-amount {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

#cashier.cashier-clean .cashier-amount-label {
    font-weight: 800;
    color: rgba(0, 0, 0, 0.62);
}

#cashier.cashier-clean .cashier-amount-value {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

#cashier.cashier-clean .cashier-amount-number {
    font-size: 34px;
    font-weight: 1000;
    letter-spacing: 0.2px;
    color: #111111;
}

#cashier.cashier-clean .cashier-amount-currency {
    font-size: 16px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.66);
}

#cashier.cashier-clean .cashier-end-btn {
    width: 100%;
    margin-top: 14px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #254680, #2a6aa1);
    color: #ffffff;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
}

#cashier.cashier-clean .cashier-message {
    margin-top: 10px;
    color: rgba(0, 0, 0, 0.75);
    min-height: 18px;
}

#cashier.cashier-clean #ckp-embed-wrapper {
    width: 100% !important;
    height: min(860px, calc(100vh - 320px)) !important;
    min-height: 640px !important;
    overflow: auto !important;
    border-radius: 16px !important;
}

@media only screen and (max-width: 860px) {
    #cashier.cashier-clean .cashier-clean-overlay {
        padding-top: 96px;
        padding-left: 12px;
        padding-right: 12px;
    }

    #cashier.cashier-clean .cashier-summary-card {
        padding: 18px 16px 14px;
    }

    #cashier.cashier-clean .cashier-amount {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    #cashier.cashier-clean .cashier-amount-number {
        font-size: 30px;
    }

    #cashier.cashier-clean #ckp-embed-wrapper {
        height: calc(100dvh - 280px) !important;
        min-height: 520px !important;
        border-radius: 14px !important;
    }
}

/* =========================
   ForePax Top Navigation
   (logo link + dropdown + ZH/EN)
   ========================= */
header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    position: fixed;
}

.brand-link {
    display: flex;
    align-items: center;
    margin-left: 6%;
    text-decoration: none;
}

.brand-link .header-logo {
    width: auto;
    height: 52px;
    margin-left: 0;
}

.navigation.fp-nav {
    width: auto;
    margin: 0;
    border: 1px solid #111111;
    border-radius: 2px;
    overflow: visible;
    gap: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navigation.fp-nav a {
    margin: 0;
}

.navigation.fp-nav .nav-item,
.navigation.fp-nav > .nav-dropdown > .nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 28px;
    border-left: 1px solid #111111;
    background: #ffffff;
    color: #111111;
    white-space: nowrap;
}

.navigation.fp-nav > .nav-item:first-child,
.navigation.fp-nav > .nav-dropdown:first-child > .nav-item {
    border-left: none;
}

.navigation.fp-nav .nav-item:hover {
    background: rgba(0, 0, 0, 0.06);
}

.navigation.fp-nav a.active {
    background: #111111;
    color: #ffffff;
    border-radius: 0;
}

.navigation.fp-nav .nav-dropdown {
    position: relative;
    display: inline-flex;
}

.navigation.fp-nav .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: -1px;
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #111111;
    z-index: 2000;
}

.navigation.fp-nav .nav-dropdown:hover .nav-dropdown-menu,
.navigation.fp-nav .nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}

.navigation.fp-nav .nav-dropdown-menu a {
    display: block;
    padding: 12px 18px;
    border-top: 1px solid #111111;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}

.navigation.fp-nav .nav-dropdown--custom .nav-dropdown-menu {
    min-width: 980px;
    width: min(1200px, 94vw);
    padding: 24px 28px;
    left: 50%;
    transform: translateX(-50%);
}

.navigation.fp-nav .nav-dropdown--custom .nav-dropdown-menu a {
    border-top: none;
    padding: 0;
    font-weight: inherit;
    font-size: inherit;
}

.nav-custom-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 36px;
    align-items: start;
}

.nav-custom-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 40px;
    height: 100%;
    justify-items: center;
    align-content: space-evenly;
}

.nav-custom-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.nav-custom-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-custom-group-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.nav-custom-icon {
    width: 34px;
    height: 34px;
    display: block;
    object-fit: contain;
}

.nav-custom-menu--simple .nav-custom-icon {
    width: 154px;
    height: 154px;
    background: #ffffff;
}

.nav-custom-title {
    font-weight: 800;
    font-size: 14px;
    color: #111111;
    white-space: nowrap;
}

.nav-custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.75);
}

.nav-custom-list li {
    line-height: 1.2;
    white-space: nowrap;
}

.nav-custom-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.nav-custom-menu a {
    background: transparent;
}

.nav-custom-menu a:hover,
.nav-custom-menu a:focus-visible {
    background: transparent;
    color: #254680;
}

.nav-custom-menu--simple .nav-custom-list {
    display: none;
}

.nav-custom-menu--simple .nav-custom-grid {
    align-content: center;
    gap: 22px 36px;
}

.navigation.fp-nav .nav-custom-menu a.active {
    background: transparent;
    color: #111111;
}

.nav-custom-menu .nav-custom-feature-btn {
    background: #111111 !important;
    color: #ffffff !important;
    border: 1px solid #111111;
}

.nav-custom-menu .nav-custom-feature-btn:hover,
.nav-custom-menu .nav-custom-feature-btn:focus-visible {
    background: #111111 !important;
    color: #ffffff !important;
}

.nav-custom-link--btn {
    padding: 0;
    border: none;
    border-radius: 0;
    font-weight: 800;
    background: transparent;
    color: inherit;
}

.nav-custom-link--btn:hover {
    background: transparent;
    color: #111111;
}

.navigation.fp-nav .nav-custom-link--btn.active {
    background: transparent;
    color: inherit;
    border: none;
    border-radius: 0;
    padding: 0;
}

.navigation.fp-nav .nav-custom-link--btn.active:hover {
    background: transparent;
    color: #111111;
}

.nav-custom-feature {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nav-custom-feature-title {
    font-weight: 800;
    font-size: 18px;
    color: #111111;
    text-align: center;
}

.nav-custom-feature-img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    object-fit: cover;
    display: block;
}

.nav-custom-feature-btn {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #111111;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    border-radius: 2px;
    border: 1px solid #111111;
    transition: background 0.2s ease, color 0.2s ease;
    text-align: center;
    line-height: 40px;
}

.nav-custom-feature-btn:hover {
    background: #111111;
    color: #ffffff !important;
}

@media (max-width: 1200px) {
    .nav-custom-inner {
        grid-template-columns: 1fr;
    }

    .nav-custom-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-custom-feature {
        max-width: 320px;
    }
}

.navigation.fp-nav .nav-dropdown-menu a:first-child {
    border-top: none;
}

.navigation.fp-nav .nav-dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.06);
}

.language-switch {
    margin-right: 6%;
    width: auto;
    position: relative;
}

#language-select {
    border: 1px solid #111111;
    border-radius: 999px;
    padding: 8px 34px 8px 34px;
    background-color: #ffffff;
    cursor: pointer;
    appearance: none;
}

.language-switch::before {
    content: "";
    position: absolute;
    left: calc(12px + var(--lang-switch-offset));
    top: 50%;
    width: 10px;
    height: 10px;
    background: #d01f1f;
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.language-switch::after {
    content: "鈻?;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #111111;
    font-size: 12px;
}

main {
    padding-top: 80px;
}

@media only screen and (max-width: 860px) {
    .brand-link {
        margin-left: 4%;
    }

    .brand-link .header-logo {
        height: 44px;
    }

    .navigation.fp-nav {
        border: none;
        border-radius: 0;
    }

    .navigation.fp-nav .nav-item,
    .navigation.fp-nav > .nav-dropdown > .nav-item {
        border-left: none;
    }

    .navigation.fp-nav .nav-dropdown-menu {
        position: static;
        border-left: none;
        border-right: none;
        min-width: 100%;
    }

    .language-switch {
        margin-right: 4%;
    }
}

/* ForePax footer (screenshot-like) */
.fp-footer {
    width: 100%;
    background: #0b3a62;
    color: #ffffff;
    /* Keep responsive but leave a small gutter like the reference screenshot */
    padding: 0 32px;
    box-sizing: border-box;
}

.fp-footer-grid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 18px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: minmax(120px, auto);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-sizing: border-box;
}

.fp-footer-cell {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 14px 16px;
}

.fp-footer-cell:nth-child(4n) {
    border-right: none;
}

.fp-footer-brand {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.fp-footer-logo {
    width: 170px;
    height: auto;
    filter: brightness(1.1);
}

.fp-footer-accordion {
    width: 100%;
}

.fp-footer-accordion > summary {
    list-style: none;
    cursor: pointer;
}

.fp-footer-accordion > summary::-webkit-details-marker {
    display: none;
}

.fp-footer-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.fp-footer-title::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid #ffffff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    opacity: 0.9;
    transform: rotate(0deg);
    transition: transform 0.15s ease;
}

.fp-footer-accordion[open] .fp-footer-title::before {
    transform: rotate(90deg);
}

.fp-footer-body {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fp-footer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.35;
}

.fp-footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.fp-footer-link:hover {
    text-decoration: underline;
}

.fp-footer-subnav {
    margin-top: 4px;
}

.fp-footer-subnav > summary {
    list-style: none;
    cursor: pointer;
}

.fp-footer-subnav > summary::-webkit-details-marker {
    display: none;
}

.fp-footer-subnav-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.fp-footer-subnav-title::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid #ffffff;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    opacity: 0.8;
    transform: rotate(0deg);
    transition: transform 0.15s ease;
}

.fp-footer-subnav[open] .fp-footer-subnav-title::before {
    transform: rotate(90deg);
}

.fp-footer-subnav-links {
    margin: 6px 0 4px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fp-footer-sublink {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.fp-footer-sublink:hover {
    text-decoration: underline;
}

.fp-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 2px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    width: min(260px, 100%);
}

.fp-footer-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.fp-footer-bottom {
    width: 100%;
    max-width: none;
    margin: 0 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: none;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.fp-footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.88);
}

/* layout tweaks to mimic screenshot blocks */
.fp-footer-nav {
    grid-column: 4;
    grid-row: 1 / span 2;
}

.fp-footer-quote {
    grid-column: 1 / span 2;
    grid-row: 2;
}

.fp-footer-legal {
    grid-column: 3;
    grid-row: 2;
}

@media only screen and (max-width: 860px) {
    .fp-footer {
        padding: 0 12px;
    }

    .fp-footer-grid {
        grid-template-columns: 1fr;
    }

    .fp-footer-cell {
        border-right: none;
    }

    .fp-footer-nav,
    .fp-footer-quote,
    .fp-footer-legal {
        grid-column: auto;
        grid-row: auto;
    }
}

/* Home page */
.fp-home {
    background: #ffffff;
}

.fp-home-section-head {
    width: min(1600px, 96vw);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.fp-home-section-head h2 {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 900;
    color: #111111;
}

.fp-home-section-head--center {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.fp-home-section-head--center h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.fp-home-section-head--center h2::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #3b92de;
    border-radius: 2px;
    display: inline-block;
    transform: translateY(-2px);
}

.fp-home-section-subtitle {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.fp-home-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 20px;
    border-radius: 4px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.fp-home-primary-btn:hover {
    background: #000000;
}

.fp-home-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 4px;
    border: 1px solid #111111;
    color: #111111;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    background: #ffffff;
}

.fp-home-outline-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.fp-home-hero {
    background: #0b2d4b;
    color: #ffffff;
}

.fp-home-hero-bar {
    background: #ffffff;
    color: #111111;
}

.fp-home-hero-bar-inner {
    width: min(1600px, 96vw);
    margin: 0 auto;
    padding: 120px 0 32px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
}

.fp-home-hero-media {
    position: relative;
    height: clamp(320px, 52vw, 620px);
    overflow: hidden;
}

.fp-home-hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.fp-home-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.fp-home-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.fp-home-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-home-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 18, 35, 0.45) 0%, rgba(8, 32, 58, 0.28) 55%, rgba(5, 18, 35, 0.4) 100%);
}

.fp-home-hero-left h1 {
    margin: 0;
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    color: #111111;
}

.fp-home-hero-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    text-align: right;
    justify-self: end;
    color: #111111;
}

.fp-home-hero-lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #111111;
}

.fp-home-hero-sub {
    margin: 0 0 8px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.72);
}

.fp-home-hero-btn {
    position: absolute;
    right: clamp(16px, 6vw, 80px);
    bottom: clamp(16px, 5vw, 60px);
    z-index: 2;
    background: #111111;
    height: 56px;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 800;
}

.fp-home-hero-btn:hover {
    background: #000000;
}

.fp-home-hero-slide--partner {
    background: #ffffff;
}

.fp-home-hero-partner-btn {
    position: absolute;
    left: 52.8%;
    top: 78.8%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(150px, 11vw, 200px);
    height: clamp(42px, 3.6vw, 54px);
    padding: 0 24px;
    border-radius: 999px;
    background: #0b2d4b;
    color: #ffffff;
    font-weight: 800;
    font-size: clamp(14px, 1.3vw, 16px);
    text-decoration: none;
    letter-spacing: 0.4px;
    box-shadow: 0 16px 30px rgba(5, 15, 32, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fp-home-hero-partner-btn:hover {
    transform: translate(-50%, -52%);
    box-shadow: 0 22px 36px rgba(5, 15, 32, 0.45);
}


.fp-home-about {
    width: 100%;
    margin: 0 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.fp-home-about-merge {
    width: 100%;
    margin: 0 0 60px;
}

.fp-home-about-merge-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "intro intro-image"
        "about-image about";
    gap: 0;
    align-items: stretch;
}

.fp-home-about-merge-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f2e8;
    padding: clamp(24px, 3vw, 48px);
    min-height: 360px;
}

.fp-home-about-merge-panel--intro {
    grid-area: intro;
}

.fp-home-about-merge-panel--about {
    grid-area: about;
    background: #f4f1ef;
    align-items: flex-start;
    justify-content: flex-start;
}

.fp-home-about-merge-content {
    width: min(720px, 100%);
}

.fp-home-about-merge-media {
    grid-area: auto;
    min-height: 360px;
    overflow: hidden;
}

.fp-home-about-merge-media--intro {
    grid-area: intro-image;
}

.fp-home-about-merge-media--about {
    grid-area: about-image;
}

.fp-home-about-merge-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-home-about-panel {
    background: #f7f2e8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.fp-home-about-card {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #ffffff;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: min(720px, 92%);
    aspect-ratio: 16 / 9;
    opacity: 0;
    transform: translateX(40px);
    animation: fp-home-card-reveal 700ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.fp-home-about-card h2 {
    margin: 0;
    padding: 26px 28px;
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.2;
    font-weight: 900;
    color: #111111;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.fp-home-about-card p {
    margin: 0;
    padding: 22px 28px 24px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.78);
}

.fp-home-about-media {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-left: none;
    overflow: hidden;
}

.fp-home-about-footer {
    display: flex;
    align-items: stretch;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: auto;
}

@keyframes fp-home-card-reveal {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fp-home-about-accent {
    flex: 1;
    background: #68d5c0;
}

.fp-home-outline-btn.fp-home-about-btn {
    border: none;
    border-radius: 0;
    height: 48px;
    padding: 0 26px;
    background: #111111;
    color: #ffffff;
}

.fp-home-outline-btn.fp-home-about-btn:hover {
    background: #000000;
}

.fp-home-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-home-steps {
    padding: 30px 0 50px;
    --fp-step-media-height: clamp(220px, 32vw, 300px);
    --fp-step-row-gap: 72px;
    --fp-step-stagger: calc(var(--fp-step-media-height) / 2 + var(--fp-step-row-gap));
}

.fp-home-steps .fp-home-section-head h2 {
    font-size: clamp(30px, 3.8vw, 42px);
}

.fp-home-steps-grid {
    width: min(1600px, 96vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
    row-gap: var(--fp-step-row-gap);
    align-items: start;
    position: relative;
}

.fp-home-step {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 700px;
    position: relative;
}

.fp-home-step:nth-child(odd) {
    grid-column: 3;
    justify-self: start;
}

.fp-home-step:nth-child(even) {
    grid-column: 1;
    justify-self: end;
    margin-top: 0;
    transform: translateY(calc(-1 * var(--fp-step-stagger)));
}

.fp-home-steps-grid::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(0, 0, 0, 0.18);
    transform: translateX(-50%);
}

.fp-home-step::before {
    content: "";
    position: absolute;
    top: 34px;
    width: 40px;
    height: 1px;
    background: rgba(0, 0, 0, 0.22);
}

.fp-home-step:nth-child(odd)::before {
    left: -40px;
}

.fp-home-step:nth-child(even)::before {
    right: -40px;
}

.fp-home-step-card {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: none;
    background: #ffffff;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0;
}

.fp-home-step-num {
    font-size: 54px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.fp-home-step-text {
    padding: 18px 20px;
}

.fp-home-step-text h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
    position: relative;
    padding-bottom: 10px;
}

.fp-home-step-text h3::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.22);
}

.fp-home-step-text p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.75);
}

.fp-home-step-text p:last-child {
    margin-bottom: 0;
}

.fp-home-step-media {
    border: 1px solid rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.fp-home-step-media img {
    width: 100%;
    height: var(--fp-step-media-height);
    object-fit: cover;
    display: block;
}

.fp-home-step.is-reverse .fp-home-step-card {
    order: initial;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.fp-home-step.is-reverse .fp-home-step-media {
    order: initial;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.fp-home-services {
    padding: 40px 0 60px;
    background: #f2f2f2;
    position: relative;
    overflow: hidden;
}

.fp-home-services .fp-home-section-head {
    position: relative;
    z-index: 1;
}

.fp-home-services-inner {
    width: min(1400px, 92vw);
    margin: 0 auto;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 22px 0;
    z-index: 1;
}

.fp-home-services-accordion {
    width: min(780px, 92%);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.28);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
}

.fp-home-service-item {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    padding: 0;
}

.fp-home-service-item:first-child {
    border-top: none;
}

.fp-home-service-item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fp-home-service-item summary::-webkit-details-marker {
    display: none;
}

.fp-home-service-item summary::after {
    content: "+";
    margin-left: auto;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
}

.fp-home-service-item[open] summary::after {
    content: "-";
}

.fp-home-service-body {
    padding: 0 18px 16px;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.76);
}

.fp-home-services-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.fp-home-services-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-home-advantages {
    padding: 40px 0 60px;
}

.fp-home-advantages-inner {
    width: min(1600px, 96vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 26px;
    align-items: stretch;
}

.fp-home-advantages-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.fp-home-advantages-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}

.fp-home-advantages-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(59, 146, 222, 0.28) 0%, rgba(13, 48, 78, 0.12) 55%, rgba(0, 0, 0, 0.08) 100%);
    z-index: 0;
    pointer-events: none;
}

.fp-home-advantages-slogan {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(11, 35, 61, 0.72);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.fp-home-advantages-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    opacity: 0;
    transform: translateX(48px);
    transition: opacity 520ms ease, transform 520ms ease;
    will-change: opacity, transform;
}

.fp-home-advantages-cards.is-visible {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .fp-home-advantages-cards {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.fp-home-adv-card {
    border: none;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fp-home-adv-top {
    background: transparent;
    color: #111111;
    padding: 20px 18px 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.fp-home-adv-number {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: 1px;
    font-family: "Montserrat", "DIN Alternate", "Segoe UI", Arial, sans-serif;
    color: #3b92de;
    background: linear-gradient(120deg, #3b92de 0%, #1f6bb6 55%, #73c1ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 18px rgba(59, 146, 222, 0.35);
}

.fp-home-adv-unit {
    font-size: 16px;
    font-weight: 700;
    color: rgba(17, 17, 17, 0.72);
}

.fp-home-adv-body {
    padding: 8px 20px 18px;
    border-top: none;
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.78);
    text-align: center;
}

.fp-home-adv-body p {
    margin: 0;
}

.fp-home-adv-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: none;
    margin-top: auto;
    height: auto;
    padding: 0 0 18px;
}

.fp-home-adv-footer-fill {
    display: none;
}

.fp-home-adv-footer-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(59, 146, 222, 0.3);
    background: rgba(59, 146, 222, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.fp-home-adv-icon {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
    stroke: #3b92de;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s ease, filter 0.3s ease;
}

.fp-home-adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.12);
}

.fp-home-adv-card:hover .fp-home-adv-footer-icon {
    background: #3b92de;
    border-color: #3b92de;
}

.fp-home-adv-card:hover .fp-home-adv-icon {
    stroke: #ffffff;
    filter: brightness(0) invert(1);
}

.fp-home-sensitive {
    padding: 40px 0 50px;
}

.fp-home-sensitive-marquee {
    width: min(1600px, 96vw);
    margin: 0 auto;
    padding: 12px 12px 18px;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    overflow: hidden;
}

.fp-home-sensitive-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: fp-home-sensitive-scroll 52s linear infinite;
}

.fp-home-sensitive-set {
    display: flex;
    gap: 20px;
}

.fp-home-sensitive-card {
    width: 540px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex: 0 0 auto;
}

.fp-home-sensitive-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #f4f6f8;
}

.fp-home-sensitive-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.fp-home-sensitive-card figcaption {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.fp-home-sensitive-title {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
}

.fp-home-sensitive-desc {
    font-size: 12.5px;
    color: rgba(0, 0, 0, 0.62);
    line-height: 1.5;
}

.fp-home-sensitive-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.06) 62%);
    color: #ffffff;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fp-home-sensitive-overlay p {
    margin: 0;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.5;
}

.fp-home-sensitive-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
    border-color: rgba(59, 146, 222, 0.6);
}

.fp-home-sensitive-card:hover img {
    transform: scale(1.04);
}

.fp-home-sensitive-card:hover .fp-home-sensitive-overlay {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fp-home-sensitive-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fp-home-sensitive-track {
        animation: none;
    }
}

.fp-home-partners {
    padding: 30px 0 50px;
}

.fp-home-partners-marquee {
    width: min(1600px, 96vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
}

.fp-home-partners-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fp-home-partners-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.55);
}

.fp-home-partners-row {
    overflow: hidden;
    width: 100%;
}

.fp-home-partners-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 28px;
    animation: fp-home-marquee-left 64s linear infinite;
}

.fp-home-partners-track.is-right {
    animation-direction: reverse;
}

.fp-home-partners-set {
    display: flex;
    align-items: center;
    gap: 28px;
}

.fp-home-partner-card {
    border: none;
    background: transparent;
    padding: 8px 10px;
    min-width: 220px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.fp-home-partner-card img {
    width: auto;
    height: 162px;
    max-width: 240px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.fp-home-partner-card:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-2px);
}

@keyframes fp-home-marquee-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fp-home-partners-track {
        animation: none;
    }
}

.fp-home-testimonials {
    padding: 80px 0 110px;
    min-height: clamp(420px, 55vw, 640px);
    background: #f3f3f3 url("/static/pic/home/DM_20251223112350_003.JPEG") center/cover no-repeat;
    position: relative;
}

.fp-home-testimonials-inner {
    width: min(1600px, 96vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.fp-home-testimonials-title {
    margin: 0 0 10px;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 900;
    color: #111111;
    text-align: right;
}

.fp-home-testimonials-card {
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: min(480px, 90vw);
    aspect-ratio: 9 / 4;
}

.fp-home-testimonial-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    flex: 1;
}

.fp-home-testimonial-track::-webkit-scrollbar {
    display: none;
}

.fp-home-testimonial {
    min-width: 100%;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.fp-home-testimonial p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.82);
    text-align: left;
    flex: 1;
    display: flex;
    align-items: center;
}

.fp-home-testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.fp-home-testimonial-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fp-home-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-home-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fp-home-testimonial-name {
    font-size: 13px;
    font-weight: 700;
    color: #111111;
}

.fp-home-testimonial-stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #f1b84b;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.fp-home-testimonials-controls {
    align-self: flex-end;
}

.fp-home-testimonials-controls {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.fp-home-slider-btn {
    width: 36px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #111111;
    color: #ffffff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fp-home-cta {
    padding: 60px 0 80px;
    background: #dbeefe;
}

.fp-home-cta-inner {
    width: min(1600px, 96vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
}

.fp-home-cta-inner h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
}

.fp-home-cta-inner p {
    margin: 0 0 10px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
}

/* Product detail template */
.fp-product-page {
    background: #ffffff;
    color: #111111;
}

.fp-product-breadcrumb {
    width: min(1400px, 92vw);
    margin: 34px auto 18px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.fp-product-breadcrumb-sep {
    margin: 0 6px;
}

.fp-product-breadcrumb-category {
    color: inherit;
}

.fp-crumb-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.fp-crumb-toggle {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.fp-crumb-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 6px;
    transform: translateY(1px);
}

.fp-crumb-toggle:focus-visible {
    outline: 2px solid #254680;
    outline-offset: 2px;
    border-radius: 4px;
}

.fp-crumb-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    padding: 8px 0;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 20;
}

.fp-crumb-dropdown.is-open .fp-crumb-menu {
    display: block;
}

.fp-crumb-option {
    display: block;
    padding: 6px 14px;
    color: #111111;
    text-decoration: none;
    white-space: nowrap;
}

.fp-crumb-option:hover,
.fp-crumb-option:focus-visible {
    background: rgba(37, 70, 128, 0.08);
    color: #254680;
}

.fp-crumb-option.is-active {
    font-weight: 600;
}

.fp-product-layout {
    width: min(1600px, 96vw);
    margin: 0 auto 64px;
    display: grid;
    grid-template-columns: 90px minmax(0, 1.6fr) minmax(0, 0.85fr);
    gap: 28px;
    align-items: start;
}

.fp-product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fp-product-thumb {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    background: #ffffff;
    padding: 0;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fp-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.fp-product-thumb.is-active {
    border-color: #111111;
    box-shadow: 0 0 0 1px #111111;
}

.fp-product-main {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background: #f6f6f6;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.fp-product-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-product-page--apparel .fp-product-thumb img,
.fp-product-page--apparel .fp-product-main img {
    object-fit: contain;
}

.fp-product-info h1 {
    margin: 0 0 18px;
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 800;
}

.fp-product-accordion {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.fp-product-accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 0;
}

.fp-product-accordion-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.fp-product-accordion-item summary::-webkit-details-marker {
    display: none;
}

.fp-product-accordion-item summary::after {
    content: "+";
    font-size: 18px;
    font-weight: 700;
}

.fp-product-accordion-item[open] summary::after {
    content: "-";
}

.fp-product-accordion-body {
    padding: 4px 0 16px;
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.78);
}

.fp-product-accordion-body h3 {
    margin: 12px 0 6px;
    font-size: 14px;
    font-weight: 800;
    color: #111111;
}

.fp-product-accordion-body p {
    margin: 0 0 10px;
}

.fp-product-accordion-body ul {
    margin: 0 0 10px 18px;
    padding: 0;
}

.fp-product-cta {
    padding: 64px 0 80px;
    background: #dbeefe;
}

.fp-product-cta-inner {
    width: 100%;
    margin: 0;
    padding: 0 clamp(12px, 4vw, 48px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
}

.fp-product-cta-inner h2 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 900;
}

.fp-product-cta-inner p {
    margin: 0 0 12px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
}

.fp-product-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 26px;
    border-radius: 4px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.fp-product-cta-btn:hover {
    background: #000000;
}

@media (max-width: 1024px) {
    .fp-home-hero-bar-inner,
    .fp-home-about,
    .fp-home-services-inner,
    .fp-home-advantages-inner,
    .fp-home-testimonials-inner {
        grid-template-columns: 1fr;
    }

    .fp-home-testimonials-inner {
        align-items: center;
        text-align: center;
    }

    .fp-home-testimonials-title {
        text-align: center;
    }

    .fp-home-testimonials-card,
    .fp-home-testimonials-controls {
        align-self: center;
    }

    .fp-product-layout {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .fp-product-info {
        grid-column: 1 / -1;
    }

    .fp-home-steps-grid {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }

    .fp-home-steps-grid::before,
    .fp-home-step::before {
        display: none;
    }

    .fp-home-step {
        grid-column: auto;
        max-width: 100%;
        justify-self: stretch;
        margin-top: 0;
    }

    .fp-home-step:nth-child(odd),
    .fp-home-step:nth-child(even) {
        grid-column: 1;
        justify-self: stretch;
        transform: none;
    }

    .fp-home-step-card {
        grid-template-columns: 90px 1fr;
    }

    .fp-home-step.is-reverse .fp-home-step-card,
    .fp-home-step.is-reverse .fp-home-step-media {
        order: initial;
    }
}

@media (max-width: 768px) {
    .fp-home-hero-bar-inner {
        padding: 110px 0 24px;
    }

    .fp-home-hero-right {
        align-items: flex-start;
        text-align: left;
        justify-self: stretch;
    }

    .fp-home-about {
        margin-top: -20px;
    }

    .fp-home-advantages-cards {
        grid-template-columns: 1fr;
    }

    .fp-home-advantages-slogan {
        left: 12px;
        bottom: 12px;
        font-size: 12px;
        padding: 8px 12px;
    }

    .fp-home-testimonial p {
        text-align: center;
    }

    .fp-home-testimonial-footer {
        flex-direction: column;
        align-items: center;
    }

    .fp-home-testimonial-profile {
        flex-direction: column;
        text-align: center;
    }

    .fp-home-sensitive-card {
        width: 400px;
    }

    .fp-home-sensitive-media {
        padding: 0;
    }

    .fp-product-layout {
        grid-template-columns: 1fr;
    }

    .fp-product-thumbs {
        flex-direction: row;
        order: 2;
    }

    .fp-product-thumb {
        width: 64px;
        height: 64px;
    }

    .fp-product-main {
        order: 1;
    }

    .fp-product-info {
        order: 3;
    }

    .fp-product-cta-inner {
        align-items: flex-start;
        text-align: left;
    }
}

/* First mile page */
.fp-fm {
    background: #f5f7fb;
}

.fp-fm-pagehead {
    background: #d8ecfb;
    padding: 64px 0 70px;
}

.fp-fm-pagehead-inner {
    width: 100%;
    max-width: 1560px;
    margin: 0;
    padding: 0 clamp(18px, 6vw, 120px);
}

.fp-fm-pagehead-kicker {
    font-weight: 900;
    letter-spacing: 0.2px;
    color: rgba(0, 0, 0, 0.62);
}

.fp-fm-pagehead-title {
    margin: 0 0 10px;
    font-size: 72px;
    line-height: 1.06;
    font-weight: 950;
    color: #111111;
}

.fp-fm-pagehead-sub {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.72);
    line-height: 1.7;
}

.fp-fm-block {
    padding: 0;
}

.fp-fm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 560px;
}

.fp-fm-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.fp-fm-media {
    position: relative;
    overflow: hidden;
    background: #0b3a62;
}

.fp-fm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.fp-fm-media-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.35), transparent 55%);
    mix-blend-mode: overlay;
    animation: fp-fm-glow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes fp-fm-glow {
    0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.55; }
    50% { transform: translate3d(6%, -4%, 0); opacity: 0.75; }
}

.fp-fm-content {
    background: #f3f3f3;
    padding: 72px 64px 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fp-fm-block--sea .fp-fm-content {
    background: #f3f3f3;
}

.fp-fm-kicker {
    font-weight: 900;
    letter-spacing: 0.2px;
    color: rgba(0, 0, 0, 0.62);
    margin-bottom: 8px;
}

.fp-fm-title {
    margin: 0 0 16px;
    font-size: 56px;
    font-weight: 950;
    color: #111111;
    line-height: 1.03;
}

.fp-fm-title--secondary {
    font-size: 48px;
}

.fp-fm-paragraph {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 2.0;
    color: rgba(0, 0, 0, 0.78);
}

.fp-fm-list {
    margin: 0 0 18px;
    padding-left: 18px;
    color: rgba(0, 0, 0, 0.82);
    line-height: 2.0;
}

.fp-fm-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.fp-fm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid rgba(0, 0, 0, 0.14);
    color: #111111;
    background: rgba(255, 255, 255, 0.7);
}

.fp-fm-btn--primary {
    background: linear-gradient(135deg, #254680, #2a6aa1);
    border-color: transparent;
    color: #ffffff;
}

.fp-fm-btn--ghost {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.16);
}

/* bottom CTA (like screenshot) */
.fp-fm-bottomcta {
    background: #d8ecfb;
    padding: 70px 0 86px;
}

.fp-fm-bottomcta-inner {
    width: 100%;
    max-width: 1560px;
    margin: 0;
    padding: 0 clamp(18px, 6vw, 120px);
}

.fp-fm-bottomcta-title {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 950;
    color: #111111;
    margin: 0;
    max-width: 1200px;
    overflow-wrap: anywhere;
}

.fp-fm-bottomcta-sub {
    margin-top: 12px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.72);
}

.fp-fm-bottomcta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    height: 48px;
    min-width: 220px;
    padding: 0 40px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    border-radius: 2px;
}

.fp-fm-bottomcta-btn::after {
    content: "鈥?;
    margin-left: 10px;
    font-size: 18px;
    line-height: 1;
}

.fp-fm-bottomcta-btn:hover {
    background: #000000;
}

/* reveal animation */
.fp-fm-animate {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.fp-fm-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media only screen and (max-width: 860px) {
    .fp-fm-pagehead {
        padding: 44px 0 48px;
    }

    .fp-fm-pagehead-title {
        font-size: 52px;
    }

    .fp-fm-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .fp-fm-grid--reverse {
        grid-template-columns: 1fr;
    }

    .fp-fm-content {
        padding: 28px 18px 32px;
    }

    .fp-fm-title {
        font-size: 40px;
    }

    .fp-fm-bottomcta {
        padding: 46px 0 54px;
    }

    .fp-fm-bottomcta-title {
        font-size: 42px;
        line-height: 1.15;
    }
}

/* ---- Overrides (avoid encoding issues & seams) ---- */
.language-switch::after {
    content: "\25BE";
}

@media only screen and (max-width: 860px) {
    /* Mobile header: keep controls visible */
    header {
        gap: 8px;
    }

    .language-switch {
        width: auto;
        margin-right: 4%;
    }

    .menu-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 86px;
        height: 36px;
        padding: 0 14px;
        font-size: 13px;
        line-height: 1;
        letter-spacing: 0.08em;
        font-weight: 800;
        margin-right: 4%;
        border: 1px solid #111111;
        border-radius: 2px;
        background: #ffffff;
        color: #111111;
        position: static;
        z-index: 2001;
        user-select: none;
    }

    /* Mobile menu panel: centered, bordered list */
    .menu-icon + .navigation {
        position: fixed;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        width: min(88vw, 420px);
        height: auto;
        max-height: calc(100dvh - 84px);
        overflow: auto;
        z-index: 1500;
        padding: 0;
        background: #ffffff;
        border: 1px solid #111111;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .navigation.fp-nav {
        width: 100%;
        margin: 0;
        border: none;
        border-radius: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        position: static;
        left: auto;
        transform: none;
    }

    .navigation.fp-nav .nav-item,
    .navigation.fp-nav > .nav-dropdown > .nav-item {
        width: 100%;
        height: 46px;
        padding: 0 16px;
        border-left: none;
        border-top: 1px solid #111111;
        justify-content: center;
        text-align: center;
        font-weight: 800;
    }

    .navigation.fp-nav > .nav-item:first-child,
    .navigation.fp-nav > .nav-dropdown:first-child > .nav-item {
        border-top: none;
    }

    .navigation.fp-nav .nav-dropdown > .nav-item {
        position: relative;
        padding-right: 44px;
    }

    .navigation.fp-nav .nav-dropdown {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .navigation.fp-nav .nav-dropdown > .nav-item::after {
        content: "\25BE";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
    }

    .navigation.fp-nav .nav-dropdown.is-open > .nav-item::after {
        content: "\25B4";
    }

    .navigation.fp-nav .nav-dropdown-menu {
        position: static;
        min-width: 100%;
        width: 100%;
        border: none;
        box-shadow: none;
        display: none;
        margin: 0;
    }

    .navigation.fp-nav .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .navigation.fp-nav .nav-dropdown.is-open .nav-dropdown-menu,
    .navigation.fp-nav .nav-dropdown:focus-within .nav-dropdown-menu {
        display: block;
    }

    .navigation.fp-nav .nav-dropdown-menu a {
        padding: 12px 16px;
        border-top: 1px solid #111111;
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        width: 100%;
    }

    .navigation.fp-nav .nav-dropdown-menu a:first-child {
        border-top: 1px solid #111111;
    }

    .navigation.fp-nav .nav-lang-item {
        height: auto;
        padding: 10px 12px;
        border-top: 1px solid #111111;
    }

    .navigation.fp-nav .nav-lang-item .language-switch {
        width: 100%;
        margin: 0;
        justify-content: center;
        gap: 10px;
    }

    .navigation.fp-nav .nav-lang-item #language-select {
        width: min(220px, 100%);
        text-align: center;
        border: 1px solid #111111;
        border-radius: 2px;
        padding: 8px 34px 8px 34px;
        background-color: #ffffff;
    }
}

/* Extend first-mile background into main top padding (avoid a visible seam under the fixed header) */
.fp-fm {
    margin-top: -80px;
    padding-top: 80px;
}

.fp-fm-bottomcta-btn::after {
    content: "\203A";
}

/* Domestic transport page */
.fp-dt {
    background: #ffffff;
    margin-top: -80px;
    padding-top: 80px;
}

.fp-dt-pagehead {
    background: #ffffff;
    padding: 78px 0 22px;
}

.fp-dt-pagehead-inner {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 clamp(16px, 2.5vw, 56px);
}

.fp-dt-pagehead-title {
    margin: 0 0 28px;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 950;
    color: #111111;
}

.fp-dt-pagehead-lead {
    margin: 0;
    max-width: 1120px;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.78);
}

.fp-dt-hero {
    background: #ffffff;
    padding: 28px 0 70px;
}

.fp-dt-hero-inner {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 clamp(16px, 2.5vw, 56px);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(18px, 3vw, 56px);
    /* Prevent the right image column from stretching when accordion height changes */
    align-items: start;
}

.fp-dt-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Entrance animation for accordion rows + right image */
.fp-dt-preload .fp-dt-acc-item,
.fp-dt-preload .fp-dt-hero-media {
    opacity: 0;
    transform: translateX(-26px);
    clip-path: inset(0 100% 0 0);
}

.fp-dt-loaded .fp-dt-acc-item,
.fp-dt-loaded .fp-dt-hero-media {
    animation: fp-dt-slidein 560ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.fp-dt-loaded .fp-dt-acc-item:nth-child(1) { animation-delay: 40ms; }
.fp-dt-loaded .fp-dt-acc-item:nth-child(2) { animation-delay: 90ms; }
.fp-dt-loaded .fp-dt-acc-item:nth-child(3) { animation-delay: 140ms; }
.fp-dt-loaded .fp-dt-acc-item:nth-child(4) { animation-delay: 190ms; }
.fp-dt-loaded .fp-dt-acc-item:nth-child(5) { animation-delay: 240ms; }
.fp-dt-loaded .fp-dt-hero-media { animation-delay: 120ms; }

@keyframes fp-dt-slidein {
    from {
        opacity: 0;
        transform: translateX(-26px);
        clip-path: inset(0 100% 0 0);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
    }
}

.fp-dt-acc-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    background: #ffffff;
    overflow: hidden;
}

.fp-dt-acc-summary {
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 900;
    font-size: 16px;
    color: #111111;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
}

.fp-dt-acc-summary:focus-visible {
    outline: 3px solid rgba(37, 70, 128, 0.28);
    outline-offset: 2px;
}

.fp-dt-acc-summary::after {
    content: "\002B";
    margin-left: auto;
    font-size: 18px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.62);
}

.fp-dt-acc-item.is-open .fp-dt-acc-summary::after {
    content: "\2212";
}

.fp-dt-acc-body {
    padding: 0 18px;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.78);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-4px);
    clip-path: inset(0 100% 0 0);
    transition:
        max-height 260ms ease,
        opacity 180ms ease,
        transform 220ms ease,
        padding-bottom 180ms ease,
        clip-path 260ms ease;
}

.fp-dt-acc-item.is-open .fp-dt-acc-body {
    padding-bottom: 16px;
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
}

.fp-dt-hero-media {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #0b3a62;
    min-height: 420px;
    align-self: start;
    height: 420px;
    transition: height 260ms ease;
    will-change: height;
}

.fp-dt-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.fp-dt-slab {
    padding: 0;
}

.fp-dt-slab--light .fp-dt-slab-content,
.fp-dt-slab--reverse .fp-dt-slab-content {
    background: #f3f3f3;
}

.fp-dt-slab-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 640px;
}

.fp-dt-slab-media {
    position: relative;
    overflow: hidden;
    background: #0b3a62;
}

.fp-dt-slab-content {
    padding: 64px clamp(18px, 4.5vw, 84px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fp-dt-slab-title {
    margin: 0 0 18px;
    font-size: 54px;
    font-weight: 950;
    line-height: 1.08;
    color: #111111;
}

.fp-dt-slab-p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 2.0;
    color: rgba(0, 0, 0, 0.78);
}

.fp-dt-slab-p:last-child {
    margin-bottom: 0;
}

/* reveal animation */
.fp-dt-animate {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.fp-dt-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media only screen and (max-width: 860px) {
    .fp-dt-pagehead {
        padding: 48px 0 14px;
    }

    .fp-dt-pagehead-title {
        font-size: 52px;
    }

    .fp-dt-hero {
        padding: 18px 0 42px;
    }

    .fp-dt-hero-inner {
        grid-template-columns: 1fr;
    }

    .fp-dt-hero-media {
        min-height: 240px;
    }

    .fp-dt-slab-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .fp-dt-slab-content {
        padding: 28px 18px 32px;
    }

    .fp-dt-slab-title {
        font-size: 40px;
    }
}

/* US local delivery page */
.fp-usl {
    background: #ffffff;
    margin-top: -80px;
    padding-top: 80px;
}

.fp-usl-pagehead {
    background: #ffffff;
    padding: 72px 0 8px;
}

.fp-usl-pagehead-inner {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 clamp(16px, 2.5vw, 56px);
}

.fp-usl-title {
    margin: 0;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 950;
    color: #111111;
}

.fp-usl-service {
    padding: 24px 0 64px;
}

.fp-usl-service-inner {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 clamp(16px, 2.5vw, 56px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2.2vw, 40px);
    align-items: start;
}

.fp-usl-media {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #0b3a62;
    min-height: 520px;
}

.fp-usl-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-usl-content {
    padding-top: 8px;
}

.fp-usl-kicker {
    margin: 0 0 18px;
    font-size: 44px;
    font-weight: 950;
    line-height: 1.08;
    color: #111111;
}

.fp-usl-paragraph {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.78);
}

.fp-usl-list {
    margin: 0;
    padding-left: 20px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.82);
    line-height: 1.7;
}

.fp-usl-list li {
    margin: 0 0 10px;
}

.fp-usl-list li:last-child {
    margin-bottom: 0;
}

.fp-usl-faq {
    background: #f3f3f3;
    padding: 70px 0 74px;
}

.fp-usl-faq-inner {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 clamp(16px, 2.5vw, 56px);
}

.fp-usl-faq-title {
    margin: 0 0 28px;
    font-size: 54px;
    font-weight: 950;
    color: #111111;
}

.fp-usl-faq-card {
    border: 1px solid rgba(0, 0, 0, 0.6);
    background: #ffffff;
    padding: 18px 18px 6px;
}

.fp-usl-tabs {
    display: flex;
    gap: 22px;
    padding: 6px 6px 14px;
}

.fp-usl-tab {
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.55);
    padding: 10px 14px;
    position: relative;
}

.fp-usl-tab.is-active {
    color: #254680;
}

.fp-usl-tab.is-active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 3px;
    background: #254680;
}

.fp-usl-panel {
    display: none;
    padding: 6px 6px 10px;
}

.fp-usl-panel.is-active {
    display: block;
}

.fp-usl-q-item {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    padding: 18px 6px;
}

.fp-usl-q-item:first-child {
    border-top: none;
}

.fp-usl-q {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    text-align: left;
    color: rgba(0, 0, 0, 0.88);
}

.fp-usl-q::after {
    content: "\002B";
    margin-left: auto;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.62);
}

.fp-usl-q-item.is-open .fp-usl-q::after {
    content: "\2212";
}

.fp-usl-a {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.78);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    clip-path: inset(0 100% 0 0);
    transition: max-height 260ms ease, opacity 200ms ease, transform 200ms ease, clip-path 260ms ease;
}

.fp-usl-q-item.is-open .fp-usl-a {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
}

.fp-usl-a-p {
    margin: 0 0 14px;
}

.fp-usl-a-p:last-child {
    margin-bottom: 0;
}

/* reveal animation */
.fp-usl-animate {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.fp-usl-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* entrance: slide from left to right */
.fp-usl-preload .fp-usl-media,
.fp-usl-preload .fp-usl-content {
    opacity: 0;
    transform: translateX(-28px);
    clip-path: inset(0 100% 0 0);
}

.fp-usl-loaded .fp-usl-media,
.fp-usl-loaded .fp-usl-content {
    animation: fp-usl-slidein 560ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.fp-usl-loaded .fp-usl-media { animation-delay: 60ms; }
.fp-usl-loaded .fp-usl-content { animation-delay: 120ms; }

@keyframes fp-usl-slidein {
    from {
        opacity: 0;
        transform: translateX(-28px);
        clip-path: inset(0 100% 0 0);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
    }
}

@media only screen and (max-width: 860px) {
    .fp-usl-pagehead {
        padding: 48px 0 6px;
    }

    .fp-usl-title {
        font-size: 52px;
    }

    .fp-usl-service-inner {
        grid-template-columns: 1fr;
    }

    .fp-usl-media {
        min-height: 260px;
    }

    .fp-usl-kicker {
        font-size: 36px;
    }

    .fp-usl-faq-title {
        font-size: 40px;
    }
}

/* Logistics cases page */
.fp-lc {
    background: #ffffff;
    margin-top: -80px;
    padding-top: 80px;
}

.fp-lc-inner {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 clamp(16px, 2.5vw, 56px);
}

.fp-lc-pagehead {
    padding: 86px 0 18px;
}

.fp-lc-title {
    margin: 0;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 950;
    color: #111111;
    overflow-wrap: anywhere;
}

.fp-lc-tabs-wrap {
    padding: 14px 0 40px;
}

.fp-lc-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.fp-lc-tab {
    border: none;
    background: transparent;
    padding: 18px 12px;
    cursor: pointer;
    font-weight: 900;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    position: relative;
    white-space: nowrap;
}

.fp-lc-tab.is-active {
    color: rgba(0, 0, 0, 0.92);
}

.fp-lc-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: rgba(0, 0, 0, 0.92);
}

.fp-lc-case {
    padding: 24px 0 76px;
}

.fp-lc-case-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(24px, 3.4vw, 76px);
    align-items: start;
}

.fp-lc-case-title {
    margin: 0 0 12px;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 950;
    color: #111111;
    overflow-wrap: anywhere;
}

.fp-lc-case-lead p {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.78);
}

.fp-lc-case-body {
    margin-top: 8px;
}

.fp-lc-sec {
    margin-top: 22px;
}

.fp-lc-sec h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 950;
    color: rgba(0, 0, 0, 0.9);
}

.fp-lc-sec h4 {
    margin: 16px 0 10px;
    font-size: 16px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.86);
}

.fp-lc-sec p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.78);
}

.fp-lc-sec ul,
.fp-lc-sec ol {
    margin: 0;
    padding-left: 18px;
    color: rgba(0, 0, 0, 0.82);
    line-height: 1.7;
    font-size: 16px;
}

.fp-lc-sec li {
    margin: 0 0 10px;
}

.fp-lc-sec li:last-child {
    margin-bottom: 0;
}

.fp-lc-quote blockquote {
    margin: 10px 0 0;
    padding: 14px 16px;
    border-left: 4px solid rgba(37, 70, 128, 0.9);
    background: rgba(37, 70, 128, 0.06);
    color: rgba(0, 0, 0, 0.82);
    font-size: 16px;
    line-height: 1.7;
}

.fp-lc-case-media {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #0b3a62;
    min-height: 600px;
}

.fp-lc-case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-lc-case-text,
.fp-lc-case-media {
    transition: opacity 260ms ease, transform 260ms ease;
}

.fp-lc-case-text.is-switching,
.fp-lc-case-media.is-switching {
    opacity: 0;
    transform: translateY(6px);
}

.fp-lc-pillars {
    padding: 18px 0 84px;
}

.fp-lc-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fp-lc-pillar {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 18px 18px;
    background: #ffffff;
    display: flex;
    gap: 12px;
    align-items: center;
}

.fp-lc-pillar-icon {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(37, 70, 128, 0.92);
    box-shadow: 0 0 0 6px rgba(37, 70, 128, 0.12);
    flex: 0 0 auto;
}

.fp-lc-pillar-title {
    font-weight: 900;
    color: rgba(0, 0, 0, 0.86);
}

.fp-lc-sensitive {
    padding: 18px 0 72px;
}

.fp-lc-sensitive-title {
    margin: 0 0 26px;
    font-size: 54px;
    font-weight: 950;
    color: #111111;
}

.fp-lc-marquee {
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: clamp(18px, 2vw, 28px);
}

.fp-lc-marquee-inner {
    display: flex;
    width: max-content;
    animation: fp-lc-marquee 22s linear infinite;
}

.fp-lc-marquee:hover .fp-lc-marquee-inner {
    animation-play-state: paused;
}

.fp-lc-track {
    display: flex;
    gap: 26px;
    padding-right: 26px;
}

.fp-lc-card {
    width: clamp(240px, 22vw, 360px);
    flex: 0 0 auto;
    margin: 0;
}

.fp-lc-card-img {
    width: 100%;
    height: 320px;
    border-radius: 18px;
    object-fit: fill;
    display: block;
    background: transparent;
}

.fp-lc-card-cap {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.72);
    text-align: center;
}

@keyframes fp-lc-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* reveal animation */
.fp-lc-animate {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.fp-lc-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* entrance: slide from left to right */
.fp-lc-preload .fp-lc-case-text,
.fp-lc-preload .fp-lc-case-media {
    opacity: 0;
    transform: translateX(-28px);
    clip-path: inset(0 100% 0 0);
}

.fp-lc-loaded .fp-lc-case-text,
.fp-lc-loaded .fp-lc-case-media {
    animation: fp-lc-slidein 560ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.fp-lc-loaded .fp-lc-case-text {
    animation-delay: 80ms;
}

.fp-lc-loaded .fp-lc-case-media {
    animation-delay: 140ms;
}

@keyframes fp-lc-slidein {
    from {
        opacity: 0;
        transform: translateX(-28px);
        clip-path: inset(0 100% 0 0);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
    }
}

@media only screen and (max-width: 980px) {
    .fp-lc-title {
        font-size: 52px;
    }

    .fp-lc-tabs {
        grid-template-columns: 1fr 1fr;
    }

    .fp-lc-tab {
        font-size: 13px;
    }

    .fp-lc-case-grid {
        grid-template-columns: 1fr;
    }

    .fp-lc-case-media {
        min-height: 320px;
    }

    .fp-lc-sensitive-title {
        font-size: 40px;
    }

    .fp-lc-pillars-grid {
        grid-template-columns: 1fr;
    }

    .fp-lc-card {
        width: clamp(220px, 70vw, 320px);
    }

    .fp-lc-card-img {
        height: 240px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fp-lc-marquee-inner {
        animation: none;
    }

    .fp-lc-marquee {
        overflow-x: auto;
    }

    .fp-lc-marquee-inner {
        width: auto;
    }
}

.language-switch::before,
.language-switch::after {
    content: none;
}

/* Company intro page */
.fp-ci {
    background: #ffffff;
    margin-top: -80px;
    padding-top: 80px;
}

.fp-ci-inner {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 clamp(16px, 2.5vw, 56px);
}

.fp-ci-pagehead {
    padding: 72px 0 20px;
}

.fp-ci-title {
    margin: 0;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 950;
    color: #111111;
}

.fp-ci-section-title {
    margin: 0 0 18px;
    font-size: 44px;
    font-weight: 950;
    color: #111111;
}

.fp-ci-about {
    padding: 12px 0 70px;
}

.fp-ci-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    align-items: stretch;
}

.fp-ci-about-media {
    border-radius: 0;
    overflow: hidden;
    border: none;
    background: #0b3a62;
    min-height: 520px;
}

.fp-ci-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-ci-about-content {
    background: #f4f1ef;
    padding: clamp(24px, 3vw, 48px);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.fp-ci-about-text p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(0, 0, 0, 0.78);
}

.fp-ci-services {
    padding: 10px 0 80px;
}

.fp-home-ci-services {
    position: relative;
    padding: 70px 0 90px;
    background: url("/static/pic/home/hero-air.jpg") center/cover no-repeat;
    isolation: isolate;
}

.fp-home-ci-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(247, 242, 232, 0.6), rgba(247, 242, 232, 0.28));
    pointer-events: none;
}

.fp-home-ci-services .fp-ci-inner {
    position: relative;
    z-index: 1;
}

.fp-ci-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2.2vw, 28px);
    align-items: stretch;
}

.fp-ci-card {
    perspective: 1200px;
    min-height: 330px;
    height: 100%;
    outline: none;
}

.fp-ci-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 520ms ease;
}

.fp-ci-card:hover .fp-ci-card-inner,
.fp-ci-card:focus .fp-ci-card-inner,
.fp-ci-card.is-flipped .fp-ci-card-inner {
    transform: rotateY(180deg);
}

.fp-ci-card-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #f4f1f0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fp-ci-card-front {
    justify-content: flex-start;
}

.fp-ci-card-back {
    transform: rotateY(180deg);
    background: #ffffff;
    justify-content: flex-start;
}

.fp-ci-card-letter {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
}

.fp-ci-card-title {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.9);
}

.fp-ci-card-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.78);
}

.fp-ci-card-banner {
    margin-top: auto;
    border: 1px solid #111111;
    background: #3b92de;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.fp-ci-card-icon {
    width: 42px;
    height: 42px;
    color: #111111;
    display: block;
    object-fit: contain;
}

.fp-ci-card-icon * {
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fp-ci-advantages {
    position: relative;
    padding: 130px 0 150px;
    min-height: 620px;
    color: #ffffff;
}

.fp-ci-advantages-bg {
    position: absolute;
    inset: 0;
    background: url("/static/pic/company_intro/advantage.jpg") center/cover no-repeat;
}

.fp-ci-advantages::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 30, 44, 0.75) 0%, rgba(16, 30, 44, 0.45) 45%, rgba(16, 30, 44, 0.2) 100%);
}

.fp-ci-advantages-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(18px, 2.6vw, 52px);
    align-items: start;
}

.fp-ci-advantages-title {
    margin: 0 0 10px;
    font-size: 46px;
    font-weight: 950;
}

.fp-ci-advantages-sub {
    margin: 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.86);
}

.fp-ci-advantages-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.fp-ci-adv-card {
    background: #ffffff;
    color: #111111;
    border: 2px solid #111111;
    padding: 16px;
    min-height: 200px;
}

.fp-ci-adv-card h3 {
    margin: 0;
    padding: 16px 18px;
    font-size: 20px;
    font-weight: 900;
    border: 1px solid #111111;
    border-bottom: none;
}

.fp-ci-adv-card p {
    margin: 0;
    padding: 16px 18px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
    border: 1px solid #111111;
}

@media only screen and (max-width: 980px) {
    .fp-ci-title {
        font-size: 52px;
    }

    .fp-ci-section-title {
        font-size: 34px;
    }

    .fp-home-about-merge-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "intro-image"
            "about"
            "about-image";
    }

    .fp-home-about-merge-panel,
    .fp-home-about-merge-media {
        min-height: 320px;
    }

    .fp-ci-about-grid {
        grid-template-columns: 1fr;
    }

    .fp-ci-about-media,
    .fp-ci-about-content {
        min-height: 360px;
    }

    .fp-ci-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-ci-advantages-grid {
        grid-template-columns: 1fr;
    }

    .fp-ci-advantages-cards {
        grid-template-columns: 1fr;
    }
}

.fp-book-page {
    background: #f6f4f1;
    color: #111111;
}

.fp-book-page .fp-product-breadcrumb {
    max-width: 1360px;
    margin: 24px auto 0;
    padding: 0 16px;
}

.fp-book-section-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    margin: 0 0 24px;
}

.fp-book-section-title-light {
    color: #ffffff;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.fp-book-advantages .fp-book-section-title-light {
    position: relative;
    padding-bottom: 14px;
}

.fp-book-advantages .fp-book-section-title-light::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    margin-top: 12px;
    background: #b11c1c;
}

.fp-book-hero {
    padding: 0 0 0;
    background: #f3f1ee;
}

.fp-book-hero-title-row {
    max-width: 100%;
    margin: 0 auto 18px;
    padding: 0 32px;
    background: #ffffff;
    padding-top: 24px;
    padding-bottom: 16px;
}

.fp-book-hero-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 0;
    align-items: stretch;
}

.fp-book-hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px 32px 32px 0;
    justify-content: center;
    align-items: center;
}

.fp-book-hero-title {
    font-size: clamp(34px, 4vw, 60px);
    margin: 0 0 24px;
    font-weight: 800;
}

.fp-book-hero-card {
    border: 1px solid #111111;
    background: #f0ebe7;
    width: min(520px, 100%);
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.fp-book-hero-card-title {
    margin: 0;
    padding: 20px 20px;
    font-size: 22px;
    font-weight: 700;
    border-bottom: 1px solid #111111;
    line-height: 1.5;
}

.fp-book-hero-card-body {
    margin: 0;
    padding: 18px 24px 24px;
    font-size: 16px;
    line-height: 1.8;
    flex: 1;
    display: flex;
    align-items: center;
}

.fp-book-hero-card-body::before {
    content: "";
    display: block;
    height: 0;
}

.fp-book-hero-actions {
    display: flex;
    align-items: stretch;
    border-top: 1px solid #111111;
    margin-top: auto;
}

.fp-book-hero-accent {
    flex: 1;
    background: #6fd3c4;
}

.fp-book-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.fp-book-hero-media {
    margin-right: -32px;
    overflow: hidden;
}

.fp-book-hero-media img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    display: block;
    height: 100%;
    object-fit: cover;
}

.fp-book-advantages {
    position: relative;
    padding: 90px 0 96px;
    background: url('/static/pic/book_printing/advantages-bg-2.jpg') center/120% no-repeat;
}

.fp-book-advantages::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
}

.fp-book-advantages-inner {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 720px);
    align-items: start;
    gap: 48px;
}

.fp-book-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    margin: 0;
}

.fp-book-adv-card {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.fp-book-adv-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.fp-book-adv-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(177, 28, 28, 0.12);
    color: #b11c1c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.fp-book-adv-icon svg {
    width: 24px;
    height: 24px;
}

.fp-book-adv-card h3 {
    margin: 0;
    padding: 0;
    font-size: 19px;
    font-weight: 800;
}

.fp-book-adv-card p {
    margin: 0;
    padding: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.78);
}

.fp-book-data {
    padding: 90px 0;
    background: #ffffff;
}

.fp-book-data-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

.fp-book-data-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 36px;
    align-items: stretch;
}

.fp-book-data-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.fp-book-data-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.fp-book-stat-card {
    position: relative;
    border: none;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 220px;
    padding: 22px 26px 26px;
}

.fp-book-stat-top {
    background: none;
    color: #3d8edb;
    padding: 0;
    font-weight: 800;
    letter-spacing: 0.02em;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.fp-book-stat-number {
    font-size: 72px;
    line-height: 1;
}

.fp-book-stat-unit {
    font-size: 24px;
    line-height: 1;
    position: relative;
    top: -10px;
}

.fp-book-stat-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(0, 0, 0, 0.6);
}

.fp-book-stat-card p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.72);
}

.fp-book-stat-footer {
    position: absolute;
    right: 18px;
    bottom: 16px;
    margin-top: 0;
    display: block;
    border-top: none;
    pointer-events: none;
}

.fp-book-stat-footer-left {
    display: none;
}

.fp-book-stat-footer-icon {
    width: 64px;
    height: 64px;
    min-height: 0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(61, 142, 219, 0.18);
}

.fp-book-stat-footer-icon img,
.fp-book-stat-footer-icon svg {
    width: 64px;
    height: 64px;
    object-fit: contain;
    opacity: 0.22;
}

.fp-book-printers {
    padding: 90px 0 104px;
    background: #ffffff;
}

.fp-book-printers-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

.fp-book-printer-slider {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.fp-book-slider-btn {
    width: 46px;
    height: 46px;
    border: 1px solid #111111;
    background: #ffffff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.fp-book-printer-stage {
    text-align: center;
    cursor: pointer;
}

.fp-book-printer-stage img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    background: #ffffff;
}

.fp-book-printer-caption {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
}

.fp-modal-open {
    overflow: hidden;
}

.fp-book-modal {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: none;
    z-index: 9999;
    overflow-y: auto;
    padding: 64px 32px 80px;
}

.fp-book-modal.is-open {
    display: block;
}

.fp-book-modal-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid #111111;
    background: #ffffff;
    color: #111111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.fp-book-modal-close:hover {
    background: #f2f2f2;
}

.fp-book-modal-content {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.fp-book-modal-image img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.fp-book-modal-text {
    width: 100%;
    max-width: 1120px;
}

.fp-book-modal-text h3 {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 700;
}

.fp-book-modal-text p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(0, 0, 0, 0.85);
}

.fp-book-modal-text ul {
    margin: 0 0 18px;
    padding-left: 22px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.85);
}

.fp-book-modal-text li {
    margin-bottom: 8px;
}

@media only screen and (max-width: 980px) {
    .fp-book-hero-inner {
        grid-template-columns: 1fr;
    }

    .fp-book-advantages-inner {
        grid-template-columns: 1fr;
    }

    .fp-book-advantages-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .fp-book-data-grid {
        grid-template-columns: 1fr;
    }

    .fp-book-data-cards {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 720px) {
    .fp-book-printer-slider {
        grid-template-columns: 1fr;
    }

    .fp-book-slider-btn {
        justify-self: center;
    }

    .fp-book-modal {
        padding: 52px 20px 60px;
    }

    .fp-book-modal-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

/* Responsive refinements for tablet and mobile */
@media only screen and (max-width: 1280px) {
    .brand-link {
        margin-left: 3.5%;
    }

    .brand-link .header-logo {
        height: 46px;
    }

    .navigation.fp-nav .nav-item,
    .navigation.fp-nav > .nav-dropdown > .nav-item {
        padding: 0 20px;
        font-size: 14px;
    }

    .navigation.fp-nav .nav-dropdown--custom .nav-dropdown-menu {
        width: min(960px, 94vw);
        padding: 20px 22px;
    }

    .nav-custom-inner {
        gap: 24px;
        grid-template-columns: minmax(0, 1fr) 220px;
    }

    .nav-custom-grid {
        gap: 20px 24px;
    }

    .language-switch {
        margin-right: 3.5%;
    }
}

@media only screen and (max-width: 980px) {
    header {
        gap: 8px;
        padding: 8px 0;
    }

    main {
        padding-top: 72px;
    }

    .brand-link {
        margin-left: 4%;
    }

    .brand-link .header-logo {
        height: 42px;
    }

    .language-switch {
        width: auto;
        margin-right: 4%;
    }

    .menu-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 82px;
        height: 36px;
        padding: 0 14px;
        font-size: 13px;
        line-height: 1;
        letter-spacing: 0.08em;
        font-weight: 800;
        margin-right: 4%;
        border: 1px solid #111111;
        border-radius: 2px;
        background: #ffffff;
        color: transparent;
        position: relative;
        z-index: 2001;
        user-select: none;
    }

    .menu-icon::before {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #111111;
        pointer-events: none;
    }

    .menu-icon + .navigation {
        position: fixed;
        top: 68px;
        left: 50%;
        transform: translateX(-50%);
        width: min(92vw, 440px);
        height: auto;
        max-height: calc(100dvh - 80px);
        overflow: auto;
        z-index: 1500;
        padding: 0;
        background: #ffffff;
        border: 1px solid #111111;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .navigation.fp-nav {
        width: 100%;
        margin: 0;
        border: none;
        border-radius: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        position: static;
        left: auto;
        transform: none;
    }

    .navigation.fp-nav .nav-item,
    .navigation.fp-nav > .nav-dropdown > .nav-item {
        width: 100%;
        min-height: 46px;
        padding: 0 16px;
        border-left: none;
        border-top: 1px solid #111111;
        justify-content: center;
        text-align: center;
        font-weight: 800;
        white-space: normal;
    }

    .navigation.fp-nav > .nav-item:first-child,
    .navigation.fp-nav > .nav-dropdown:first-child > .nav-item {
        border-top: none;
    }

    .navigation.fp-nav .nav-dropdown {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .navigation.fp-nav .nav-dropdown > .nav-item {
        position: relative;
        padding-right: 44px;
    }

    .navigation.fp-nav .nav-dropdown > .nav-item::after {
        content: "\25BE";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
    }

    .navigation.fp-nav .nav-dropdown.is-open > .nav-item::after {
        content: "\25B4";
    }

    .navigation.fp-nav .nav-dropdown-menu {
        position: static;
        min-width: 100%;
        width: 100%;
        border: none;
        box-shadow: none;
        display: none;
        margin: 0;
    }

    .navigation.fp-nav .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .navigation.fp-nav .nav-dropdown.is-open .nav-dropdown-menu,
    .navigation.fp-nav .nav-dropdown:focus-within .nav-dropdown-menu {
        display: block;
    }

    .navigation.fp-nav .nav-dropdown-menu a {
        width: 100%;
        padding: 12px 16px;
        border-top: 1px solid #111111;
        text-align: center;
        font-size: 14px;
        font-weight: 700;
        white-space: normal;
    }

    .navigation.fp-nav .nav-dropdown-menu a:first-child {
        border-top: 1px solid #111111;
    }

    .navigation.fp-nav .nav-dropdown--custom .nav-dropdown-menu {
        left: auto;
        transform: none;
        min-width: 100%;
        width: 100%;
        padding: 16px 14px;
    }

    .nav-custom-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .nav-custom-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
    }

    .nav-custom-menu--simple .nav-custom-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-custom-group,
    .nav-custom-group-link {
        width: 100%;
    }

    .nav-custom-title,
    .nav-custom-list li {
        white-space: normal;
    }

    .nav-custom-menu--simple .nav-custom-icon {
        width: min(100%, 116px);
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .nav-custom-feature {
        max-width: none;
    }

    .navigation.fp-nav .nav-lang-item {
        height: auto;
        padding: 10px 12px;
        border-top: 1px solid #111111;
    }

    .navigation.fp-nav .nav-lang-item .language-switch {
        width: 100%;
        margin: 0;
        justify-content: center;
        gap: 10px;
    }

    .navigation.fp-nav .nav-lang-item #language-select {
        width: min(220px, 100%);
        text-align: center;
        border: 1px solid #111111;
        border-radius: 2px;
        padding: 8px 34px;
        background-color: #ffffff;
    }

    .fp-home-hero-bar-inner,
    .fp-home-steps-grid,
    .fp-home-advantages-inner,
    .fp-home-sensitive-marquee,
    .fp-home-partners-marquee,
    .fp-home-testimonials-inner,
    .fp-home-cta-inner,
    .fp-product-layout,
    .fp-product-breadcrumb {
        width: min(100%, calc(100vw - 32px));
    }

    .fp-home-hero-bar-inner {
        padding: 104px 0 24px;
        gap: 20px;
    }

    .fp-home-hero-media {
        height: clamp(280px, 54vw, 440px);
    }

    .fp-home-hero-right {
        gap: 10px;
    }

    .fp-home-hero-lead,
    .fp-home-hero-sub {
        max-width: 44ch;
    }

    .fp-home-about-merge-panel,
    .fp-home-about-merge-media {
        min-height: 300px;
    }

    .fp-home-about-card {
        width: 100%;
        aspect-ratio: auto;
        min-height: 320px;
    }

    .fp-home-steps {
        --fp-step-row-gap: 32px;
        padding: 24px 0 44px;
    }

    .fp-home-step-card {
        grid-template-columns: 88px 1fr;
    }

    .fp-home-sensitive-card {
        width: min(420px, 72vw);
    }

    .fp-home-partners-track,
    .fp-home-partners-set {
        gap: 18px;
    }

    .fp-home-partner-card {
        min-width: 180px;
        height: 150px;
        padding: 6px 8px;
    }

    .fp-home-partner-card img {
        height: 112px;
        max-width: 180px;
    }

    .fp-home-testimonials {
        padding: 56px 0 72px;
        min-height: auto;
    }

    .fp-home-testimonials-card {
        width: min(100%, 520px);
        aspect-ratio: auto;
        min-height: 260px;
    }

    .fp-product-layout {
        gap: 18px;
        margin-bottom: 48px;
    }

    .fp-product-breadcrumb {
        margin: 24px auto 16px;
    }

    .fp-lc-inner,
    .fp-ci-inner {
        padding: 0 20px;
    }

    .fp-lc-pagehead,
    .fp-ci-pagehead {
        padding-top: 60px;
    }

    .fp-lc-title,
    .fp-ci-title {
        font-size: 46px;
    }

    .fp-lc-case {
        padding: 18px 0 56px;
    }

    .fp-lc-case-title {
        font-size: 32px;
    }

    .fp-lc-case-lead p,
    .fp-lc-sec p,
    .fp-lc-sec ul,
    .fp-lc-sec ol {
        font-size: 15px;
    }

    .fp-ci-card {
        min-height: 300px;
    }

    .fp-book-hero-title-row,
    .fp-book-hero-inner,
    .fp-book-advantages-inner,
    .fp-book-data-inner,
    .fp-book-printers-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .fp-book-hero-title-row {
        margin-bottom: 12px;
        padding-top: 18px;
        padding-bottom: 14px;
    }

    .fp-book-hero-content {
        padding: 12px 0 24px;
        align-items: stretch;
    }

    .fp-book-hero-card {
        width: 100%;
        min-height: auto;
    }

    .fp-book-hero-card-body {
        align-items: flex-start;
    }

    .fp-book-hero-media {
        margin-right: 0;
        min-height: 320px;
    }

    .fp-book-hero-media img {
        min-height: 320px;
    }

    .fp-book-advantages,
    .fp-book-data,
    .fp-book-printers {
        padding: 72px 0;
    }

    .fp-book-advantages-inner {
        gap: 32px;
    }

    .fp-book-stat-number {
        font-size: 56px;
    }
}

@media only screen and (max-width: 640px) {
    header {
        padding: 8px 0;
    }

    main {
        padding-top: 64px;
    }

    .brand-link {
        margin-left: 16px;
    }

    .brand-link .header-logo {
        height: 38px;
    }

    .menu-icon {
        min-width: 72px;
        height: 34px;
        padding: 0 12px;
        margin-right: 16px;
        font-size: 12px;
    }

    .menu-icon + .navigation {
        top: 62px;
        width: calc(100vw - 20px);
        max-height: calc(100dvh - 72px);
    }

    .nav-custom-grid,
    .nav-custom-menu--simple .nav-custom-grid {
        grid-template-columns: 1fr;
    }

    .fp-home-hero-bar-inner,
    .fp-home-steps-grid,
    .fp-home-advantages-inner,
    .fp-home-sensitive-marquee,
    .fp-home-partners-marquee,
    .fp-home-testimonials-inner,
    .fp-home-cta-inner,
    .fp-product-layout,
    .fp-product-breadcrumb {
        width: calc(100vw - 24px);
    }

    .fp-home-hero-bar-inner {
        padding: 92px 0 20px;
        gap: 14px;
    }

    .fp-home-hero-left h1 {
        font-size: clamp(28px, 9vw, 40px);
    }

    .fp-home-hero-lead {
        font-size: 14px;
    }

    .fp-home-hero-sub {
        font-size: 13px;
    }

    .fp-home-hero-btn {
        left: 12px;
        right: 12px;
        bottom: 12px;
        height: 48px;
        padding: 0 16px;
    }

    .fp-home-hero-partner-btn {
        left: 50%;
        top: auto;
        bottom: 10%;
        width: min(62vw, 220px);
        height: 42px;
    }

    .fp-home-about-merge-panel,
    .fp-home-about-merge-media {
        min-height: 240px;
    }

    .fp-home-about-card h2 {
        padding: 20px 18px;
    }

    .fp-home-about-card p {
        padding: 18px;
        line-height: 1.7;
    }

    .fp-home-step-card {
        grid-template-columns: 1fr;
    }

    .fp-home-step:nth-child(odd),
    .fp-home-step:nth-child(even) {
        grid-column: 1;
        justify-self: stretch;
    }

    .fp-home-step-num {
        min-height: 72px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        font-size: 38px;
    }

    .fp-home-step-text {
        padding: 16px;
        min-width: 0;
    }

    .fp-home-step-text h3,
    .fp-home-step-text p {
        overflow-wrap: anywhere;
    }

    .fp-home-sensitive-marquee {
        padding: 10px;
        border-radius: 16px;
    }

    .fp-home-sensitive-set {
        gap: 14px;
    }

    .fp-home-sensitive-card {
        width: calc(100vw - 40px);
        border-radius: 14px;
    }

    .fp-home-partners-marquee {
        gap: 16px;
    }

    .fp-home-partners-track,
    .fp-home-partners-set {
        gap: 14px;
    }

    .fp-home-partner-card {
        min-width: 140px;
        height: 112px;
        padding: 6px;
    }

    .fp-home-partner-card img {
        height: 76px;
        max-width: 132px;
    }

    .fp-home-testimonials {
        padding: 44px 0 56px;
    }

    .fp-home-testimonials-card {
        width: 100%;
        min-height: 300px;
        padding: 16px;
    }

    .fp-home-testimonial p {
        font-size: 15px;
    }

    .fp-home-slider-btn {
        width: 40px;
        height: 34px;
    }

    .fp-product-main {
        aspect-ratio: 1 / 1;
    }

    .fp-product-thumbs {
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .fp-product-thumb {
        width: 56px;
        height: 56px;
        flex: 0 0 auto;
    }

    .fp-product-cta {
        padding: 48px 0 56px;
    }

    .fp-product-cta-inner {
        padding: 0 20px;
    }

    .fp-lc-title,
    .fp-ci-title {
        font-size: 36px;
    }

    .fp-lc-tabs {
        grid-template-columns: 1fr;
    }

    .fp-lc-tab {
        padding: 14px 10px;
    }

    .fp-lc-case-title {
        font-size: 28px;
    }

    .fp-lc-case-media {
        min-height: 240px;
    }

    .fp-lc-sensitive-title {
        margin-bottom: 18px;
        font-size: 32px;
    }

    .fp-lc-marquee {
        padding: 14px;
    }

    .fp-lc-track {
        gap: 16px;
        padding-right: 16px;
    }

    .fp-lc-card {
        width: min(78vw, 280px);
    }

    .fp-lc-card-img {
        height: 180px;
        border-radius: 14px;
    }

    .fp-ci-services-grid {
        grid-template-columns: 1fr;
    }

    .fp-ci-card-face {
        padding: 18px;
    }

    .fp-book-section-title {
        margin-bottom: 18px;
    }

    .fp-book-hero-title-row,
    .fp-book-hero-inner,
    .fp-book-advantages-inner,
    .fp-book-data-inner,
    .fp-book-printers-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .fp-book-hero-title {
        font-size: clamp(30px, 9vw, 42px);
        margin-bottom: 0;
    }

    .fp-book-hero-card-title {
        padding: 16px;
        font-size: 20px;
    }

    .fp-book-hero-card-body {
        padding: 16px;
        font-size: 15px;
        line-height: 1.7;
    }

    .fp-book-hero-btn {
        width: 100%;
        min-height: 46px;
    }

    .fp-book-hero-media,
    .fp-book-hero-media img {
        min-height: 240px;
    }

    .fp-book-advantages,
    .fp-book-data,
    .fp-book-printers {
        padding: 56px 0 64px;
    }

    .fp-book-adv-card,
    .fp-book-stat-card {
        padding: 18px;
    }

    .fp-book-stat-card {
        min-height: 180px;
    }

    .fp-book-stat-number {
        font-size: 44px;
    }

    .fp-book-stat-unit {
        top: -6px;
        font-size: 18px;
    }

    .fp-book-printer-caption {
        font-size: 16px;
    }

    .fp-book-slider-btn {
        width: 42px;
        height: 42px;
    }

    .fp-book-modal-content {
        gap: 20px;
    }

    .fp-book-modal-text h3 {
        font-size: 22px;
    }

    .fp-book-modal-text p,
    .fp-book-modal-text ul {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Mobile nav panel fix: the nav itself is the dropdown panel */
@media only screen and (max-width: 980px) {
    .navigation.fp-nav {
        display: none !important;
        position: fixed !important;
        top: 68px;
        left: 12px;
        right: 12px;
        width: auto;
        max-height: calc(100dvh - 80px);
        overflow: auto;
        transform: none !important;
        z-index: 1500;
        padding: 0;
        box-sizing: border-box;
        background: #ffffff;
        border: 1px solid #111111;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
        flex-direction: column;
        align-items: stretch;
    }

    .navigation.fp-nav.is-open {
        display: flex !important;
    }
}

@media only screen and (max-width: 640px) {
    .navigation.fp-nav {
        top: 62px;
        left: 10px;
        right: 10px;
        width: auto;
        max-height: calc(100dvh - 72px);
    }
}

