/**
 * 新加坡线路专题 — 对齐 test/sg/code.html
 */
.sg-page.route-landing {
    background: #f8f9fa;
    color: #191c1d;
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.sg-page .route-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.sg-page .route-section.route-hero.sg-hero-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
    overflow: hidden;
    background: #f8f9fa;
}

.sg-page .route-section--compact {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.sg-page .route-section--alt {
    background: #f3f4f5;
}

.sg-page .route-section--surface {
    background: #f8f9fa;
}

.sg-page .route-main {
    max-width: 1280px;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    box-sizing: border-box;
}

.sg-page .sg-editorial-shadow {
    box-shadow: 0 32px 64px rgba(var(--primary-rgb), 0.05);
}

/* —— 按钮 —— */
.sg-page .nf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 1.2;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
    box-sizing: border-box;
}

.sg-page .sg-btn-gradient,
.sg-page .nf-btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.2);
}

.sg-page .sg-btn-gradient:hover,
.sg-page .nf-btn--primary:hover {
    transform: scale(1.02);
    color: #fff;
}

.sg-page .sg-btn-muted,
.sg-page .nf-btn--ghost {
    background: #e1e3e4;
    color: #191c1d;
}

.sg-page .sg-btn-muted:hover,
.sg-page .nf-btn--ghost:hover {
    background: #e7e8e9;
    color: #191c1d;
}

.sg-page .sg-btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.sg-page .sg-btn-outline {
    background: transparent !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
}

.sg-page .sg-btn-outline:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

.sg-page .sg-btn-block {
    width: 100%;
}

.sg-page .sg-btn-cta-white {
    background: #fff !important;
    color: var(--primary) !important;
    padding: 1.25rem 3rem !important;
    font-size: 1.125rem !important;
    font-weight: 800 !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1) !important;
}

.sg-page .sg-btn-cta-white:hover {
    transform: scale(0.98);
    color: var(--primary) !important;
}

.sg-page .sg-btn-cta-dark {
    background: rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(12px);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 1.25rem 3rem !important;
    font-size: 1.125rem !important;
}

.sg-page .sg-btn-cta-dark:hover {
    background: rgba(0, 0, 0, 0.3) !important;
    color: #fff !important;
}

/* —— Hero —— */
.sg-page .sg-hero-section {
    position: relative;
}

.sg-page .sg-hero-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #f3f4f5;
    border-radius: 6.25rem 0 0 6.25rem;
    z-index: 0;
    pointer-events: none;
}

.sg-page .sg-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .sg-page .sg-hero-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 3rem;
    }
}

.sg-page .sg-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 9999px;
    background: #ffd9e1;
    color: #8f0044;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sg-page .sg-h1 {
    margin: 0 0 2rem;
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #191c1d;
}

.sg-page .sg-h1-accent {
    color: var(--primary);
}

.sg-page .sg-lead {
    margin: 0 0 2.5rem;
    max-width: 36rem;
    font-size: 1.25rem;
    line-height: 1.75;
    color: #5d5e61;
}

.sg-page .sg-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.sg-page .sg-hero-visual {
    position: relative;
}

.sg-page .sg-hero-img-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 520px;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #f3f4f5;
    transform: rotate(2deg);
}

@media (min-width: 768px) {
    .sg-page .sg-hero-img-wrap {
        transform: rotate(2deg);
    }
}

.sg-page .sg-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sg-page .sg-eta-card {
    position: absolute;
    bottom: -1.5rem;
    left: -3rem;
    z-index: 2;
    max-width: 15rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
}

.sg-page .sg-eta-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    font-weight: 800;
    color: #191c1d;
}

.sg-page .sg-eta-ico {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sg-page .sg-eta-ico .material-symbols-outlined {
    font-size: 1.25rem;
}

.sg-page .sg-eta-val {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.sg-page .sg-eta-sub {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #5d5e61;
}

/* —— 线路切换 —— */
.sg-page .route-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sg-page .route-chip {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #e1e3e4;
    background: #fff;
    color: #191c1d;
    font-weight: 700;
    font-size: 0.8125rem;
    text-decoration: none;
}

.sg-page .route-chip:hover,
.sg-page .route-chip--on {
    border-color: rgba(var(--primary-rgb), 0.35);
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
}

/* —— 核心优势 Bento —— */
.sg-page .sg-advantages-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.sg-page .sg-section-head {
    margin-bottom: 4rem;
}

.sg-page .sg-h2 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #191c1d;
}

.sg-page .sg-muted {
    margin: 0;
    color: #5d5e61;
    line-height: 1.75;
}

.sg-page .sg-section-head--center {
    text-align: center;
}

.sg-page .sg-section-head--center .sg-muted {
    margin-left: auto;
    margin-right: auto;
}

.sg-page .sg-section-head-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.sg-page .sg-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.sg-page .sg-link:hover {
    gap: 0.75rem;
}

.sg-page .sg-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .sg-page .sg-bento {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
}

.sg-page .sg-bento-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-sizing: border-box;
    transition: background 0.2s ease;
}

.sg-page .sg-bento-card--8 {
    grid-column: span 1;
    background: #f3f4f5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .sg-page .sg-bento-card--8 {
        grid-column: span 8;
    }
}

.sg-page .sg-bento-card--8:hover {
    background: #e7e8e9;
}

.sg-page .sg-bento-card--4 {
    grid-column: span 1;
    background: #f3f4f5;
}

@media (min-width: 768px) {
    .sg-page .sg-bento-card--4 {
        grid-column: span 4;
    }
}

.sg-page .sg-bento-card--4:hover {
    background: #e7e8e9;
}

.sg-page .sg-bento-card--dark {
    background: #191c1d;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sg-page .sg-bento-card--dark h3 {
    color: #fff;
}

.sg-page .sg-bento-card--dark p {
    color: #94a3b8;
}

.sg-page .sg-bento-card--gst {
    grid-column: span 1;
    background: #fff;
    border: 1px solid rgba(226, 189, 197, 0.1);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .sg-page .sg-bento-card--gst {
        grid-column: span 8;
        flex-direction: row;
        align-items: center;
    }
}

.sg-page .sg-bento-ico {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.sg-page .sg-bento-ico .material-symbols-outlined {
    font-size: 3rem;
}

.sg-page .sg-bento-card--dark .sg-bento-ico {
    color: #ffb1c4;
}

.sg-page .sg-bento-card h3 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #191c1d;
}

.sg-page .sg-bento-card p {
    margin: 0;
    color: #5d5e61;
    line-height: 1.75;
    font-size: 0.9375rem;
    max-width: 28rem;
}

.sg-page .sg-bento-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.sg-page .sg-bento-tags span {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background: #fff;
    font-size: 0.875rem;
    font-weight: 800;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.sg-page .sg-bento-tags .sg-tags-arrow {
    background: transparent;
    box-shadow: none;
    color: var(--primary);
    padding: 0;
}

.sg-page .sg-cold-watermark {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    opacity: 0.2;
    transform: rotate(-12deg);
    pointer-events: none;
}

.sg-page .sg-cold-watermark .material-symbols-outlined {
    font-size: 11.25rem;
    color: #fff;
}

.sg-page .sg-gst-visual {
    flex-shrink: 0;
    width: 100%;
    height: 12rem;
    border-radius: 1rem;
    background: #f3f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (min-width: 768px) {
    .sg-page .sg-gst-visual {
        width: 16rem;
        height: 12rem;
    }
}

.sg-page .sg-gst-visual > .material-symbols-outlined {
    font-size: 4.5rem;
    color: #cbd5e1;
}

.sg-page .sg-gst-bars {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    gap: 0.5rem;
}

.sg-page .sg-gst-bars .bar {
    height: 0.5rem;
    border-radius: 999px;
}

.sg-page .sg-gst-bars .bar--main {
    flex: 3;
    background: var(--primary);
}

.sg-page .sg-gst-bars .bar--sub {
    flex: 1;
    background: #e1e3e4;
}

/* —— 定价 —— */
.sg-page .sg-pricing-section {
    background: #f3f4f5;
}

.sg-page .sg-tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .sg-page .sg-tiers {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.sg-page .sg-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease;
    position: relative;
}

.sg-page .sg-tier:hover {
    transform: translateY(-8px);
}

.sg-page .sg-tier--hot {
    background: #191c1d;
    color: #fff;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.2);
    z-index: 1;
}

@media (min-width: 768px) {
    .sg-page .sg-tier--hot {
        transform: scale(1.05);
    }

    .sg-page .sg-tier--hot:hover {
        transform: scale(1.05) translateY(-8px);
    }
}

.sg-page .sg-tier-tag {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: var(--primary);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.sg-page .sg-tier-label {
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5d5e61;
}

.sg-page .sg-tier--hot .sg-tier-label {
    color: #94a3b8;
}

.sg-page .sg-tier-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.125rem;
    line-height: 1;
}

.sg-page .sg-tier-currency {
    font-size: 2.25rem;
    font-weight: 800;
    color: #191c1d;
}

.sg-page .sg-tier-num {
    font-size: 3.75rem;
    font-weight: 800;
    color: #191c1d;
    letter-spacing: -0.03em;
}

.sg-page .sg-tier-unit {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #5d5e61;
    margin-left: 0.125rem;
}

.sg-page .sg-tier--hot .sg-tier-currency,
.sg-page .sg-tier--hot .sg-tier-num {
    color: #fff;
}

.sg-page .sg-tier--hot .sg-tier-unit {
    color: #94a3b8;
}

.sg-page .sg-tier-list {
    margin: 0 0 2.5rem;
    padding: 0;
    list-style: none;
    width: 100%;
    text-align: left;
    flex: 1;
}

.sg-page .sg-tier-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #5d5e61;
}

.sg-page .sg-tier-list li:first-child {
    margin-top: 0;
}

.sg-page .sg-tier-list .material-symbols-outlined {
    font-size: 1.25rem;
    flex-shrink: 0;
    color: var(--primary);
    font-variation-settings: "FILL" 1;
}

.sg-page .sg-tier--hot .sg-tier-list li {
    color: #cbd5e1;
}

.sg-page .sg-tier--hot .sg-tier-list .material-symbols-outlined {
    color: #ffb1c4;
}

.sg-page .sg-tier--hot .sg-tier-list .ico-bolt {
    color: #ffb1c4;
}

.sg-page .sg-tier-note {
    margin: 3rem 0 0;
    text-align: center;
    font-size: 0.875rem;
    color: #5d5e61;
}

/* —— 货运流程 —— */
.sg-page .sg-flow-section {
    overflow: hidden;
}

.sg-page .sg-flow-track {
    position: relative;
    padding: 3rem 0 1rem;
}

.sg-page .sg-flow-rail {
    display: none;
}

@media (min-width: 768px) {
    .sg-page .sg-flow-rail {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        height: 4px;
        margin-top: -2rem;
        background: #e1e3e4;
        border-radius: 999px;
        z-index: 0;
    }
}

.sg-page .sg-flow-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .sg-page .sg-flow-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 3rem;
    }
}

.sg-page .sg-flow-step {
    text-align: left;
}

.sg-page .sg-flow-ico {
    width: 4rem;
    height: 4rem;
    margin-bottom: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary);
    border: 1px solid #e1e3e4;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.sg-page .sg-flow-step:hover .sg-flow-ico {
    transform: scale(1.1);
    border-color: var(--primary);
}

.sg-page .sg-flow-ico--on {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 15px rgba(var(--primary-rgb), 0.3);
}

.sg-page .sg-flow-ico .material-symbols-outlined {
    font-size: 1.5rem;
}

.sg-page .sg-flow-step h4 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #191c1d;
}

.sg-page .sg-flow-step p {
    margin: 0;
    font-size: 0.875rem;
    color: #5d5e61;
    line-height: 1.7;
}

/* —— CTA —— */
.sg-page .sg-cta-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.sg-page .sg-cta-banner {
    position: relative;
    padding: 3rem 2rem;
    border-radius: 2.5rem;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

@media (min-width: 768px) {
    .sg-page .sg-cta-banner {
        padding: 6rem;
    }
}

.sg-page .sg-cta-banner h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 2rem;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.sg-page .sg-cta-banner > p {
    position: relative;
    z-index: 1;
    margin: 0 auto 3rem;
    max-width: 42rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.sg-page .sg-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.sg-page .sg-cta-blob-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(100px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sg-page .sg-cta-blob-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    filter: blur(120px);
    transform: translate(33%, 33%);
    pointer-events: none;
}

.sg-page .material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    display: inline-block;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 767px) {
    .sg-page .sg-hero-deco {
        display: none;
    }

    .sg-page .sg-eta-card {
        position: static;
        margin-top: 1rem;
        max-width: none;
        left: auto;
    }

    .sg-page .sg-hero-img-wrap {
        transform: none;
    }

    .sg-page .sg-tier--hot {
        transform: none;
    }

    .sg-page .sg-tier--hot:hover {
        transform: translateY(-8px);
    }
}
