/* ═══════════════════════════════════════════════════════

   CAIYUN-IPA-TICH - Business Blue Theme

   WordPress 6.9 | PHP 8.2

   ═══════════════════════════════════════════════════════ */



/* ── CSS Variables ──────────────────────────────────── */

:root {

    --zy-primary: #1a56db;

    --zy-primary-dark: #1240a8;

    --zy-primary-light: #3b82f6;

    --zy-primary-lighter: #93bbfd;

    --zy-accent: #60a5fa;

    --zy-bg: #0a0f1e;

    --zy-bg-card: rgba(15, 23, 42, 0.6);

    --zy-bg-card-hover: rgba(26, 86, 219, 0.08);

    --zy-surface: rgba(15, 23, 42, 0.8);

    --zy-border: rgba(59, 130, 246, 0.15);

    --zy-border-hover: rgba(59, 130, 246, 0.4);

    --zy-text: #f1f5f9;

    --zy-text-muted: #94a3b8;

    --zy-text-dim: #64748b;

    --zy-glow: rgba(26, 86, 219, 0.3);

    --zy-glow-strong: rgba(59, 130, 246, 0.5);

    --zy-radius: 8px;

    --zy-radius-lg: 12px;

    --zy-container: 1200px;

    --zy-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

}



/* ── Reset & Base ───────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }



html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }



body {

    font-family: var(--zy-font);

    background: var(--zy-bg);

    color: var(--zy-text);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

    overflow-x: hidden;

}



a { color: var(--zy-primary-light); text-decoration: none; transition: color 0.2s; }

a:hover { color: var(--zy-accent); }



img { max-width: 100%; height: auto; display: block; }



ul { list-style: none; }



/* ── Container ──────────────────────────────────────── */

.zy-container {

    max-width: var(--zy-container);

    margin: 0 auto;

    padding: 0 20px;

}



/* ── Gradient Text ──────────────────────────────────── */

.zy-gradient-text {

    background: linear-gradient(135deg, var(--zy-primary-light), var(--zy-accent));

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



/* ── Grid Background ────────────────────────────────── */

.zy-section-grid-bg {

    position: relative;

}

.zy-section-grid-bg::before {

    content: '';

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px),

        linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px);

    background-size: 60px 60px;

    z-index: 0;

}

.zy-section-grid-bg > * { position: relative; z-index: 1; }



/* ── Buttons ────────────────────────────────────────── */

.zy-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    font-family: var(--zy-font);

    font-weight: 500;

    border-radius: var(--zy-radius);

    cursor: pointer;

    transition: all 0.25s ease;

    border: 1px solid transparent;

    text-decoration: none;

}

.zy-btn-primary {

    background: var(--zy-primary);

    color: #fff;

    border-color: var(--zy-primary);

}

.zy-btn-primary:hover {

    background: var(--zy-primary-dark);

    color: #fff;

    box-shadow: 0 0 20px var(--zy-glow);

}

.zy-btn-outline {

    background: transparent;

    color: var(--zy-primary-light);

    border-color: rgba(59, 130, 246, 0.35);

}

.zy-btn-outline:hover {

    background: rgba(26, 86, 219, 0.1);

    border-color: rgba(59, 130, 246, 0.6);

    color: var(--zy-accent);

}

.zy-btn-sm { padding: 6px 14px; font-size: 12px; }

.zy-btn-lg { padding: 12px 28px; font-size: 14px; }



/* ── Section Header ─────────────────────────────────── */

.zy-section { padding: 64px 0; }

@media (min-width: 640px) { .zy-section { padding: 80px 0; } }



.zy-section-header { text-align: center; margin-bottom: 40px; }

.zy-section-tag {

    display: inline-block;

    padding: 4px 12px;

    border-radius: 999px;

    border: 1px solid rgba(59, 130, 246, 0.2);

    background: rgba(26, 86, 219, 0.08);

    color: var(--zy-primary-light);

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 1px;

    margin-bottom: 12px;

}

.zy-section-title {

    font-size: 24px;

    font-weight: 700;

    color: var(--zy-text);

    letter-spacing: -0.02em;

}

@media (min-width: 640px) { .zy-section-title { font-size: 30px; } }

/* ═══════════════════════════════════════════════════════
   SERVICES SECTION - 业务模块
   ═══════════════════════════════════════════════════════ */
.zy-service-group {
    margin-bottom: 32px;
}
.zy-group-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--zy-text);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.zy-group-line {
    display: inline-block;
    width: 3px;
    height: 16px;
    background: var(--zy-primary);
    border-radius: 2px;
}
.zy-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 640px) {
    .zy-service-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.zy-service-card {
    background: var(--zy-bg-card);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.2s;
}
.zy-service-card:hover {
    border-color: var(--zy-border-hover);
    transform: translateY(-2px);
    background: var(--zy-bg-card-hover);
}
.zy-service-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zy-primary);
}
.zy-service-icon svg { width: 28px; height: 28px; }
.zy-service-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--zy-text);
    margin: 0 0 6px;
}
.zy-service-desc {
    font-size: 12px;
    color: var(--zy-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION - 关于我们
   ═══════════════════════════════════════════════════════ */
.zy-about-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
@media (min-width: 768px) {
    .zy-about-grid { flex-direction: row; align-items: center; }
}
.zy-about-text {
    flex: 1;
}
.zy-about-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--zy-text-muted);
}
.zy-about-desc p { margin-bottom: 1em; }
.zy-about-stats {
    flex: 1;
}
.zy-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.zy-stat-card {
    background: var(--zy-bg-card);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius);
    padding: 20px 16px;
    text-align: center;
}
.zy-stat-card svg {
    width: 24px;
    height: 24px;
    color: var(--zy-primary);
    margin-bottom: 8px;
}
.zy-stat-value {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 2px;
}
.zy-stat-label {
    font-size: 12px;
    color: var(--zy-text-muted);
}
.zy-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
}
.zy-tech-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--zy-bg);
    border: 1px solid var(--zy-border);
    border-radius: 4px;
    font-size: 11px;
    color: var(--zy-text-muted);
}

/* ═══════════════════════════════════════════════════════
   ACHIEVEMENTS SECTION - 成就与荣誉
   ═══════════════════════════════════════════════════════ */
.zy-counters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
@media (min-width: 640px) {
    .zy-counters { grid-template-columns: repeat(4, 1fr); }
}
.zy-counter-card {
    background: var(--zy-bg-card);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius);
    padding: 24px 16px;
    text-align: center;
}
.zy-counter-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--zy-text);
    display: inline;
}
.zy-counter-suffix {
    font-size: 20px;
    font-weight: 700;
    color: var(--zy-primary);
}
.zy-counter-label {
    font-size: 12px;
    color: var(--zy-text-muted);
    margin-top: 4px;
}
.zy-counter-sub {
    font-size: 11px;
    color: var(--zy-text-dim);
    margin-top: 2px;
    opacity: 0.7;
}

.zy-honors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 640px) {
    .zy-honors-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.zy-honor-card {
    background: var(--zy-bg-card);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.2s;
}
.zy-honor-card:hover {
    border-color: var(--zy-border-hover);
    transform: translateY(-2px);
}
.zy-honor-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zy-primary);
}
.zy-honor-icon svg { width: 28px; height: 28px; }
.zy-honor-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--zy-text);
    margin: 0 0 6px;
}
.zy-honor-desc {
    font-size: 11px;
    color: var(--zy-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   PAGE HERO (通用页面头部)
   ═══════════════════════════════════════════════════════ */
.zy-page-hero {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(26,86,219,0.08) 0%, transparent 100%);
    position: relative;
}
.zy-page-hero .zy-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border: 1px solid var(--zy-border);
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--zy-text-dim);
    margin-bottom: 16px;
}
.zy-page-hero-title {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.2;
}
.zy-page-hero-desc {
    font-size: 16px;
    color: var(--zy-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
@media (max-width: 640px) {
    .zy-page-hero { padding: 80px 0 40px; }
    .zy-page-hero-title { font-size: 28px; }
    .zy-page-hero-desc { font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════
   BIZ HERO (业务页头部-带统计)
   ═══════════════════════════════════════════════════════ */
.zy-biz-hero {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(26,86,219,0.08) 0%, transparent 100%);
    position: relative;
}
.zy-biz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    border: 1px solid var(--zy-border);
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--zy-text-dim);
    margin-bottom: 16px;
}
.zy-biz-hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--zy-primary);
}
.zy-biz-hero-title {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.2;
}
.zy-biz-hero-desc {
    font-size: 16px;
    color: var(--zy-text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.zy-biz-hero-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.zy-biz-hero-stat {
    text-align: center;
    padding: 16px 24px;
    background: var(--zy-bg-card);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius);
    min-width: 100px;
}
.zy-biz-hero-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--zy-primary);
    display: block;
    line-height: 1.2;
}
.zy-biz-hero-stat-label {
    font-size: 12px;
    color: var(--zy-text-muted);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   BIZ SECTION (通用业务区块)
   ═══════════════════════════════════════════════════════ */
.zy-biz-section {
    padding: 60px 0;
}
.zy-biz-section-alt {
    background: var(--zy-bg);
}
.zy-biz-section-header {
    text-align: center;
    margin-bottom: 40px;
}
.zy-biz-section-tag {
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid var(--zy-border);
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--zy-text-dim);
    margin-bottom: 12px;
}
.zy-biz-section-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.2;
}
.zy-biz-section-desc {
    font-size: 14px;
    color: var(--zy-text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}
.zy-gradient-text {
    background: linear-gradient(135deg, var(--zy-primary), #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════════════
   SPLIT ROW (图文两栏)
   ═══════════════════════════════════════════════════════ */
.zy-split-row {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}
@media (min-width: 768px) {
    .zy-split-row { flex-direction: row; }
}
.zy-split-image {
    flex: 0 0 45%;
    border-radius: var(--zy-radius-lg);
    overflow: hidden;
}
.zy-split-content {
    flex: 1;
}
.zy-split-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.3;
}
.zy-split-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--zy-text-muted);
    margin: 0 0 14px;
}

/* ═══════════════════════════════════════════════════════
   VALUE BAR (核心价值)
   ═══════════════════════════════════════════════════════ */
.zy-value-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .zy-value-bar { grid-template-columns: repeat(4, 1fr); }
}
.zy-value-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--zy-bg-card);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius);
    transition: all 0.2s;
}
.zy-value-item:hover {
    border-color: var(--zy-border-hover);
    transform: translateY(-2px);
}
.zy-value-icon {
    width: 44px; height: 44px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zy-primary);
}
.zy-value-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--zy-text);
    margin-bottom: 6px;
}
.zy-value-desc {
    font-size: 12px;
    color: var(--zy-text-muted);
}

/* ═══════════════════════════════════════════════════════
   MILESTONE (发展历程时间线)
   ═══════════════════════════════════════════════════════ */
.zy-milestone-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}
.zy-milestone-track::-webkit-scrollbar { height: 4px; }
.zy-milestone-track::-webkit-scrollbar-thumb { background: var(--zy-border); border-radius: 2px; }
.zy-milestone-item {
    flex: 0 0 180px;
    text-align: center;
    position: relative;
}
.zy-milestone-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--zy-primary);
    margin: 0 auto 12px;
    box-shadow: 0 0 0 4px rgba(26,86,219,0.15);
}
.zy-milestone-year {
    font-size: 20px;
    font-weight: 800;
    color: var(--zy-primary);
    margin-bottom: 4px;
}
.zy-milestone-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--zy-text);
    margin-bottom: 4px;
}
.zy-milestone-desc {
    font-size: 11px;
    color: var(--zy-text-muted);
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════ */
.zy-cta-banner {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(26,86,219,0.1), rgba(99,102,241,0.08));
    border: 1px solid rgba(26,86,219,0.15);
    border-radius: var(--zy-radius-lg);
}
.zy-cta-banner h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
}
.zy-cta-banner p {
    color: var(--zy-text-muted);
    font-size: 14px;
    margin: 0 0 24px;
}

/* ═══════════════════════════════════════════════════════
   CERT GRID (证书展示)
   ═══════════════════════════════════════════════════════ */
.zy-cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 640px) { .zy-cert-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.zy-cert-card {
    background: var(--zy-bg-card);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.2s;
}
.zy-cert-card:hover {
    border-color: var(--zy-border-hover);
    transform: translateY(-2px);
}
.zy-cert-icon {
    width: 48px; height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zy-primary);
    background: rgba(26,86,219,0.06);
    border-radius: 12px;
}
.zy-cert-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--zy-text);
    margin-bottom: 6px;
}
.zy-cert-issuer {
    font-size: 11px;
    color: var(--zy-text-dim);
    margin-bottom: 2px;
}
.zy-cert-date {
    font-size: 10px;
    color: var(--zy-text-dim);
    opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════
   HONOR LIST (荣誉列表)
   ═══════════════════════════════════════════════════════ */
.zy-honor-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}
.zy-honor-card {
    display: flex;
    gap: 20px;
    background: var(--zy-bg-card);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius);
    padding: 20px;
    transition: all 0.2s;
}
.zy-honor-card:hover { border-color: var(--zy-border-hover); }
.zy-honor-year {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--zy-primary);
    padding: 4px 12px;
    border: 1px solid rgba(26,86,219,0.2);
    border-radius: 6px;
    height: fit-content;
}
.zy-honor-info { flex: 1; min-width: 0; }
.zy-honor-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--zy-text);
    margin-bottom: 4px;
}
.zy-honor-desc {
    font-size: 13px;
    color: var(--zy-text-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIAL GRID (客户评价)
   ═══════════════════════════════════════════════════════ */
.zy-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) { .zy-testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.zy-testimonial-card {
    background: var(--zy-bg-card);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.zy-testimonial-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.zy-testimonial-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--zy-text-muted);
    flex: 1;
    margin-bottom: 16px;
    font-style: italic;
}
.zy-testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.zy-testimonial-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(26,86,219,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--zy-primary);
    flex-shrink: 0;
}
.zy-testimonial-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--zy-text);
}
.zy-testimonial-role {
    font-size: 11px;
    color: var(--zy-text-dim);

}

/* ═══════════════════════════════════════════════════════
   QR CODE
   ═══════════════════════════════════════════════════════ */
.zy-footer-qr-card {
    margin-top: 12px;
    text-align: center;
}
.zy-footer-qr-card img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    border: 1px solid var(--zy-border);
    display: block;
    margin: 0 auto 6px;
}
.zy-footer-qr-card span {
    display: block;
    font-size: 10px;
    color: var(--zy-text-dim);
}
.zy-contact-qr {
    margin-top: 24px;
    text-align: center;
    padding: 16px;
    background: var(--zy-bg-card);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius);
}
.zy-contact-qr img {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    display: block;
    margin: 0 auto 8px;
}
.zy-contact-qr span {
    display: block;
    font-size: 12px;
    color: var(--zy-text-dim);
}

/* ═══════════════════════════════════════════════════════
   PROCESS STEPS (服务流程)
   ═══════════════════════════════════════════════════════ */
.zy-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 640px) { .zy-process-steps { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .zy-process-steps { grid-template-columns: repeat(6, 1fr); } }
.zy-process-step {
    text-align: center;
    padding: 24px 16px;
    background: var(--zy-bg-card);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius);
    transition: all 0.2s;
}
.zy-process-step:hover {
    border-color: var(--zy-border-hover);
    transform: translateY(-2px);
}
.zy-process-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--zy-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto 12px;
}
.zy-process-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--zy-text);
    margin: 0 0 6px;
}
.zy-process-desc {
    font-size: 11px;
    color: var(--zy-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   CASES GRID (客户案例)
   ═══════════════════════════════════════════════════════ */
.zy-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 640px) { .zy-cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .zy-cases-grid { grid-template-columns: repeat(3, 1fr); } }
.zy-case-card {
    background: var(--zy-bg-card);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius);
    overflow: hidden;
    transition: all 0.2s;
}
.zy-case-card:hover {
    border-color: var(--zy-border-hover);
    transform: translateY(-2px);
}
.zy-case-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.zy-case-thumb img { width: 100%; height: 100%; object-fit: cover; }
.zy-case-body { padding: 16px; }
.zy-case-client {
    font-size: 10px;
    color: var(--zy-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.zy-case-title { font-size: 15px; font-weight: 600; margin: 4px 0 8px; }
.zy-case-title a { color: var(--zy-text); text-decoration: none; }
.zy-case-title a:hover { color: var(--zy-primary); }
.zy-case-desc { font-size: 12px; color: var(--zy-text-muted); line-height: 1.6; margin: 0 0 12px; }
.zy-case-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.zy-case-tag {
    display: inline-block;
    padding: 2px 8px;
    background: var(--zy-bg);
    border: 1px solid var(--zy-border);
    border-radius: 4px;
    font-size: 10px;
    color: var(--zy-text-dim);
}

/* ═══════════════════════════════════════════════════════
   PORTFOLIO - CERTIFICATE GALLERY
   ═══════════════════════════════════════════════════════ */
/* ── Flowing Marquee ── */
.zy-flow-track {
    overflow: hidden;
    padding: 10px 0;
}
.zy-flow-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}
.zy-flow-strip {
    display: flex;
    gap: 16px;
    animation: zy-flow-scroll 40s linear infinite;
    flex-shrink: 0;
}
.zy-flow-row-reverse .zy-flow-strip {
    animation: zy-flow-scroll-reverse 48s linear infinite;
}
.zy-flow-item {
    flex-shrink: 0;
    width: 180px;
    height: 240px;
    border-radius: var(--zy-radius);
    overflow: hidden;
    border: 1px solid var(--zy-border);
    background: var(--zy-bg-card);
    transition: border-color 0.2s;
}
.zy-flow-item:hover {
    border-color: var(--zy-border-hover);
}
.zy-flow-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transform: scale(1.05);
    pointer-events: none;
    user-select: none;
}

/* ── Certificate Grid ── */
.zy-cert-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}
.zy-cert-gallery-item {
    border-radius: var(--zy-radius);
    overflow: hidden;
    border: 1px solid var(--zy-border);
    background: var(--zy-bg-card);
    transition: border-color 0.2s;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}
.zy-cert-gallery-item:hover {
    border-color: var(--zy-border-hover);
}
.zy-cert-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transform: scale(1.05);
    pointer-events: none;
    user-select: none;
}

/* ── Flow Animations ── */
@keyframes zy-flow-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes zy-flow-scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════
   SECTION GRID BG
   ═══════════════════════════════════════════════════════ */
.zy-section-grid-bg {
    background: var(--zy-bg);
}

/* ═══════════════════════════════════════════════════════
   SECTION TEMPLATE PART (homepage style)
   ═══════════════════════════════════════════════════════ */
.zy-section {
    padding: 60px 0;
}
.zy-section-header {
    text-align: center;
    margin-bottom: 32px;
}
.zy-section-tag {
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid var(--zy-border);
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--zy-text-dim);
    margin-bottom: 12px;
}
.zy-section-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════
   PAGE BODY (wordpress editor content)
   ═══════════════════════════════════════════════════════ */
.zy-page-body {
    font-size: 14px;
    line-height: 1.8;
    color: var(--zy-text-muted);
}
.zy-page-body p { margin-bottom: 1em; }
.zy-page-body h2, .zy-page-body h3 {
    color: var(--zy-text);
    margin: 1.5em 0 0.5em;
}

/* ═══════════════════════════════════════════════════════
   ZY BUTTONS (reusable)
   ═══════════════════════════════════════════════════════ */
.zy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--zy-radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    line-height: 1;
}
.zy-btn-primary {
    background: var(--zy-primary);
    color: #fff;
}
.zy-btn-primary:hover { background: var(--zy-primary-hover); color: #fff; }
.zy-btn-outline {
    background: transparent;
    border: 1px solid var(--zy-border);
    color: var(--zy-text);
}
.zy-btn-outline:hover {
    border-color: var(--zy-primary);
    color: var(--zy-primary);
}
.zy-btn-lg { padding: 14px 28px; font-size: 15px; }
.zy-btn-sm { padding: 6px 14px; font-size: 12px; }

/* ═══════════════════════════════════════════════════════
   NO CONTENT
   ═══════════════════════════════════════════════════════ */
.zy-no-content {
    text-align: center;
    padding: 40px;
    color: var(--zy-text-dim);
    font-size: 14px;
}
.zy-no-content p { margin: 0; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */

.zy-navbar {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    z-index: 1000;

    transition: all 0.3s ease;

    height: 56px;

}

.zy-navbar.scrolled {

    background: rgba(10, 15, 30, 0.88);

    backdrop-filter: blur(20px);

    border-bottom: 1px solid var(--zy-border);

    box-shadow: 0 1px 20px rgba(0,0,0,0.2);

}



.zy-nav-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    height: 56px;

}



.zy-logo {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--zy-text);

    text-decoration: none;

}

.zy-logo-icon { color: var(--zy-primary-light); width: 24px; height: 24px; }

.zy-logo-main {

    font-size: 16px;

    font-weight: 700;

    background: linear-gradient(135deg, var(--zy-primary-light), var(--zy-accent));

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}



.zy-nav-links { display: none; }

@media (min-width: 768px) { .zy-nav-links { display: flex; } }



.zy-menu {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 2px;

    list-style: none;

    margin: 0;

    padding: 0;

}

.zy-menu li {

    position: relative;

}

.zy-menu li a {

    display: block;

    padding: 6px 10px;

    font-size: 13px;

    color: var(--zy-text-muted);

    border-radius: 6px;

    transition: all 0.2s;

    white-space: nowrap;

    text-decoration: none;

}

.zy-menu li a:hover,

.zy-menu li.current-menu-item > a,

.zy-menu li.current-menu-parent > a {

    color: var(--zy-primary-light);

}



.zy-sub-indicator {

    display: inline-block;

    margin-left: 4px;

    font-size: 10px;

    opacity: 0.5;

    transition: transform 0.2s;

    pointer-events: none;

}

.zy-menu li:hover > a .zy-sub-indicator {

    transform: rotate(180deg);

}



.zy-menu .sub-menu {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius);
    padding: 6px;
    padding-top: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    z-index: 1000;
    list-style: none;
    margin: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    pointer-events: none;
    backdrop-filter: blur(16px);
}
.zy-menu li:hover > .sub-menu,
.zy-menu li.menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.zy-menu li.menu-item-has-children {

    position: relative;

}

.zy-menu li.menu-item-has-children > a {

    cursor: pointer;

    position: relative;

    z-index: 1001;

}

.zy-menu .sub-menu li a {

    display: block;

    padding: 10px 16px;

    font-size: 13px;

    border-radius: 4px;

    color: var(--zy-text-muted);

    transition: all 0.2s;

    white-space: nowrap;

}

.zy-menu .sub-menu li a:hover {

    background: rgba(59, 130, 246, 0.12);

    color: var(--zy-primary-light);

}



.zy-nav-cta { display: none; }

@media (min-width: 768px) { .zy-nav-cta { display: inline-flex; } }



/* Mobile Toggle */

.zy-mobile-toggle {

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

    width: 32px;

    height: 32px;

    background: none;

    border: none;

    cursor: pointer;

    padding: 4px;

}

.zy-mobile-toggle span {

    display: block;

    width: 100%;

    height: 2px;

    background: var(--zy-text-muted);

    border-radius: 1px;

    transition: all 0.3s;

}

.zy-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }

.zy-mobile-toggle.active span:nth-child(2) { opacity: 0; }

.zy-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }



@media (min-width: 768px) { .zy-mobile-toggle { display: none; } }



/* Mobile Menu */

.zy-mobile-menu {

    display: none;

    position: fixed;

    top: 56px;

    left: 0;

    right: 0;

    bottom: 0;

    background: rgba(10, 15, 30, 0.97);

    backdrop-filter: blur(20px);

    padding: 20px;

    z-index: 999;

}

.zy-mobile-menu.open { display: block; }



.zy-mobile-links {

    list-style: none;

    margin: 0;

    padding: 0;

}

.zy-mobile-links li a {

    display: block;

    padding: 12px 16px;

    font-size: 15px;

    color: var(--zy-text-muted);

    border-radius: 8px;

    transition: all 0.2s;

}

.zy-mobile-links li.menu-item-has-children > a::after {

    content: '▾';

    float: right;

    font-size: 12px;

    transition: transform 0.2s;

}

.zy-mobile-links li.sub-open.menu-item-has-children > a::after {

    transform: rotate(180deg);

}

.zy-mobile-links li a:hover { background: rgba(26, 86, 219, 0.1); color: var(--zy-primary-light); }



.zy-mobile-links .sub-menu {

    display: none;

    list-style: none;

    margin: 0;

    padding: 0 0 0 16px;

}

.zy-mobile-links li.sub-open > .sub-menu {

    display: block;

}

.zy-mobile-links .sub-menu li a {

    font-size: 14px;

    padding: 8px 16px;

}



/* ═══════════════════════════════════════════════════════

   HERO

   ═══════════════════════════════════════════════════════ */

.zy-hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}



.zy-hero-fade {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    height: 200px;

    background: linear-gradient(transparent, var(--zy-bg));

    z-index: 1;

}



.zy-hero-content {

    position: relative;

    z-index: 2;

    text-align: center;

    padding-top: 80px;

    max-width: 800px;

}



.zy-hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 6px 16px;

    border-radius: 999px;

    border: 1px solid rgba(59, 130, 246, 0.35);

    background: rgba(26, 86, 219, 0.1);

    margin-bottom: 24px;

}

.zy-badge-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--zy-primary-light);

    animation: zy-pulse 2s infinite;

}

.zy-badge-text {

    color: var(--zy-primary-light);

    font-size: 13px;

    font-weight: 500;

}



.zy-hero-title {

    font-size: 32px;

    font-weight: 800;

    letter-spacing: -0.03em;

    margin-bottom: 20px;

    text-shadow: 0 0 40px var(--zy-glow);

}

@media (min-width: 640px) { .zy-hero-title { font-size: 48px; } }

@media (min-width: 1024px) { .zy-hero-title { font-size: 60px; } }



.zy-hero-desc {

    font-size: 14px;

    color: rgba(241, 245, 249, 0.7);

    max-width: 560px;

    margin: 0 auto 32px;

    line-height: 1.7;

}

@media (min-width: 640px) { .zy-hero-desc { font-size: 16px; } }



.zy-hero-btns {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

}

@media (min-width: 640px) {

    .zy-hero-btns { flex-direction: row; justify-content: center; }

}



/* Slide Nav */

.zy-slide-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin-top: 40px;

}

.zy-slide-prev,

.zy-slide-next {

    background: none;

    border: none;

    color: var(--zy-text-muted);

    cursor: pointer;

    padding: 4px;

    transition: color 0.2s;

}

.zy-slide-prev:hover,

.zy-slide-next:hover { color: var(--zy-primary-light); }



.zy-slide-dots { display: flex; align-items: center; gap: 8px; }

.zy-slide-dot {

    width: 6px;

    height: 6px;

    border-radius: 999px;

    background: var(--zy-text-dim);

    border: none;

    cursor: pointer;

    transition: all 0.3s;

}

.zy-slide-dot.active {

    width: 28px;

    background: var(--zy-primary-light);

}



/* Scroll Hint */

.zy-scroll-hint {

    position: absolute;

    bottom: 24px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 6px;

}

.zy-scroll-hint span {

    font-size: 9px;

    color: var(--zy-text-dim);

    letter-spacing: 2px;

}

.zy-scroll-line {

    width: 1px;

    height: 24px;

    background: linear-gradient(var(--zy-primary-light), transparent);

    animation: zy-pulse 2s infinite;

}



/* ═══════════════════════════════════════════════════════

   ARTICLES - 4x4 Grid

   ═══════════════════════════════════════════════════════ */

.zy-articles-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 16px;

}

@media (min-width: 640px) {

    .zy-articles-grid { grid-template-columns: repeat(2, 1fr); }

}

@media (min-width: 768px) {

    .zy-articles-grid-4col { grid-template-columns: repeat(4, 1fr); }

    .zy-articles-grid:not(.zy-articles-grid-4col) { grid-template-columns: repeat(3, 1fr); }

}



.zy-article-card {

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius-lg);

    overflow: hidden;

    transition: all 0.3s ease;

}

.zy-article-card:hover {

    transform: translateY(-3px);

    border-color: var(--zy-border-hover);

    box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px var(--zy-glow);

}



.zy-article-thumb {

    width: 100%;

    aspect-ratio: 16/10;

    overflow: hidden;

    border-bottom: 1px solid var(--zy-border);

}

.zy-article-thumb-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;

}

.zy-article-card:hover .zy-article-thumb-img {

    transform: scale(1.05);

}



.zy-article-card-inner { padding: 16px; }

.zy-article-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }

.zy-article-cat {

    font-size: 10px;

    padding: 2px 8px;

    border-radius: 999px;

    border: 1px solid rgba(59, 130, 246, 0.25);

    background: rgba(26, 86, 219, 0.08);

    color: var(--zy-primary-light);

}

.zy-article-time { font-size: 10px; color: var(--zy-text-dim); }



.zy-article-title {

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 6px;

    line-height: 1.4;

}

.zy-article-title a {

    color: var(--zy-text);

    transition: color 0.2s;

}

.zy-article-card:hover .zy-article-title a { color: var(--zy-primary-light); }



.zy-article-excerpt {

    font-size: 12px;

    color: var(--zy-text-muted);

    line-height: 1.6;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    line-clamp: 2;

    -webkit-box-orient: vertical;

    box-orient: vertical;

    overflow: hidden;

    margin-bottom: 10px;

}



/* ═══════════════════════════════════════════════════════

   BLOG & SINGLE

   ═══════════════════════════════════════════════════════ */

.zy-blog-wrap { padding-bottom: 60px; }

.zy-blog-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 16px;

}

@media (min-width: 640px) {

    .zy-blog-grid { grid-template-columns: repeat(2, 1fr); }

}

@media (min-width: 768px) {

    .zy-blog-grid { grid-template-columns: repeat(3, 1fr); }

}



.zy-blog-pagination {

    margin-top: 32px;

    text-align: center;

}

.zy-blog-pagination .nav-links { display: flex; justify-content: center; gap: 6px; }

.zy-blog-pagination .page-numbers {

    width: 28px; height: 28px;

    border-radius: 6px;

    border: 1px solid var(--zy-border);

    background: var(--zy-bg-card);

    color: var(--zy-text-muted);

    font-size: 12px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    transition: all 0.2s;

}

.zy-blog-pagination .page-numbers.current {

    background: var(--zy-primary);

    color: #fff;

    border-color: var(--zy-primary);

}

.zy-blog-pagination .page-numbers:hover { border-color: var(--zy-border-hover); color: var(--zy-primary-light); }



   ANIMATIONS

   ═══════════════════════════════════════════════════════ */

@keyframes zy-pulse {

    0%, 100% { opacity: 1; }

    50% { opacity: 0.5; }

}



@keyframes zy-fade-in-up {

    from { opacity: 0; transform: translateY(20px); }

    to   { opacity: 1; transform: translateY(0); }

}



.zy-slide-enter {

    animation: zy-fade-in-up 0.6s ease forwards;

}



/* ═══════════════════════════════════════════════════════

   PAGE HERO (通用页面顶部)

   ═══════════════════════════════════════════════════════ */

.zy-page-hero {

    padding: 120px 0 48px;

    text-align: center;

    position: relative;

    overflow: hidden;

}

@media (min-width: 640px) { .zy-page-hero { padding: 140px 0 64px; } }



.zy-page-hero::before {

    content: '';

    position: absolute;

    top: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 600px;

    height: 600px;

    background: radial-gradient(circle, rgba(26, 86, 219, 0.15) 0%, transparent 70%);

    pointer-events: none;

}



.zy-page-hero .zy-section-tag { margin-bottom: 16px; }



.zy-page-hero-title {

    font-size: 32px;

    font-weight: 800;

    letter-spacing: -0.03em;

    margin-bottom: 12px;

}

@media (min-width: 640px) { .zy-page-hero-title { font-size: 42px; } }



.zy-page-hero-desc {

    font-size: 14px;

    color: var(--zy-text-muted);

    max-width: 480px;

    margin: 0 auto;

    line-height: 1.7;

}

@media (min-width: 640px) { .zy-page-hero-desc { font-size: 16px; } }



/* ── Page Content ────────────────────────────────────── */

.zy-page-wrap { padding: 100px 20px 60px; min-height: 60vh; }

.zy-page-title { font-size: 28px; font-weight: 700; margin-bottom: 24px; }

.zy-page-body { font-size: 15px; line-height: 1.8; color: var(--zy-text-muted); }

.zy-page-body h2, .zy-page-body h3 { color: var(--zy-text); margin: 1.5em 0 0.5em; }

.zy-page-body p { margin-bottom: 1em; }

.zy-page-body img { border-radius: var(--zy-radius); margin: 1em 0; }



/* ═══════════════════════════════════════════════════════

   TIMELINE (关于我们 - 发展历程)

   ═══════════════════════════════════════════════════════ */

.zy-timeline {

    position: relative;

    max-width: 700px;

    margin: 0 auto;

    padding-left: 32px;

}

.zy-timeline::before {

    content: '';

    position: absolute;

    left: 7px;

    top: 0;

    bottom: 0;

    width: 2px;

    background: linear-gradient(to bottom, var(--zy-primary-light), var(--zy-border));

}



.zy-timeline-item {

    position: relative;

    padding-bottom: 28px;

}

.zy-timeline-item:last-child { padding-bottom: 0; }



.zy-timeline-dot {

    position: absolute;

    left: -29px;

    top: 4px;

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: var(--zy-primary-light);

    border: 2px solid var(--zy-bg);

    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);

}



.zy-timeline-year {

    font-size: 12px;

    font-weight: 600;

    color: var(--zy-primary-light);

    display: inline-block;

    padding: 2px 10px;

    border-radius: 999px;

    border: 1px solid rgba(59, 130, 246, 0.25);

    background: rgba(26, 86, 219, 0.08);

    margin-bottom: 6px;

}

.zy-timeline-title {

    font-size: 15px;

    font-weight: 600;

    color: var(--zy-text);

    margin-bottom: 4px;

}

.zy-timeline-desc {

    font-size: 13px;

    color: var(--zy-text-muted);

    line-height: 1.6;

}



/* ═══════════════════════════════════════════════════════

   TEAM (团队风采)

   ═══════════════════════════════════════════════════════ */

.zy-team-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

}

@media (min-width: 640px) { .zy-team-grid { grid-template-columns: repeat(3, 1fr); } }

@media (min-width: 1024px) { .zy-team-grid { grid-template-columns: repeat(4, 1fr); } }



.zy-team-card {

    padding: 24px 16px;

    border-radius: var(--zy-radius-lg);

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    text-align: center;

    transition: all 0.3s;

}

.zy-team-card:hover {

    transform: translateY(-3px);

    border-color: var(--zy-border-hover);

    box-shadow: 0 8px 30px rgba(0,0,0,0.2);

}



.zy-team-avatar {

    width: 72px;

    height: 72px;

    border-radius: 50%;

    margin: 0 auto 14px;

    overflow: hidden;

    border: 2px solid rgba(59, 130, 246, 0.2);

}

.zy-team-avatar img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.zy-team-avatar-placeholder {

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(26, 86, 219, 0.1);

    color: var(--zy-primary-light);

}



.zy-team-name {

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 4px;

    color: var(--zy-text);

}

.zy-team-position {

    font-size: 11px;

    color: var(--zy-primary-light);

    margin-bottom: 8px;

}

.zy-team-desc {

    font-size: 12px;

    color: var(--zy-text-muted);

    line-height: 1.5;

}

.zy-team-social {

    display: flex;

    justify-content: center;

    gap: 8px;

    margin-top: 10px;

}

.zy-team-social a {

    width: 24px;

    height: 24px;

    border-radius: 50%;

    border: 1px solid var(--zy-border);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--zy-text-muted);

    transition: all 0.2s;

}

.zy-team-social a:hover {

    color: var(--zy-primary-light);

    border-color: var(--zy-border-hover);

}



/* ═══════════════════════════════════════════════════════

   PROCESS (服务流程)

   ═══════════════════════════════════════════════════════ */

.zy-process-steps {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

}

@media (min-width: 640px) { .zy-process-steps { grid-template-columns: repeat(3, 1fr); } }

@media (min-width: 1024px) { .zy-process-steps { grid-template-columns: repeat(6, 1fr); } }



.zy-process-step {

    padding: 20px 16px;

    border-radius: var(--zy-radius-lg);

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    text-align: center;

    position: relative;

    transition: all 0.3s;

}

.zy-process-step:hover {

    border-color: var(--zy-border-hover);

    transform: translateY(-2px);

}



.zy-process-num {

    width: 32px;

    height: 32px;

    border-radius: 50%;

    background: rgba(26, 86, 219, 0.1);

    border: 1px solid rgba(59, 130, 246, 0.2);

    color: var(--zy-primary-light);

    font-size: 14px;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 10px;

}

.zy-process-title {

    font-size: 13px;

    font-weight: 600;

    color: var(--zy-text);

    margin-bottom: 4px;

}

.zy-process-desc {

    font-size: 11px;

    color: var(--zy-text-muted);

    line-height: 1.5;

}



/* ═══════════════════════════════════════════════════════

   CASES (客户案例)

   ═══════════════════════════════════════════════════════ */

.zy-filter-bar {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    justify-content: center;

    margin-bottom: 32px;

}

.zy-filter-btn {

    padding: 6px 16px;

    font-size: 12px;

    font-weight: 500;

    border-radius: 999px;

    border: 1px solid var(--zy-border);

    background: var(--zy-bg-card);

    color: var(--zy-text-muted);

    cursor: pointer;

    transition: all 0.2s;

}

.zy-filter-btn:hover,

.zy-filter-btn.active {

    background: var(--zy-primary);

    color: #fff;

    border-color: var(--zy-primary);

}



.zy-cases-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 16px;

}

@media (min-width: 640px) { .zy-cases-grid { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 1024px) { .zy-cases-grid { grid-template-columns: repeat(3, 1fr); } }



.zy-case-card {

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius-lg);

    overflow: hidden;

    transition: all 0.3s;

}

.zy-case-card:hover {

    transform: translateY(-3px);

    border-color: var(--zy-border-hover);

    box-shadow: 0 8px 30px rgba(0,0,0,0.2);

}



.zy-case-thumb {

    width: 100%;

    height: 180px;

    overflow: hidden;

}

.zy-case-thumb img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.3s;

}

.zy-case-card:hover .zy-case-thumb img { transform: scale(1.05); }



.zy-case-body { padding: 16px; }

.zy-case-client {

    font-size: 10px;

    color: var(--zy-primary-light);

    font-weight: 500;

    margin-bottom: 4px;

    display: block;

}

.zy-case-title {

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 6px;

    line-height: 1.4;

}

.zy-case-title a { color: var(--zy-text); transition: color 0.2s; }

.zy-case-card:hover .zy-case-title a { color: var(--zy-primary-light); }



.zy-case-desc {

    font-size: 12px;

    color: var(--zy-text-muted);

    line-height: 1.5;

    margin-bottom: 8px;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    line-clamp: 2;

    -webkit-box-orient: vertical;

    box-orient: vertical;

    overflow: hidden;

}



.zy-case-tags { display: flex; flex-wrap: wrap; gap: 4px; }

.zy-case-tag {

    font-size: 9px;

    padding: 2px 8px;

    border-radius: 999px;

    border: 1px solid rgba(59, 130, 246, 0.15);

    background: rgba(26, 86, 219, 0.05);

    color: var(--zy-primary-lighter);

}



/* ═══════════════════════════════════════════════════════

   CONTACT PAGE (联系我们)

   ═══════════════════════════════════════════════════════ */

.zy-contact-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 40px;

}

@media (min-width: 1024px) {

    .zy-contact-grid { grid-template-columns: 1fr 1.2fr; }

}



.zy-contact-list { margin-top: 8px; }



.zy-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 20px;

}

.zy-contact-icon {

    width: 40px;

    height: 40px;

    border-radius: 10px;

    background: rgba(26, 86, 219, 0.1);

    border: 1px solid rgba(59, 130, 246, 0.15);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--zy-primary-light);

    flex-shrink: 0;

}

.zy-contact-label {

    font-size: 11px;

    color: var(--zy-text-dim);

    display: block;

    margin-bottom: 2px;

}

.zy-contact-value {

    font-size: 14px;

    font-weight: 500;

    color: var(--zy-text);

    text-decoration: none;

    transition: color 0.2s;

}

a.zy-contact-value:hover { color: var(--zy-primary-light); }



.zy-contact-form-wrap {

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius-lg);

    padding: 24px;

}



/* Contact Form */

.zy-contact-form .zy-form-row {

    display: grid;

    grid-template-columns: 1fr;

    gap: 12px;

}

@media (min-width: 480px) {

    .zy-contact-form .zy-form-row { grid-template-columns: 1fr 1fr; }

}



.zy-form-group { margin-bottom: 14px; }

.zy-form-group label {

    display: block;

    font-size: 12px;

    font-weight: 500;

    color: var(--zy-text);

    margin-bottom: 6px;

}

.zy-form-group label .required { color: #ef4444; }



.zy-form-input {

    width: 100%;

    padding: 10px 14px;

    font-size: 13px;

    font-family: var(--zy-font);

    color: var(--zy-text);

    background: rgba(15, 23, 42, 0.6);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius);

    transition: all 0.2s;

    outline: none;

}

.zy-form-input:focus {

    border-color: var(--zy-primary-light);

    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);

}

.zy-form-input::placeholder { color: var(--zy-text-dim); }



select.zy-form-input {

    appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: right 12px center;

    padding-right: 32px;

}



textarea.zy-form-input { resize: vertical; min-height: 100px; }



/* ═══════════════════════════════════════════════════════

   MAP (地图)

   ═══════════════════════════════════════════════════════ */

.zy-map-container {

    width: 100%;

    height: 400px;

    background: var(--zy-bg-card);

    border-top: 1px solid var(--zy-border);

    border-bottom: 1px solid var(--zy-border);

    position: relative;

}

.zy-map-placeholder {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    height: 100%;

    gap: 12px;

    color: var(--zy-text-dim);

}



/* ═══════════════════════════════════════════════════════

   CTA SECTION

   ═══════════════════════════════════════════════════════ */

.zy-cta-section {

    background: var(--zy-bg-card);

    border-top: 1px solid var(--zy-border);

    border-bottom: 1px solid var(--zy-border);

}







/* Logo image in header */

.zy-logo-img {

    height: 28px;

    width: auto;

}



/* ═══════════════════════════════════════════════════════

   SEARCH FORM

   ═══════════════════════════════════════════════════════ */

.zy-search-form {

    display: flex;

    gap: 8px;

    max-width: 400px;

}

.zy-search-input {

    flex: 1;

    padding: 8px 14px;

    font-size: 13px;

    color: var(--zy-text);

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius);

    outline: none;

    font-family: var(--zy-font);

}

.zy-search-input:focus { border-color: var(--zy-primary-light); }



/* ── WordPress Required ──────────────────────────────── */

.wp-block-image img { border-radius: var(--zy-radius); }

.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }



/* ═══════════════════════════════════════════════════════

   BUSINESS PAGES — 商务页面通用组件

   ═══════════════════════════════════════════════════════ */



/* ── Biz Hero ───────────────────────────────────────── */

.zy-biz-hero {

    padding: 120px 0 60px;

    text-align: center;

    position: relative;

    overflow: hidden;

}

@media (min-width: 640px) { .zy-biz-hero { padding: 150px 0 80px; } }



.zy-biz-hero::before {

    content: '';

    position: absolute;

    top: -50%;

    left: 50%;

    transform: translateX(-50%);

    width: 800px;

    height: 800px;

    background: radial-gradient(circle, rgba(26, 86, 219, 0.12) 0%, transparent 60%);

    pointer-events: none;

}

.zy-biz-hero::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    height: 1px;

    background: linear-gradient(90deg, transparent, var(--zy-border), transparent);

}



.zy-biz-hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 6px 16px;

    border-radius: 999px;

    border: 1px solid rgba(59, 130, 246, 0.2);

    background: rgba(26, 86, 219, 0.06);

    font-size: 12px;

    font-weight: 600;

    color: var(--zy-primary-light);

    margin-bottom: 20px;

    letter-spacing: 0.05em;

}

.zy-biz-hero-badge-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--zy-primary-light);

    animation: zy-pulse 2s infinite;

}



.zy-biz-hero-title {

    font-size: 32px;

    font-weight: 800;

    letter-spacing: -0.03em;

    line-height: 1.2;

    margin-bottom: 16px;

}

@media (min-width: 640px) { .zy-biz-hero-title { font-size: 44px; } }



.zy-biz-hero-desc {

    font-size: 15px;

    color: var(--zy-text-muted);

    max-width: 560px;

    margin: 0 auto 32px;

    line-height: 1.7;

}

@media (min-width: 640px) { .zy-biz-hero-desc { font-size: 17px; } }



.zy-biz-hero-stats {

    display: flex;

    justify-content: center;

    gap: 32px;

    flex-wrap: wrap;

}

.zy-biz-hero-stat {

    text-align: center;

}

.zy-biz-hero-stat-value {

    font-size: 28px;

    font-weight: 800;

    background: linear-gradient(135deg, var(--zy-primary-light), #818cf8);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}

.zy-biz-hero-stat-label {

    font-size: 11px;

    color: var(--zy-text-dim);

    margin-top: 2px;

}



/* ── Biz Section ────────────────────────────────────── */

.zy-biz-section {

    padding: 60px 0;

    position: relative;

}

@media (min-width: 640px) { .zy-biz-section { padding: 80px 0; } }



.zy-biz-section-alt {

    background: rgba(15, 23, 42, 0.3);

    border-top: 1px solid var(--zy-border);

    border-bottom: 1px solid var(--zy-border);

}



.zy-biz-section-header {

    text-align: center;

    margin-bottom: 48px;

}

.zy-biz-section-tag {

    display: inline-block;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.1em;

    color: var(--zy-primary-light);

    margin-bottom: 12px;

}

.zy-biz-section-title {

    font-size: 26px;

    font-weight: 800;

    letter-spacing: -0.02em;

    margin-bottom: 12px;

}

@media (min-width: 640px) { .zy-biz-section-title { font-size: 32px; } }

.zy-biz-section-desc {

    font-size: 14px;

    color: var(--zy-text-muted);

    max-width: 500px;

    margin: 0 auto;

    line-height: 1.6;

}



/* ── Feature Cards (大图标卡片) ──────────────────────── */

.zy-feature-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 20px;

}

@media (min-width: 640px) { .zy-feature-grid { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 1024px) { .zy-feature-grid { grid-template-columns: repeat(3, 1fr); } }

.zy-feature-grid.cols-2 { grid-template-columns: 1fr; }

@media (min-width: 640px) { .zy-feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }

.zy-feature-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 1024px) { .zy-feature-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }



.zy-feature-card {

    padding: 32px 24px;

    border-radius: var(--zy-radius-lg);

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    transition: all 0.3s;

    position: relative;

    overflow: hidden;

}

.zy-feature-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 3px;

    background: linear-gradient(90deg, var(--zy-primary), var(--zy-primary-light));

    opacity: 0;

    transition: opacity 0.3s;

}

.zy-feature-card:hover {

    transform: translateY(-4px);

    border-color: var(--zy-border-hover);

    box-shadow: 0 12px 40px rgba(0,0,0,0.25);

}

.zy-feature-card:hover::before { opacity: 1; }



.zy-feature-icon {

    width: 52px;

    height: 52px;

    border-radius: 14px;

    background: rgba(26, 86, 219, 0.1);

    border: 1px solid rgba(59, 130, 246, 0.15);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--zy-primary-light);

    margin-bottom: 18px;

    transition: all 0.3s;

}

.zy-feature-card:hover .zy-feature-icon {

    background: var(--zy-primary);

    color: #fff;

    border-color: var(--zy-primary);

    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.3);

}



.zy-feature-title {

    font-size: 17px;

    font-weight: 700;

    color: var(--zy-text);

    margin-bottom: 8px;

}

.zy-feature-desc {

    font-size: 13px;

    color: var(--zy-text-muted);

    line-height: 1.6;

    margin-bottom: 16px;

}

.zy-feature-list {

    list-style: none;

    padding: 0;

    margin: 0;

}

.zy-feature-list li {

    font-size: 12px;

    color: var(--zy-text-muted);

    padding: 4px 0;

    padding-left: 18px;

    position: relative;

}

.zy-feature-list li::before {

    content: '';

    position: absolute;

    left: 0;

    top: 10px;

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--zy-primary-light);

}



/* ── Glass Card ─────────────────────────────────────── */

.zy-glass-card {

    background: rgba(15, 23, 42, 0.5);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(59, 130, 246, 0.1);

    border-radius: var(--zy-radius-lg);

    padding: 32px;

    transition: all 0.3s;

}

.zy-glass-card:hover {

    border-color: rgba(59, 130, 246, 0.25);

    box-shadow: 0 8px 32px rgba(0,0,0,0.3);

}



/* ── Image + Text Split ─────────────────────────────── */

.zy-split-row {

    display: grid;

    grid-template-columns: 1fr;

    gap: 40px;

    align-items: center;

}

@media (min-width: 768px) { .zy-split-row { grid-template-columns: 1fr 1fr; } }

.zy-split-row.reverse { direction: rtl; }

.zy-split-row.reverse > * { direction: ltr; }



.zy-split-image {

    border-radius: var(--zy-radius-lg);

    overflow: hidden;

    border: 1px solid var(--zy-border);

    box-shadow: 0 8px 32px rgba(0,0,0,0.2);

}

.zy-split-image img { display: block; width: 100%; height: auto; }



.zy-split-content h3 {

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 12px;

    color: var(--zy-text);

}

.zy-split-content p {

    font-size: 14px;

    color: var(--zy-text-muted);

    line-height: 1.7;

    margin-bottom: 12px;

}



/* ── Pricing Table ──────────────────────────────────── */

.zy-pricing-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 20px;

}

@media (min-width: 640px) { .zy-pricing-grid { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 1024px) { .zy-pricing-grid { grid-template-columns: repeat(3, 1fr); } }



.zy-pricing-card {

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius-lg);

    padding: 32px 24px;

    text-align: center;

    transition: all 0.3s;

    position: relative;

}

.zy-pricing-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 12px 40px rgba(0,0,0,0.25);

}

.zy-pricing-card.featured {

    border-color: var(--zy-primary);

    box-shadow: 0 0 0 1px var(--zy-primary);

    background: rgba(26, 86, 219, 0.04);

}

.zy-pricing-badge {

    position: absolute;

    top: -12px;

    left: 50%;

    transform: translateX(-50%);

    padding: 4px 16px;

    border-radius: 999px;

    background: var(--zy-primary);

    color: #fff;

    font-size: 11px;

    font-weight: 700;

}



.zy-pricing-name {

    font-size: 16px;

    font-weight: 700;

    color: var(--zy-text);

    margin-bottom: 8px;

}

.zy-pricing-price {

    font-size: 36px;

    font-weight: 800;

    color: var(--zy-text);

    margin-bottom: 4px;

}

.zy-pricing-price span {

    font-size: 14px;

    font-weight: 400;

    color: var(--zy-text-muted);

}

.zy-pricing-desc {

    font-size: 12px;

    color: var(--zy-text-dim);

    margin-bottom: 20px;

}

.zy-pricing-features {

    list-style: none;

    padding: 0;

    margin: 0 0 24px;

    text-align: left;

}

.zy-pricing-features li {

    font-size: 13px;

    color: var(--zy-text-muted);

    padding: 6px 0;

    padding-left: 22px;

    position: relative;

    border-bottom: 1px solid rgba(255,255,255,0.03);

}

.zy-pricing-features li::before {

    content: '✓';

    position: absolute;

    left: 0;

    color: var(--zy-primary-light);

    font-weight: 700;

    font-size: 11px;

}



/* ── FAQ Accordion (Pure CSS) ───────────────────────── */

.zy-faq-list { max-width: 700px; margin: 0 auto; }

.zy-faq-item {

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius);

    margin-bottom: 10px;

    overflow: hidden;

    background: var(--zy-bg-card);

    transition: all 0.2s;

}

.zy-faq-item:hover { border-color: var(--zy-border-hover); }



.zy-faq-q {

    width: 100%;

    padding: 16px 44px 16px 18px;

    font-size: 14px;

    font-weight: 600;

    color: var(--zy-text);

    background: none;

    border: none;

    cursor: pointer;

    text-align: left;

    position: relative;

    font-family: var(--zy-font);

    line-height: 1.5;

}

.zy-faq-q::after {

    content: '+';

    position: absolute;

    right: 16px;

    top: 50%;

    transform: translateY(-50%);

    font-size: 18px;

    font-weight: 300;

    color: var(--zy-text-muted);

    transition: transform 0.3s;

}

.zy-faq-item.open .zy-faq-q::after { transform: translateY(-50%) rotate(45deg); }



.zy-faq-a {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.35s ease, padding 0.35s ease;

}

.zy-faq-item.open .zy-faq-a {

    max-height: 300px;

    padding: 0 18px 16px;

}

.zy-faq-a p {

    font-size: 13px;

    color: var(--zy-text-muted);

    line-height: 1.7;

    margin: 0;

}



/* ── Testimonial Cards ──────────────────────────────── */

.zy-testimonial-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 20px;

}

@media (min-width: 640px) { .zy-testimonial-grid { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 1024px) { .zy-testimonial-grid { grid-template-columns: repeat(3, 1fr); } }



.zy-testimonial-card {

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius-lg);

    padding: 24px;

    transition: all 0.3s;

}

.zy-testimonial-card:hover {

    border-color: var(--zy-border-hover);

    box-shadow: 0 8px 30px rgba(0,0,0,0.2);

}

.zy-testimonial-stars {

    color: #f59e0b;

    font-size: 14px;

    letter-spacing: 2px;

    margin-bottom: 12px;

}

.zy-testimonial-text {

    font-size: 13px;

    color: var(--zy-text-muted);

    line-height: 1.7;

    font-style: italic;

    margin-bottom: 16px;

}

.zy-testimonial-author {

    display: flex;

    align-items: center;

    gap: 10px;

}

.zy-testimonial-avatar {

    width: 36px;

    height: 36px;

    border-radius: 50%;

    background: rgba(26, 86, 219, 0.15);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

    font-weight: 700;

    color: var(--zy-primary-light);

}

.zy-testimonial-name {

    font-size: 13px;

    font-weight: 600;

    color: var(--zy-text);

}

.zy-testimonial-role {

    font-size: 11px;

    color: var(--zy-text-dim);

}



/* ── Value Props (价值主张条) ────────────────────────── */

.zy-value-bar {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

}

@media (min-width: 640px) { .zy-value-bar { grid-template-columns: repeat(4, 1fr); } }



.zy-value-item {

    text-align: center;

    padding: 20px 12px;

    border-radius: var(--zy-radius);

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    transition: all 0.3s;

}

.zy-value-item:hover {

    border-color: var(--zy-border-hover);

    transform: translateY(-2px);

}

.zy-value-icon {

    width: 40px;

    height: 40px;

    margin: 0 auto 10px;

    border-radius: 10px;

    background: rgba(26, 86, 219, 0.1);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--zy-primary-light);

}

.zy-value-title {

    font-size: 13px;

    font-weight: 600;

    color: var(--zy-text);

    margin-bottom: 4px;

}

.zy-value-desc {

    font-size: 11px;

    color: var(--zy-text-dim);

    line-height: 1.4;

}



/* ── Certificates Grid ──────────────────────────────── */

.zy-cert-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

}

@media (min-width: 640px) { .zy-cert-grid { grid-template-columns: repeat(3, 1fr); } }

@media (min-width: 1024px) { .zy-cert-grid { grid-template-columns: repeat(4, 1fr); } }



.zy-cert-card {

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius-lg);

    padding: 24px 16px;

    text-align: center;

    transition: all 0.3s;

    cursor: pointer;

}

.zy-cert-card:hover {

    transform: translateY(-3px);

    border-color: var(--zy-border-hover);

    box-shadow: 0 8px 30px rgba(0,0,0,0.2);

}

.zy-cert-icon {

    width: 56px;

    height: 56px;

    margin: 0 auto 14px;

    border-radius: 50%;

    background: rgba(26, 86, 219, 0.08);

    border: 2px solid rgba(59, 130, 246, 0.15);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--zy-primary-light);

}

.zy-cert-name {

    font-size: 14px;

    font-weight: 600;

    color: var(--zy-text);

    margin-bottom: 4px;

}

.zy-cert-issuer {

    font-size: 11px;

    color: var(--zy-text-dim);

    margin-bottom: 4px;

}

.zy-cert-date {

    font-size: 10px;

    color: var(--zy-primary-light);

    padding: 2px 10px;

    border-radius: 999px;

    border: 1px solid rgba(59, 130, 246, 0.15);

    display: inline-block;

}



/* ── Milestone Timeline (横向) ──────────────────────── */

.zy-milestone-track {

    display: flex;

    overflow-x: auto;

    gap: 0;

    padding: 20px 0;

    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;

}

.zy-milestone-track::-webkit-scrollbar { height: 4px; }

.zy-milestone-track::-webkit-scrollbar-thumb { background: var(--zy-border); border-radius: 2px; }



.zy-milestone-item {

    flex: 0 0 200px;

    scroll-snap-align: start;

    text-align: center;

    position: relative;

    padding: 0 16px;

}

.zy-milestone-item::after {

    content: '';

    position: absolute;

    top: 20px;

    left: 50%;

    right: -50%;

    height: 2px;

    background: var(--zy-border);

    z-index: 0;

}

.zy-milestone-item:last-child::after { display: none; }



.zy-milestone-dot {

    width: 14px;

    height: 14px;

    border-radius: 50%;

    background: var(--zy-primary);

    border: 3px solid var(--zy-bg);

    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.2);

    margin: 0 auto 14px;

    position: relative;

    z-index: 1;

}

.zy-milestone-year {

    font-size: 18px;

    font-weight: 800;

    color: var(--zy-primary-light);

    margin-bottom: 4px;

}

.zy-milestone-title {

    font-size: 13px;

    font-weight: 600;

    color: var(--zy-text);

    margin-bottom: 4px;

}

.zy-milestone-desc {

    font-size: 11px;

    color: var(--zy-text-dim);

    line-height: 1.4;

}



/* ── CTA Banner ─────────────────────────────────────── */

.zy-cta-banner {

    background: linear-gradient(135deg, rgba(26, 86, 219, 0.1), rgba(99, 102, 241, 0.08));

    border: 1px solid rgba(59, 130, 246, 0.15);

    border-radius: var(--zy-radius-lg);

    padding: 40px 24px;

    text-align: center;

    position: relative;

    overflow: hidden;

}

.zy-cta-banner::before {

    content: '';

    position: absolute;

    top: -100px;

    right: -100px;

    width: 300px;

    height: 300px;

    background: radial-gradient(circle, rgba(26, 86, 219, 0.15), transparent);

    pointer-events: none;

}

.zy-cta-banner h3 {

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 8px;

    position: relative;

}

.zy-cta-banner p {

    font-size: 14px;

    color: var(--zy-text-muted);

    margin-bottom: 20px;

    position: relative;

}

.zy-cta-banner .zy-btn { position: relative; }



/* ── Tab Switcher (Pure CSS) ────────────────────────── */

.zy-tabs { margin-top: 32px; }

.zy-tab-nav {

    display: flex;

    gap: 4px;

    padding: 4px;

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius);

    margin-bottom: 24px;

    overflow-x: auto;

}

.zy-tab-btn {

    flex: 1;

    padding: 10px 16px;

    font-size: 13px;

    font-weight: 600;

    color: var(--zy-text-muted);

    background: none;

    border: none;

    border-radius: calc(var(--zy-radius) - 2px);

    cursor: pointer;

    white-space: nowrap;

    transition: all 0.2s;

    font-family: var(--zy-font);

}

.zy-tab-btn.active,

.zy-tab-btn:hover {

    background: var(--zy-primary);

    color: #fff;

}



.zy-tab-panel { display: none; }

.zy-tab-panel.active { display: block; animation: zy-fade-in-up 0.4s ease; }



/* ── Service Detail Row ─────────────────────────────── */

.zy-service-detail {

    display: grid;

    grid-template-columns: 1fr;

    gap: 32px;

    align-items: center;

    padding: 32px 0;

    border-bottom: 1px solid var(--zy-border);

}

.zy-service-detail:last-child { border-bottom: none; }

@media (min-width: 768px) { .zy-service-detail { grid-template-columns: 1fr 1fr; } }



.zy-service-detail-visual {

    border-radius: var(--zy-radius-lg);

    overflow: hidden;

    border: 1px solid var(--zy-border);

    background: var(--zy-bg-card);

    aspect-ratio: 4/3;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

}

.zy-service-detail-visual img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.zy-service-detail-icon {

    width: 80px;

    height: 80px;

    border-radius: 20px;

    background: rgba(26, 86, 219, 0.1);

    border: 1px solid rgba(59, 130, 246, 0.15);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--zy-primary-light);

}



.zy-service-detail-info h3 {

    font-size: 20px;

    font-weight: 700;

    color: var(--zy-text);

    margin-bottom: 8px;

}

.zy-service-detail-info p {

    font-size: 14px;

    color: var(--zy-text-muted);

    line-height: 1.7;

    margin-bottom: 16px;

}

.zy-service-detail-info .zy-feature-list { margin-bottom: 16px; }



/* ── Number Highlight ───────────────────────────────── */

.zy-number-highlight {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

}

@media (min-width: 640px) { .zy-number-highlight { grid-template-columns: repeat(4, 1fr); } }



.zy-number-card {

    text-align: center;

    padding: 24px 12px;

    border-radius: var(--zy-radius);

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    transition: all 0.3s;

}

.zy-number-card:hover {

    border-color: var(--zy-border-hover);

    transform: translateY(-2px);

}

.zy-number-value {

    font-size: 32px;

    font-weight: 800;

    background: linear-gradient(135deg, var(--zy-primary-light), #818cf8);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    line-height: 1;

    margin-bottom: 6px;

}

.zy-number-label {

    font-size: 12px;

    color: var(--zy-text-dim);

}



/* ── Design Showcase Grid ───────────────────────────── */

.zy-showcase-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

}

@media (min-width: 640px) { .zy-showcase-grid { grid-template-columns: repeat(3, 1fr); } }

@media (min-width: 1024px) { .zy-showcase-grid { grid-template-columns: repeat(4, 1fr); } }



.zy-showcase-item {

    border-radius: var(--zy-radius);

    overflow: hidden;

    border: 1px solid var(--zy-border);

    aspect-ratio: 1;

    background: var(--zy-bg-card);

    transition: all 0.3s;

    cursor: pointer;

    position: relative;

}

.zy-showcase-item:hover {

    transform: scale(1.03);

    border-color: var(--zy-border-hover);

    box-shadow: 0 8px 30px rgba(0,0,0,0.3);

}

.zy-showcase-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.zy-showcase-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);

    display: flex;

    align-items: flex-end;

    padding: 16px;

    opacity: 0;

    transition: opacity 0.3s;

}

.zy-showcase-item:hover .zy-showcase-overlay { opacity: 1; }

.zy-showcase-overlay span {

    font-size: 12px;

    font-weight: 600;

    color: #fff;

}



/* ── Custom Solution Cards ──────────────────────────── */

.zy-solution-card {

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius-lg);

    padding: 28px;

    transition: all 0.3s;

    display: flex;

    gap: 20px;

    align-items: flex-start;

}

.zy-solution-card:hover {

    border-color: var(--zy-border-hover);

    box-shadow: 0 8px 30px rgba(0,0,0,0.2);

    transform: translateY(-2px);

}

.zy-solution-icon {

    width: 48px;

    height: 48px;

    border-radius: 12px;

    background: rgba(26, 86, 219, 0.1);

    border: 1px solid rgba(59, 130, 246, 0.15);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--zy-primary-light);

    flex-shrink: 0;

}

.zy-solution-info h4 {

    font-size: 16px;

    font-weight: 700;

    color: var(--zy-text);

    margin-bottom: 6px;

}

.zy-solution-info p {

    font-size: 13px;

    color: var(--zy-text-muted);

    line-height: 1.6;

    margin: 0;

}



/* ── Platform Cards (GitHub / Gitee) ────────────────── */

.zy-platform-cards {

    display: grid;

    grid-template-columns: 1fr;

    gap: 16px;

    max-width: 640px;

    margin: 0 auto;

}

@media (min-width: 640px) { .zy-platform-cards { grid-template-columns: repeat(2, 1fr); } }



.zy-platform-card {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    padding: 32px 20px;

    border-radius: var(--zy-radius-lg);

    border: 1px solid var(--zy-border);

    background: var(--zy-bg-card);

    transition: all 0.3s;

    text-decoration: none;

}

.zy-platform-card:hover {

    transform: translateY(-4px);

    border-color: var(--zy-border-hover);

    box-shadow: 0 12px 40px rgba(0,0,0,0.3);

}

.zy-platform-github:hover { border-color: #6e7681; }

.zy-platform-gitee:hover { border-color: #c71d23; }



.zy-platform-card-icon {

    width: 72px;

    height: 72px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 16px;

    transition: all 0.3s;

}

.zy-platform-github .zy-platform-card-icon {

    background: rgba(110, 118, 129, 0.1);

    color: #f0f6fc;

}

.zy-platform-gitee .zy-platform-card-icon {

    background: rgba(199, 29, 35, 0.1);

    color: #c71d23;

}

.zy-platform-card-title {

    font-size: 20px;

    font-weight: 700;

    color: var(--zy-text);

    margin-bottom: 6px;

}

.zy-platform-card-desc {

    font-size: 13px;

    color: var(--zy-text-muted);

    margin-bottom: 8px;

}

.zy-platform-card-link {

    font-size: 12px;

    color: var(--zy-primary-light);

    font-family: monospace;

}



/* ── Language Bar ───────────────────────────────────── */

.zy-lang-bar { max-width: 600px; margin: 0 auto; }

.zy-lang-item { margin-bottom: 14px; }

.zy-lang-info {

    display: flex;

    justify-content: space-between;

    margin-bottom: 6px;

}

.zy-lang-name {

    font-size: 13px;

    font-weight: 600;

    color: var(--zy-text);

}

.zy-lang-count {

    font-size: 12px;

    color: var(--zy-text-dim);

}

.zy-lang-bar-track {

    height: 8px;

    border-radius: 999px;

    background: rgba(59, 130, 246, 0.08);

    overflow: hidden;

}

.zy-lang-bar-fill {

    height: 100%;

    border-radius: 999px;

    transition: width 0.6s ease;

}



/* ── Repo Grid ──────────────────────────────────────── */

.zy-repo-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 12px;

}

@media (min-width: 640px) { .zy-repo-grid { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 1024px) { .zy-repo-grid { grid-template-columns: repeat(3, 1fr); } }



.zy-repo-card {

    display: flex;

    flex-direction: column;

    padding: 18px;

    border-radius: var(--zy-radius);

    border: 1px solid var(--zy-border);

    background: var(--zy-bg-card);

    transition: all 0.3s;

    text-decoration: none;

    min-height: 120px;

}

.zy-repo-card:hover {

    transform: translateY(-2px);

    border-color: var(--zy-border-hover);

    box-shadow: 0 8px 25px rgba(0,0,0,0.2);

}

.zy-repo-card-header {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 8px;

}

.zy-repo-card-icon {

    color: var(--zy-text-dim);

    flex-shrink: 0;

}

.zy-repo-card-name {

    font-size: 14px;

    font-weight: 600;

    color: var(--zy-primary-light);

    word-break: break-all;

}

.zy-repo-fork-badge {

    font-size: 10px;

    padding: 1px 6px;

    border-radius: 999px;

    border: 1px solid var(--zy-border);

    color: var(--zy-text-dim);

    flex-shrink: 0;

}

.zy-repo-card-desc {

    font-size: 12px;

    color: var(--zy-text-muted);

    line-height: 1.5;

    flex: 1;

    margin-bottom: 10px;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    line-clamp: 2;

    -webkit-box-orient: vertical;

    box-orient: vertical;

    overflow: hidden;

}

.zy-repo-card-meta {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 11px;

    color: var(--zy-text-dim);

}

.zy-repo-lang {

    display: flex;

    align-items: center;

    gap: 4px;

}

.zy-repo-lang-dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    display: inline-block;

}

.zy-repo-updated { white-space: nowrap; }



/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 639px) {

    .zy-biz-hero-stats { gap: 20px; }

    .zy-biz-hero-stat-value { font-size: 22px; }

    .zy-solution-card { flex-direction: column; align-items: center; text-align: center; }

    .zy-service-detail-visual { aspect-ratio: 16/9; }

    .zy-repo-grid { grid-template-columns: 1fr; }

}

/* âââââââââââââââââââââââââââââââââââââââââ

   FOOTER - Single Row Layout

   âââââââââââââââââââââââââââââââââââââââââ */

.zy-footer {

    background: var(--zy-bg-card);

    border-top: 1px solid var(--zy-border);

    padding: 48px 0 0;

    margin-top: 60px;

}



.zy-footer-main {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 40px;
}



.zy-footer-brand {

    flex: 0 0 240px;

    min-width: 180px;

}



.zy-footer-logo {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 16px;

    font-weight: 700;

    color: var(--zy-text);

    margin-bottom: 8px;

}
.zy-footer-logo-img {
    height: 64px;
    width: auto;
    display: block;
}
.zy-footer-logo svg { color: var(--zy-primary); }

.zy-footer-desc { font-size: 12px; color: var(--zy-text-muted); line-height: 1.6; }



.zy-footer-qr {

    margin-top: 16px;

    display: flex;

    align-items: center;

    gap: 8px;

}

.zy-footer-qr img { width: 60px; height: 60px; border-radius: 6px; }

.zy-footer-qr span { font-size: 11px; color: var(--zy-text-muted); }



.zy-footer-cols {

    display: flex;

    gap: 32px;

    flex: 1;

}

.zy-footer-col { flex: 1; min-width: 0; }

.zy-footer-col h3 {

    font-size: 13px;

    font-weight: 700;

    color: var(--zy-text);

    margin: 0 0 12px;

    text-transform: uppercase;

    letter-spacing: 0.05em;

}

.zy-footer-col ul { list-style: none; margin: 0; padding: 0; }

.zy-footer-col li { margin-bottom: 8px; }

.zy-footer-col a, .zy-footer-col span {

    font-size: 12px;

    color: var(--zy-text-muted);

    text-decoration: none;

    transition: color 0.2s;

}

.zy-footer-col a:hover { color: var(--zy-primary); }



/* Bottom Bar */

.zy-footer-bottom {

    border-top: 1px solid var(--zy-border);

    padding: 16px 0;

}

.zy-footer-bottom-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 16px;

    flex-wrap: wrap;

}

.zy-copyright {

    font-size: 11px;

    color: var(--zy-text-dim);

    display: flex;

    align-items: center;

    gap: 8px;

    flex-wrap: wrap;

}

.zy-copyright a { color: var(--zy-text-dim); text-decoration: none; }

.zy-copyright a:hover { color: var(--zy-primary); }



.zy-social-links { display: flex; gap: 6px; }

.zy-social-links a {

    width: 28px; height: 28px;

    border-radius: 50%;

    border: 1px solid var(--zy-border);

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--zy-text-dim);

    transition: all 0.2s;

}

.zy-social-links a:hover {

    color: var(--zy-primary);

    border-color: var(--zy-primary);

    transform: translateY(-2px);

}



.zy-friend-links {

    margin-top: 12px;

    font-size: 11px;

    color: var(--zy-text-dim);

    display: flex;

    align-items: center;

    gap: 8px;

    flex-wrap: wrap;

}

.zy-friend-links a { color: var(--zy-text-dim); text-decoration: none; }

.zy-friend-links a:hover { color: var(--zy-primary); }



.zy-footer-custom-text { margin-top: 12px; font-size: 11px; color: var(--zy-text-dim); }



@media (max-width: 768px) {

    .zy-footer-main { flex-direction: column; gap: 24px; }

    .zy-footer-brand { flex: none; }

    .zy-footer-cols { gap: 16px; }

    .zy-footer-bottom-row { flex-direction: column; text-align: center; }

}



/* BLOG & SINGLE */

/* âââââââââââââââââââââââââââââââââââââââââ

   CMS POST LAYOUT

   âââââââââââââââââââââââââââââââââââââââââ */



.zy-progress-bar {

    position: fixed;

    top: 0;

    left: 0;

    width: 0%;

    height: 3px;

    background: linear-gradient(90deg, var(--zy-primary), var(--zy-accent));

    z-index: 10000;

    transition: width 0.1s linear;

}



/* Header (simple clean) */

.zy-cms-header {

    background: var(--zy-bg-card);

    border-bottom: 1px solid var(--zy-border);

    padding: 100px 0 32px;

}

.zy-cms-cats { display: flex; gap: 8px; margin-bottom: 12px; }

.zy-cms-cats a {

    display: inline-block;

    padding: 3px 12px;

    background: rgba(59, 130, 246, 0.1);

    color: var(--zy-primary);

    border-radius: 4px;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;

}

.zy-cms-cats a:hover { background: var(--zy-primary); color: #fff; }

.zy-cms-title {

    font-size: 28px;

    font-weight: 800;

    color: var(--zy-text);

    line-height: 1.35;

    margin: 0 0 12px;

}

.zy-cms-meta {

    font-size: 13px;

    color: var(--zy-text-muted);

    display: flex;

    align-items: center;

    gap: 4px;

    flex-wrap: wrap;

}

.zy-cms-sep { opacity: 0.3; }



/* Body layout */

.zy-cms-body { padding: 32px 0; }



.zy-cms-layout {

    display: flex;

    gap: 32px;

    align-items: flex-start;

}

.zy-cms-content-wrap {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    background: var(--zy-bg-card);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius-lg);
    padding: 32px;
}



/* Sidebar */

.zy-cms-sidebar {

    width: 300px;

    flex-shrink: 0;

}

.zy-cms-sidebar-inner {

    position: sticky;

    top: 80px;

}



.zy-cms-widget {

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius);

    padding: 16px 20px;

    margin-bottom: 16px;

}

.zy-cms-widget-title {

    font-size: 13px;

    font-weight: 700;

    color: var(--zy-text);

    margin: 0 0 12px;

    padding-bottom: 8px;

    border-bottom: 2px solid var(--zy-primary);

}

.zy-cms-widget-list { list-style: none; margin: 0; padding: 0; }

.zy-cms-widget-list li {

    padding: 8px 0;

    border-bottom: 1px solid rgba(255,255,255,0.03);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 8px;

}

.zy-cms-widget-list li:last-child { border-bottom: none; }

.zy-cms-widget-list a {

    font-size: 13px;

    color: var(--zy-text-muted);

    text-decoration: none;

    transition: color 0.15s;

    flex: 1;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

}

.zy-cms-widget-list a:hover { color: var(--zy-primary); }

.zy-cms-widget-date {

    font-size: 11px;

    color: var(--zy-text-dim);

    flex-shrink: 0;

}

.zy-cms-widget-list .cat-item { display: flex !important; }

.zy-cms-widget-list .cat-item a { flex: 1; }

.zy-cms-widget-list .cat-item span {

    font-size: 11px;

    color: var(--zy-text-dim);

}



.zy-cms-tagcloud { display: flex; flex-wrap: wrap; gap: 6px; }

.zy-cms-tagcloud a {

    display: inline-block;

    padding: 3px 10px;

    background: var(--zy-bg);

    border: 1px solid var(--zy-border);

    border-radius: 4px;

    font-size: 11px !important;

    color: var(--zy-text-muted);

    text-decoration: none;

    transition: all 0.15s;

}

.zy-cms-tagcloud a:hover { background: var(--zy-primary); color: #fff; border-color: var(--zy-primary); }



/* Content with border container */

.zy-cms-content {

    font-size: 15px;

    line-height: 1.85;

    color: var(--zy-text-muted);

}

.zy-cms-content h2 {

    font-size: 22px;

    font-weight: 700;

    color: var(--zy-text);

    margin: 2em 0 0.7em;

    padding-bottom: 8px;

    border-bottom: 2px solid var(--zy-primary);

    scroll-margin-top: 80px;

}

.zy-cms-content h3 {

    font-size: 18px;

    font-weight: 700;

    color: var(--zy-text);

    margin: 1.8em 0 0.5em;

    scroll-margin-top: 80px;

}

.zy-cms-content h4 { font-size: 16px; font-weight: 600; color: var(--zy-text); margin: 1.5em 0 0.4em; }

.zy-cms-content p { margin-bottom: 1.2em; }

.zy-cms-content a { color: var(--zy-primary); text-decoration: underline; text-underline-offset: 2px; }

.zy-cms-content a:hover { color: var(--zy-primary-light); }

.zy-cms-content ul, .zy-cms-content ol { margin: 0 0 1.2em 1.5em; }

.zy-cms-content li { margin-bottom: 0.5em; }

.zy-cms-content blockquote {

    margin: 1.5em 0;

    padding: 16px 24px;

    border-left: 4px solid var(--zy-primary);

    background: rgba(26, 86, 219, 0.04);

    border-radius: 0 var(--zy-radius) var(--zy-radius) 0;

    font-style: italic;

    color: var(--zy-text);

}

.zy-cms-content img {

    border-radius: var(--zy-radius);

    margin: 1.5em 0;

    max-width: 100%;

    height: auto;

}

.zy-cms-content pre {

    background: #0b1120;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: var(--zy-radius);

    padding: 20px;

    overflow-x: auto;

    font-size: 13px;

    line-height: 1.7;

    margin: 1.2em 0;

    color: #e2e8f0;

}

.zy-cms-content code {

    background: rgba(26, 86, 219, 0.08);

    padding: 2px 6px;

    border-radius: 4px;

    font-size: 13px;

    color: var(--zy-primary);

}

.zy-cms-content pre code { background: none; padding: 0; color: inherit; font-size: inherit; }

.zy-cms-content table {

    width: 100%;

    border-collapse: collapse;

    margin: 1.5em 0;

    font-size: 14px;

}

.zy-cms-content th, .zy-cms-content td {

    padding: 10px 14px;

    border: 1px solid var(--zy-border);

    text-align: left;

}

.zy-cms-content th { background: rgba(26, 86, 219, 0.05); font-weight: 600; color: var(--zy-text); }



/* TOC */

.zy-cms-toc {

    background: rgba(26, 86, 219, 0.04);

    border: 1px solid var(--zy-border);

    border-left: 3px solid var(--zy-primary);

    border-radius: var(--zy-radius);

    margin: 0 0 24px;

    padding: 14px 18px;

}

.zy-cms-toc-header {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--zy-text);

    font-weight: 600;

    font-size: 13px;

    cursor: pointer;

}

.zy-cms-toc-header svg { color: var(--zy-primary); flex-shrink: 0; }

.zy-cms-toc-toggle {

    margin-left: auto;

    background: none;

    border: 1px solid var(--zy-border);

    border-radius: 4px;

    padding: 2px 10px;

    font-size: 11px;

    color: var(--zy-text-muted);

    cursor: pointer;

    transition: all 0.2s;

}

.zy-cms-toc-toggle:hover { border-color: var(--zy-primary); color: var(--zy-primary); }

.zy-cms-toc-list { margin-top: 10px; display: block; }

.zy-cms-toc-list.collapsed { display: none; }

.zy-cms-toc-list a {

    display: block;

    padding: 4px 0;

    font-size: 13px;

    color: var(--zy-text-muted);

    text-decoration: none;

    line-height: 1.5;

    border-left: 2px solid transparent;

    padding-left: 8px;

}

.zy-cms-toc-list a:hover { color: var(--zy-primary); border-left-color: var(--zy-primary); }

.zy-cms-toc-list a.toc-h3 { padding-left: 24px; font-size: 12px; }

.zy-cms-toc-list a.toc-active { color: var(--zy-primary); border-left-color: var(--zy-primary); font-weight: 600; }



/* Tags */

.zy-cms-tags {

    display: flex;

    gap: 8px;

    flex-wrap: wrap;

    margin: 32px 0 0;

    padding: 16px 0;

    border-top: 1px solid var(--zy-border);

}

.zy-cms-tags a {

    display: inline-block;

    padding: 4px 12px;

    background: var(--zy-bg);

    border: 1px solid var(--zy-border);

    border-radius: 4px;

    font-size: 12px;

    color: var(--zy-text-muted);

    text-decoration: none;

    transition: all 0.15s;

}

.zy-cms-tags a:hover { background: var(--zy-primary); color: #fff; border-color: var(--zy-primary); }



/* Share */

.zy-cms-share {

    display: flex;

    align-items: center;

    gap: 8px;

    margin: 16px 0 0;

    padding: 12px 0;

    border-bottom: 1px solid var(--zy-border);

}

.zy-cms-share span { font-size: 12px; color: var(--zy-text-muted); font-weight: 500; }

.zy-cms-share a, .zy-cms-copy-link {

    display: inline-block;

    padding: 4px 12px;

    border: 1px solid var(--zy-border);

    border-radius: 4px;

    font-size: 12px;

    color: var(--zy-text-muted);

    text-decoration: none;

    background: none;

    cursor: pointer;

    transition: all 0.15s;

}

.zy-cms-share a:hover, .zy-cms-copy-link:hover { border-color: var(--zy-primary); color: var(--zy-primary); }



/* Post Nav */

.zy-cms-post-nav {

    display: flex;

    gap: 12px;

    margin: 24px 0;

}

.zy-cms-nav-prev, .zy-cms-nav-next {

    flex: 1;

    padding: 14px 18px;

    background: var(--zy-bg);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius);

    text-decoration: none;

    transition: all 0.15s;

}

.zy-cms-nav-next { text-align: right; }

.zy-cms-nav-prev:hover, .zy-cms-nav-next:hover { border-color: var(--zy-primary); }

.zy-cms-nav-label { font-size: 11px; color: var(--zy-text-dim); display: block; margin-bottom: 4px; }

.zy-cms-nav-title {

    font-size: 13px;

    font-weight: 600;

    color: var(--zy-text);

    line-height: 1.4;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    line-clamp: 2;

    -webkit-box-orient: vertical;

    box-orient: vertical;

    overflow: hidden;

}



/* Author Box */

.zy-cms-author-box {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 20px;

    background: var(--zy-bg);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius);

    margin: 24px 0;

}

.zy-cms-author-box img.avatar { border-radius: 50%; width: 48px; height: 48px; }

.zy-cms-author-box strong { font-size: 14px; color: var(--zy-text); display: block; margin-bottom: 4px; }

.zy-cms-author-box p { margin: 0; font-size: 12px; color: var(--zy-text-muted); line-height: 1.5; }



/* Hot & Recent Docs */

.zy-cms-hot-recent {

    display: flex;

    gap: 24px;

    margin: 32px 0;

}

.zy-cms-hot-section, .zy-cms-recent-section {

    flex: 1;

    background: var(--zy-bg);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius);

    padding: 16px 20px;

}

.zy-cms-hot-section h3, .zy-cms-recent-section h3 {

    font-size: 14px;

    font-weight: 700;

    color: var(--zy-text);

    margin: 0 0 12px;

    padding-bottom: 8px;

    border-bottom: 2px solid var(--zy-primary);

    display: flex;

    align-items: center;

    gap: 6px;

}

.zy-cms-hot-section h3 svg, .zy-cms-recent-section h3 svg { color: var(--zy-primary); flex-shrink: 0; }

.zy-cms-hot-section ul, .zy-cms-recent-section ul { list-style: none; margin: 0; padding: 0; }

.zy-cms-hot-section li, .zy-cms-recent-section li {

    padding: 6px 0;

    border-bottom: 1px solid rgba(255,255,255,0.03);

}

.zy-cms-hot-section li:last-child, .zy-cms-recent-section li:last-child { border-bottom: none; }

.zy-cms-hot-section a, .zy-cms-recent-section a {

    font-size: 13px;

    color: var(--zy-text-muted);

    text-decoration: none;

    transition: color 0.15s;

}

.zy-cms-hot-section a:hover, .zy-cms-recent-section a:hover { color: var(--zy-primary); }



/* Comments inside CMS */

.zy-cms-comments { margin: 32px 0; }



/* Back to Top */

.zy-back-top {

    position: fixed;

    bottom: 32px;

    right: 32px;

    width: 44px;

    height: 44px;

    border-radius: 50%;

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    color: var(--zy-text-muted);

    cursor: pointer;

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 9999;

    transition: all 0.2s;

    box-shadow: 0 4px 16px rgba(0,0,0,0.2);

}

.zy-back-top.visible { display: flex; }

.zy-back-top:hover {

    background: var(--zy-primary);

    color: #fff;

    border-color: var(--zy-primary);

    transform: translateY(-3px);

}



/* Three.js Spider Web Background (global, fixed) */
#zy-three-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
#zy-three-bg canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}
/* Ensure all page content sits above the 3D background */
.zy-site {
    position: relative;
    z-index: 1;
}



@media (max-width: 820px) {

    .zy-cms-layout { flex-direction: column; }

    .zy-cms-sidebar { width: 100%; }

    .zy-cms-hot-recent { flex-direction: column; }

    .zy-cms-post-nav { flex-direction: column; }

}



/* âââââââââââââââââââââââââââââââââââââââââ

   COMMENTS

   âââââââââââââââââââââââââââââââââââââââââ */



.zy-cms-comments .comment-list { list-style: none; margin: 0; padding: 0; }

.zy-cms-comments .comment-list .comment { list-style: none; }

.zy-cms-comments .children { margin-left: 40px; list-style: none; }

@media (max-width: 640px) { .zy-cms-comments .children { margin-left: 20px; } }



.zy-cms-comments .comment-body {

    padding: 16px 0;

    border-bottom: 1px solid var(--zy-border);

}

.zy-cms-comments .comment-author {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 6px;

}

.zy-cms-comments .comment-author img.avatar { border-radius: 50%; width: 36px; height: 36px; }

.zy-cms-comments .comment-author .fn { font-style: normal; font-weight: 600; font-size: 13px; color: var(--zy-text); }

.zy-cms-comments .comment-author .says { display: none; }

.zy-cms-comments .comment-author .fn a { color: var(--zy-text); text-decoration: none; }

.zy-cms-comments .comment-author .fn a:hover { color: var(--zy-primary); }

.zy-cms-comments .comment-metadata { font-size: 11px; color: var(--zy-text-dim); margin-bottom: 8px; }

.zy-cms-comments .comment-metadata a { color: var(--zy-text-dim); text-decoration: none; }

.zy-cms-comments .comment-metadata a:hover { color: var(--zy-primary); }

.zy-cms-comments .comment-content { font-size: 13px; line-height: 1.7; color: var(--zy-text-muted); }

.zy-cms-comments .comment-content p { margin-bottom: 0.6em; }

.zy-cms-comments .reply { margin-top: 6px; }

.zy-cms-comments .reply a { font-size: 11px; font-weight: 600; color: var(--zy-primary); text-decoration: none; }

.zy-cms-comments .reply a:hover { color: var(--zy-primary-light); }



.zy-cms-comments .comment-respond {

    margin: 24px 0;

    padding: 24px;

    background: var(--zy-bg);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius);

}

.zy-cms-comments .comment-reply-title {

    font-size: 16px;

    font-weight: 700;

    color: var(--zy-text);

    margin: 0 0 14px;

}

.zy-cms-comments .comment-reply-title small { margin-left: 8px; }

.zy-cms-comments .comment-reply-title small a { font-size: 12px; color: var(--zy-text-muted); text-decoration: none; }

.zy-cms-comments .comment-notes { font-size: 12px; color: var(--zy-text-dim); margin-bottom: 14px; }

.zy-cms-comments .comment-form { display: flex; flex-direction: column; gap: 14px; }

.zy-cms-comments .comment-form .comment-form-author,

.zy-cms-comments .comment-form .comment-form-email,

.zy-cms-comments .comment-form .comment-form-url { display: flex; flex-direction: column; gap: 4px; }

.zy-cms-comments .comment-form label { font-size: 12px; font-weight: 600; color: var(--zy-text); }

.zy-cms-comments .comment-form .required { color: #ef4444; }

.zy-cms-comments .comment-form input[type="text"],

.zy-cms-comments .comment-form input[type="email"],

.zy-cms-comments .comment-form input[type="url"] {

    width: 100%; max-width: 380px;

    padding: 8px 12px;

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius);

    color: var(--zy-text);

    font-size: 13px;

    outline: none;

    transition: border-color 0.2s;

}

.zy-cms-comments .comment-form input:focus,

.zy-cms-comments .comment-form textarea:focus { border-color: var(--zy-primary); }

.zy-cms-comments .comment-form textarea {

    width: 100%; min-height: 100px;

    padding: 10px 12px;

    background: var(--zy-bg-card);

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius);

    color: var(--zy-text);

    font-size: 13px;

    line-height: 1.6;

    resize: vertical;

    outline: none;

    transition: border-color 0.2s;

}

.zy-cms-comments .comment-form .submit {

    display: inline-flex;

    align-items: center;

    padding: 8px 24px;

    background: var(--zy-primary);

    color: #fff;

    border: none;

    border-radius: var(--zy-radius);

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.15s;

}

.zy-cms-comments .comment-form .submit:hover { background: var(--zy-primary-light); }

.zy-cms-comments .comment-form .comment-form-cookies-consent {

    display: flex;

    align-items: center;

    gap: 8px;

}

.zy-cms-comments .comment-form .comment-form-cookies-consent input[type="checkbox"] {

    width: 14px; height: 14px;

    accent-color: var(--zy-primary);

}

.zy-cms-comments .comment-form .comment-form-cookies-consent label {

    font-size: 12px; font-weight: 400; color: var(--zy-text-muted);

}

.zy-cms-comments .comment-awaiting-moderation {

    font-size: 11px; color: #f59e0b; font-style: italic;

}

.zy-cms-comments .comments-pagination {

    display: flex; gap: 4px; margin: 20px 0; justify-content: center;

}

.zy-cms-comments .comments-pagination .page-numbers {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 30px; height: 30px;

    padding: 0 8px;

    border: 1px solid var(--zy-border);

    border-radius: var(--zy-radius);

    font-size: 12px;

    color: var(--zy-text-muted);

    text-decoration: none;

    transition: all 0.15s;

}

.zy-cms-comments .comments-pagination .page-numbers.current {

    background: var(--zy-primary); color: #fff; border-color: var(--zy-primary);

}

.zy-cms-comments .comments-pagination a.page-numbers:hover { border-color: var(--zy-primary); color: var(--zy-primary); }



.zy-no-comments { text-align: center; padding: 40px 20px; color: var(--zy-text-muted); font-size: 13px; }



/* ═══════════════════════════════════════════════════════
   ARTICLE CONTENT ENHANCEMENTS
   ═══════════════════════════════════════════════════════ */

/* Code block language label */
.zy-cms-content pre[data-lang] {
    position: relative;
    padding-top: 32px;
}
.zy-cms-content pre[data-lang]::before {
    content: attr(data-lang);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Code fold (details/summary) for long blocks */
.zy-cms-content details.code-fold {
    margin: 1.2em 0;
    background: #0b1120;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--zy-radius);
    overflow: hidden;
}
.zy-cms-content details.code-fold summary {
    padding: 10px 16px;
    background: rgba(255,255,255,0.03);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.zy-cms-content details.code-fold summary:hover {
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.06);
}
.zy-cms-content details.code-fold summary::before {
    content: '▶';
    font-size: 10px;
    transition: transform 0.2s;
}
.zy-cms-content details.code-fold[open] summary::before {
    transform: rotate(90deg);
}
.zy-cms-content details.code-fold pre {
    margin: 0;
    border-radius: 0;
    border: none;
}

/* List to card grid (5+ items) */
.zy-cms-content ul.list-card-grid,
.zy-cms-content ol.list-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
    list-style: none;
    margin: 1.2em 0;
    padding: 0;
}
.zy-cms-content ul.list-card-grid li,
.zy-cms-content ol.list-card-grid li {
    background: var(--zy-bg-card);
    border: 1px solid var(--zy-border);
    border-radius: var(--zy-radius);
    padding: 14px 16px;
    margin: 0;
    transition: all 0.15s;
}
.zy-cms-content ul.list-card-grid li:hover {
    border-color: var(--zy-border-hover);
    transform: translateY(-1px);
}
.zy-cms-content ul.list-card-grid li h4 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--zy-text);
}
.zy-cms-content ul.list-card-grid li p {
    margin: 0;
    font-size: 12px;
    color: var(--zy-text-muted);
}

/* Table horizontal scroll (3+ columns) */
.zy-cms-content .table-scroll {
    overflow-x: auto;
    margin: 1.5em 0;
    -webkit-overflow-scrolling: touch;
}
.zy-cms-content .table-scroll::-webkit-scrollbar {
    height: 6px;
}
.zy-cms-content .table-scroll::-webkit-scrollbar-track {
    background: var(--zy-bg);
    border-radius: 3px;
}
.zy-cms-content .table-scroll::-webkit-scrollbar-thumb {
    background: var(--zy-border);
    border-radius: 3px;
}

/* AI-generated content notice */
.zy-cms-content .ai-notice {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-left: 4px solid #f59e0b;
    border-radius: var(--zy-radius);
    padding: 12px 16px;
    margin: 1.5em 0;
    font-size: 13px;
    color: var(--zy-text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════ */

