html {
    scroll-padding-top: 70px;
}

:root {
    --apple-text: #1d1d1f;
    --apple-text-muted: #86868b;
    --apple-blue: #0071e3;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    --glass-dark-bg: rgba(29, 29, 31, 0.75);
    --glass-dark-border: rgba(255, 255, 255, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--apple-text);
    background-color: #fbfbfd;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 { font-weight: 600; letter-spacing: -0.02em; }
.text-muted { color: var(--apple-text-muted) !important; }

/* 动态渐变背景 */
.bg-blobs {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; overflow: hidden; background: #f4f5f7;
}
.blob {
    position: absolute; border-radius: 50%; filter: blur(90px);
    opacity: 0.7; animation: float 20s infinite ease-in-out alternate;
}
.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: #e0f2fe; }
.blob-2 { bottom: -10%; right: -10%; width: 45vw; height: 45vw; background: #e0e7ff; animation-delay: -5s; }
.blob-3 { top: 30%; left: 40%; width: 40vw; height: 40vw; background: #fce7f3; animation-delay: -10s; }
.blob-4 { bottom: 20%; left: 10%; width: 35vw; height: 35vw; background: #dcfce7; animation-delay: -15s; }

@keyframes float {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.1); }
}

/* 毛玻璃面板 */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}
.glass-panel:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1), 0 0 0 1.5px rgba(0, 113, 227, 0.25), 0 0 20px rgba(0, 113, 227, 0.08);
    border-color: rgba(0, 113, 227, 0.35);
}

/* 导航栏 */
.navbar-glass {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 0;
}
.navbar-brand { font-weight: 700; color: var(--apple-text) !important; font-size: 1.4rem; }
.nav-link { color: var(--apple-text) !important; font-weight: 500; font-size: 0.95rem; }

/* 按钮 */
.btn-apple-primary {
    background: var(--apple-text); color: white; border-radius: 50px;
    padding: 12px 32px; font-weight: 500; border: none; transition: 0.3s;
}
.btn-apple-primary:hover { background: #424245; color: white; transform: scale(1.02); }

.btn-apple-outline {
    background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(10px);
    color: var(--apple-text); border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px; padding: 12px 32px; font-weight: 500; transition: 0.3s;
}
.btn-apple-outline:hover { background: rgba(255, 255, 255, 0.8); transform: scale(1.02); }

/* Hero 区 */
.hero {
    padding: 200px 0 120px; text-align: center; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    background: rgba(0, 113, 227, 0.1); color: var(--apple-blue);
    border: 1px solid rgba(0, 113, 227, 0.2);
    backdrop-filter: blur(10px); margin-bottom: 24px;
}

/* 统计条 */
.stats-bar {
    border-radius: 40px; padding: 40px 20px;
    margin-top: -60px; position: relative; z-index: 10;
}
.stats-bar h2 { font-size: 2.8rem; font-weight: 700; color: var(--apple-text); margin-bottom: 4px; }

/* 标签 */
.dev-tag {
    font-size: 0.75rem; padding: 6px 14px; border-radius: 50px; font-weight: 500;
    background: rgba(0, 0, 0, 0.04); color: var(--apple-text-muted);
    display: inline-block; margin: 4px; border: 1px solid rgba(255, 255, 255, 0.6);
}

/* 图标背景 */
.icon-pool {
    width: 64px; height: 64px; border-radius: 20px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 20px;
    background: rgba(0, 113, 227, 0.08); color: var(--apple-blue);
}

/* 悬浮按钮 */
#float-btn {
    position: fixed; bottom: 40px; right: 40px; width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); cursor: pointer; z-index: 1000;
    color: var(--apple-blue); font-size: 26px; transition: 0.3s;
    text-decoration: none;
}
#float-btn:hover { transform: scale(1.1); background: #fff; }

/* Footer */
footer {
    background: var(--glass-dark-bg);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-top: 1px solid var(--glass-dark-border);
    color: #f5f5f7; padding: 80px 0 40px;
    margin-top: 80px; position: relative; z-index: 10;
}

footer a { color: #fff !important; text-decoration: none !important; }

/* 竞品对比表 */
.compare-table { border-radius: 20px; overflow-x: auto; overflow-y: hidden; }
.compare-row { display: grid; grid-template-columns: 160px minmax(520px, 1.45fr) minmax(420px, 1.15fr); min-width: 1120px; }
.compare-row > div { padding: 14px 20px; font-size: 0.9rem; }
.compare-row > div { white-space: nowrap; }
.compare-row.hdr { background: var(--apple-text); color: #fff; font-weight: 600; }
.compare-row.even { background: rgba(255,255,255,0.5); }
.compare-row.odd  { background: rgba(255,255,255,0.25); }
.col-us { color: #0071e3; font-weight: 500; }

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); padding: 20px 0; }
.faq-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
}
.faq-item > i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--apple-blue);
    background: rgba(0,113,227,.08);
}
.faq-item h5 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.faq-item p  { color: var(--apple-text-muted); margin: 0; font-size: 0.92rem; }

/* 保障条 */
.guarantee-bar {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
    padding: 32px 20px; background: rgba(255,255,255,0.5);
    backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.8);
}
.guarantee-bar span { font-size: 0.9rem; font-weight: 500; color: var(--apple-text); }
.guarantee-bar i { color: #2ecc71; margin-right: 6px; }

/* 痛点解决方案 */
.solution { color: #2ecc71; font-size: 0.85rem; margin-top: 8px; margin-bottom: 0; }

/* 步骤编号 */
.step-num { font-size: 3rem; font-weight: 700; opacity: 0.08; line-height: 1; }

/* 下拉菜单毛玻璃 */
.dropdown-menu {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 8px;
    min-width: 140px;
}
.dropdown-item {
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 8px 14px;
    color: var(--apple-text);
}
.dropdown-item:hover { background: rgba(0,113,227,0.08); color: #0071e3; }
.dropdown-divider { margin: 4px 8px; border-color: rgba(0,0,0,0.08); }

/* Pagination */
.yp_pagination { display:flex; flex-wrap:wrap; gap:6px; align-items:center; }
.yp_pagination a { display:inline-flex; align-items:center; justify-content:center; min-width:36px; height:36px; padding:0 10px; border-radius:8px; border:1px solid rgba(0,113,227,0.2); color:#0071e3; text-decoration:none; font-size:0.9rem; transition:all .2s; }
.yp_pagination a:hover { background:#0071e3; color:#fff; border-color:#0071e3; }
.yp_pagination a.yp_active { background:#0071e3; color:#fff; border-color:#0071e3; pointer-events:none; }
.yp_pagination a.yp_prev, .yp_pagination a.yp_next { padding:0 14px; }

/* 新版营销组件 */
.hero-split {
    padding: 150px 0 80px;
    text-align: left;
}
.hero-split h1 {
    max-width: 660px;
    line-height: 1.12;
}
.hero-title {
    max-width: 640px;
    font-size: 2.8rem;
    line-height: 1.14;
    font-weight: 760;
    letter-spacing: 0;
    white-space: nowrap;
}
.badge-purple {
    background: rgba(191,85,236,0.1);
    color: #9b3ed5;
    border-color: rgba(191,85,236,0.2);
}
.badge-green {
    background: rgba(46,204,113,0.1);
    color: #1d9b58;
    border-color: rgba(46,204,113,0.2);
}
.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.hero-proof-grid div {
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 18px;
    padding: 14px 16px;
}
.hero-proof-grid strong {
    display: block;
    font-size: 1.65rem;
    line-height: 1;
}
.hero-proof-grid span {
    display: block;
    color: var(--apple-text-muted);
    font-size: .82rem;
    margin-top: 6px;
}
.update-signal {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    max-width: 680px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 247, 230, .68);
    border: 1px solid rgba(243, 156, 18, .18);
    color: #8a5a00;
}
.update-signal i {
    color: #f39c12;
    margin-top: 2px;
}
.update-signal strong,
.update-signal span {
    display: block;
}
.update-signal strong {
    color: #7a4b00;
    font-size: .92rem;
}
.update-signal span {
    margin-top: 4px;
    font-size: .84rem;
    color: #9a6a1f;
    line-height: 1.6;
}
.product-showcase {
    width: 100%;
    max-width: 636px;
    margin-left: auto;
    background: rgba(255,255,255,.58);
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 30px;
    padding: 11px;
    box-shadow: 0 30px 80px rgba(0,0,0,.08);
    backdrop-filter: blur(24px) saturate(180%);
}
.showcase-toolbar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 4px 14px;
}
.showcase-toolbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
}
.showcase-toolbar span:nth-child(1) { background: #ff6b6b; }
.showcase-toolbar span:nth-child(2) { background: #feca57; }
.showcase-toolbar span:nth-child(3) { background: #1dd1a1; }
.showcase-toolbar em {
    margin-left: auto;
    color: var(--apple-text-muted);
    font-style: normal;
    font-size: .82rem;
}
.showcase-main {
    width: 600px;
    max-width: 100%;
    aspect-ratio: 5 / 3;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,.05);
}
.showcase-link {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}
.showcase-link::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 58%, rgba(0,0,0,.38) 100%);
    opacity: 0;
    transition: .25s ease;
}
.showcase-cta {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(29,29,31,.88);
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: .25s ease;
}
.showcase-link:hover::after,
.showcase-link:hover .showcase-cta {
    opacity: 1;
    transform: translateY(0);
}
.showcase-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    margin-top: 14px;
}
.showcase-cards div,
.value-card,
.feature-card,
.case-card,
.mini-value,
.delivery-panel,
.price-value-card,
.demo-check-card,
.contact-card {
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(255,255,255,.78);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(22px) saturate(180%);
}
.showcase-cards div {
    display: grid;
    grid-template-columns: 30px minmax(0,1fr);
    column-gap: 10px;
    row-gap: 4px;
    align-items: center;
    border-radius: 18px;
    padding: 14px;
}
.showcase-cards i {
    color: var(--apple-blue);
    font-size: 1.2rem;
    grid-row: 1;
}
.showcase-cards strong,
.showcase-cards span {
    display: block;
}
.showcase-cards strong {
    margin-top: 0;
    font-size: .92rem;
}
.showcase-cards span {
    grid-column: 1 / -1;
    margin-top: 2px;
    color: var(--apple-text-muted);
    font-size: .78rem;
    line-height: 1.45;
}
.section-head {
    max-width: 820px;
    margin: 0 auto 44px;
}
.section-head h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.section-head p {
    color: var(--apple-text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0;
}
.cases-desc {
    max-width: 980px;
    white-space: nowrap;
}
.eyebrow {
    display: inline-block;
    color: var(--apple-blue);
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.value-card,
.feature-card,
.case-card {
    border-radius: 24px;
    padding: 28px;
    transition: .25s ease;
}
.value-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 14px;
    align-content: start;
    align-items: center;
}
.value-card .icon-pool,
.feature-card .icon-pool {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 1.45rem;
    margin-bottom: 0;
}
.value-card > .icon-pool + h3 {
    display: block;
    width: auto;
    margin: 0;
    vertical-align: initial;
}
.value-card > .icon-pool {
    vertical-align: initial;
}
.value-card > p {
    grid-column: 1 / -1;
    margin-top: 0;
}
.value-card:hover,
.feature-card:hover,
.case-card:hover,
.mini-value:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(0,0,0,.08);
}
.value-card h3,
.feature-card h3,
.case-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.case-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--apple-blue);
}
.case-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,0));
    pointer-events: none;
}
.case-card h3 {
    min-height: 52px;
}
.case-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.case-head b {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #1d1d1f;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
}
.case-head em {
    display: flex;
    gap: 2px;
    margin-top: 5px;
    color: #f5b301;
    font-style: normal;
    font-size: .78rem;
}
.case-card h3,
.case-card p {
    position: relative;
    z-index: 1;
}
.case-blue { border-left-color: #0071e3; }
.case-green { border-left-color: #20a464; }
.case-orange { border-left-color: #f39c12; }
.case-purple { border-left-color: #9b59b6; }
.case-dark { border-left-color: #34495e; }
.case-red { border-left-color: #e74c3c; }
.case-blue .case-head b { background: #0071e3; }
.case-green .case-head b { background: #20a464; }
.case-orange .case-head b { background: #f39c12; }
.case-purple .case-head b { background: #9b59b6; }
.case-dark .case-head b { background: #34495e; }
.case-red .case-head b { background: #e74c3c; }
.value-card p,
.feature-card p,
.case-card p {
    color: var(--apple-text-muted);
    line-height: 1.75;
    margin: 0;
    font-size: .94rem;
}
.feature-num {
    display: block;
    color: var(--apple-text-muted);
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.delivery-panel {
    border-radius: 32px;
    padding: 44px;
}
.mini-value {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 8px;
    align-items: center;
    border-radius: 20px;
    padding: 22px;
    height: 100%;
}
.mini-value i {
    color: var(--apple-blue);
    font-size: 1.5rem;
}
.mini-value strong,
.mini-value span {
    display: block;
}
.mini-value strong {
    margin-top: 0;
    font-size: 1rem;
}
.mini-value span {
    grid-column: 1 / -1;
    margin-top: 0;
    color: var(--apple-text-muted);
    font-size: .9rem;
    line-height: 1.65;
}
.process-line {
    display: grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap: 14px;
}
.process-step {
    position: relative;
    padding: 24px 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(255,255,255,.78);
}
.process-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.process-step b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--apple-text);
    color: #fff;
    margin-bottom: 0;
    flex-shrink: 0;
}
.process-step strong,
.process-step span,
.case-card span {
    display: block;
}
.process-step strong {
    font-size: 1rem;
    margin-bottom: 0;
}
.process-step span {
    color: var(--apple-text-muted);
    font-size: .86rem;
    line-height: 1.6;
}
.case-card span {
    color: var(--apple-blue);
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.cta-panel {
    max-width: 780px;
}
.cta-line {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
}
.desktop-nowrap {
    white-space: nowrap;
}
.price-hero {
    max-width: 860px;
    padding-top: 38px;
}
.price-hero h1 {
    font-size: 2.45rem;
    line-height: 1.2;
}
.price-value-card {
    border-radius: 22px;
    padding: 22px 16px;
    height: 100%;
}
.price-value-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(0,113,227,.08);
    color: var(--apple-blue);
    font-size: 1.35rem;
    margin-bottom: 14px;
}
.price-value-card strong,
.price-value-card span {
    display: block;
}
.price-value-card strong {
    font-size: 1rem;
}
.price-value-card span {
    color: var(--apple-text-muted);
    font-size: .84rem;
    line-height: 1.55;
    margin-top: 6px;
}
.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    padding: 28px;
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(255,255,255,.8);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(22px) saturate(180%);
}
.plan-card.recommended {
    border: 2px solid var(--apple-blue);
    box-shadow: 0 20px 58px rgba(0,113,227,.13);
}
.plan-card.enterprise {
    border: 2px solid #2ecc71;
    box-shadow: 0 20px 58px rgba(46,204,113,.12);
}
.plan-tag {
    display: inline-block;
    color: var(--apple-blue);
    background: rgba(0,113,227,.1);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.plan-card.enterprise .plan-tag {
    color: #15954c;
    background: rgba(46,204,113,.12);
}
.plan-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.plan-desc {
    min-height: 56px;
    color: var(--apple-text-muted);
    font-size: .9rem;
    line-height: 1.55;
    margin-bottom: 10px;
}
.plan-price {
    color: var(--apple-blue);
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1;
    margin: 10px 0 16px;
}
.plan-price span {
    color: var(--apple-text-muted);
    font-size: 1rem;
    font-weight: 400;
    margin-left: 3px;
}
.plan-gain {
    background: rgba(0,113,227,.06);
    border-radius: 16px;
    padding: 12px 14px;
    color: #315678;
    font-size: .86rem;
    line-height: 1.65;
    min-height: 92px;
    margin-bottom: 18px;
}
.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.plan-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--apple-text-muted);
    font-size: .88rem;
    line-height: 1.55;
    margin-bottom: 10px;
}
.plan-card li i {
    color: #20965a;
    margin-top: 2px;
}
.plan-card .btn {
    margin-top: auto;
}
.compare-money {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}
.compare-money div {
    border-radius: 22px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(255,255,255,.78);
    padding: 24px;
}
.compare-money h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.compare-money p {
    color: var(--apple-text-muted);
    font-size: .92rem;
    line-height: 1.75;
    margin: 0;
}
.price-table-panel {
    padding: 28px;
    overflow: hidden;
}
.price-table-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 18px;
}
.price-table-head h2 {
    font-size: 1.45rem;
    font-weight: 760;
    margin: 6px 0 0;
}
.price-table-head p {
    max-width: 520px;
    margin: 0;
    color: var(--apple-text-muted);
    font-size: .9rem;
    line-height: 1.7;
}
.swipe-hint {
    color: #0071e3;
    font-weight: 600;
    animation: swipe-hint 1.5s ease-in-out infinite;
}
@keyframes swipe-hint {
    0%,100% { opacity: 1; letter-spacing: 0.02em; }
    50% { opacity: 0.55; letter-spacing: 0.08em; }
}
.price-table-scroll {
    overflow-x: auto;
    padding-bottom: 6px;
}
.price-table {
    width: 100%;
    min-width: 1040px;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--apple-text);
    font-size: .88rem;
}
.price-table th,
.price-table td {
    vertical-align: middle;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(29,29,31,.08);
    background: rgba(255,255,255,.54);
}
.price-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    color: #fff !important;
    background: #1d1d1f !important;
    font-size: .94rem;
    font-weight: 700;
    white-space: nowrap;
}
.price-table thead th:first-child {
    width: 190px;
    min-width: 190px;
}
.price-table thead th.is-recommend,
.price-table thead th.is-enterprise {
    color: #fff !important;
    background: #1d1d1f !important;
}
.price-table thead th:first-child {
    border-top-left-radius: 18px;
}
.price-table thead th:last-child {
    border-top-right-radius: 18px;
}
.price-table tbody tr:hover td,
.price-table tbody tr:hover th {
    background: rgba(255,255,255,.82);
}
.price-table td:first-child {
    width: 190px;
    min-width: 190px;
    font-weight: 700;
    color: #3b3b40;
    background: rgba(255,255,255,.76);
    white-space: nowrap;
}
.price-table .group-row th {
    padding: 12px 16px;
    color: #23425f;
    background: linear-gradient(90deg, rgba(0,113,227,.14), rgba(46,204,113,.09));
    border-bottom: 0;
    font-size: .94rem;
}
.price-table .group-row i {
    color: var(--apple-blue);
    margin-right: 8px;
}
.price-table tbody .is-recommend {
    background: rgba(0,113,227,.035);
}
.price-table tbody .is-enterprise {
    background: rgba(46,204,113,.04);
}
.table-badge {
    display: inline-flex;
    margin-left: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    color: #0071e3;
    background: rgba(0,113,227,.12);
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap;
}
.table-badge.green {
    color: #15954c;
    background: rgba(46,204,113,.14);
}
.table-note {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 12px;
    color: #755118;
    background: rgba(255,193,7,.14);
    font-weight: 600;
}
.table-ok,
.table-no,
.table-hot {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
}
.table-ok { color: #16884a; }
.table-no { color: #9a9aa1; }
.table-hot { color: #d24545; }
.demo-check-card {
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    padding: 26px;
}
.demo-check-card h2 {
    font-size: 1.28rem;
    font-weight: 700;
    margin: 0 0 6px;
}
.demo-check-card p {
    color: var(--apple-text-muted);
    font-size: .9rem;
    line-height: 1.6;
    margin: 0;
}
.demo-img-link {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.06);
    margin: 16px 0;
}
.demo-media {
    height: 296px;
    flex-shrink: 0;
}
.demo-img-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: .25s ease;
}
.demo-img-link:hover img {
    transform: scale(1.025);
}
.demo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.demo-list li {
    position: relative;
    color: var(--apple-text-muted);
    font-size: .9rem;
    line-height: 1.65;
    padding-left: 22px;
    margin-bottom: 8px;
}
.demo-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #20965a;
    font-weight: 700;
}
.qr-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px 0;
    border-radius: 18px;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.78);
}
.qr-wrap img {
    width: 90%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 14px;
}
.demo-check-card > .btn {
    margin-top: auto;
}
.contact-card {
    border-radius: 30px;
    padding: 44px 36px;
}
.contact-card h2 {
    font-size: 1.45rem;
    font-weight: 700;
    margin: 12px 0 10px;
}
.contact-card p {
    color: var(--apple-text-muted);
    font-size: .95rem;
    line-height: 1.7;
    min-height: 54px;
}
.contact-qr {
    width: 168px;
    height: 168px;
    object-fit: cover;
    border-radius: 16px;
    margin: 12px auto 18px;
    display: block;
    border: 1px solid rgba(0,0,0,.06);
}
.wechat-mark {
    width: 168px;
    height: 168px;
    margin: 12px auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1aad19;
    font-size: 5.2rem;
}
.contact-label {
    display: block;
    color: var(--apple-text-muted);
    font-size: .86rem;
    margin-bottom: 6px;
}
.contact-phone {
    display: block;
    font-size: 1.45rem;
}
.notice-item {
    height: 100%;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--apple-text-muted);
    background: rgba(0,0,0,.025);
    border-radius: 16px;
    padding: 14px 16px;
    line-height: 1.65;
}
.notice-item i {
    color: #20965a;
    margin-top: 2px;
}

@media (max-width: 991.98px) {
    .navbar-brand { font-size: 1.05rem; }
    .hero-split {
        padding: 120px 0 60px;
    }
    .hero-split h1 {
        font-size: 2.35rem;
    }
    .hero-title {
        font-size: 2.45rem;
        max-width: 100%;
        white-space: normal;
    }
    .process-line {
        grid-template-columns: 1fr;
    }
    .desktop-nowrap {
        white-space: normal;
    }
    .showcase-cards {
        grid-template-columns: 1fr;
    }
    .delivery-panel {
        padding: 28px;
    }
    .price-hero h1 {
        font-size: 2rem;
    }
    .compare-money {
        grid-template-columns: 1fr;
    }
    .cta-line {
        white-space: normal;
    }
}

@media (max-width: 575.98px) {
    body {
        letter-spacing: 0;
    }
    .hero-split {
        padding: 105px 0 42px;
    }
    .hero-split h1 {
        font-size: 2rem;
        line-height: 1.18;
    }
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    .lead {
        font-size: 1rem;
        line-height: 1.75;
    }
    .hero-proof-grid {
        grid-template-columns: 1fr;
    }
    .btn-apple-primary,
    .btn-apple-outline {
        width: 100%;
        padding: 12px 20px;
    }
    .section-head h2 {
        font-size: 1.7rem;
    }
    .section-head p {
        font-size: .96rem;
    }
    .cases-desc {
        white-space: normal;
    }
    .price-hero {
        padding-top: 24px;
    }
    .price-hero h1 {
        font-size: 1.75rem;
    }
    .plan-desc {
        min-height: auto;
    }
    .value-card,
    .feature-card,
    .case-card,
    .delivery-panel,
    .glass-panel.p-5 {
        border-radius: 22px;
        padding: 22px !important;
    }
    .value-card > .icon-pool + h3 {
        width: calc(100% - 66px);
        margin-left: 12px;
    }
    .compare-row {
        grid-template-columns: 1fr;
        min-width: 0;
    }
    .compare-row.hdr {
        display: none;
    }
    .compare-row > div {
        padding: 10px 16px;
        white-space: normal;
    }
    #float-btn {
        width: 52px;
        height: 52px;
        right: 20px;
        bottom: 22px;
    }
}
