.influencer-hero {
    min-height: 500px;
    background: linear-gradient(135deg, #1a1a2e 0%, #4a1942 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.influencer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,64,129,0.1), rgba(255,193,7,0.1));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.influencer-hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.influencer-hero-content {
    max-width: 550px;
}
.influencer-hero-content .section-tag {
    color: #ff4081;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}
.influencer-hero-content h1 {
    font-size: 42px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}
.influencer-hero-content h1 span {
    background: linear-gradient(135deg, #ff4081, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.influencer-hero-content p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}
.influencer-hero-image {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255,64,129,0.2), rgba(255,193,7,0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.influencer-hero-image i {
    font-size: 80px;
    color: rgba(255,255,255,0.3);
}

.influencer-services {
    padding: 80px 0;
    background: #ffffff;
}
.influencer-services .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.influencer-services .section-tag {
    color: #ff4081;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.influencer-services .section-title {
    font-size: 32px;
    color: #333333;
    font-weight: bold;
}
.influencer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.influencer-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}
.influencer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.influencer-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4081, #f50057);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    overflow: hidden;
    flex-shrink: 0;
}
.influencer-card .card-icon i {
    font-size: 32px;
    color: #ffffff;
}
.influencer-card h3 {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 15px;
}
.influencer-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.8;
}

.influencer-resources {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #4a1942 100%);
}
.influencer-resources .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.influencer-resources .section-tag {
    color: #ffc107;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.influencer-resources .section-title {
    font-size: 32px;
    color: #ffffff;
    font-weight: bold;
}
.influencer-resources .section-desc {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-top: 15px;
}
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.resource-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
}
.resource-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,64,129,0.5);
    transform: translateY(-5px);
}
.resource-card .tier-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4081, #f50057);
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}
.resource-card.mid .tier-badge {
    background: linear-gradient(135deg, #ffc107, #ff9800);
}
.resource-card.micro .tier-badge {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
}
.resource-card h3 {
    font-size: 22px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 15px;
}
.resource-card .fans {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 20px;
}
.resource-card ul {
    text-align: left;
}
.resource-card ul li {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.resource-card ul li i {
    color: #ff4081;
    font-size: 12px;
}
.resource-card .count {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}
.resource-card .count span {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: normal;
}

.influencer-categories {
    padding: 80px 0;
    background: #f8f9fa;
}
.influencer-categories .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.influencer-categories .section-tag {
    color: #ff4081;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.influencer-categories .section-title {
    font-size: 32px;
    color: #333333;
    font-weight: bold;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.category-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eee;
}
.category-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #ff4081;
    transform: translateY(-5px);
}
.category-item i {
    font-size: 36px;
    color: #ff4081;
    margin-bottom: 15px;
}
.category-item h4 {
    font-size: 16px;
    color: #333333;
    font-weight: bold;
}

.influencer-advantages {
    padding: 80px 0;
    background: #ffffff;
}
.influencer-advantages .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.influencer-advantages .section-tag {
    color: #ff4081;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.influencer-advantages .section-title {
    font-size: 32px;
    color: #333333;
    font-weight: bold;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.advantage-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
}
.advantage-item:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.advantage-item i {
    font-size: 40px;
    color: #ff4081;
    margin-bottom: 20px;
}
.advantage-item h4 {
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 10px;
}
.advantage-item p {
    color: #666666;
    font-size: 13px;
    line-height: 1.6;
}

.influencer-process {
    padding: 80px 0;
    background: #f8f9fa;
}
.influencer-process .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.influencer-process .section-tag {
    color: #ff4081;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.influencer-process .section-title {
    font-size: 32px;
    color: #333333;
    font-weight: bold;
}
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #ff4081, #ffc107);
}
.process-step {
    text-align: center;
    position: relative;
    flex: 1;
}
.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4081, #f50057);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #ffffff;
    font-weight: bold;
    position: relative;
    z-index: 1;
}
.process-step h4 {
    font-size: 16px;
    color: #333333;
    font-weight: bold;
    margin-bottom: 8px;
}
.process-step p {
    color: #666666;
    font-size: 13px;
}

.influencer-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff4081, #f50057);
    text-align: center;
}
.influencer-cta h2 {
    font-size: 36px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 20px;
}
.influencer-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 30px;
}
.influencer-cta .btn-white {
    display: inline-block;
    background: #ffffff;
    color: #ff4081;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}
.influencer-cta .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
    .influencer-cards { grid-template-columns: repeat(2, 1fr); }
    .resources-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .influencer-hero .container { flex-direction: column; text-align: center; }
    .influencer-hero-content h1 { font-size: 32px; }
    .influencer-hero-image { display: none; }
    .influencer-cards { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; gap: 30px; }
    .process-steps::before { display: none; }
}

/* 联系弹窗 */
.contact-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.contact-modal-overlay.show {
    display: flex;
}
.contact-modal {
    background: #0a0a0a;
    border-radius: 16px;
    padding: 95px 49px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    max-width: 700px;
    width: 90%;
}
.contact-modal-close {
    position: absolute;
    top: 16px;
    right: 22px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.5;
    line-height: 1;
    transition: opacity 0.2s;
}
.contact-modal-close:hover { opacity: 1; }
.contact-modal-left { flex: 1; }
.contact-modal-logo { max-width: 160px; margin-bottom: 16px; display: block; }
.contact-modal-tagline {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}
.contact-modal-right { display: flex; gap: 32px; }
.contact-qr-item { text-align: center; }
.contact-qr-item img {
    width: 110px;
    height: 110px;
    display: block;
    object-fit: contain;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 6px;
    padding: 4px;
}
.contact-qr-label { color: rgba(255,255,255,0.75); font-size: 13px; }
@media (max-width: 600px) {
    .contact-modal { flex-direction: column; padding: 36px 24px; gap: 32px; }
    .contact-modal-right { justify-content: center; }
}
