/* 商业转化横幅样式 - SaaS浅色系风格 */
.commercial-conversion-container {
    width: 100%;
    position: relative;
    margin: 80px 0 0;
}

.commercial-conversion-banner {
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
    padding: 72px 0;
    position: relative;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1f2937;
}

.banner-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.5;
    color: #6b7280;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.banner-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
}

.banner-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    min-width: 180px;
}

.banner-btn.primary-btn {
    background: #3b82f6;
    color: white;
}

.banner-btn.primary-btn:hover {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.banner-btn.secondary-btn {
    background: #ffffff;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.banner-btn.secondary-btn:hover {
    border-color: #3b82f6;
    background: #f0f9ff;
    color: #3b82f6;
}

/* 按钮标签容器 */
.btn-with-tag {
    position: relative;
    display: inline-block;
}

/* 更省钱标签样式 */
.save-money-tag {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transform: rotate(3deg);
}

/* 深色系横幅样式 - 科技感设计 */
.commercial-conversion-banner.dark-banner {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* 科技感背景效果 */
.commercial-conversion-banner.dark-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(59, 130, 246, 0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-title.dark-title {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.banner-subtitle.dark-subtitle {
    color: #cbd5e1;
}

.banner-btn.dark-primary-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.banner-btn.dark-primary-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.banner-btn.dark-secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid #64748b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.banner-btn.dark-secondary-btn:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}
