/* Design tokens */
:root {
    --color-primary: #1296db;
    --color-primary-strong: #0b78b2;
    --color-primary-soft: #e8f5fc;
    --color-accent: #ff9b2f;
    --color-accent-soft: #fff1e2;
    --color-text: #1f2937;
    --color-text-muted: #5b6472;
    --color-text-soft: #8a94a6;
    --color-surface: #ffffff;
    --color-surface-alt: #f5f8fc;
    --color-border: #dbe4ef;
    --color-border-strong: #c6d5e5;
    --color-success: #18a957;
    --color-danger: #d83d3d;
    --shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 20px 48px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 28px 70px rgba(18, 150, 219, 0.14);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1120px;
    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 20px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 40px;
    --space-8: 48px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(18, 150, 219, 0.12), transparent 36%),
        linear-gradient(180deg, #f7fbff 0%, #eef4fa 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0));
}

body > * {
    position: relative;
    z-index: 1;
}

ul {
    list-style: none;
}

img {
    border: 0;
    max-width: 100%;
    display: block;
}

strong {
    color: #111827;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a:hover {
    color: var(--color-primary-strong);
}

.layout_center,
.logo_center,
.banner_center,
.banner_contents,
.textlist,
.link,
.news,
.xq_list,
.news-list-page,
.FAQ,
.stub-page {
    width: min(var(--container), calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

/* Disclaimer bar */
.layout {
    width: 100%;
    padding: 14px 0;
    background: transparent;
}

.layout_center {
    min-height: 52px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 155, 47, 0.25);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 13px;
    line-height: 1.6;
    backdrop-filter: blur(8px);
}

.layout_center img,
.layout_center > span:first-child {
    flex-shrink: 0;
}

.layout_center > span:first-child {
    font-size: 18px;
}

/* Header */
.logo {
    width: 100%;
    padding: 10px 0 0;
    background: transparent;
}

.logo_center {
    min-height: 86px;
    padding: 14px 22px;
    border: 1px solid rgba(18, 150, 219, 0.12);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(10, 134, 196, 0.96), rgba(18, 150, 219, 0.84));
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo_center > a {
    flex-shrink: 0;
}

.logo_center img {
    height: 52px;
    width: auto;
}

.logo_nav {
    margin-left: auto;
}

.logo_nav #nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.logo_nav #nav li {
    width: auto;
    height: auto;
}

.logo_nav #nav li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.06);
}

.logo_nav #nav li a:hover,
.logo_nav #nav li a.active {
    color: var(--color-primary-strong);
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 12px 28px rgba(9, 108, 160, 0.18);
    transform: translateY(-1px);
}

/* Home hero — removed: banner, banner_xq, banner_center, banner_contents,
   banner_left, banner_right, hero-eyebrow, hero-intro, hero-meta,
   hero-meta-item, hero-path, hero-path-item, feature-list,
   download-btns, down_button1, down_button2, down_img, down_text, downlink */

/* Shared content cards */
.home-section,
.trust-strip,
.scenario-grid,
.cta-panel,
.highlight-grid,
.contact-panel,
.purchase-grid,
.quick-links {
    width: min(var(--container), calc(100% - 32px));
    margin: 26px auto 0;
}

.highlight-grid,
.scenario-grid,
.purchase-grid,
.quick-links {
    display: grid;
    gap: 20px;
}

.highlight-card,
.scenario-card,
.purchase-card,
.quick-link-card,
.contact-card,
.contact-hero,
.cta-panel,
.trust-strip {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(18, 150, 219, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
}

.home-section,
.trust-strip,
.cta-panel,
.contact-panel {
    padding: 28px 32px;
}

.highlight-card,
.scenario-card,
.purchase-card,
.quick-link-card,
.contact-card {
    padding: 24px;
}

.highlight-card strong,
.scenario-card strong,
.purchase-card strong,
.quick-link-card strong,
.contact-card strong {
    display: block;
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 20px;
    line-height: 1.35;
}

.highlight-card p,
.scenario-card p,
.purchase-card p,
.quick-link-card p,
.contact-card p,
.contact-hero p,
.trust-strip p,
.cta-panel p {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.highlight-card em,
.purchase-card em,
.contact-card em {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--color-accent-soft);
    color: #b86300;
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
}

.scenario-grid,
.purchase-grid,
.quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scenario-card ul,
.purchase-card ul,
.contact-card ul {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding-left: 18px;
    list-style: disc;
    color: var(--color-text-muted);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, rgba(18, 150, 219, 0.16), rgba(255, 155, 47, 0.12)), rgba(255, 255, 255, 0.92);
}

.cta-panel h3,
.contact-hero h3 {
    color: #0f172a;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.25;
    font-weight: 800;
}

.cta-actions,
.quick-link-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.cta-actions a,
.quick-link-actions a,
.contact-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--color-primary), #1ab1f3);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 16px 30px rgba(18, 150, 219, 0.2);
}

.cta-actions a:hover,
.quick-link-actions a:hover,
.contact-actions a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-actions a.secondary,
.quick-link-actions a.secondary,
.contact-actions a.secondary {
    background: #ffffff;
    color: var(--color-primary-strong);
    border-color: rgba(18, 150, 219, 0.18);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.cta-actions a.secondary:hover,
.quick-link-actions a.secondary:hover,
.contact-actions a.secondary:hover {
    color: var(--color-primary-strong);
}

.contact-hero {
    padding: 26px 28px;
    background: linear-gradient(135deg, rgba(18, 150, 219, 0.14), rgba(255, 255, 255, 0.92));
}

.contact-hero ul {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding-left: 18px;
    list-style: disc;
    color: var(--color-text-muted);
}

.contact-card a,
.quick-link-card a,
.purchase-card a {
    color: var(--color-primary-strong);
    font-weight: 700;
}

.textlist_left,
.textlist_right,
.news,
.xq_list,
.news-list-page,
.FAQ,
.stub-page {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(18, 150, 219, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
}

.textlist_header .title,
.xq_list h5,
.news-list-page h5,
.FAQ h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    line-height: 1.3;
    color: #0f172a;
    font-weight: 800;
}

.article-list,
.news-list-page ul {
    display: grid;
    gap: 12px;
}

.article-list li,
.news-list-page ul li {
    position: relative;
    min-height: 60px;
    padding: 14px 18px 14px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
    line-height: 1.55;
    font-size: 15px;
    overflow: hidden;
}

.article-list li::before,
.news-list-page ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 4px;
    height: calc(100% - 32px);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
}

.article-list li .date,
.news-list-page ul li .date {
    display: inline-block;
    margin-right: 8px;
    color: var(--color-text-soft);
    font-size: 13px;
}

.article-list li a,
.news-list-page ul li a {
    color: var(--color-text);
}

.article-list li:hover,
.news-list-page ul li:hover {
    border-color: rgba(18, 150, 219, 0.3);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

/* Article pages */
.news,
.xq_list,
.news-list-page,
.FAQ,
.stub-page {
    margin-top: 34px;
    padding: 28px 32px 36px;
}

.news {
    font-family: inherit;
}

.news dt {
    padding-bottom: 22px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--color-border);
    color: #0f172a;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.2;
    text-align: left;
    font-weight: 800;
}

.news dd {
    padding: 0;
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.9;
}

.news dd > p,
.news dd > table,
.news dd > img,
.news dd > ul,
.news dd > ol {
    margin-bottom: 18px;
}

.news dd > p:last-child,
.news dd > table:last-child,
.news dd > img:last-child {
    margin-bottom: 0;
}

.news dd p[style*="margin-top"],
.news dd img[style*="margin-top"] {
    margin-top: 34px !important;
}

.news dd p[id] {
    margin-bottom: 10px;
    padding: 16px 20px;
    border: 1px solid rgba(18, 150, 219, 0.14);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(18, 150, 219, 0.08), rgba(18, 150, 219, 0.03));
    color: #0f172a;
}

.news dd p[id] strong {
    color: inherit;
    font-size: 18px;
}

.news dd p[id] + p {
    margin-bottom: 22px;
    padding: 0 6px;
}

.news dd span {
    color: var(--color-danger);
    font-weight: 700;
}

.news dd a,
.FAQ dd a {
    color: var(--color-primary-strong);
    font-weight: 600;
}

.news dd a:hover,
.FAQ dd a:hover {
    color: var(--color-accent);
}

.news dd img {
    width: auto;
    max-width: 100%;
    margin: 20px auto;
    border: 1px solid rgba(18, 150, 219, 0.12);
    border-radius: 20px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

/* Comparison table */
.compare-table {
    width: 100%;
    max-width: none;
    margin: 26px 0 0;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid rgba(18, 150, 219, 0.18);
    border-radius: 22px;
    background: #ffffff;
    font-family: inherit;
    font-size: 14px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.compare-table th,
.compare-table td {
    padding: 14px 12px;
    border-right: 1px solid rgba(18, 150, 219, 0.1);
    border-bottom: 1px solid rgba(18, 150, 219, 0.1);
    text-align: center;
    vertical-align: middle;
}

.compare-table th:last-child,
.compare-table td:last-child {
    border-right: 0;
}

.compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.compare-table th {
    background: linear-gradient(180deg, #eaf7ff 0%, #d8f0ff 100%);
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
}

.compare-table th:nth-child(1) {
    width: 35%;
}

.compare-table th:nth-child(2),
.compare-table th:nth-child(3) {
    width: 22%;
}

.compare-table th:nth-child(4) {
    width: 21%;
}

.compare-table td {
    background: #ffffff;
    color: var(--color-text-muted);
}

.compare-table tbody tr:nth-child(even) td {
    background: #f8fbfe;
}

.compare-table .check {
    color: var(--color-success);
    font-weight: 800;
    font-size: 16px;
}

.compare-table .note {
    font-size: 13px;
    color: var(--color-text-muted);
    text-align: left;
}

.compare-table .compare-center-note {
    text-align: center;
    font-size: 12px;
}

/* List page */
.news-list-page h5,
.FAQ h5 {
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--color-border);
}

.news-list-page ul li {
    min-height: 70px;
    padding: 14px 18px 14px 24px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.news-list-page ul li a {
    flex: 1;
    padding-left: 0;
    font-size: 15px;
    font-weight: 600;
    position: relative;
}

.news-list-page ul li a::before {
    left: -12px;
    top: 8px;
    height: calc(100% - 16px);
}

.news-list-page p {
    display: none;
}

/* Stub pages */
.stub-page {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    background:
        radial-gradient(circle at top, rgba(18, 150, 219, 0.12), transparent 48%),
        rgba(255, 255, 255, 0.92);
}

.stub-page h1 {
    color: #0f172a;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.2;
    font-weight: 800;
}

.stub-page p {
    max-width: 640px;
    color: var(--color-text-muted);
    font-size: 16px;
}

.stub-page a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    min-height: 48px;
    padding: 12px 20px;
    margin-top: 8px;
    border: 1px solid rgba(18, 150, 219, 0.18);
    border-radius: 999px;
    background: var(--color-primary-soft);
    color: var(--color-primary-strong);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.stub-page a:hover {
    color: #ffffff;
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 18px 30px rgba(18, 150, 219, 0.22);
}

@media (max-width: 1100px) {
    .scenario-grid,
    .purchase-grid,
    .quick-links,
    .trust-strip,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .banner_center,
    .banner_contents,
    .news,
    .xq_list,
    .news-list-page,
    .FAQ,
    .stub-page,
    .textlist_left,
    .textlist_right {
        border-radius: 24px;
    }
}

@media (max-width: 860px) {
    .logo_center {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px;
    }

    .logo_nav {
        width: 100%;
        margin-left: 0;
    }

    .logo_nav #nav {
        justify-content: flex-start;
    }

    .logo_nav #nav li a {
        min-width: 92px;
        padding: 10px 14px;
        font-size: 15px;
    }

    .banner_center,
    .banner_contents,
    .cta-panel,
    .contact-grid,
    .hero-meta {
        grid-template-columns: 1fr;
        display: grid;
    }

    .highlight-grid,
    .scenario-grid,
    .purchase-grid,
    .quick-links,
    .trust-strip,
    .neirong,
    .steps-grid,
    .next-entry-grid {
        grid-template-columns: 1fr;
    }

    .news-list-page ul li {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-list-page ul li .date {
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 14px;
    }

    .layout_center,
    .logo_center,
    .banner_center,
    .banner_contents,
    .textlist_left,
    .textlist_right,
    .news,
    .xq_list,
    .news-list-page,
    .FAQ,
    .stub-page,
    .link,
    .bottom {
        width: min(var(--container), calc(100% - 20px));
    }

    .layout_center,
    .logo_center,
    .banner_center,
    .banner_contents,
    .textlist_left,
    .textlist_right,
    .news,
    .xq_list,
    .news-list-page,
    .FAQ,
    .stub-page,
    .link,
    .bottom {
        border-radius: 20px;
    }

    .layout {
        padding-top: 10px;
    }

    .layout_center {
        align-items: flex-start;
        padding: 12px 14px;
        font-size: 12px;
    }

    .logo_center {
        gap: 14px;
    }

    .logo_center img {
        height: 42px;
    }

    .logo_nav #nav {
        gap: 8px;
    }

    .logo_nav #nav li a {
        min-width: 0;
        padding: 9px 12px;
        font-size: 14px;
    }

    .banner,
    .banner_xq,
    .textlist,
    .home-section,
    .trust-strip,
    .scenario-grid,
    .cta-panel,
    .news,
    .xq_list,
    .news-list-page,
    .FAQ,
    .stub-page,
    .link {
        margin-top: 20px;
    }

    .banner_center,
    .banner_contents,
    .news,
    .xq_list,
    .news-list-page,
    .FAQ,
    .stub-page {
        padding: 22px 18px 24px;
    }

    .banner_right h2,
    .banner_contents .text h2.m_bottom,
    .news dt,
    .stub-page h1 {
        font-size: 28px;
    }

    .textlist_header,
    .xq_list h5,
    .news-list-page h5,
    .FAQ h5 {
        align-items: flex-start;
        flex-direction: column;
    }

    .textlist_header .title,
    .xq_list h5,
    .news-list-page h5,
    .FAQ h5 {
        font-size: 22px;
    }

    .article-list li,
    .news-list-page ul li,
    .neirong {
        padding: 16px;
    }

    .news dd,
    .neirong .txt dd,
    .FAQ dd {
        font-size: 15px;
        line-height: 1.8;
    }

    .compare-table {
        font-size: 12px;
    }

    .compare-table th,
    .compare-table td {
        padding: 10px 8px;
    }

}



/* ===================================================
   HOMEPAGE — Claude.ai inspired
   Warm ivory bg, terracotta accent, clean editorial
   =================================================== */
.page-home {
    background: #f5f0ea !important;
    color: #2d2b28;
}
.page-home::before { background: none !important; }
.h-wrap, .page-home .home-container { width: min(1400px, calc(100% - 80px)); margin: 0 auto; }

/* Brand */
.page-home .home-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: #2d2b28; }
.page-home .home-brand span { font-size: 32px; font-weight: 700; letter-spacing: -0.01em; }
.page-home .home-brand__logo { width: 52px; height: 52px; object-fit: contain; border-radius: 10px; }

/* Disclaimer */
.page-home .layout { padding: 10px 0; }
.page-home .layout_center {
    background: transparent; border: none; border-radius: 0;
    box-shadow: none; backdrop-filter: none;
    color: #8a8478; font-size: 13px; font-weight: 500;
    min-height: auto; padding: 8px 0;
    transform: translateX(-130px);
}

/* Nav */
.page-home .logo {
    position: relative; z-index: 100;
    background: #f5f0ea;
    border-bottom: none; padding: 0;
}
.page-home .logo_center {
    background: transparent; border: none; border-radius: 0; box-shadow: none;
    min-height: 56px; width: min(1400px, calc(100% - 80px)); margin: 0 auto; padding: 0;
}
.page-home .logo_center > a img { display: none; }
.page-home .home-brand__logo { display: block !important; }
.page-home .logo_nav #nav li a {
    background: transparent; border-color: transparent;
    color: #2d2b28; font-size: 22px; font-weight: 600; min-width: 0;
    padding: 8px 24px; border-radius: 6px; transition: color 0.15s, background 0.15s;
}
.page-home .logo_nav #nav li a:hover {
    color: #2d2b28; background: rgba(0,0,0,0.04);
    border-color: transparent; box-shadow: none; transform: none;
}
.page-home .logo_nav #nav li a.active {
    color: #2d2b28; font-weight: 600; background: transparent;
    border-color: transparent; box-shadow: none; transform: none;
}
.home-nav-toggle-input { display: none; }
.home-nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; width: 36px; height: 36px; padding: 6px; }
.home-nav-hamburger span { display: block; width: 100%; height: 2px; background: #8a8478; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* Buttons — Claude style */
.h-btn {
    display: inline-flex; align-items: center; justify-content: center;
    height: 44px; padding: 0 22px; border-radius: 8px;
    font-size: 14px; font-weight: 500; text-decoration: none;
    background: #2d2b28; color: #f5f0ea; border: none; cursor: pointer;
    transition: background 0.15s;
}
.h-btn:hover { background: #3d3b38; color: #f5f0ea; }
.h-btn--o {
    background: transparent; color: #2d2b28;
    border: 1px solid #d4ccc2;
}
.h-btn--o:hover { border-color: #2d2b28; background: transparent; color: #2d2b28; }
.h-btn--w { background: #f5f0ea; color: #2d2b28; }
.h-btn--w:hover { background: #ebe5dc; color: #2d2b28; }
.h-btn--wo { background: transparent; color: #f5f0ea; border: 1px solid rgba(245,240,234,0.3); }
.h-btn--wo:hover { border-color: #f5f0ea; color: #f5f0ea; }
.h-btn--full { width: 100%; }

/* Section title */
.h-sec__title {
    font-size: clamp(24px, 3vw, 36px); font-weight: 600; color: #2d2b28;
    text-align: center; margin-bottom: 56px; letter-spacing: -0.02em;
}

/* ===== HERO ===== */
.h-hero { padding: 96px 0 100px; background: transparent; }
.h-hero .h-wrap { display: flex; align-items: center; gap: 56px; }
.h-hero__left { flex: 0 0 420px; text-align: center; }
.h-hero__right { flex: 1; min-width: 0; transform: translateX(95px); }
.h-hero__badge {
    display: inline-block; padding: 5px 14px; border-radius: 999px;
    background: rgba(196,104,73,0.1); color: #c46849; font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.h-hero__h1 {
    font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.1;
    color: #2d2b28; margin-bottom: 16px; letter-spacing: -0.03em;
}
.h-hero__p { font-size: 16px; color: #8a8478; line-height: 1.7; margin-bottom: 36px; }
.h-hero__cta { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
.h-hero__trust { display: flex; gap: 28px; justify-content: center; }
.h-hero__trust div { font-size: 13px; color: #8a8478; text-align: center; }
.h-hero__trust strong { display: block; font-size: 20px; font-weight: 700; color: #2d2b28; margin-bottom: 2px; }
.h-hero__img {
    width: 90%; height: auto; display: block; border-radius: 16px;
    border: 1px solid #e6ded4;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02), 0 16px 40px rgba(0,0,0,0.05);
}

/* ===== BAR ===== */
.h-bar { padding: 0; margin-top: -24px; position: relative; z-index: 2; }
.h-bar__inner {
    display: flex; background: #fff; border: 1px solid #e6ded4;
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.h-bar__item {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 18px 12px; font-size: 14px; color: #5c5850; font-weight: 500;
    border-right: 1px solid #e6ded4;
}
.h-bar__item:last-child { border-right: none; }
.h-bar__item svg { color: #c46849; flex-shrink: 0; }

/* ===== STEPS ===== */
.h-steps { padding: 120px 0; }
.h-steps__grid { display: flex; align-items: flex-start; gap: 28px; }
.h-steps__card {
    flex: 1; padding: 32px 24px; text-align: center;
    background: #fff; border: 1px solid #e6ded4; border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: box-shadow 0.2s, transform 0.2s;
}
.h-steps__card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.05); transform: translateY(-2px); }
.h-steps__num {
    width: 40px; height: 40px; border-radius: 10px; margin: 0 auto 14px;
    background: #c46849; color: #fff; font-size: 16px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.h-steps__card h3 { font-size: 16px; font-weight: 600; color: #2d2b28; margin-bottom: 8px; }
.h-steps__card p { font-size: 14px; color: #8a8478; line-height: 1.6; }
.h-steps__arrow { flex: 0 0 24px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #d4ccc2; padding-top: 32px; }

/* ===== PLANS ===== */
.h-plans { padding: 120px 0; background: #efebe4; }
.h-plans__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 960px; margin: 0 auto; }
.h-plans__card {
    padding: 36px 32px; background: #fff; border-radius: 16px;
    border: 1px solid #e6ded4; position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: box-shadow 0.2s;
}
.h-plans__card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.h-plans__card--pro { border-color: #c46849; }
.h-plans__tag {
    position: absolute; top: -11px; left: 28px;
    padding: 4px 14px; border-radius: 8px;
    background: #c46849; color: #fff; font-size: 12px; font-weight: 600;
}
.h-plans__card h3 { font-size: 22px; font-weight: 700; color: #2d2b28; margin-bottom: 8px; }
.h-plans__desc { font-size: 14px; color: #8a8478; line-height: 1.6; margin-bottom: 20px; }
.h-plans__card ul { list-style: none; padding: 0; margin-bottom: 24px; }
.h-plans__card ul li {
    font-size: 14px; color: #5c5850; padding: 8px 0;
    border-bottom: 1px solid #f0ebe4;
    display: flex; align-items: center; gap: 10px;
}
.h-plans__card ul li::before { content: "✓"; color: #c46849; font-weight: 700; font-size: 14px; }
.h-plans__card ul li:last-child { border-bottom: none; }
.h-plans__list--no::before { content: "✕" !important; color: #22c55e !important; font-weight: 700 !important; }

/* ===== CTA ===== */
.h-cta { padding: 80px 0; background: #2d2b28; }
.h-cta__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.h-cta__inner h2 { font-size: 24px; font-weight: 600; color: #f5f0ea; margin-bottom: 10px; }
.h-cta__inner p { font-size: 18px; color: #c8bfb0; margin: 0; font-weight: 500; }
.h-cta__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ===== FOOTER ===== */
.h-footer { background: #efebe4; padding: 64px 0 0; border-top: 1px solid #e6ded4; }
.h-footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; }
.h-footer__brand { display: flex; flex-direction: column; gap: 10px; }
.h-footer__brand p { font-size: 13px; color: #a09888; }
.h-footer__col h4 { font-size: 12px; font-weight: 600; color: #a09888; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.h-footer__col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.h-footer__col ul li { color: #8a8478; font-size: 14px; }
.h-footer__col ul li a { color: #8a8478; font-size: 14px; text-decoration: none; transition: color 0.15s; }
.h-footer__col ul li a:hover { color: #2d2b28; }
.h-footer__bottom { width: min(1400px, calc(100% - 80px)); margin: 0 auto; padding: 16px 0; border-top: 1px solid #e6ded4; text-align: center; font-size: 12px; color: #a09888; }
.h-footer__bottom a { color: #a09888; text-decoration: none; }
.h-footer__bottom a:hover { color: #2d2b28; }

/* Hide old */
.page-home .textlist, .page-home .home-watermark, .page-home .home-stats,
.page-home .home-features, .page-home .home-steps, .page-home .home-cta, .page-home .home-final-cta,
.page-home .home-hero, .page-home .home-body, .page-home .home-final, .page-home .home-footer,
.page-home .home-hero__bg, .page-home .home-hero__overlay,
.page-home .home-hero__glow, .page-home .home-hero__glow2 { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .h-hero .h-wrap { flex-direction: column; gap: 40px; }
    .h-hero__left { flex: none; width: 100%; max-width: 480px; }
    .h-hero__right { width: 100%; }
    .h-bar__inner { flex-wrap: wrap; }
    .h-bar__item { flex: 0 0 50%; border-bottom: 1px solid #e6ded4; }
    .h-bar__item:nth-child(2) { border-right: none; }
    .h-steps__grid { flex-direction: column; }
    .h-steps__arrow { display: none; }
    .h-plans__grid { grid-template-columns: 1fr; max-width: 420px; }
    .h-cta__inner { flex-direction: column; text-align: center; }
    .h-cta__actions { justify-content: center; }
    .h-footer__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .home-nav-hamburger { display: flex; }
    .page-home .logo_nav { display: none; position: absolute; top: 56px; left: 0; width: 100%; background: #f5f0ea; padding: 8px; border-bottom: 1px solid #e6ded4; z-index: 99; }
    .page-home #nav-toggle:checked ~ .logo_nav { display: block; }
    .page-home .logo_nav #nav { flex-direction: column; gap: 0; }
    .page-home .logo_nav #nav li a { display: block; text-align: center; padding: 14px; }
    #nav-toggle:checked ~ .home-nav-hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    #nav-toggle:checked ~ .home-nav-hamburger span:nth-child(2) { opacity: 0; }
    #nav-toggle:checked ~ .home-nav-hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    .h-hero { padding: 40px 0 48px; }
    .h-hero__h1 { font-size: 28px; }
    .h-hero__cta { flex-direction: column; }
    .h-btn { width: 100%; }
    .h-hero__trust { flex-direction: column; gap: 12px; }
    .h-bar__item { flex: 0 0 100%; border-right: none; }
    .h-footer__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== MOTION ===== */
@keyframes hFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes hFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes hPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes hSlideLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes hSlideRight {
    from { opacity: 0; transform: translateX(130px); }
    to { opacity: 1; transform: translateX(95px); }
}

/* Hero animations */
.h-hero__badge { animation: hFadeIn 0.6s 0.1s ease-out both; }
.h-hero__h1 { animation: hFadeUp 0.8s 0.2s ease-out both; }
.h-hero__p { animation: hFadeUp 0.8s 0.35s ease-out both; }
.h-hero__cta { animation: hFadeUp 0.8s 0.5s ease-out both; }
.h-hero__trust { animation: hFadeUp 0.8s 0.65s ease-out both; }
.h-hero__right { animation: hSlideRight 1s 0.3s ease-out both; }
.h-hero__img { animation: hFloat 6s ease-in-out infinite; }

/* Bar items stagger */
.h-bar__item { opacity: 0; animation: hFadeUp 0.6s ease-out both; }
.h-bar__item:nth-child(1) { animation-delay: 0.8s; }
.h-bar__item:nth-child(2) { animation-delay: 0.9s; }
.h-bar__item:nth-child(3) { animation-delay: 1.0s; }
.h-bar__item:nth-child(4) { animation-delay: 1.1s; }

/* Steps stagger */
.h-steps__card { opacity: 0; animation: hFadeUp 0.6s ease-out both; }
.h-steps__card:nth-child(1) { animation-delay: 0.1s; }
.h-steps__card:nth-child(2) { animation-delay: 0.25s; }
.h-steps__card:nth-child(3) { animation-delay: 0.4s; }

/* Plans stagger */
.h-plans__card { opacity: 0; animation: hFadeUp 0.7s ease-out both; }
.h-plans__card:nth-child(1) { animation-delay: 0.15s; }
.h-plans__card:nth-child(2) { animation-delay: 0.3s; }

/* Hover effects */
.h-steps__card,
.h-plans__card,
.h-bar__item {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.h-bar__item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.5);
}

.h-steps__card:hover {
    border-color: #c46849;
}

.h-plans__card:hover .h-steps__num,
.h-steps__card:hover .h-steps__num {
    animation: hPulse 0.4s ease-out;
}

/* Button hover */
.h-btn,
.h-btn--o,
.h-btn--w,
.h-btn--wo {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.h-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,43,40,0.15); }
.h-btn--o:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }

/* Section title animation */
.h-sec__title { animation: hFadeUp 0.7s ease-out both; }

/* Trust numbers hover */
.h-hero__trust div { transition: transform 0.2s ease; }
.h-hero__trust div:hover { transform: translateY(-2px); }

/* CTA section */
.h-cta__inner { animation: hFadeIn 0.8s ease-out both; }
/* ===================================================
   INNER PAGES — Claude ivory theme
   =================================================== */
.page-inner {
    background: #f5f0ea;
    color: #2d2b28;
}

.page-inner .layout { padding: 10px 0; }
.page-inner .layout_center {
    background: transparent; border: none; border-radius: 0;
    box-shadow: none; backdrop-filter: none;
    color: #8a8478; font-size: 13px; font-weight: 500;
    min-height: auto; padding: 8px 0;
    transform: translateX(-130px);
}

.page-inner .logo {
    position: relative; z-index: 100;
    background: transparent; border-bottom: none; padding: 0;
}
.page-inner .logo_center {
    background: transparent; border: none; border-radius: 0; box-shadow: none;
    min-height: 56px; width: min(1400px, calc(100% - 80px)); margin: 0 auto; padding: 0;
}
.page-inner .logo_center > a img { display: none; }
.page-inner .home-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: #2d2b28; }
.page-inner .home-brand span { font-size: 32px; font-weight: 700; }
.page-inner .home-brand__logo { display: block !important; width: 52px; height: 52px; object-fit: contain; border-radius: 10px; }
.page-inner .logo_nav #nav li a {
    background: transparent; border-color: transparent;
    color: #2d2b28; font-size: 22px; font-weight: 500; min-width: 0;
    padding: 8px 24px; border-radius: 6px; transition: color 0.15s, background 0.15s;
}
.page-inner .logo_nav #nav li a:hover {
    color: #2d2b28; background: rgba(0,0,0,0.04);
    border-color: transparent; box-shadow: none; transform: none;
}
.page-inner .logo_nav #nav li a.active {
    color: #2d2b28; font-weight: 500; background: transparent;
    border-color: transparent; box-shadow: none; transform: none;
}

/* Shared wrap */
.pi-wrap { width: min(1200px, calc(100% - 64px)); margin: 0 auto; }

/* Hero */
.pi-hero { padding: 64px 0 56px; }
.pi-hero__badge {
    display: inline-block; padding: 5px 14px; border-radius: 999px;
    background: rgba(196,104,73,0.1); color: #c46849; font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.pi-hero h1 {
    font-size: 36px; font-weight: 700; color: #2d2b28; margin-bottom: 20px; letter-spacing: -0.02em;
}
.pi-hero__meta { margin-bottom: 28px; }
.pi-hero__meta p {
    font-size: 15px; color: #8a8478; line-height: 1.8; margin: 0;
}
.pi-hero__btns { display: flex; gap: 12px; }

/* Section title */
.pi-sec-title {
    font-size: 40px; font-weight: 700; color: #2d2b28; margin-bottom: 48px;
    padding-bottom: 16px; border-bottom: 1px solid #e6ded4;
}

/* Features */
.pi-features { padding: 56px 0 80px; }
.pi-feature {
    display: flex; align-items: center; gap: 48px;
    margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid #ebe5dc;
}
.pi-feature:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.pi-feature--reverse { flex-direction: row-reverse; }
.pi-feature__text { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.pi-feature__text h3 {
    font-size: 32px; font-weight: 700; color: #2d2b28; margin-bottom: 18px; line-height: 1.3;
}
.pi-feature__text p {
    font-size: 18px; color: #8a8478; line-height: 1.8;
}
.pi-feature__img { flex: 0 0 45%; }
.pi-feature__img img {
    width: 100%; height: auto; display: block; border-radius: 12px;
    border: 1px solid #e6ded4;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02), 0 8px 24px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pi-feature__img img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Footer */
.pi-footer {
    padding: 24px 0; background: #efebe4; border-top: 1px solid #e6ded4;
    text-align: center; font-size: 13px; color: #a09888;
}
.pi-footer a { color: #a09888; text-decoration: none; }
.pi-footer a:hover { color: #2d2b28; }

/* ==================== FAQ / 使用说明页 ==================== */
.faq-wrap { width: min(900px, calc(100% - 48px)); margin: 0 auto; }

.faq-header { padding: 56px 0 32px; text-align: center; }
.faq-header__title {
    font-size: clamp(28px, 4vw, 40px); font-weight: 800;
    color: #2d2b28; margin: 0 0 10px;
}
.faq-header__desc { font-size: 16px; color: #8a8478; margin: 0; }

.faq-list { padding: 0 0 56px; }
.faq-card {
    display: flex; gap: 20px; align-items: flex-start;
    background: #fff; border-radius: 14px;
    border: 1px solid #e6ded4;
    padding: 28px 32px; margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: box-shadow 0.3s, transform 0.3s;
}
.faq-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.faq-card__icon {
    flex-shrink: 0; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: #f5f0ea; border-radius: 10px; color: #c0713a;
}
.faq-card__body h3 {
    font-size: 17px; font-weight: 700; color: #2d2b28;
    margin: 0 0 8px; line-height: 1.4;
}
.faq-card__body p {
    font-size: 15px; color: #6b6560; margin: 0; line-height: 1.7;
}
.faq-card__body p + p { margin-top: 8px; }

@media (max-width: 768px) {
    .faq-wrap { width: calc(100% - 32px); }
    .faq-card { padding: 20px; gap: 14px; }
    .faq-header { padding: 36px 0 20px; }
    .compare-wrap { width: calc(100% - 32px); }
    .compare-download { grid-template-columns: 1fr; }
    .compare-download__item { padding: 20px; }
    .pi-feature, .pi-feature--reverse { flex-direction: column; gap: 24px; }
    .pi-feature__img { flex: none; width: 100%; }
    .pi-hero h1 { font-size: 28px; }
    .pi-hero__grid { grid-template-columns: 1fr; }
}

/* ==================== 版本对比页 ==================== */
.compare-wrap { width: min(960px, calc(100% - 48px)); margin: 0 auto; }
.compare-section { padding: 0 0 40px; }

.compare-download {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.compare-download__item {
    background: #fff; border-radius: 14px; border: 1px solid #e6ded4;
    padding: 28px 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.compare-download__item h3 {
    font-size: 20px; font-weight: 700; color: #2d2b28; margin: 0 0 8px;
}
.compare-download__item p {
    font-size: 14px; color: #8a8478; margin: 0 0 16px;
}
.compare-download__links {
    display: flex; flex-direction: column; gap: 8px;
}
.compare-download__links a {
    font-size: 14px; color: #c0713a; text-decoration: none;
}
.compare-download__links a:hover { text-decoration: underline; }

.page-inner .compare-table {
    background: #fff; border-radius: 14px; border: 1px solid #e6ded4;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02); overflow: hidden;
}



/* Hero grid: personal + commercial */
.pi-hero__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 96px; max-width: 960px; margin: 0 auto; justify-content: center;
}
.pi-hero__card {
    padding: 24px 24px; background: #fff; border-radius: 14px;
    border: 1px solid #e6ded4;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex; flex-direction: column;
}
.pi-hero__card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}
.pi-hero__card--pro {
    border-color: #c46849;
}
.pi-hero__top { margin-bottom: 6px; }
.pi-hero__title-row {
    display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 10px;
}
.pi-hero__card h1, .pi-hero__card h2 {
    font-size: 28px; font-weight: 700; color: #2d2b28; margin-bottom: 0; letter-spacing: -0.02em;
}
.pi-hero__desc {
    font-size: 16px; color: #2d2b28; margin-bottom: 16px; line-height: 1.6;
    padding-bottom: 16px; border-bottom: 1px solid #ebe5dc;
    font-weight: 700; margin-top: 8px; text-align: center;
}
.pi-hero__specs {
    display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap;
}
.pi-hero__specs span {
    font-size: 12px; color: #8a8478; padding: 3px 10px; border-radius: 999px;
    background: #f5f0ea; border: 1px solid #e6ded4;
}
.pi-hero__list {
    list-style: none; padding: 0; margin-bottom: 18px; flex: 1;
}
.pi-hero__list li {
    font-size: 14px; color: #2d2b28; padding: 4px 0;
    display: flex; align-items: center; gap: 8px;
}
.pi-hero__list li::before { content: "✓"; color: #c46849; font-weight: 700; font-size: 13px; }
.pi-hero__badge {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    background: rgba(196,104,73,0.1); color: #c46849; font-size: 12px; font-weight: 600; margin-bottom: 8px;
}
.pi-hero__badge--pro {
    background: #c46849; color: #fff;
}
.pi-hero__btns { display: flex; gap: 10px; margin-top: auto; }

/* Scroll animation */
.pi-anim {
    opacity: 0; transform: translateY(24px);
    animation: piFadeUp 0.6s ease-out forwards;
}
@keyframes piFadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.pi-feature:nth-child(2) .pi-anim, .pi-feature.pi-anim:nth-child(2) { animation-delay: 0.1s; }
.pi-hero__card--pro.pi-anim { animation-delay: 0.15s; }
.pi-feature:nth-child(3) .pi-anim, .pi-feature.pi-anim:nth-child(3) { animation-delay: 0.15s; }
.pi-feature:nth-child(4) .pi-anim, .pi-feature.pi-anim:nth-child(4) { animation-delay: 0.2s; }
.pi-feature:nth-child(5) .pi-anim, .pi-feature.pi-anim:nth-child(5) { animation-delay: 0.25s; }

/* Feature image hover */
.pi-feature__img img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.pi-feature__img img:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* Scroll animations: slide in from sides */
.pi-scroll .pi-feature__text {
    opacity: 0; transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.pi-scroll .pi-feature__img {
    opacity: 0; transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.pi-scroll.pi-feature--reverse .pi-feature__text {
    transform: translateX(50px);
}
.pi-scroll.pi-feature--reverse .pi-feature__img {
    transform: translateX(-50px);
}
.pi-scroll.pi-visible .pi-feature__text,
.pi-scroll.pi-visible .pi-feature__img {
    opacity: 1; transform: translateX(0);
}
.pi-scroll.pi-visible .pi-feature__img {
    transition-delay: 0.12s;
}

/* Feature number tag */
.pi-feature__num {
    display: inline-block; font-size: 13px; font-weight: 700; color: #c46849;
    padding: 4px 12px; border-radius: 6px;
    background: rgba(196,104,73,0.08); margin-bottom: 14px;
    letter-spacing: 0.05em;
}

/* List item with X */
.pi-hero__list--no {
    color: #2d2b28 !important;
}
.pi-hero__list--no::before {
    content: "✕" !important; color: #22c55e !important; font-weight: 700 !important;
}

.pi-hero__desc2 {
    font-size: 14px; color: #8a8478; margin-bottom: 16px; line-height: 1.6;
    padding-bottom: 16px; border-bottom: 1px solid #ebe5dc;
}

/* ===== MOBILE ONLY ADAPT ===== */
@media (max-width: 768px) {
    .page-home .layout_center,
    .page-inner .layout_center {
        transform: none !important;
        padding-left: 14px;
        padding-right: 14px;
    }

    .h-wrap,
    .pi-wrap,
    .faq-wrap,
    .compare-wrap,
    .page-home .logo_center,
    .page-inner .logo_center {
        width: calc(100% - 32px);
    }

    .page-home .home-brand span,
    .page-inner .home-brand span {
        font-size: 24px;
    }

    .page-home .home-brand__logo,
    .page-inner .home-brand__logo {
        width: 42px;
        height: 42px;
    }

    .page-home .logo_nav #nav li a,
    .page-inner .logo_nav #nav li a {
        font-size: 18px;
        padding: 10px 14px;
    }

    .h-hero {
        padding: 36px 0 42px;
    }

    .h-hero .h-wrap {
        gap: 28px;
    }

    .h-hero__right {
        transform: none;
    }

    .h-hero__img {
        max-width: 100%;
        margin: 0 auto;
    }

    .h-steps {
        padding-top: 14px;
    }

    .h-plans__card {
        padding: 24px 20px;
    }

    .h-cta__inner {
        gap: 16px;
    }

    .pi-hero {
        padding: 38px 0 26px;
    }

    .pi-hero__grid {
        gap: 20px;
    }

    .pi-hero__card {
        padding: 20px;
    }

    .pi-hero__btns {
        flex-direction: column;
    }

    .pi-sec-title {
        font-size: 28px;
        margin-bottom: 28px;
        padding-bottom: 12px;
    }

    .pi-feature {
        gap: 20px;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .pi-feature__text h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .pi-feature__text p {
        font-size: 16px;
        line-height: 1.75;
    }

    .faq-card {
        padding: 18px;
        gap: 12px;
    }

    .faq-card__icon {
        width: 38px;
        height: 38px;
    }

    .compare-section {
        padding-bottom: 28px;
    }

    .compare-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .compare-table {
        min-width: 760px;
    }
}

@media (max-width: 640px) {
    .h-wrap,
    .pi-wrap,
    .faq-wrap,
    .compare-wrap,
    .page-home .logo_center,
    .page-inner .logo_center {
        width: calc(100% - 20px);
    }

    .page-inner .home-nav-hamburger {
        display: flex;
        margin-left: auto;
    }

    .page-inner .logo_center {
        position: relative;
        min-height: 56px;
        align-items: center;
        gap: 12px;
    }

    .page-inner .logo_nav {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        width: 100%;
        background: #f5f0ea;
        padding: 8px;
        border-bottom: 1px solid #e6ded4;
        z-index: 99;
    }

    .page-inner #nav-toggle:checked ~ .logo_nav {
        display: block;
    }

    .page-inner .logo_nav #nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .page-inner .logo_nav #nav li a {
        display: block;
        text-align: center;
        font-size: 17px;
        padding: 12px;
    }

    .page-inner #nav-toggle:checked ~ .home-nav-hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .page-inner #nav-toggle:checked ~ .home-nav-hamburger span:nth-child(2) {
        opacity: 0;
    }

    .page-inner #nav-toggle:checked ~ .home-nav-hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .h-hero__h1 {
        font-size: 26px;
        line-height: 1.15;
    }

    .h-hero__p,
    .faq-card__body p,
    .pi-feature__text p {
        font-size: 14px;
    }

    .pi-feature__text h3 {
        font-size: 22px;
    }

    .pi-feature__img img,
    .h-hero__img {
        border-radius: 10px;
    }
}

/* ===== MOBILE TUNE ROUND 2 ===== */
@media (max-width: 640px) {
    .page-home .layout {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .page-home .layout_center,
    .page-inner .layout_center {
        font-size: 11px;
        line-height: 1.55;
        padding: 10px 12px;
        gap: 8px;
    }

    .page-home .layout_center > span:first-child,
    .page-inner .layout_center > span:first-child {
        font-size: 14px;
    }

    .page-home .logo,
    .page-inner .logo {
        padding-top: 4px;
    }

    .page-home .logo_center,
    .page-inner .logo_center {
        min-height: 52px;
    }

    .page-home .home-brand,
    .page-inner .home-brand {
        gap: 8px;
    }

    .page-home .home-brand span,
    .page-inner .home-brand span {
        font-size: 18px;
        line-height: 1.1;
    }

    .page-home .home-brand__logo,
    .page-inner .home-brand__logo {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }

    .home-nav-hamburger {
        width: 34px;
        height: 34px;
        padding: 5px;
    }

    .page-home .logo_nav,
    .page-inner .logo_nav {
        top: 50px;
        padding: 6px;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    .page-home .logo_nav #nav li a,
    .page-inner .logo_nav #nav li a {
        font-size: 16px;
        padding: 10px 8px;
    }

    .h-hero {
        padding: 20px 0 28px;
    }

    .h-hero .h-wrap {
        gap: 18px;
    }

    .h-hero__left {
        max-width: none;
    }

    .h-hero__badge {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .h-hero__h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .h-hero__p {
        margin-bottom: 14px;
        line-height: 1.65;
    }

    .h-hero__cta {
        gap: 8px;
        margin-bottom: 18px;
    }

    .h-btn {
        height: 40px;
        font-size: 13px;
        padding: 0 14px;
        border-radius: 8px;
    }

    .h-hero__trust {
        gap: 8px;
    }

    .h-hero__trust strong {
        font-size: 16px;
        margin-bottom: 0;
    }

    .h-hero__trust div {
        font-size: 12px;
    }

    .h-bar {
        margin-top: 8px;
    }

    .h-bar__item {
        min-height: 52px;
        padding: 12px 10px;
        font-size: 13px;
        justify-content: flex-start;
    }

    .h-sec__title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .h-steps,
    .h-plans,
    .pi-features,
    .faq-list,
    .compare-section {
        padding-top: 22px;
    }

    .h-steps__card,
    .h-plans__card,
    .faq-card,
    .pi-hero__card,
    .compare-download__item {
        border-radius: 12px;
    }

    .h-steps__card {
        padding: 18px 16px;
    }

    .h-steps__card h3,
    .h-plans__card h3 {
        font-size: 20px;
    }

    .h-steps__card p,
    .h-plans__card p,
    .h-plans__card li {
        font-size: 14px;
        line-height: 1.65;
    }

    .h-plans__card ul {
        gap: 8px;
        margin-bottom: 16px;
    }

    .h-cta {
        padding: 26px 0 34px;
    }

    .h-cta__inner {
        padding: 22px 18px;
        gap: 12px;
    }

    .h-cta__inner h2 {
        font-size: 20px;
        line-height: 1.35;
    }

    .h-footer {
        padding-top: 34px;
    }

    .h-footer__inner {
        gap: 18px;
        padding-bottom: 24px;
    }

    .h-footer__col h4 {
        margin-bottom: 8px;
    }

    .pi-hero {
        padding: 26px 0 18px;
    }

    .pi-hero__card h1,
    .pi-hero__card h2 {
        font-size: 24px;
    }

    .pi-hero__desc,
    .pi-hero__list li {
        font-size: 14px;
    }

    .pi-hero__btns {
        gap: 8px;
    }

    .faq-header {
        padding: 24px 0 14px;
    }

    .faq-header__title {
        font-size: 26px;
    }

    .faq-header__desc {
        font-size: 14px;
    }
}

/* ===== MOBILE TUNE ROUND 3 ===== */
@media (max-width: 768px) {
    .pi-hero__grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        max-width: none;
    }

    .pi-hero__card {
        width: 100%;
    }

    .pi-hero__list li {
        align-items: flex-start;
        line-height: 1.65;
    }

    .pi-hero__list li::before {
        margin-top: 2px;
    }

    .page-home .logo_nav,
    .page-inner .logo_nav {
        max-height: calc(100vh - 58px);
        overflow-y: auto;
    }
}

@media (max-width: 640px) {
    .page-home .logo_nav,
    .page-inner .logo_nav {
        top: 50px;
    }

    .page-home .logo_nav #nav li,
    .page-inner .logo_nav #nav li {
        width: 100%;
    }

    .page-home .logo_nav #nav li a,
    .page-inner .logo_nav #nav li a {
        min-width: 0;
    }

    .h-hero .h-wrap {
        gap: 14px;
    }

    .h-hero__img {
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
    }

    .h-hero__trust {
        margin-top: 2px;
    }

    .h-bar__inner {
        border-radius: 12px;
        overflow: hidden;
    }

    .pi-hero__card {
        padding: 18px 16px;
    }

    .pi-hero__card h1,
    .pi-hero__card h2 {
        font-size: 22px;
    }

    .pi-hero__desc {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .pi-hero__list {
        margin-bottom: 14px;
    }

    .pi-hero__btns .h-btn {
        width: 100%;
    }
}


/* ===== MOBILE TUNE ROUND 4 ===== */
.mobile-nav-mask {
    display: none;
}

@media (max-width: 640px) {
    .page-home .logo,
    .page-inner .logo {
        z-index: 120;
    }

    .page-home .logo_center,
    .page-inner .logo_center {
        position: relative;
    }

    .mobile-nav-mask {
        display: none;
        position: fixed;
        top: 50px;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(45, 43, 40, 0.18);
        z-index: 98;
        cursor: pointer;
    }

    .page-home #nav-toggle:checked ~ .mobile-nav-mask,
    .page-inner #nav-toggle:checked ~ .mobile-nav-mask {
        display: block;
    }

    .home-nav-hamburger {
        position: relative;
        z-index: 100;
    }

    .page-home .logo_nav,
    .page-inner .logo_nav {
        right: 0;
        left: 0;
        z-index: 101;
    }

    .page-home .logo_nav #nav li a,
    .page-inner .logo_nav #nav li a {
        padding: 12px 10px;
        border-radius: 10px;
    }

    .h-hero {
        padding-top: 14px;
        padding-bottom: 24px;
    }

    .h-hero .h-wrap {
        gap: 12px;
    }

    .h-hero__badge {
        margin-bottom: 8px;
    }

    .h-hero__h1 {
        margin-bottom: 8px;
    }

    .h-hero__p {
        margin-bottom: 10px;
    }

    .h-hero__cta {
        margin-bottom: 10px;
    }

    .h-hero__trust {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 0;
    }

    .h-hero__trust div {
        padding: 8px 6px;
        border: 1px solid #e6ded4;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.72);
        font-size: 11px;
        line-height: 1.45;
    }

    .h-hero__trust strong {
        font-size: 14px;
    }

    .h-hero__right {
        width: 100%;
        max-width: 340px;
        margin: 2px auto 0;
    }

    .h-hero__img {
        max-width: 100%;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    }

    .pi-hero {
        padding-top: 18px;
    }

    .pi-hero__grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .pi-hero__card {
        padding: 16px 14px;
    }

    .pi-hero__btns {
        gap: 8px;
    }

    .pi-feature,
    .pi-feature--reverse {
        flex-direction: column !important;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 26px;
        padding-bottom: 26px;
    }

    .pi-feature__text,
    .pi-feature__img {
        width: 100%;
        flex: none;
    }

    .pi-feature__img a {
        display: block;
    }

    .pi-feature__img img {
        width: 100%;
        max-width: 100%;
    }

    .pi-scroll .pi-feature__text,
    .pi-scroll .pi-feature__img {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* ===== MOBILE TUNE ROUND 5 ===== */
.compare-mobile-list {
    display: none;
}

@media (max-width: 640px) {
    .page-inner .pi-wrap,
    .page-inner .faq-wrap,
    .page-inner .compare-wrap {
        width: calc(100% - 12px) !important;
    }

    .h-hero__trust {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .h-hero__right {
        transform: none !important;
        animation: none !important;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: none;
        margin: 4px 0 0;
    }

    .h-hero__img {
        width: min(100%, 300px) !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        animation: none !important;
    }

    .pi-hero__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        max-width: none !important;
    }

    .pi-hero__card {
        width: 100% !important;
        max-width: none !important;
        padding: 18px 16px !important;
    }

    .page-inner .compare-wrap {
        overflow: visible !important;
        padding-bottom: 0 !important;
    }

    .page-inner .compare-table {
        display: none !important;
    }

    .compare-mobile-list {
        display: grid;
        gap: 12px;
    }

    .compare-mobile-card {
        background: #fff;
        border: 1px solid #e6ded4;
        border-radius: 14px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.02);
        overflow: hidden;
    }

    .compare-mobile-card__title {
        padding: 14px 14px 12px;
        font-size: 17px;
        font-weight: 700;
        line-height: 1.4;
        color: #2d2b28;
        border-bottom: 1px solid #ebe5dc;
        background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
    }

    .compare-mobile-item {
        display: grid;
        grid-template-columns: 74px 1fr;
        gap: 10px;
        padding: 10px 14px;
        border-bottom: 1px solid #f0ebe4;
        align-items: start;
    }

    .compare-mobile-item:last-child {
        border-bottom: 0;
    }

    .compare-mobile-label {
        color: #8a8478;
        font-size: 12px;
        line-height: 1.5;
        font-weight: 700;
    }

    .compare-mobile-value {
        color: #2d2b28;
        font-size: 14px;
        line-height: 1.65;
        word-break: break-word;
    }

    .compare-mobile-value .check {
        font-size: 15px;
    }

    .compare-mobile-value .note,
    .compare-mobile-value .compare-center-note {
        text-align: left;
        font-size: 14px;
        color: #2d2b28;
    }
}


/* ===== MOBILE TUNE ROUND 6 ===== */
@media (max-width: 640px) {
    .h-cta__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: min(280px, 100%);
        margin: 0 auto;
    }

    .h-cta__actions .h-btn {
        width: 100%;
        min-width: 0;
        padding: 0 10px;
        white-space: nowrap;
        font-size: 14px;
        letter-spacing: 0;
    }
}
