/* 合作伙伴门户 · 公开/后台共用壳（导航宽度对齐官网） */
/* cache: 20260810pp6 — public_layout ?v= 未白名单，改后请 Ctrl+F5 */

html {
    scrollbar-gutter: stable;
    overflow-y: scroll; /* fallback：无 gutter 支持时仍预留滚动条槽 */
}

body.partner-public-body {
    margin: 0;
    background: var(--bg, #F7F9FC);
    color: var(--ink, #0F1B2D);
    font-family: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    scrollbar-gutter: stable;
}

/* ── 顶栏：与官网 .nav 同级水平边距 ── */
.ppa-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;
    background: var(--bg, #F7F9FC);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 clamp(60px, 12.5vw, 240px);
    border-bottom: 1px solid var(--line, #E6ECF3);
    box-sizing: border-box;
    flex-shrink: 0;
}
.ppa-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
    min-width: 0;
}
.ppa-nav-logo-home {
    text-decoration: none;
    min-width: 0;
    overflow: hidden;
    color: inherit;
}
.ppa-nav-logo-pair {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.ppa-nav-logo-pair a {
    display: flex;
    line-height: 0;
}
.ppa-nav-logo-pair a:hover img,
.ppa-footer-logos a:hover img {
    opacity: .88;
}
.ppa-nav-logo-pair img {
    width: clamp(40px, 2.8vw, 52px);
    height: clamp(40px, 2.8vw, 52px);
    border-radius: 8px;
    object-fit: contain;
}
.ppa-nav-logo-text {
    font-size: clamp(16px, 1.25vw, 22px);
    font-weight: 600;
    color: var(--ink, #0F1B2D);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ppa-nav-logo-sub {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-3, #8A98AE);
    margin-top: 1px;
}
.ppa-nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(20px, 1.875vw, 36px);
    justify-self: center;
}
.ppa-nav-menu a {
    font-size: clamp(15px, 0.938vw, 18px);
    color: var(--ink-2, #4A5A72);
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s;
}
.ppa-nav-menu a:hover,
.ppa-nav-menu a.active {
    color: var(--brand, #1A5490);
    font-weight: 600;
}
.ppa-nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    justify-self: end;
    min-height: 42px;
}
.ppa-btn-cta {
    background: var(--brand, #1A5490);
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    height: 42px;
    padding: 0 22px;
    border-radius: var(--radius-sm, 8px);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.ppa-btn-cta:hover { background: var(--brand-light, #2E7BC4); color: #fff !important; }
.ppa-btn-ghost {
    height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid var(--line, #E6ECF3);
    background: #fff;
    color: var(--ink-2, #4A5A72);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.ppa-btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.ppa-user-chip {
    font-size: 13px;
    color: var(--ink-2, #4A5A72);
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ppa-nav-menu-auth {
    display: none;
}
.ppa-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.ppa-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink, #0F1B2D);
    border-radius: 2px;
}
.ppa-nav-overlay {
    display: none;
    position: fixed;
    inset: 80px 0 0 0;
    background: rgba(15, 27, 45, .45);
    z-index: 998;
}
.ppa-nav-overlay.is-open { display: block; }
body.ppa-nav-lock { overflow: hidden; }

/* ── 登录居中弹层 ── */
.ppa-login-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.ppa-login-modal.is-open {
    display: flex;
}
.ppa-login-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 27, 45, .45);
}
.ppa-login-modal-card {
    position: relative;
    z-index: 1;
    width: min(400px, 100%);
    background: var(--surface, #fff);
    border-radius: var(--radius, 12px);
    border: 1px solid var(--line, #E6ECF3);
    box-shadow: 0 20px 60px rgba(15, 27, 45, .18);
    padding: 28px 28px 24px;
}
.ppa-login-modal-card h2 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
}
.ppa-login-modal-sub {
    margin: 0 0 18px;
    font-size: 13px;
    color: var(--ink-3);
    text-align: center;
}
.ppa-login-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: none;
    background: none;
    font-size: 28px;
    line-height: 1;
    color: var(--ink-3);
    cursor: pointer;
}
.ppa-login-modal .form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-2);
}
.ppa-login-modal .ppa-btn-cta { width: 100%; }

/* ── 主内容：撑满短页，footer 贴底 ── */
.ppa-shell {
    width: 100%;
    box-sizing: border-box;
    padding: 16px clamp(60px, 12.5vw, 240px) 24px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}
.partner-admin-shell .partner-main {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* 首页一屏紧凑 */
.ppa-home {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.ppa-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    align-items: stretch;
    min-height: 0;
}
.ppa-home-grid > .ppa-card { min-height: 0; }
.ppa-home-rules .ppa-rules-body {
    max-height: none;
    overflow: visible;
    font-size: 12px;
    line-height: 1.5;
}
.ppa-rules-highlight {
    background: #F3F7FC;
    border: 1px solid #D5E4F2;
    border-radius: 8px;
    padding: 8px 10px 6px;
    margin: 0 0 10px;
}
.ppa-rules-highlight p {
    margin: 0 0 6px;
    font-size: 13px;
    color: var(--ink, #0F1B2D);
}
.ppa-rules-highlight ul {
    margin: 0 0 0 1.1em;
    padding: 0;
}
.ppa-rules-highlight a {
    font-weight: 700;
    color: var(--ink-link, #1A5490);
    text-decoration: none;
}
.ppa-rules-highlight a:hover { text-decoration: underline; }
.ppa-home-news .ppa-news-list {
    max-height: 22vh;
    overflow: auto;
}
.ppa-contact-qrs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 100%;
}
.ppa-contact-qrs > * {
    flex: 1 1 0;
    min-width: 0;
    max-width: 160px;
}
.ppa-contact-line {
    margin: 0 0 4px;
    font-size: 13px;
    color: var(--ink-2, #334155);
}
.ppa-contact-qq {
    color: var(--ink-link, #1A5490);
    font-weight: 600;
    text-decoration: none;
}
.ppa-contact-qq:hover { text-decoration: underline; }
.ppa-contact-hint {
    margin-left: 6px;
    font-size: 12px;
    color: var(--ink-3, #64748B);
}
.ppa-contact-save {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-link, #1A5490);
    background: #fff;
    border: 1px solid var(--line, #D5E4F2);
    border-radius: 6px;
    cursor: pointer;
}
.ppa-contact-save:hover { background: #F0F7FF; }

/* Hero / 卡片 */
.ppa-hero-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 8px;
}
.ppa-hero-head h1 {
    margin: 0;
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 700;
    color: var(--ink-strong, #0B2D5C);
}
.ppa-carousel {
    border-radius: var(--radius, 12px);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(26, 84, 144, .08);
    background: #0f1b2d;
}
.ppa-carousel .carousel-item > a {
    display: block;
}
.ppa-carousel-img {
    width: 100%;
    height: clamp(260px, 36vh, 400px);
    object-fit: cover;
    object-position: left center;
    display: block;
}
.ppa-card {
    background: var(--surface, #fff);
    border: 1px solid var(--line, #E6ECF3);
    border-radius: var(--radius, 12px);
    box-shadow: 0 2px 10px rgba(15, 27, 45, .04);
}
.ppa-card .card-body { padding: 14px 16px; }
.ppa-card h2 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink, #0F1B2D);
    margin: 0 0 8px;
}
.ppa-rules-body {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-2, #4A5A72);
}
.ppa-rules-body p:last-child { margin-bottom: 0; }
.ppa-rules-body ul { margin: 0 0 0 1.1em; padding: 0; }
.ppa-qr {
    width: min(100%, 160px);
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 4px;
    display: block;
    margin: 0 auto;
}
.ppa-news-list { list-style: none; margin: 0; padding: 0; }
.ppa-news-list .ppa-news-item {
    padding: 7px 0;
    border-bottom: 1px solid var(--line);
}
.ppa-news-list .ppa-news-item:last-child { border-bottom: 0; }
.ppa-news-list a {
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
}
.ppa-news-list a:hover { color: var(--brand); }
.ppa-link-more {
    font-size: 13px;
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}
.ppa-link-more:hover { text-decoration: underline; }

.ppa-official-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}
.ppa-official-toolbar h1 {
    margin: 0;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 700;
    color: var(--ink-strong);
}
.ppa-official-card-thumb {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #0f1b2d;
    aspect-ratio: 16 / 9;
}
.ppa-official-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ppa-article-cover {
    border-radius: 10px;
    overflow: hidden;
    background: #0f1b2d;
}
.ppa-article-cover img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    display: block;
}
.ppa-official-card {
    display: block;
    text-decoration: none;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 20px;
    height: 100%;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s;
}
.ppa-official-card:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--brand-rgb, 26, 84, 144), .35);
    box-shadow: 0 10px 28px rgba(26, 84, 144, .1);
}
.ppa-official-card h2 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
}
.ppa-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--brand-tint, #E6F1FB);
    color: var(--brand, #1A5490);
}
.ppa-article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(20px, 3vw, 36px);
}
.ppa-article h1 {
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 700;
    margin: 8px 0 12px;
    color: var(--ink-strong);
}
.ppa-article-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-2);
}
.ppa-article-body img { max-width: 100%; height: auto; border-radius: 8px; }

.ppa-guide-page {
    width: 100%;
    margin: 0 0 24px;
}
.ppa-guide-page > h1 {
    margin: 0 0 8px;
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 700;
    color: var(--ink-strong, #0B2D5C);
}
.ppa-guide-lead {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-2, #334155);
}
.ppa-guide-lead-mobile {
    display: none;
}
.ppa-guide-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 20px 28px;
    align-items: start;
}
.ppa-guide-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0 0 12px;
    border-bottom: 1px solid var(--line, #D5E4F2);
}
.ppa-guide-tabs a {
    padding: 10px 16px;
    text-decoration: none;
    color: var(--ink-3, #64748B);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-weight: 600;
    font-size: 15px;
}
.ppa-guide-tabs a:hover { color: var(--ink-link, #1A5490); }
.ppa-guide-tabs a.active {
    color: var(--ink-strong, #0B2D5C);
    border-bottom-color: var(--brand, #1A5490);
}
.ppa-guide-article {
    margin-top: 0;
    padding: 20px 22px;
}
.ppa-guide-col-common {
    background: #F3F7FC;
    border: 1px solid #D5E4F2;
    border-radius: var(--radius, 10px);
    padding: 20px 22px;
}
.ppa-guide-col-common > h2 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink-strong, #0B2D5C);
}
.ppa-guide-col-common .ppa-article-body {
    font-size: 15px;
    line-height: 1.7;
}
.ppa-guide-foot {
    margin: 16px 0 0;
    font-size: 13px;
    color: var(--ink-3, #64748B);
}
.ppa-guide-foot a {
    color: var(--ink-link, #1A5490);
    text-decoration: none;
    font-weight: 600;
}
.ppa-guide-foot a:hover { text-decoration: underline; }
@media (max-width: 900px) {
    .ppa-guide-split { grid-template-columns: 1fr; gap: 20px; }
    .ppa-guide-tabs a { flex: 1; text-align: center; padding: 10px 8px; font-size: 14px; }
    .ppa-guide-lead-mobile { display: inline; }
}

.ppa-apply {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line, #D5E4F2);
}
.ppa-apply-hint {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-3, #64748B);
}
.ppa-apply-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.ppa-apply-actions .ppa-btn-cta,
.ppa-apply-actions .ppa-btn-ghost {
    height: 36px;
    padding: 0 14px;
    font-size: 14px;
}
.ppa-apply-copied {
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--brand, #1A5490);
}
.ppa-apply-contact {
    display: none;
    margin: 0 0 12px;
    padding: 12px 14px;
    border: 1px solid var(--line, #D5E4F2);
    border-radius: 8px;
    background: #F8FBFE;
}
.ppa-apply-contact.is-open { display: block; }
.ppa-apply-tpl {
    margin: 0;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.65;
    white-space: pre-wrap;
    word-break: break-word;
    background: #F8FAFC;
    border: 1px solid #E6ECF3;
    border-radius: 8px;
    color: var(--ink-2, #334155);
    font-family: inherit;
}

.ppa-tip {
    background: var(--brand-tint-2, #F0F7FF);
    border: 1px solid rgba(var(--brand-rgb, 26, 84, 144), .18);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.55;
    margin-bottom: 16px;
}
.ppa-tip strong { color: var(--brand); }

/* ── Footer：必须在 </main> 外侧，背景左右全扩（对齐官网 .footer） ── */
.ppa-footer {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    background: var(--footer-bg, #0B2D5C);
    color: #fff;
    padding: 42px clamp(60px, 12.5vw, 240px) 28px;
    margin-top: auto;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ppa-footer-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ppa-footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(30px, 3.125vw, 60px);
    width: 100%;
    align-items: flex-start;
}
.ppa-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 220px;
    flex: 1.2 1 240px;
}
.ppa-footer-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 40px;
}
.ppa-footer-logos a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 600;
    height: 40px;
}
.ppa-footer-logos img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}
.ppa-footer-brand-name {
    font-size: clamp(17px, 1.094vw, 21px);
    font-weight: 600;
    color: #fff;
}
.ppa-footer-brand-desc {
    font-size: clamp(12px, .729vw, 14px);
    color: var(--footer-muted, #8FA6C2);
    line-height: 1.5;
}
.ppa-footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 110px;
    flex: 1 1 120px;
}
.ppa-footer-col-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; color: #fff; }
.ppa-footer-col a {
    font-size: 13px;
    color: var(--footer-muted, #8FA6C2);
    text-decoration: none;
}
.ppa-footer-col a:hover { color: #fff; }
.ppa-footer-muted {
    font-size: 13px;
    color: var(--footer-muted, #8FA6C2);
}
.ppa-footer-wechat-row {
    background: var(--footer-divider, #1A3A6C);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    max-width: 220px;
}
.ppa-footer-wechat-row:hover {
    background: #1f4578;
}
.ppa-wechat-icon {
    width: 20px;
    height: 20px;
    background: #07C160;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.ppa-footer-follow-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.ppa-footer-follow-label {
    font-size: 13px;
    color: var(--footer-muted, #8FA6C2);
}
.ppa-footer-follow-sub {
    font-size: 11px;
    color: #5F7390;
}
.ppa-mp-popup {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.ppa-mp-popup[hidden] { display: none !important; }
.ppa-mp-popup-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 20px;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .2);
}
.ppa-mp-popup-close {
    position: absolute;
    right: 12px;
    top: 12px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}
.ppa-mp-popup-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.ppa-mp-popup-name {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}
.ppa-mp-popup-qr {
    width: 160px;
    height: 160px;
    margin: 0 auto 14px;
    background: #f5f7fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 13px;
    overflow: hidden;
}
.ppa-mp-popup-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}
.ppa-mp-popup-hint {
    margin: 0 0 14px;
    font-size: 11px;
    color: #999;
}
.ppa-mp-popup-dl {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: #f0f2f5;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}
.ppa-footer-divider {
    width: 100%;
    height: 1px;
    background: var(--footer-divider, #1A3A6C);
}
.ppa-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-top: 4px;
    font-size: 11px;
    color: var(--footer-legal, #C8D3E3);
}
.ppa-footer-bottom a {
    color: var(--footer-legal, #C8D3E3);
    text-decoration: none;
}
.ppa-footer-bottom a:hover { color: #fff; }

@media (max-width: 1100px) {
    /* 等宽堆叠，合作规则不再独占整行 */
    .ppa-home-grid {
        grid-template-columns: 1fr;
    }
    .ppa-home-news .ppa-news-list { max-height: 22vh; }
}

@media (max-width: 900px) {
    .ppa-nav {
        height: 64px;
        grid-template-columns: 1fr auto;
        padding: 0 20px;
    }
    .ppa-shell,
    .ppa-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    .ppa-home-grid { grid-template-columns: 1fr; }
    .ppa-home-rules { grid-column: auto; }
    .ppa-carousel-img { height: clamp(200px, 28vh, 280px); }
    .ppa-home-rules .ppa-rules-body,
    .ppa-home-news .ppa-news-list { max-height: none; }
    .ppa-nav-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        justify-self: stretch;
        background: var(--bg);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px 20px;
        gap: 0;
        z-index: 999;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 12px 24px rgba(15, 27, 45, .08);
        box-sizing: border-box;
    }
    .ppa-nav-menu.is-open { display: flex; }
    .ppa-nav-menu a {
        padding: 12px 8px;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }
    .ppa-hamburger { display: flex; }
    .ppa-nav-right .ppa-user-chip,
    .ppa-nav-right .ppa-nav-account-btn { display: none; }
    .ppa-nav-right > .ppa-btn-cta {
        height: 34px;
        padding: 0 14px;
        font-size: 14px;
    }
    .ppa-nav-menu-auth {
        display: flex;
        align-items: center;
        color: var(--ink-2, #4A5A72);
    }
    .ppa-nav-menu > .ppa-nav-menu-auth {
        border-top: 1px solid var(--line);
        margin-top: 8px;
    }
    .ppa-nav-menu > .ppa-nav-menu-auth + .ppa-nav-menu-auth {
        border-top: none;
        margin-top: 0;
    }
    .ppa-nav-overlay { top: 64px; }
    .ppa-footer-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 24px;
    }
    .ppa-footer-brand { grid-column: 1 / -1; flex: none; min-width: 0; }
    .ppa-footer-col { flex: none; }
    .ppa-footer-bottom { flex-direction: column; align-items: center; text-align: center; }
    .ppa-nav-logo-sub { display: none; }
}

.ppa-price-page .ppa-guide-tabs {
    margin-bottom: 16px;
}
.ppa-price-page .ppa-guide-lead {
    margin-bottom: 20px;
}
.ppa-price-brand {
    margin: 0 0 32px;
}
.ppa-price-series {
    background: var(--surface, #fff);
    border: 1px solid var(--line, #E6ECF3);
    border-radius: var(--radius, 12px);
    padding: 16px 18px 8px;
    margin: 0 0 16px;
}
.ppa-price-series > h3 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink, #0F1B2D);
}
.ppa-price-series > h4 {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2, #4A5A72);
}
.ppa-price-scroll {
    overflow-x: auto;
    margin: 0 0 16px;
    -webkit-overflow-scrolling: touch;
}
.ppa-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    min-width: 320px;
}
.ppa-price-table th,
.ppa-price-table td {
    border: 1px solid var(--line, #E6ECF3);
    padding: 8px 10px;
    text-align: center;
    white-space: nowrap;
}
.ppa-price-table thead th {
    background: var(--bg, #F7F9FC);
    font-weight: 600;
    color: var(--ink, #0F1B2D);
}
.ppa-price-table tbody th {
    font-weight: 500;
    text-align: left;
    background: var(--bg, #F7F9FC);
    color: var(--ink-2, #4A5A72);
}
.ppa-price-table thead th .ppa-price-spec {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--ink-2, #4A5A72);
    margin-top: 2px;
}
.ppa-price-notes {
    margin-top: 8px;
    font-size: 14px;
    color: var(--ink, #0F1B2D);
    line-height: 1.65;
}
.ppa-price-notes h3 {
    font-size: 16px;
    font-weight: 650;
    margin: 18px 0 8px;
}
.ppa-price-notes ol {
    margin: 0 0 4px;
    padding-left: 1.25rem;
}
.ppa-price-notes li {
    margin: 0 0 6px;
}
