/* 一人公司产品经理 - 公共样式表 */
/* 温暖配色方案 */

:root {
    --primary-color: #bf6059;
    --secondary-color: #C02424;
    --accent-color: #F5A623;
    --text-color: #432F21;
    --bg-page: #c2b3b3;
    --bg-card: #e4e4e4;
    --input-border: #D92B2B;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', Arial, sans-serif;
    background: #c2b3b3;
    min-height: 100vh;
    color: #432F21;
    padding-right: 0;
}

/* 导航栏 */
.navbar {
    background: #e4e4e4 !important;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    min-height: 64px;
    padding: 0 !important;
}
.navbar > .container {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-brand {
    font-weight: bold;
    font-size: 16px;
    color: #432F21 !important;
    padding: 0;
    display: flex;
    align-items: center;
    height: 64px;
    line-height: 64px;
}
.navbar-brand i {
    display: flex;
    align-items: center;
    color: #bf6059 !important;
}
.nav-link, .nav-item {
    display: flex;
    align-items: center;
    color: #432F21 !important;
}
.navbar-collapse { align-items: center; }
.navbar-nav {
    align-items: center;
    display: flex;
    height: 64px;
}
.btn-primary-custom {
    background: #bf6059 !important;
    border: none !important;
    border-radius: 12px;
    padding: 4px 14px;
    color: #fff !important;
    font-size: 14px;
    height: 32px;
    line-height: 24px;
    display: inline-flex;
    align-items: center;
}
.btn-primary-custom:hover {
    background: #C02424 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 36, 36, 0.3);
}

/* 主容器 */
.container { max-width: 1100px; padding-top: 100px; padding-bottom: 50px; }

/* 标题区 */
.hero-section {
    text-align: center;
    padding: 20px 20px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}
.hero-title {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #432F21;
}
.hero-subtitle {
    color: #666;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
}
.hero-slogan { color: #666; font-size: 14px; margin-top: 6px; }

/* 视频区 */
.video-section {
    background: #e4e4e4;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
}
.video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}
.video-desc { text-align: center; color: #666; font-size: 14px; margin-top: 15px; }

/* 流水线区 */
.pipeline-section { margin-bottom: 20px; }
.pipeline-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #432F21;
}
.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.pipeline-card {
    background: #e4e4e4;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.pipeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.pipeline-step {
    display: inline-block;
    background: #bf6059;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #432F21;
}
.pipeline-name {
    font-size: 17px;
    font-weight: bold;
    color: #432F21;
    margin-bottom: 8px;
}
.pipeline-desc {
    color: #666;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.5;
}
.pipeline-output {
    background: rgba(191, 96, 89, 0.1);
    border: 1px solid rgba(191, 96, 89, 0.2);
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
    color: #bf6059;
    margin-top: auto;
    width: 100%;
}
.pipeline-output strong {
    display: block;
    margin-bottom: 5px;
    color: #bf6059;
}

/* 案例区 */
.case-section { margin-bottom: 40px; }
.case-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #432F21;
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.case-card {
    background: #e4e4e4;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.case-header { display: flex; align-items: center; margin-bottom: 15px; }
.case-avatar {
    width: 48px; height: 48px;
    background: #bf6059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 12px;
}
.case-info h5 { font-size: 16px; margin: 0; color: #432F21; }
.case-info span { font-size: 13px; color: #999; }
.case-content { color: #666; font-size: 14px; line-height: 1.6; }
.case-result {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.case-result strong { color: #bf6059; font-size: 14px; }

/* 功能区块 */
.feature-section { background: transparent; border-radius: 20px; padding: 30px; margin-bottom: 40px; }
.feature-col { margin-bottom: 20px; }
.feature-block {
    background: #e4e4e4;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.feature-block h4 { font-size: 17px; font-weight: bold; margin-bottom: 15px; color: #432F21; }
.feature-icon { font-size: 28px; margin-bottom: 12px; }

/* 隐私保护块 */
.privacy-block {
    background: #e4e4e4;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.privacy-block h4 { color: #bf6059; }
.privacy-block .feature-icon { color: #bf6059; }
.privacy-features { display: flex; flex-wrap: wrap; gap: 10px; margin: 15px 0; }
.privacy-feature { text-align: center; min-width: 70px; }
.privacy-feature i { font-size: 1.3rem; margin-bottom: 5px; color: #bf6059; }
.privacy-feature .label { font-size: 12px; color: #666; }
.privacy-feature .value {
    font-size: 12px;
    color: #432F21;
    background: rgba(0,0,0,0.05);
    padding: 3px 8px;
    border-radius: 5px;
    margin-top: 3px;
}
.privacy-tip {
    background: rgba(191, 96, 89, 0.1);
    border: 1px solid rgba(191, 96, 89, 0.25);
    border-radius: 10px;
    padding: 12px;
    font-size: 13px;
    color: #666;
}
.privacy-tip i { color: #bf6059; margin-right: 5px; }

/* 卡密校验块 */
.verify-block {
    background: #e4e4e4;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.verify-block h4 { color: #432F21; }
.verify-block .feature-icon { color: #bf6059; }
.verify-status { text-align: center; padding: 10px 0; }
.verify-status .badge { padding: 8px 15px; font-size: 14px; margin-bottom: 15px; }
.verify-status .badge.success { background: rgba(191, 96, 89, 0.2); color: #bf6059; }
.verify-status .badge.expired { background: rgba(217, 43, 43, 0.2); color: #D92B2B; }
.card-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 15px 0; }
.card-info-item {
    text-align: center;
    padding: 12px 8px;
    background: rgba(0,0,0,0.05);
    border-radius: 8px;
}
.card-info-item .label { font-size: 12px; color: #666; margin-bottom: 5px; }
.card-info-item .value { font-size: 15px; font-weight: bold; color: #432F21; }

/* 表单 */
.form-control {
    background: #fff !important;
    border: 1px solid #D92B2B !important;
    color: #432F21 !important;
    border-radius: 10px;
    padding: 12px 15px;
    text-align: center;
}
.form-control:focus {
    border-color: #bf6059 !important;
    box-shadow: 0 0 0 0.2rem rgba(191, 96, 89, 0.25);
}
.form-control::placeholder { color: #999; }

/* 会员块 */
.member-block {
    background: #e4e4e4;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.member-block h4 { color: #432F21; }
.member-block .feature-icon { color: #F5A623; }
.price-tag { text-align: center; margin: 15px 0; }
.price-tag .old-price { color: #999; text-decoration: line-through; font-size: 14px; }
.price-tag .new-price { font-size: 1.8rem; font-weight: bold; color: #432F21; }
.price-tag .new-price span { color: #F5A623; font-size: 1.2rem; }
.benefits-list { text-align: left; margin: 15px 0; }
.benefits-list li { padding: 6px 0; color: #666; font-size: 14px; list-style: none; }
.benefits-list li i { color: #bf6059; margin-right: 8px; }

/* 按钮 */
.btn-action {
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    width: 100%;
    border: none;
}
.btn-verify { background: #bf6059; color: #fff; }
.btn-verify:hover {
    background: #C02424;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 36, 36, 0.3);
}
.btn-buy { background: #F5A623; color: #fff; }
.btn-buy:hover {
    background: #D59613;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 150, 19, 0.3);
}
.btn-red { background: #bf6059; color: #fff; }
.btn-red:hover {
    background: #C02424;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 36, 36, 0.3);
}
.btn-tools {
    background: linear-gradient(135deg, #bf6059, #C02424);
    border: none;
    border-radius: 30px;
    padding: 16px 40px;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-tools:hover {
    background: #C02424;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 36, 36, 0.4);
}

/* 侧边悬浮栏 */
.sidebar-subscribe {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: none;
}
.sidebar-subscribe.show { display: block; }
.sidebar-btn {
    background: #bf6059;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    color: #432F21;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(191, 96, 89, 0.3);
    transition: all 0.3s;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
.sidebar-btn:hover {
    background: #C02424;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 36, 36, 0.4);
}
.sidebar-panel {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #e4e4e4;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    padding: 20px;
    min-width: 220px;
    display: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.sidebar-panel.show { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-50%) translateX(-10px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.sidebar-panel h5 { font-size: 1rem; margin-bottom: 15px; color: #432F21; }
.sidebar-panel .price { font-size: 1.8rem; font-weight: bold; color: #bf6059; margin-bottom: 10px; }
.sidebar-panel .desc { font-size: 14px; color: #666; margin-bottom: 15px; }
.sidebar-panel .福利 { font-size: 13px; color: #bf6059; margin-bottom: 15px; }
.sidebar-panel, .sidebar-panel p, .sidebar-panel span { color: #432F21; }

/* Footer */
footer {
    text-align: center;
    padding: 25px 20px;
    color: #666;
    font-size: 14px;
    border-top: 1px solid rgba(0,0,0,0.1);
    background: #e4e4e4;
}
footer a { color: #666; text-decoration: none; margin: 0 10px; }
footer a:hover { color: #bf6059; }

/* 通用卡片 */
.card-custom {
    background: #e4e4e4;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.card-custom h3 { font-size: 17px; font-weight: bold; color: #432F21; margin-bottom: 20px; }

/* 功能卡片 */
.feature-item {
    background: #e4e4e4;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.feature-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.feature-item .feature-icon { color: #bf6059; }
.feature-item .feature-name { font-size: 16px; font-weight: bold; color: #432F21; margin-bottom: 8px; }
.feature-item .feature-desc { font-size: 14px; color: #666; }

/* 工具卡片 */
.tool-item {
    background: #e4e4e4;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.tool-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.tool-item .tool-icon { font-size: 2rem; margin-bottom: 10px; display: block; color: #bf6059; }
.tool-item .tool-name { font-size: 15px; font-weight: bold; color: #432F21; display: block; }
.tool-item .tool-desc { color: #666; font-size: 13px; display: block; }

/* 表格 */
.table-custom { width: 100%; border-collapse: collapse; margin: 20px 0; }
.table-custom th, .table-custom td { padding: 15px; text-align: center; border: 1px solid rgba(0,0,0,0.1); }
.table-custom th { background: #bf6059; color: #fff; font-weight: bold; }
.table-custom td { background: #e4e4e4; color: #666; }
.table-custom td:first-child { text-align: left; font-weight: 500; color: #432F21; }

/* 成功面板 */
.success-panel {
    background: rgba(191, 96, 89, 0.1);
    border: 1px solid rgba(191, 96, 89, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}
.success-icon { font-size: 3rem; color: #bf6059; margin-bottom: 10px; }

/* 状态标签 */
.status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin: 10px 0;
    background: rgba(191, 96, 89, 0.2);
    color: #bf6059;
}

/* 警告框 */
.alert-custom {
    background: rgba(191, 96, 89, 0.1);
    border: 1px solid rgba(191, 96, 89, 0.25);
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    color: #bf6059;
}

/* 返回按钮 */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #bf6059;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
}
.back-btn:hover { color: #C02424; }

/* 标题样式 */
h1, h2, h3, h4, h5, h6 { color: #432F21; font-weight: bold; }
h1 { font-size: 34px; }
h2 { font-size: 24px; }
h3 { font-size: 17px; }

/* 响应式 */
@media (max-width: 768px) {
    .hero-title { font-size: 1.6rem; }
    .pipeline-grid { grid-template-columns: 1fr; }
    .case-grid { grid-template-columns: 1fr; }
    .feature-col { padding: 0 10px; }
    .sidebar-subscribe { display: none !important; }
    .card-info-grid { grid-template-columns: 1fr; gap: 8px; }
}

/* 流程图样式 */
.flowchart-container { position: relative; }
.flowchart-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.flowchart-row-top { margin-bottom: 5px; }
.flowchart-row-bottom { margin-top: 5px; }
.step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.step-badge {
    min-width: 100px;
    padding: 12px 15px;
    border-radius: 10px;
    border: none !important;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
    outline: none !important;
    box-shadow: none !important;
    background: #e4e4e4;
    border: 2px solid #ccc !important;
}
.step-badge, .step-badge span { color: #432F21; }
.step-badge.active {
    background: rgba(191, 96, 89, 0.2);
    border: 2px solid #bf6059 !important;
}
.step-badge.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(191, 96, 89, 0.4);
}
.step-badge.pending {
    background: rgba(150, 150, 150, 0.3);
    border: 2px solid #999 !important;
}
.step-badge.pending span { color: #666; }
.step-badge.pending:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(150, 150, 150, 0.3);
}
.step-badge.completed {
    background: rgba(191, 96, 89, 0.2);
    border: 2px solid #bf6059 !important;
}
.step-badge.completed:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(191, 96, 89, 0.4);
}
.step-arrow {
    color: #999;
    font-size: 1.1rem;
    margin: 0 2px;
}
.step-link {
    font-size: 12px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.step-link:hover { color: #bf6059; }
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #bf6059;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
    position: fixed;
    top: 80px;
    left: 20px;
    z-index: 100;
}
.back-btn:hover { color: #C02424; }

/* 状态栏 */
.status-bar {
    background: #e4e4e4;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}
.status-item { text-align: center; min-width: 120px; }
.status-item .label { font-size: 14px; color: #666; margin-bottom: 5px; }
.status-item .value { font-size: 18px; font-weight: bold; display: flex; align-items: center; justify-content: center; gap: 5px; }
