/**
 * 媲美科技 - 用户体验向导样式
 * 开机向导风格的用户引导系统 - 线性简约图标风格
 */

/* 向导遮罩层 */
.user-guide-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.user-guide-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

/* 向导容器 */
.user-guide-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0a0a0f 100%);
    border-radius: 24px;
    border: 1px solid rgba(125, 83, 93, 0.4);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(125, 83, 93, 0.2);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.user-guide-overlay.active .user-guide-container {
    transform: scale(1);
}

/* 顶部进度条 */
.guide-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(125, 83, 93, 0.2);
    z-index: 10;
}

.guide-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color, #7D535D), #9a7280);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(125, 83, 93, 0.5);
}

/* 步骤指示器 */
.guide-steps-indicator {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 25px 0 15px;
    background: rgba(125, 83, 93, 0.05);
    border-bottom: 1px solid rgba(125, 83, 93, 0.1);
}

.guide-step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(125, 83, 93, 0.15);
    border: 2px solid rgba(125, 83, 93, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.guide-step-dot:hover {
    transform: scale(1.1);
    border-color: rgba(125, 83, 93, 0.6);
}

.guide-step-dot.active {
    background: linear-gradient(135deg, var(--primary-color, #7D535D), #5a3d44);
    border-color: var(--primary-color, #7D535D);
    color: #fff;
    box-shadow: 0 0 20px rgba(125, 83, 93, 0.5);
    transform: scale(1.15);
}

.guide-step-dot.completed {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    color: #22c55e;
}

.guide-step-dot.completed::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.guide-step-dot.completed span {
    display: none;
}

/* 步骤标签 */
.guide-step-label {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.guide-step-dot:hover .guide-step-label,
.guide-step-dot.active .guide-step-label {
    opacity: 1;
    top: 55px;
}

/* 内容区域 */
.guide-content {
    padding: 40px 50px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.guide-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.guide-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 步骤标题 */
.guide-step-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color, #7D535D) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guide-step-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 35px;
}

/* 欢迎步骤特殊样式 */
.guide-welcome {
    text-align: center;
    padding: 20px 0;
}

/* Logo容器 */
.guide-welcome-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(125, 83, 93, 0.2), rgba(125, 83, 93, 0.05));
    border: 2px solid rgba(125, 83, 93, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    animation: pulseGlow 2s infinite;
}

.guide-welcome-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(125, 83, 93, 0.2);
    }
    50% {
        box-shadow: 0 0 50px rgba(125, 83, 93, 0.4);
    }
}

.guide-welcome h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.guide-welcome p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* 场景卡片网格 */
.guide-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.guide-scenario-card {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(125, 83, 93, 0.2);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.guide-scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color, #7D535D), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guide-scenario-card:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 83, 93, 0.5);
    box-shadow: 0 15px 40px rgba(125, 83, 93, 0.2);
}

.guide-scenario-card:hover::before {
    opacity: 1;
}

.guide-scenario-card.selected {
    border-color: var(--primary-color, #7D535D);
    background: rgba(125, 83, 93, 0.15);
    box-shadow: 0 0 30px rgba(125, 83, 93, 0.3);
}

.guide-scenario-card.selected::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

/* 线性图标样式 */
.guide-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(125, 83, 93, 0.2), rgba(125, 83, 93, 0.05));
    border: 1.5px solid rgba(125, 83, 93, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.guide-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-color, #7D535D);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.guide-scenario-card:hover .guide-icon {
    transform: scale(1.05);
    border-color: rgba(125, 83, 93, 0.5);
    box-shadow: 0 0 20px rgba(125, 83, 93, 0.2);
}

.guide-scenario-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
}

.guide-scenario-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* 方案展示 */
.guide-solution-showcase {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 25px 0;
}

.guide-solution-visual {
    flex: 1;
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(125, 83, 93, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.guide-solution-visual .guide-icon-large {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(125, 83, 93, 0.2), rgba(125, 83, 93, 0.05));
    border: 2px solid rgba(125, 83, 93, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-solution-visual .guide-icon-large svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color, #7D535D);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.guide-solution-visual h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}

.guide-solution-visual p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.guide-solution-features {
    flex: 1;
}

.guide-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(125, 83, 93, 0.08);
    border: 1px solid rgba(125, 83, 93, 0.15);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.guide-feature-item:hover {
    background: rgba(125, 83, 93, 0.15);
    border-color: rgba(125, 83, 93, 0.3);
    transform: translateX(5px);
}

.guide-feature-item .check-icon {
    width: 24px;
    height: 24px;
    background: rgba(34, 197, 94, 0.15);
    border: 1.5px solid rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guide-feature-item .check-icon svg {
    width: 14px;
    height: 14px;
    stroke: #22c55e;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.guide-feature-item span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Demo 步骤 */
.guide-demo-preview {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(125, 83, 93, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin: 25px 0;
}

.guide-demo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.guide-demo-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(125, 83, 93, 0.08);
    border: 1px solid rgba(125, 83, 93, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guide-demo-item:hover {
    background: rgba(125, 83, 93, 0.15);
    border-color: rgba(125, 83, 93, 0.4);
    transform: translateX(5px);
}

.guide-demo-item .guide-icon {
    width: 50px;
    height: 50px;
    margin: 0;
    border-radius: 12px;
}

.guide-demo-item .guide-icon svg {
    width: 24px;
    height: 24px;
}

.guide-demo-item .info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
}

.guide-demo-item .info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* 报价步骤 */
.guide-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.guide-pricing-card {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(125, 83, 93, 0.2);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.guide-pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(125, 83, 93, 0.4);
}

.guide-pricing-card.popular {
    border-color: var(--primary-color, #7D535D);
    background: rgba(125, 83, 93, 0.1);
    transform: scale(1.05);
}

.guide-pricing-card.popular::before {
    content: '推荐';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color, #7D535D), #5a3d44);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.guide-pricing-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
}

.guide-pricing-card .price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color, #7D535D);
    font-weight: 700;
    margin-bottom: 5px;
}

.guide-pricing-card .price-unit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.guide-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}

.guide-pricing-card ul li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(125, 83, 93, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-pricing-card ul li .check-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-pricing-card ul li .check-icon svg {
    width: 14px;
    height: 14px;
    stroke: #22c55e;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* 联系销售步骤 */
.guide-contact-form {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(125, 83, 93, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin: 25px 0;
}

.guide-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.guide-form-group {
    text-align: left;
}

.guide-form-group label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.guide-form-group input,
.guide-form-group select,
.guide-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(125, 83, 93, 0.1);
    border: 1px solid rgba(125, 83, 93, 0.3);
    border-radius: 10px;
    font-size: 0.95rem;
    color: #fff;
    transition: all 0.3s ease;
}

.guide-form-group input:focus,
.guide-form-group select:focus,
.guide-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color, #7D535D);
    box-shadow: 0 0 15px rgba(125, 83, 93, 0.2);
    background: rgba(125, 83, 93, 0.15);
}

.guide-form-group input::placeholder,
.guide-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.guide-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* 下拉菜单样式 - 黑底白字 */
.guide-form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
    cursor: pointer;
}

.guide-form-group select option {
    background: #1a1a2e;
    color: #fff;
    padding: 10px;
    font-size: 0.95rem;
}

.guide-form-group select option:hover,
.guide-form-group select option:focus,
.guide-form-group select option:checked {
    background: rgba(125, 83, 93, 0.5);
    color: #fff;
}

/* 下拉菜单打开时的样式 */
.guide-form-group select:focus option {
    background: #1a1a2e;
}

.guide-offer-banner {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.guide-offer-banner .offer-icon {
    width: 50px;
    height: 50px;
    background: rgba(34, 197, 94, 0.15);
    border: 1.5px solid rgba(34, 197, 94, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guide-offer-banner .offer-icon svg {
    width: 26px;
    height: 26px;
    stroke: #22c55e;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.guide-offer-banner .text h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #22c55e;
    margin-bottom: 5px;
}

.guide-offer-banner .text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 底部按钮区域 */
.guide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background: rgba(125, 83, 93, 0.05);
    border-top: 1px solid rgba(125, 83, 93, 0.1);
}

.guide-btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.guide-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(125, 83, 93, 0.3);
}

.guide-btn-secondary:hover {
    background: rgba(125, 83, 93, 0.1);
    border-color: rgba(125, 83, 93, 0.5);
    color: #fff;
}

.guide-btn-primary {
    background: linear-gradient(135deg, var(--primary-color, #7D535D), #5a3d44);
    color: #fff;
    box-shadow: 0 4px 15px rgba(125, 83, 93, 0.4);
}

.guide-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(125, 83, 93, 0.5);
}

.guide-btn-skip {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.guide-btn-skip:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* 关闭按钮 */
.guide-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(125, 83, 93, 0.1);
    border: 1px solid rgba(125, 83, 93, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.guide-close-btn:hover {
    background: rgba(125, 83, 93, 0.2);
    border-color: rgba(125, 83, 93, 0.5);
    transform: rotate(90deg);
}

.guide-close-btn svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.7);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* 高亮元素效果 */
.guide-highlight {
    position: relative;
    z-index: 10001;
    box-shadow: 0 0 0 4px rgba(125, 83, 93, 0.5), 0 0 30px rgba(125, 83, 93, 0.3);
    animation: highlightPulse 2s infinite;
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(125, 83, 93, 0.5), 0 0 30px rgba(125, 83, 93, 0.3);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(125, 83, 93, 0.7), 0 0 50px rgba(125, 83, 93, 0.5);
    }
}

/* 提示气泡 */
.guide-tooltip {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-color, #7D535D), #5a3d44);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    z-index: 10002;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.guide-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-color, #7D535D);
}

/* 完成步骤 */
.guide-complete {
    text-align: center;
    padding: 40px 0;
}

.guide-complete-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: completeBounce 0.6s ease;
}

.guide-complete-icon svg {
    width: 50px;
    height: 50px;
    stroke: #22c55e;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes completeBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.guide-complete h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.guide-complete p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.guide-complete-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 灯泡提示图标 */
.guide-tip-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-right: 8px;
}

.guide-tip-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color, #7D535D);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* 信息图标 */
.guide-info-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-right: 8px;
}

.guide-info-icon svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.6);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .user-guide-container {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .guide-content {
        padding: 25px 20px;
        min-height: auto;
    }

    .guide-steps-indicator {
        padding: 20px 10px 10px;
        gap: 8px;
    }

    .guide-step-dot {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .guide-step-label {
        display: none;
    }

    .guide-scenarios-grid,
    .guide-pricing-cards {
        grid-template-columns: 1fr;
    }

    .guide-solution-showcase {
        flex-direction: column;
    }

    .guide-demo-grid {
        grid-template-columns: 1fr;
    }

    .guide-form-row {
        grid-template-columns: 1fr;
    }

    .guide-footer {
        padding: 20px 25px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .guide-step-title {
        font-size: 1.4rem;
    }

    .guide-welcome h2 {
        font-size: 1.6rem;
    }

    .guide-welcome-logo {
        width: 140px;
        height: 140px;
        padding: 20px;
    }
}

/* 动画效果 */
.guide-fade-in {
    animation: fadeIn 0.4s ease;
}

.guide-slide-up {
    animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 加载动画 */
.guide-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
}

.guide-loading span {
    width: 10px;
    height: 10px;
    background: var(--primary-color, #7D535D);
    border-radius: 50%;
    animation: loadingBounce 1.4s infinite ease-in-out both;
}

.guide-loading span:nth-child(1) { animation-delay: -0.32s; }
.guide-loading span:nth-child(2) { animation-delay: -0.16s; }

@keyframes loadingBounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}
