/* 
 * 百昔心理 - PC端首页样式 v3（招商布局·完整版）
 * 2026-05-31 重构
 */

/* ==================== Header (已独立到 header.css) ==================== */

/* ==================== Hero Banner (全屏) ==================== */
.hero-banner { }
.hero-swiper { width: 100%; height: 100vh; min-height: 600px; overflow: hidden; position: relative; }
.hero-swiper .swiper-wrapper { width: 100%; height: 100%; position: relative; }
.hero-swiper .swiper-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; opacity: 0; transition: opacity 0.8s ease; }
.hero-swiper .swiper-slide.active { opacity: 1; }

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 7s ease-out;
}
.hero-swiper .swiper-slide.active .hero-bg { transform: scale(1.04); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(20,12,35,0.82) 0%, rgba(249,108,159,0.18) 50%, rgba(255,255,255,0.08) 100%);
    z-index: 1;
}

.hero-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-info { max-width: 600px; color: #fff; }

.hero-tag {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg,#f96c9f,#ffa309);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.7;
    opacity: .92;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    background: #f96c9f;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(249,108,159,.4);
}
.btn-hero-primary:hover {
    background: #e85a8e;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(249,108,159,.55);
    color: #fff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 15px 34px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,.45);
    backdrop-filter: blur(6px);
    text-decoration: none;
    transition: all .3s;
}
.btn-hero-secondary:hover {
    background: #fff;
    color: #f96c9f;
    border-color: #fff;
}

/* Swiper 控件 */
.hero-swiper .swiper-pagination-bullet {
    width: 10px; height: 10px;
    background: rgba(255,255,255,.45);
    opacity: 1;
    transition: all .3s;
}
.hero-swiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 28px; border-radius: 5px;
}
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.25);
    transition: all .3s;
    position: absolute; top: 50%; z-index: 10; cursor: pointer;
}
.hero-swiper .swiper-button-prev { left: 30px; transform: translateY(-50%); }
.hero-swiper .swiper-button-next { right: 30px; transform: translateY(-50%); }
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: #fff;
    line-height: 1;
}
.hero-swiper .swiper-button-prev::after { content: '\f104'; }
.hero-swiper .swiper-button-next::after { content: '\f105'; }
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: #f96c9f;
    border-color: #f96c9f;
}

/* Hero 文字动画 */
.hero-info > * { animation: heroIn .7s ease both; }
.hero-info .hero-tag { animation-delay: .1s; }
.hero-info .hero-title { animation-delay: .25s; }
.hero-info .hero-desc { animation-delay: .4s; }
.hero-info .hero-actions { animation-delay: .55s; }
@keyframes heroIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==================== 统计条 ==================== */
/* 统计浮条（Banner底部·毛玻璃） */
.hero-stats-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 5;
    background: rgba(249,108,159,0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 14px 0;
}
.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}
.stats-item {
    flex: 1;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
.stats-num-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.stats-num {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}
.stats-unit {
    font-size: 16px;
    font-weight: 700;
}
.stats-label {
    font-size: 12px;
    opacity: .88;
    margin-top: 4px;
}
.stats-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,.25);
}

/* ==================== Section 公共 ==================== */
.section { padding: 80px 0; }
.section-alt { background: #fafbfc; }

.sec-head { text-align: center; margin-bottom: 52px; }
.sec-title {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}
.sec-title span { color: #f96c9f; }
.sec-sub {
    font-size: 16px;
    color: #888;
    margin-top: 8px;
}
.sec-foot { text-align: center; margin-top: 48px; }

/* ==================== 核心优势 ==================== */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.adv-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    border: 1px solid #f0f0f0;
    transition: all .35s;
}
.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(249,108,159,.12);
    border-color: #ffe8f0;
}
.adv-icon-wrap {
    width: 70px; height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffe8f0, #fff5f8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #f96c9f;
    transition: all .35s;
}
.adv-card:hover .adv-icon-wrap {
    background: linear-gradient(135deg, #f96c9f, #e85a8e);
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
}
.adv-title { font-size: 19px; font-weight: 600; color: #333; margin-bottom: 10px; }
.adv-desc { font-size: 14px; color: #777; line-height: 1.7; }

/* ==================== 品牌实力 (沉浸式) ==================== */
.brand-section { padding: 0; }
.brand-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}
.brand-hero-bg {
    position: absolute; inset: 0;
    background: url('/static/index/pc/img/banner/banner1.jpg') center/cover no-repeat;
}
.brand-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(30,20,40,.88), rgba(60,20,50,.82));
}
.brand-hero-content {
    position: relative; z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 0;
}
.brand-intro { flex: 1.2; }
.brand-tag {
    display: inline-block;
    font-size: 13px; font-weight: 700; letter-spacing: 3px;
    color: #f96c9f;
    background: rgba(249,108,159,.12);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.brand-intro h2 {
    font-size: 38px; font-weight: 800; color: #fff;
    line-height: 1.2; margin-bottom: 18px;
}
.brand-dot { color: #f96c9f; }
.brand-intro p {
    font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 30px;
}
.brand-features {
    list-style: none; display: grid;
    grid-template-columns: 1fr 1fr; gap: 14px 24px;
}
.brand-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; color: rgba(255,255,255,.9); font-weight: 500;
}
.brand-features li i {
    color: #f96c9f; font-size: 16px;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(249,108,159,.12);
    border-radius: 8px;
}

.brand-data-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.brand-data-card {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 20px 14px;
    text-align: center;
    transition: all .3s;
}
.brand-data-card:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(249,108,159,.3);
    transform: translateY(-4px);
}
.bdc-icon {
    width: 38px; height: 38px;
    margin: 0 auto 10px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f96c9f, #e85a8e);
    border-radius: 10px;
    color: #fff; font-size: 16px;
}
.brand-data-card strong {
    display: block; font-size: 26px; font-weight: 800; color: #fff; line-height: 1.1;
}
.brand-data-card span {
    display: block; font-size: 12px; color: rgba(255,255,255,.7); margin-top: 4px;
}
/* ==================== 加盟政策 ==================== */
.pol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pol-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.03);
    border: 1px solid #f2f2f2;
    transition: all .35s;
    position: relative;
    overflow: hidden;
}
.pol-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f96c9f, #ffa309);
    transform: scaleX(0);
    transition: transform .35s;
}
.pol-card:hover::before { transform: scaleX(1); }
.pol-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.pol-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: #fff0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: #f96c9f;
    transition: all .35s;
}
.pol-card:hover .pol-icon { background: #f96c9f; color: #fff; }
.pol-title { font-size: 17px; font-weight: 600; color: #333; margin-bottom: 8px; }
.pol-desc { font-size: 14px; color: #888; line-height: 1.65; }

/* ==================== 加盟流程 ==================== */
.process-timeline {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    padding: 20px 0 40px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, #ffe8f0, #f96c9f, #ffa309);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease;
}
.process-timeline.visible::before {
    transform: scaleX(1);
}
.process-node {
    flex: 1;
    max-width: 170px;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .5s ease, transform .5s ease;
    transition-delay: var(--delay, 0s);
}
.process-node.visible {
    opacity: 1;
    transform: translateY(0);
}
.process-dot {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f96c9f, #e85a8e);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 14px rgba(249,108,159,.3);
    transition: transform .3s, box-shadow .3s;
}
.process-node:hover .process-dot {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(249,108,159,.45);
}
.process-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: box-shadow .3s, transform .3s;
}
.process-node:hover .process-card {
    box-shadow: 0 6px 20px rgba(249,108,159,.1);
    transform: translateY(-3px);
}
.process-card h4 { font-size: 15px; font-weight: 600; color: #333; margin-bottom: 6px; }
.process-card p { font-size: 12px; color: #999; line-height: 1.6; }

/* ==================== 咨询师团队 ==================== */
.cou-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.cou-card {
    display: flex;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,.03);
    border: 1px solid #f2f2f2;
    gap: 20px;
    transition: all .3s;
}
.cou-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.07);
    transform: translateY(-3px);
}
.cou-avatar {
    flex-shrink: 0;
    width: 110px; height: 110px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}
.cou-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cou-detail { flex: 1; min-width: 0; }
.cou-name { font-size: 18px; font-weight: 600; color: #222; margin-bottom: 4px; }
.cou-level { font-size: 13px; color: #f96c9f; font-weight: 500; }
.cou-exp { font-size: 12px; color: #aaa; margin-left: 10px; }
.cou-tags { margin: 8px 0; }
.cou-intro { font-size: 14px; color: #666; line-height: 1.6; margin: 8px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ==================== 文章 (头条+列表) ==================== */
.art-featured {
    display: flex;
    gap: 24px;
    margin-bottom: 10px;
}
.art-main {
    flex: 1.2;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    text-decoration: none;
}
.art-main-cover {
    position: relative;
    width: 100%; height: 100%;
    min-height: 400px;
}
.art-main-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform .6s;
}
.art-main:hover .art-main-cover img {
    transform: scale(1.04);
}
.art-cover-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #ffe8f0, #e8f4fd);
    position: absolute; inset: 0;
}
.art-main-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,.75));
    color: #fff;
}
.art-main-overlay h3 {
    font-size: 22px; font-weight: 700; color: #fff;
    line-height: 1.4; margin: 10px 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.art-main-meta {
    display: flex; gap: 16px;
    font-size: 13px; color: rgba(255,255,255,.75);
}
.art-main-meta i { margin-right: 4px; }
.art-main-excerpt {
    font-size: 13px; color: rgba(255,255,255,.85);
    margin: 6px 0 0; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}

.art-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.art-item {
    display: flex;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    text-decoration: none;
    transition: all .3s;
    flex: 1;
}
.art-item:hover {
    border-color: #f96c9f;
    box-shadow: 0 4px 16px rgba(249,108,159,.1);
    transform: translateX(4px);
}
.art-item-cover {
    flex-shrink: 0;
    width: 120px;
    position: relative;
    overflow: hidden;
}
.art-item-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.art-item:hover .art-item-cover img {
    transform: scale(1.06);
}
.art-item-body {
    flex: 1;
    padding: 12px 14px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.art-cat {
    display: inline-block;
    padding: 3px 10px;
    background: #f96c9f;
    color: #fff;
    font-size: 11px;
    border-radius: 20px;
}
.art-cat-sm {
    display: inline-block;
    padding: 2px 8px;
    background: #fff0f5;
    color: #f96c9f;
    font-size: 11px;
    border-radius: 10px;
    margin-bottom: 6px;
}
.art-item-body h4 {
    font-size: 14px; font-weight: 600; color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}
.art-item-date {
    font-size: 12px; color: #bbb;
}
.art-item-date i { margin-right: 3px; }
.art-item-excerpt {
    font-size: 13px; color: #888; margin: 4px 0 0;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
    line-height: 1.5;
}

/* ==================== 合作伙伴 ==================== */
.ptn-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.ptn-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    box-shadow: 0 1px 6px rgba(0,0,0,.03);
    border: 1px solid #f2f2f2;
    transition: all .3s;
}
.ptn-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); transform: translateY(-2px); }
.ptn-item img {
    max-width: 100%;
    max-height: 54px;
    object-fit: contain;
    filter: grayscale(80%);
    opacity: .5;
    transition: all .3s;
}
.ptn-item:hover img { filter: grayscale(0%); opacity: 1; }

/* ==================== CTA ==================== */
.cta-banner {
    background: linear-gradient(135deg, #f96c9f 0%, #e85a8e 50%, #d94a7e 100%);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -120px; left: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -60px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}
.cta-inner p {
    font-size: 17px;
    color: rgba(255,255,255,.9);
    margin-bottom: 36px;
}
.cta-btns { display: flex; justify-content: center; gap: 18px; }

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 38px;
    background: #fff;
    color: #f96c9f;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    color: #e85a8e;
}

.btn-cta-sub {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 38px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.5);
    text-decoration: none;
    transition: all .3s;
}
.btn-cta-sub:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
}

/* ==================== Footer ==================== */
/* ==================== 浮动按钮 & 返回顶部 ==================== */
.float-btn {
    position: fixed;
    right: 24px;
    bottom: 130px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #f96c9f, #e85a8e);
    color: #fff;
    border-radius: 14px;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(249,108,159,.4);
    text-decoration: none;
    transition: all .3s;
}
.float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 26px rgba(249,108,159,.55);
    color: #fff;
}
.float-btn i { font-size: 20px; }
.float-btn span { font-size: 10px; font-weight: 600; }

.back-top {
    position: fixed;
    right: 24px;
    bottom: 64px;
    width: 44px; height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 997;
    color: #666;
    border: none;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: #f96c9f; color: #fff; }

/* ==================== 滚动动画 ==================== */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== 响应式 ==================== */
@media (max-width: 1199px) {
    .adv-grid, .pol-grid { grid-template-columns: repeat(2, 1fr); }
    .ptn-grid { grid-template-columns: repeat(4, 1fr); }
    .hero-swiper { height: 500px; }
    .hero-title { font-size: 38px !important; }
}

@media (max-width: 991px) {
    .brand-hero-content { flex-direction: column; gap: 30px; padding: 50px 0; }
    .brand-data-cards { grid-template-columns: 1fr 1fr; }
    .brand-intro h2 { font-size: 28px; }
    .process-timeline { flex-wrap: wrap; gap: 12px; }
    .process-timeline::before { display: none; }
    .process-node { max-width: 140px; }
    .cou-grid { grid-template-columns: 1fr; }
    .header-content { flex-wrap: wrap; height: auto; padding: 12px 0; gap: 10px; }
    .nav-menu ul { flex-wrap: wrap; }
}

@media (max-width: 767px) {
    .hero-banner { margin-top: 64px; }
    .hero-swiper { height: 420px; }
    .hero-title { font-size: 28px !important; }
    .hero-desc { font-size: 15px !important; }
    .hero-actions { justify-content: center; }
    .stats-row { flex-wrap: wrap; gap: 16px; }
    .stats-item { min-width: calc(50% - 16px); }
    .stats-divider { display: none; }
    .stats-num { font-size: 34px; }
    .section { padding: 52px 0; }
    .sec-title { font-size: 26px; }
    .adv-grid, .pol-grid { grid-template-columns: 1fr; }
    .art-featured { flex-direction: column; }
    .art-main { min-height: 280px; }
    .art-main-cover { min-height: 280px; }
    .art-main-cover img { min-height: 280px; }
    .ptn-grid { grid-template-columns: repeat(3, 1fr); }
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-inner h2 { font-size: 26px; }
    .float-btn { right: 14px; bottom: 86px; width: 52px; height: 52px; }
    .back-top { right: 14px; bottom: 28px; width: 40px; height: 40px; }
}

/* 加盟流程 Banner背景 */
.process-banner-bg {
    position: absolute; inset: 0;
    background: url('/static/index/pc/img/banner/banner2.jpg') center/cover no-repeat;
}
.process-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(30,20,40,.82), rgba(50,20,60,.78));
}

/* 心理文章 Banner背景 */
.article-banner-bg {
    position: absolute; inset: 0;
    background: url('/static/index/pc/img/banner/banner3.jpg') center/cover no-repeat;
}
.article-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(20,10,35,.78), rgba(40,15,55,.72));
}

/* Banner背景区块 - 内容层 */
.banner-section {
    position: relative;
    overflow: hidden;
}
.banner-section > .container {
    position: relative;
    z-index: 2;
}
.banner-section .sec-title,
.banner-section .sec-sub {
    color: #fff;
}
.banner-section .sec-title span {
    color: #f9c5d8;
}
.banner-section .process-node .process-dot {
    background: rgba(249,108,159,.25);
    border-color: rgba(249,108,159,.6);
    color: #fff;
}
.banner-section .process-node .process-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
}
.banner-section .process-node .process-card h4 {
    color: #f9c5d8;
}
.banner-section .process-node .process-card p {
    color: rgba(255,255,255,.85);
}
.banner-section .btn-primary {
    background: #f96c9f;
    border-color: #f96c9f;
}
.banner-section .art-item {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
}
.banner-section .art-item:hover {
    border-color: rgba(249,108,159,.6);
    box-shadow: 0 4px 16px rgba(249,108,159,.15);
}
.banner-section .art-item-body h4 {
    color: #fff;
}
.banner-section .art-item-excerpt {
    color: rgba(255,255,255,.75);
}
.banner-section .art-item-date {
    color: rgba(255,255,255,.6);
}
.banner-section .art-cat-sm {
    background: rgba(249,108,159,.25);
    color: #f9c5d8;
}
.banner-section .sec-foot {
    margin-top: 32px;
}
.banner-section .btn-outline {
    border-color: rgba(255,255,255,.6);
    color: #fff;
}
.banner-section .btn-outline:hover {
    background: rgba(255,255,255,.15);
}
