/* =========================================================
   网站搭建专题页 独立样式 (wzdj.css)
   基于全局 style.css 之上的页面专属样式
   ========================================================= */

/* ---------- 通用 ---------- */
.wzdj-section { padding: 90px 0; }
.wzdj-section-alt { background: var(--bg-light); }

.wzdj-sec-header { text-align: center; margin-bottom: 56px; }

/* 进场动画（由 wzdj.js 观察 data-animate 触发） */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   Hero
   ========================================================= */
.wzdj-hero {
    position: relative;
    padding: 170px 0 0;
    color: #fff;
    background: linear-gradient(135deg, #0f2748 0%, #1e3a5f 55%, #2563eb 100%);
    overflow: hidden;
}

.wzdj-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.wzdj-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .35;
}
.wzdj-shape-1 { width: 420px; height: 420px; top: -120px; left: -120px; background: rgba(59,130,246,.55); }
.wzdj-shape-2 { width: 360px; height: 360px; top: 120px; right: -100px; background: rgba(124,58,237,.4); }
.wzdj-shape-3 { width: 300px; height: 300px; bottom: 60px; left: 40%; background: rgba(37,99,235,.5); }

.wzdj-hero-inner { position: relative; text-align: center; padding-bottom: 70px; }

.wzdj-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: .03em;
}

.wzdj-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}
.wzdj-hero-highlight {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wzdj-hero-desc {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255,255,255,.8);
    max-width: 720px;
    margin: 0 auto 34px;
}

.wzdj-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }

.wzdj-hero-cms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.wzdj-hero-cms span {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.92);
    font-size: .85rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Hero 底部数据条 */
.wzdj-hero-stats {
    position: relative;
    background: rgba(15,39,72,.45);
    border-top: 1px solid rgba(255,255,255,.14);
}
.wzdj-hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 24px;
}
.wzdj-stat { text-align: center; }
.wzdj-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2px;
}
.wzdj-stat-label { font-size: .92rem; color: rgba(255,255,255,.72); }

/* =========================================================
   CMS 选型
   ========================================================= */
.wzdj-cms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wzdj-cms-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 4px solid var(--c, var(--primary));
    border-radius: var(--r-lg);
    padding: 28px 24px 24px;
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex;
    flex-direction: column;
}
.wzdj-cms-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.wzdj-cms-icon { font-size: 2.3rem; line-height: 1; margin-bottom: 16px; }
.wzdj-cms-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.wzdj-cms-en { font-size: .82rem; color: var(--text-light); margin-bottom: 12px; }
.wzdj-cms-desc { font-size: .92rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 18px; flex-grow: 1; }
.wzdj-cms-fit {
    align-self: flex-start;
    font-size: .8rem;
    font-weight: 600;
    color: var(--primary);
    background: #eff6ff;
    padding: 4px 12px;
    border-radius: 20px;
}

.wzdj-cms-card-cta {
    background: linear-gradient(160deg, #1d4ed8, #7c3aed);
    border-top-color: #fff;
    color: #fff;
}
.wzdj-cms-card-cta h3 { color: #fff; margin-bottom: 10px; }
.wzdj-cms-card-cta .wzdj-cms-icon { color: #fff; }
.wzdj-cms-card-cta .wzdj-cms-desc { color: rgba(255,255,255,.86); }
.wzdj-cms-card-cta .btn { margin-top: 4px; }

/* =========================================================
   核心优势
   ========================================================= */
.wzdj-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.wzdj-why-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 30px 26px;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.wzdj-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.wzdj-why-icon {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    background: #eff6ff;
    border-radius: 18px;
}
.wzdj-why-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.wzdj-why-card p { font-size: .93rem; line-height: 1.8; color: var(--text-light); }

/* =========================================================
   建站流程
   ========================================================= */
.wzdj-process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}
.wzdj-process-item {
    position: relative;
    text-align: center;
    padding: 30px 16px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: transform .35s ease, box-shadow .35s ease;
}
.wzdj-process-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.wzdj-process-num {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--geo));
    color: #fff;
    font-size: 1.15rem; font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(37,99,235,.3);
}
.wzdj-process-item h3 { font-size: 1.08rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.wzdj-process-item p { font-size: .87rem; line-height: 1.7; color: var(--text-light); }

/* =========================================================
   交付内容
   ========================================================= */
.wzdj-include-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 40px;
    max-width: 960px;
    margin: 0 auto;
}
.wzdj-include-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 20px 22px;
    transition: box-shadow .3s ease;
}
.wzdj-include-item:hover { box-shadow: var(--shadow-md); }
.wzdj-include-ok {
    flex-shrink: 0;
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    background: #10b981;
    color: #fff;
    font-size: .8rem;
    border-radius: 50%;
    margin-top: 2px;
}
.wzdj-include-item h4 { font-size: 1.02rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.wzdj-include-item p { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

/* =========================================================
   案例
   ========================================================= */
.wzdj-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.wzdj-case-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 26px;
    transition: transform .35s ease, box-shadow .35s ease;
}
.wzdj-case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.wzdj-case-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.wzdj-case-badge {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: var(--c, var(--primary));
    color: #fff;
    font-size: 1.3rem; font-weight: 700;
    border-radius: 14px;
}
.wzdj-case-top h3 { font-size: 1.12rem; font-weight: 700; color: var(--text-dark); }
.wzdj-case-top p { font-size: .85rem; color: var(--text-light); }
.wzdj-case-desc { font-size: .93rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 18px; }
.wzdj-case-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    text-align: center;
}
.wzdj-case-data b { display: block; font-size: 1.35rem; font-weight: 800; color: var(--primary); }
.wzdj-case-data span { font-size: .8rem; color: var(--text-light); }

/* =========================================================
   服务方案
   ========================================================= */
.wzdj-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.wzdj-plan-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 34px 28px 30px;
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease;
}
.wzdj-plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.wzdj-plan-card-hot {
    border: 2px solid var(--primary);
    box-shadow: 0 16px 40px rgba(37,99,235,.16);
}
.wzdj-plan-tag {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    font-size: .78rem; font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.wzdj-plan-name { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.wzdj-plan-price {
    font-size: 2.6rem; font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 20px;
}
.wzdj-plan-price small { font-size: 1rem; font-weight: 600; color: var(--text-light); margin-right: 2px; }
.wzdj-plan-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}
.wzdj-plan-list li {
    font-size: .93rem;
    color: var(--text-mid);
    padding-left: 24px;
    position: relative;
}
.wzdj-plan-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: 800;
}
.wzdj-plan-btn { width: 100%; }

/* =========================================================
   FAQ
   ========================================================= */
.wzdj-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.wzdj-faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: box-shadow .3s ease;
}
.wzdj-faq-item.open { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.wzdj-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    padding: 20px 22px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
}
.wzdj-faq-arrow { font-size: .85rem; color: var(--text-light); transition: transform .3s ease; flex-shrink: 0; }
.wzdj-faq-item.open .wzdj-faq-arrow { transform: rotate(180deg); color: var(--primary); }
.wzdj-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.wzdj-faq-a p {
    padding: 0 22px 20px;
    font-size: .93rem;
    line-height: 1.85;
    color: var(--text-light);
}

/* =========================================================
   联系 / CTA
   ========================================================= */
.wzdj-contact {
    background: linear-gradient(135deg, #0f2748 0%, #1e3a5f 60%, #2563eb 100%);
    padding: 90px 0;
    color: #fff;
}
.wzdj-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: center;
}
.wzdj-contact-tag {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    font-size: .8rem; font-weight: 700;
    padding: 5px 16px;
    border-radius: 20px;
    letter-spacing: .05em;
    margin-bottom: 18px;
}
.wzdj-contact-left h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 16px;
}
.wzdj-contact-left > p { font-size: 1.02rem; line-height: 1.9; color: rgba(255,255,255,.82); margin-bottom: 26px; }
.wzdj-contact-left > p b { color: #fbbf24; }
.wzdj-contact-list { display: flex; flex-direction: column; gap: 14px; }
.wzdj-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 1rem; color: rgba(255,255,255,.92); }
.wzdj-contact-list li span { font-size: 1.15rem; }
.wzdj-contact-list li b { color: #fff; }

.wzdj-contact-form-card {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 36px 34px 30px;
    box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.wzdj-form { display: flex; flex-direction: column; gap: 18px; }
.wzdj-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wzdj-form label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.wzdj-form input,
.wzdj-form select,
.wzdj-form textarea {
    width: 100%;
    font-family: inherit;
    font-size: .93rem;
    color: var(--text-dark);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 12px 14px;
    transition: border-color .25s ease, box-shadow .25s ease;
    background: #fff;
}
.wzdj-form textarea { resize: vertical; min-height: 84px; }
.wzdj-form input:focus,
.wzdj-form select:focus,
.wzdj-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.wzdj-form-submit { width: 100%; margin-top: 4px; }
.wzdj-form-note { font-size: .78rem; color: var(--text-light); text-align: center; }

.wzdj-form-success { text-align: center; padding: 20px 10px; }
.wzdj-form-success-icon {
    width: 68px; height: 68px;
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: #dcfce7;
    color: #16a34a;
    font-size: 1.8rem;
    border-radius: 50%;
}
.wzdj-form-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.wzdj-form-success p { font-size: .93rem; color: var(--text-light); line-height: 1.8; }

/* =========================================================
   响应式
   ========================================================= */
@media (max-width: 1024px) {
    .wzdj-cms-grid { grid-template-columns: repeat(2, 1fr); }
    .wzdj-process { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
    .wzdj-plan-grid { gap: 20px; }
}

@media (max-width: 900px) {
    .wzdj-contact-inner { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 768px) {
    .wzdj-section { padding: 64px 0; }
    .wzdj-hero { padding: 130px 0 0; }
    .wzdj-hero-title { font-size: 2rem; }
    .wzdj-hero-desc { font-size: 1rem; }
    .wzdj-hero-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
    .wzdj-why-grid { grid-template-columns: repeat(2, 1fr); }
    .wzdj-case-grid { grid-template-columns: 1fr; }
    .wzdj-include-grid { grid-template-columns: 1fr; }
    .wzdj-plan-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 560px) {
    .wzdj-cms-grid { grid-template-columns: 1fr; }
    .wzdj-why-grid { grid-template-columns: 1fr; }
    .wzdj-process { grid-template-columns: 1fr 1fr; }
    .wzdj-form-row { grid-template-columns: 1fr; }
    .wzdj-contact-form-card { padding: 28px 20px 24px; }
}
