/* 欧易下载官网 — 潮流金融风 · 单文件样式 */
:root {
    --rose: #e11d48;
    --rose-dark: #9f1239;
    --rose-soft: #fff1f2;
    --cyan: #06b6d4;
    --cyan-dark: #0891b2;
    --ink: #0f172a;
    --ink-soft: #1e293b;
    --muted: #64748b;
    --line: #e2e8f0;
    --surface: #ffffff;
    --bg: #f1f5f9;
    --bg-warm: #fafafa;
    --shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 8px 28px rgba(225, 29, 72, 0.1);
    --radius: 10px;
    --radius-sm: 8px;
    --radius-xl: 14px;
    --container: 1120px;
    --nav-h: 64px;
    --section-pad: 48px;
    --card-pad: 20px;
    --gap: 16px;
    --ease: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --grad-hero: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #881337 100%);
    --grad-accent: linear-gradient(135deg, var(--rose), #f43f5e);
    --grad-cyan: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.page-inner {
    background: linear-gradient(180deg, #fff 0%, var(--bg) 120px);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--cyan-dark); }
ul { list-style: none; }

/* Layout */
.container, .zb6d0econtainer {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 18px;
}

.row, .zb6d0erow {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
}
.row > [class*="col"], .zb6d0erow > [class*="col"] { min-width: 0; flex: 1 1 100%; }
.col-lg-6, .zb6d0ecol-lg-6 { flex: 1 1 calc(50% - var(--gap) / 2); max-width: calc(50% - var(--gap) / 2); }
.col-12, .zb6d0ecol-12 { flex: 0 0 100%; max-width: 100%; }

.align-items-center { align-items: center; }
.text-center, .zb6d0etext-center { text-align: center; }
.text-muted { color: var(--muted); }
.d-block { display: block; }
.d-flex { display: flex; }
.h-100 { height: 100%; }
.mb-0, .zb6d0emb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4, .zb6d0emb-4 { margin-bottom: 24px; }
.mt-3 { margin-top: 12px; }
.mt-4, .zb6d0emt-4 { margin-top: 24px; }
.py-5, .zb6d0epy-5 { padding: var(--section-pad) 0; }
.bg-light { background: var(--bg); }
.p-4 { padding: 24px; }
.small { font-size: 0.85rem; }
.h3 { font-size: 1.45rem; font-weight: 700; }
.h5 { font-size: 1.05rem; font-weight: 600; }
.fw-semibold { font-weight: 600; }

/* Nav */
.site-nav, .zb6d0enavbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    overflow: visible;
}

.site-nav .container, .zb6d0enavbar .zb6d0econtainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
}

.brand img, .zb6d0enavbar-brand img { height: 40px; width: auto; }

.nav-toggle {
    display: none;
    border: none;
    background: var(--rose-soft);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--ease);
}

.nav-menu, .zb6d0enavbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-menu a, .zb6d0enav-link {
    display: block;
    padding: 8px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft) !important;
    border-radius: 999px;
    transition: background var(--ease), color var(--ease);
    white-space: nowrap;
}

.nav-menu a:hover, .zb6d0enav-link:hover {
    background: var(--rose-soft);
    color: var(--rose) !important;
}

.nav-menu li.active a, .nav-menu .active .zb6d0enav-link {
    background: var(--grad-accent);
    color: #fff !important;
}

/* Hero */
.hero-section, .zb6d0ehero-section {
    position: relative;
    background: var(--grad-hero);
    color: #fff;
    padding: 48px 0 0;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.35) 0%, transparent 70%);
    top: -120px;
    right: -80px;
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.4) 0%, transparent 70%);
    bottom: -100px;
    left: -60px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 28px;
    align-items: center;
    padding-bottom: 40px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.82rem;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.hero-label::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
}

.hero-title, .zb6d0ehero-title {
    font-size: clamp(1.85rem, 4.5vw, 2.85rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(90deg, #fda4af, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc, .zb6d0ehero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 540px;
}

.hero-actions, .zb6d0ehero-buttons, .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
}

.hero-actions .btn, .hero-buttons .btn {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-frame {
    position: relative;
    padding: 10px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
}

.hero-image, .zb6d0ehero-image {
    width: 100%;
    max-width: 300px;
    border-radius: calc(var(--radius-xl) - 8px);
}

.hero-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-strip-item {
    padding: 16px 12px;
    text-align: center;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    min-width: 0;
}

.hero-strip-item strong {
    display: block;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 800;
    color: #fda4af;
    margin-bottom: 4px;
    word-break: break-word;
}

.hero-strip-item span { font-size: 0.82rem; opacity: 0.75; }

/* Trust bar */
.trust-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
}

.trust-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 28px;
    font-size: 0.88rem;
    color: var(--muted);
}

.trust-inner strong { color: var(--ink); font-weight: 600; }
.trust-dot { width: 4px; height: 4px; background: var(--rose); border-radius: 50%; opacity: 0.5; }

/* Section common */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--surface); }
.section--dark { background: var(--ink); color: #fff; }

.section-head {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 32px;
    padding: 0 8px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.25;
}

.section-head p { color: var(--muted); font-size: 1rem; }
.section--dark .section-head p { color: rgba(255, 255, 255, 0.65); }
.section--dark .section-tag { color: #fda4af; }
.section--dark .section-head h2 { color: #fff; }

/* About */
.about-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gap);
}

.about-panel {
    padding: var(--card-pad);
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    min-width: 0;
    overflow: hidden;
}

.about-panel h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: var(--ink);
}

.about-panel p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag-row span {
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    background: var(--rose-soft);
    color: var(--rose-dark);
    border-radius: 999px;
}

/* Bento features */
#features { background: var(--bg-warm); }

.bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--gap);
}

.bento-item {
    grid-column: span 4;
    padding: var(--card-pad);
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    transition: border-color var(--ease), box-shadow var(--ease);
    min-width: 0;
    overflow: hidden;
}

.bento-item:hover {
    border-color: rgba(225, 29, 72, 0.35);
    box-shadow: var(--shadow-lg);
}

.bento-item--wide { grid-column: span 8; }

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--grad-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.bento-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.bento-item p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; word-break: break-word; }

/* Products */
.product-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
}

.product-card {
    padding: var(--card-pad);
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-accent);
}

.product-card:nth-child(2)::before { background: var(--grad-cyan); }
.product-card:nth-child(3)::before { background: linear-gradient(90deg, #a855f7, #ec4899); }

.product-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.product-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 14px; }
.product-card ul { font-size: 0.88rem; color: var(--muted); }
.product-card li { padding: 4px 0 4px 18px; position: relative; }
.product-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--rose);
    font-weight: 700;
}

/* Stats */
#stats { padding: 0; }

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: var(--ink);
    color: #fff;
}

.stat-block {
    padding: 28px 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 0;
}

.stat-block:last-child { border-right: none; }

.stat-num, .zb6d0estat-number, .stat-number {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    background: linear-gradient(90deg, #fda4af, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.stat-txt, .zb6d0estat-label, .stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Download */
#download { background: linear-gradient(180deg, var(--rose-soft) 0%, var(--bg) 100%); }

.dl-grid, .download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gap);
    margin-bottom: var(--gap);
}

.dl-card, .download-card, .zb6d0edownload-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--card-pad);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.dl-head, .download-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.dl-head > div:last-child { flex: 1; min-width: 0; }
.dl-head h3 { font-size: 1.15rem; margin-bottom: 4px; word-break: break-word; }

.dl-icon, .platform-icon, .zb6d0eplatform-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    color: #fff;
}

.dl-icon--win, .win-icon, .zb6d0eios-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.dl-icon--and, .android-icon, .zb6d0eandroid-icon { background: var(--grad-accent); }

.dl-list, .download-info, .zb6d0edownload-info {
    flex: 1;
    padding: 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.dl-list li, .info-item, .zb6d0einfo-item {
    font-size: 0.9rem;
    color: var(--muted);
    padding: 6px 0 6px 22px;
    position: relative;
}

.dl-list li::before, .info-item::before, .zb6d0einfo-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cyan-dark);
    font-weight: 700;
}

.download-action, .zb6d0edownload-action { margin-top: auto; }
.download-action .btn, .zb6d0edownload-action .btn { width: 100%; }

.dl-flow {
    padding: var(--card-pad);
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.dl-flow h3 { text-align: center; font-size: 1.1rem; margin-bottom: 22px; }

.flow-steps, .steps-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.flow-step, .step-item {
    text-align: center;
    padding: 16px 12px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    min-width: 0;
}

.flow-num, .step-num {
    width: 32px;
    height: 32px;
    margin: 0 auto 10px;
    background: var(--grad-accent);
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-step p, .step-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* Security */
#security { background: var(--surface); }

.sec-grid, .security-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap);
    margin-bottom: var(--gap);
    align-items: stretch;
}

.sec-card, .security-card, .zb6d0esecurity-card {
    padding: var(--card-pad);
    background: var(--bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sec-card h3, .security-card h3 { font-size: 1rem; margin: 12px 0; }
.sec-icon, .security-icon, .zb6d0esecurity-icon {
    width: 44px;
    height: 44px;
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.sec-card .dl-list, .zb6d0esecurity-features { padding: 0; background: none; margin: 0; }

.cert-row, .cert-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
}

.cert-box, .certificate-card, .zb6d0ecertificate-card {
    text-align: center;
    padding: var(--card-pad) 14px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    min-width: 0;
    height: 100%;
}

.cert-box h4 { font-size: 0.95rem; margin: 10px 0 6px; }
.cert-box p { font-size: 0.85rem; color: var(--muted); }

/* FAQ */
#faq { background: var(--bg); }

.faq-list, .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gap);
    max-width: 100%;
}

.faq-box, .faq-item {
    padding: var(--card-pad);
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    border-left: 3px solid var(--rose);
    box-shadow: var(--shadow);
    min-width: 0;
    overflow: hidden;
}

.faq-box h3, .faq-item h3 { font-size: 0.98rem; margin-bottom: 10px; }
.faq-box p, .faq-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; word-break: break-word; }

/* CTA */
.cta-band {
    padding: 40px 18px;
    background: var(--grad-hero);
    color: #fff;
    text-align: center;
}

#faq .container.py-5,
#faq .zb6d0econtainer.zb6d0epy-5 {
    padding-top: 0;
    padding-bottom: 0;
}

.cta-band h2 { font-size: 1.6rem; margin-bottom: 12px; }
.cta-band p { opacity: 0.85; margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; }

/* Articles */
#article { background: var(--surface); }

.article-top, .article-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.article-top h2 { font-size: 1.4rem; font-weight: 800; }

.news-grid, .article-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap);
}

.card {
    background: var(--bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: box-shadow var(--ease), transform var(--ease);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.card:hover { box-shadow: var(--shadow-lg); border-color: rgba(225, 29, 72, 0.25); }

.card-img-top, .zb6d0ethumb-home {
    width: 100%;
    height: 112px;
    object-fit: cover;
}

.card-body { padding: 14px; flex: 1; }
.card-body h3, .card-body .h5 {
    font-size: 0.9rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-body h3 a { color: var(--ink); }
.card-body h3 a:hover { color: var(--rose); }
.shadow-sm { box-shadow: var(--shadow); }

/* Buttons */
.btn, .zb6d0ebtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform var(--ease), box-shadow var(--ease);
    text-decoration: none;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
}

.btn-primary {
    background: var(--grad-accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(225, 29, 72, 0.35);
}

.btn-primary:hover { color: #fff; transform: translateY(-2px); }

.btn-light {
    background: #fff;
    color: var(--ink);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

.btn-outline, .btn-outline-primary {
    background: transparent;
    color: var(--rose);
    border: 2px solid var(--rose);
}

.btn-outline:hover, .btn-outline-primary:hover {
    background: var(--rose);
    color: #fff;
}

.btn-lg { padding: 14px 26px; font-size: 0.95rem; }

/* Footer */
.footer, .zb6d0efooter {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 24px;
}

.footer-cols, .footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.footer-cols > div { min-width: 0; }

.footer h5, .footer-title, .zb6d0efooter-title {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.footer-links a, .zb6d0efooter-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: block;
    padding: 4px 0;
}

.footer-links a:hover, .zb6d0efooter-link:hover { color: #fda4af; }

.friend-links, .zb6d0efriend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 12px;
}

.friend-links a { color: rgba(255, 255, 255, 0.55); font-size: 0.88rem; }

.footer-bottom, .zb6d0efooter-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 32px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.88rem;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.65); }
.footer-bottom p { margin-bottom: 6px; }

/* Inner pages */
.page-main {
    padding: 32px 0 56px;
}

.page-hero-mini {
    background: var(--grad-hero);
    color: #fff;
    padding: 28px 0;
    margin-bottom: 28px;
}

.page-hero-mini h1 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
}

.page-hero-mini p {
    opacity: 0.8;
    font-size: 0.92rem;
    margin-top: 8px;
    max-width: 640px;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    gap: var(--gap);
    align-items: start;
}

.content-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--card-pad);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    min-width: 0;
    overflow: hidden;
}

.listbox .e2 li {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.listbox .e2 li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.list-item-inner {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
}

.zb6d0ethumb-list, .zb6d0ethumb-related {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.zb6d0ethumb-side {
    width: 68px;
    height: 52px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.zb6d0ethumb-cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
}

.side-widget {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--card-pad);
    border: 1px solid var(--line);
    margin-bottom: var(--gap);
    box-shadow: var(--shadow);
    min-width: 0;
    overflow: hidden;
}

.side-widget h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
    border-left: 3px solid var(--rose);
    padding-left: 10px;
}

.side-widget li { margin-bottom: 8px; }
.side-widget a { color: var(--ink-soft); font-size: 0.9rem; }
.side-widget a:hover { color: var(--rose); }

.side-hot-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.side-hot-item a:last-child {
    flex: 1;
    min-width: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--ink-soft);
    word-break: break-word;
}

.zb6d0earticle-content { line-height: 1.8; font-size: 1rem; }
.zb6d0earticle-content img { border-radius: var(--radius); margin: 16px auto; }
.zb6d0earticle-content p { margin-bottom: 1em; }

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--muted);
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.zb6d0emeta-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

.zb6d0etagitem a {
    padding: 4px 12px;
    background: var(--rose-soft);
    color: var(--rose-dark);
    border-radius: 999px;
    font-size: 0.82rem;
}

.nav-prev-next {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.pagebar .pagelist {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding: 0;
}

.pagebar .pagelist a,
.pagebar .pagelist span {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--ink);
    font-size: 0.88rem;
}

.pagebar .pagelist a:hover {
    background: var(--rose);
    color: #fff;
    border-color: var(--rose);
}

.ico { font-style: normal; }

/* Responsive — tablet */
@media (max-width: 991px) {
    :root { --section-pad: 40px; --nav-h: 58px; }

    .site-nav .container,
    .zb6d0enavbar .zb6d0econtainer {
        flex-wrap: nowrap;
        position: relative;
    }

    .brand img, .zb6d0enavbar-brand img { height: 36px; }

    .nav-toggle {
        display: flex;
        margin-left: 8px;
    }

    .nav-menu, .zb6d0enavbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 0;
        background: #fff;
        padding: 8px 12px max(14px, env(safe-area-inset-bottom));
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        max-height: min(75vh, 520px);
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.is-open { display: flex; }

    .nav-menu li, .zb6d0enav-item { width: 100%; }

    .nav-menu a, .zb6d0enav-link {
        width: 100%;
        padding: 12px 14px;
        font-size: 0.95rem;
        white-space: normal;
        word-break: break-word;
        border-radius: var(--radius-sm);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding-bottom: 28px;
    }

    .hero-label {
        max-width: 100%;
        font-size: 0.78rem;
        line-height: 1.45;
        justify-content: center;
    }

    .hero-desc, .zb6d0ehero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
    }

    .hero-actions, .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn, .hero-buttons .btn {
        width: 100%;
        flex: none;
    }

    .hero-visual { order: -1; }

    .hero-image, .zb6d0ehero-image { max-width: 240px; margin: 0 auto; }

    .hero-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-inner {
        gap: 10px 16px;
        padding: 0 4px;
        text-align: center;
    }

    .trust-dot { display: none; }

    .section-head { margin-bottom: 24px; }

    .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bento-item, .bento-item--wide { grid-column: span 1; }

    .product-row { grid-template-columns: 1fr; }

    .stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .stat-block {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-block:nth-child(2n) { border-right: none; }

    .sec-grid, .security-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .news-grid, .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .about-split { grid-template-columns: 1fr; }

    .footer-cols, .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

    .content-layout { grid-template-columns: 1fr; }

    .flow-steps, .steps-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .col-lg-6, .zb6d0ecol-lg-6 { flex: 0 0 100%; max-width: 100%; }
}

/* Responsive — phone */
@media (max-width: 767px) {
    :root { --section-pad: 32px; --gap: 12px; --card-pad: 16px; --nav-h: 54px; }

    body.nav-open { overflow: hidden; }

    .site-nav, .zb6d0enavbar { position: sticky; top: 0; }

    .hero-section, .zb6d0ehero-section { padding-top: 28px; }

    .hero-title, .zb6d0ehero-title { font-size: 1.55rem; }

    .hero-title br { display: none; }

    .hero-title em { display: block; margin-top: 6px; }

    .hero-desc, .zb6d0ehero-subtitle {
        font-size: 0.88rem;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .hero-image, .zb6d0ehero-image { max-width: 200px; }

    .hero-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .hero-strip-item { padding: 14px 10px; }

    .hero-strip-item span { font-size: 0.78rem; }

    .btn-lg { padding: 12px 18px; font-size: 0.9rem; }

    .section-head h2 { font-size: 1.3rem; }

    .section-head p { font-size: 0.92rem; }

    .about-panel h3 { font-size: 1.1rem; }

    .tag-row { justify-content: center; }

    .bento { grid-template-columns: 1fr; }

    .bento-item, .bento-item--wide { grid-column: span 1; }

    .dl-grid, .download-grid,
    .faq-list, .faq-grid,
    .cert-row, .cert-grid,
    .sec-grid, .security-grid { grid-template-columns: 1fr; }

    .dl-head, .download-card-head {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .flow-steps, .steps-row { grid-template-columns: 1fr; }

    .stat-block { padding: 20px 12px; }

    .stat-num, .zb6d0estat-number, .stat-number { font-size: 1.45rem; }

    .cta-band { padding: 32px 14px; }

    .cta-band h2 { font-size: 1.35rem; }

    .cta-band p { font-size: 0.9rem; margin-bottom: 18px; }

    .news-grid, .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .card-img-top, .zb6d0ethumb-home { height: 96px; }

    .card-body { padding: 10px 12px; }

    .card-body h3, .card-body .h5 { font-size: 0.85rem; }

    .article-top, .article-header-row {
        flex-direction: column;
        align-items: stretch;
    }

    .article-top .btn, .article-header-row .btn {
        width: 100%;
        text-align: center;
    }

    .footer-cols, .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .zb6d0efooter-brand, .footer-brand { display: inline-block; }

    .friend-links, .zb6d0efriend-links { justify-content: center; }

    .footer-bottom p { line-height: 1.6; word-break: break-word; }

    .page-hero-mini { padding: 22px 0; margin-bottom: 20px; }

    .page-hero-mini h1 { font-size: 1.3rem; }

    .page-hero-mini p { font-size: 0.88rem; }

    .page-main { padding: 20px 0 40px; }

    .list-item-inner { grid-template-columns: 80px 1fr; gap: 10px; }

    .listbox .e2 li h2, .listbox .e2 li .h5 { font-size: 0.95rem; }

    .listbox .e2 li p { font-size: 0.85rem; }

    .article-meta {
        flex-direction: column;
        gap: 6px;
        font-size: 0.82rem;
    }

    .nav-prev-next { flex-direction: column; }

    .nav-prev-next > div { width: 100%; }

    .pagebar .pagelist { justify-content: center; gap: 6px; }

    .pagebar .pagelist a,
    .pagebar .pagelist span {
        min-width: 32px;
        height: 32px;
        font-size: 0.82rem;
    }
}

/* Responsive — small phone */
@media (max-width: 575px) {
    .container, .zb6d0econtainer { padding: 0 12px; }

    :root { --section-pad: 28px; }

    .stats-band { grid-template-columns: 1fr 1fr; }

    .hero-strip { grid-template-columns: 1fr; }

    .news-grid, .article-grid { grid-template-columns: 1fr; }

    .dl-head, .download-card-head {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .dl-head > div:last-child { width: 100%; }

    .list-item-inner { grid-template-columns: 1fr; }

    .list-item-inner > a:first-child { display: block; }

    .zb6d0ethumb-list,
    .zb6d0ethumb-related {
        width: 100%;
        height: 140px !important;
    }

    .zb6d0ethumb-cover { height: 150px; }

    .hero-image, .zb6d0ehero-image { max-width: 180px; }

    .trust-inner { font-size: 0.82rem; }
}

@media (max-width: 380px) {
    .hero-title, .zb6d0ehero-title { font-size: 1.35rem; }

    .stats-band { grid-template-columns: 1fr; }

    .hero-actions .btn, .hero-buttons .btn {
        font-size: 0.85rem;
        padding: 11px 14px;
    }
}
