/**
 * 快消品营销解决方案 - 区块样式
 */

/* Banner区块 */
.fmcg-banner {
    position: relative;
    background: linear-gradient(rgba(38, 50, 56, 0.8), rgba(38, 50, 56, 0.8)), url('/assets/images/fmcg/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 180px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.fmcg-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 110, 64, 0.3) 0%, transparent 70%);
    z-index: 1;
}

.fmcg-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,255,255,0.3)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: 0.1;
    z-index: 1;
    animation: floatingDots 60s linear infinite;
}

.fmcg-banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}

.fmcg-gradient-text {
    background: linear-gradient(90deg, var(--fmcg-primary), var(--fmcg-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(255,255,255,0.1);
}

.fmcg-banner h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.fmcg-banner h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: lightSweep 3s ease-in-out infinite;
}

.fmcg-banner p {
    font-size: 22px;
    margin-bottom: 40px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.fmcg-banner-highlight {
    background: rgba(255,255,255,0.15);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--fmcg-accent);
}

.fmcg-banner-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.fmcg-stat-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.fmcg-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.15);
}

.fmcg-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.fmcg-stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.fmcg-btn {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.fmcg-btn-primary {
    background: linear-gradient(45deg, var(--fmcg-primary), #FF8A65);
    border: none;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 110, 64, 0.3);
}

.fmcg-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 110, 64, 0.4);
    background: linear-gradient(45deg, #FF7043, var(--fmcg-primary));
}

.animated-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(255, 110, 64, 0.5);
    }
    100% {
        transform: scale(1);
    }
}

.fmcg-interactive-shelf {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.fmcg-shelf-slide {
    display: flex;
    gap: 20px;
    animation: shelfSlide 20s linear infinite;
}

.fmcg-shelf-item {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fmcg-shelf-item:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.fmcg-food-item i {
    color: var(--fmcg-primary);
    font-size: 24px;
}

.fmcg-beverage-item i {
    color: var(--fmcg-secondary);
    font-size: 24px;
}

.fmcg-daily-item i {
    color: var(--fmcg-tertiary);
    font-size: 24px;
}

/* 行业洞察区块 */
.fmcg-insights {
    padding: 5rem 0;
}

.fmcg-insight-card {
    border-left: 4px solid var(--fmcg-primary-orange);
    background-color: #fff;
    padding: 2rem;
    box-shadow: var(--fmcg-shadow-md);
    margin-bottom: 2rem;
    transition: var(--fmcg-transition-base);
}

.fmcg-insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.fmcg-insight-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--fmcg-text-primary);
}

.fmcg-insight-source {
    font-size: 0.875rem;
    color: var(--fmcg-text-secondary);
    font-style: italic;
}

.fmcg-insight-card:nth-child(2) {
    border-left-color: var(--fmcg-primary-blue);
}

.fmcg-insight-card:nth-child(3) {
    border-left-color: var(--fmcg-primary-green);
}

/* 解决方案区块 */
.fmcg-solutions {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.fmcg-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(0,0,0,0.03)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: 0.5;
    z-index: 1;
}

.fmcg-solutions .fmcg-section-intro {
    margin-bottom: 60px;
}

.fmcg-solution-group {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
    padding: 0 20px;
}

.fmcg-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--fmcg-dark);
}

.fmcg-tag {
    display: inline-block;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    background: var(--fmcg-primary);
    color: white;
    margin-right: 10px;
    vertical-align: middle;
    box-shadow: 0 3px 6px rgba(255, 110, 64, 0.2);
}

.fmcg-tag-secondary {
    background: var(--fmcg-secondary);
    box-shadow: 0 3px 6px rgba(41, 182, 246, 0.2);
}

.fmcg-tag-tertiary {
    background: var(--fmcg-tertiary);
    box-shadow: 0 3px 6px rgba(139, 195, 74, 0.2);
}

.fmcg-solution-card {
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 5px solid transparent;
}

.fmcg-solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.fmcg-row:nth-child(1) .fmcg-solution-card {
    border-top-color: var(--fmcg-primary);
}

.fmcg-row:nth-child(2) .fmcg-solution-card {
    border-top-color: var(--fmcg-secondary);
}

.fmcg-row:nth-child(3) .fmcg-solution-card {
    border-top-color: var(--fmcg-tertiary);
}

.fmcg-solution-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    background: var(--fmcg-primary-alpha);
    color: var(--fmcg-primary);
    font-size: 28px;
    transition: all 0.3s ease;
}

.fmcg-solution-card:hover .fmcg-solution-icon {
    background: var(--fmcg-primary);
    color: white;
    transform: scale(1.1);
}

.fmcg-solution-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--fmcg-dark);
}

.fmcg-solution-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #546E7A;
}

/* 执行路径区块 */
.fmcg-execution {
    padding: 5rem 0;
}

.fmcg-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.fmcg-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--fmcg-primary-orange);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.fmcg-timeline-item {
    padding: 1rem 2rem;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 2rem;
}

.fmcg-timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid var(--fmcg-primary-orange);
    top: 0;
    border-radius: 50%;
    z-index: 1;
}

.fmcg-timeline-item:nth-child(odd) {
    left: 0;
}

.fmcg-timeline-item:nth-child(even) {
    left: 50%;
}

.fmcg-timeline-item:nth-child(odd)::after {
    right: -12px;
}

.fmcg-timeline-item:nth-child(even)::after {
    left: -12px;
}

.fmcg-timeline-content {
    padding: 1.5rem;
    background-color: white;
    position: relative;
    border-radius: 8px;
    box-shadow: var(--fmcg-shadow-md);
}

.fmcg-timeline-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--fmcg-primary-orange);
    margin-bottom: 0.5rem;
}

.fmcg-timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.fmcg-timeline-text {
    font-size: 1rem;
    color: var(--fmcg-text-secondary);
}

.fmcg-timeline-case {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--fmcg-border-color);
}

/* 信任与转化区块 */
.fmcg-trust {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('/assets/images/fmcg/trust-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.fmcg-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--fmcg-primary), var(--fmcg-secondary), var(--fmcg-tertiary));
}

.fmcg-trust-card {
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fmcg-trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 110, 64, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.fmcg-trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.fmcg-trust-card:hover::before {
    opacity: 1;
}

.fmcg-trust-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    background: var(--fmcg-primary-alpha);
    color: var(--fmcg-primary);
    font-size: 32px;
    transition: all 0.3s ease;
}

.fmcg-trust-card:hover .fmcg-trust-icon {
    transform: scale(1.1);
    background: var(--fmcg-primary);
    color: white;
}

.fmcg-trust-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--fmcg-dark);
}

.fmcg-trust-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #546E7A;
    flex: 1;
}

.fmcg-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.fmcg-data-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 110, 64, 0.1);
    color: var(--fmcg-primary);
}

.fmcg-testimonial {
    margin-top: 60px !important;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.fmcg-testimonial p {
    font-size: 18px !important;
    line-height: 1.8 !important;
    margin-bottom: 15px !important;
}

.fmcg-testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    line-height: 1;
    color: rgba(255, 110, 64, 0.1);
    font-family: serif;
}

/* 工具库区块 */
.fmcg-tools {
    padding: 5rem 0;
}

.fmcg-tool-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--fmcg-shadow-md);
    padding: 1.5rem;
    height: 100%;
    transition: var(--fmcg-transition-base);
    display: flex;
    flex-direction: column;
}

.fmcg-tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.fmcg-tool-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.fmcg-tool-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--fmcg-primary-orange);
}

.fmcg-tool-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.fmcg-tool-desc {
    font-size: 1rem;
    color: var(--fmcg-text-secondary);
    flex-grow: 1;
}

.fmcg-tool-example {
    font-size: 0.875rem;
    color: var(--fmcg-text-primary);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--fmcg-border-color);
}

/* 视觉符号区块 */
.fmcg-visual {
    padding: 5rem 0;
    background-color: var(--fmcg-bg-light);
}

.fmcg-visual-element {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.fmcg-visual-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
}

.fmcg-visual-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.fmcg-visual-icon-orange {
    background-color: var(--fmcg-primary-orange);
    color: white;
}

.fmcg-visual-icon-blue {
    background-color: var(--fmcg-primary-blue);
    color: white;
}

.fmcg-visual-icon-green {
    background-color: var(--fmcg-primary-green);
    color: white;
}

.fmcg-visual-icon i {
    font-size: 2rem;
}

.fmcg-visual-label {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}

.fmcg-color-sample {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.fmcg-color-box {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.fmcg-color-orange {
    background-color: var(--fmcg-primary-orange);
}

.fmcg-color-blue {
    background-color: var(--fmcg-primary-blue);
}

.fmcg-color-green {
    background-color: var(--fmcg-primary-green);
}

.fmcg-color-gray {
    background-color: var(--fmcg-tech-gray);
}

/* 转化设计区块 */
.fmcg-conversion {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 110, 64, 0.05) 0%, rgba(41, 182, 246, 0.05) 100%);
    position: relative;
}

.fmcg-diagnostic {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.fmcg-diagnostic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--fmcg-primary), var(--fmcg-secondary));
}

.fmcg-diagnostic-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    color: var(--fmcg-dark);
}

.fmcg-diagnostic-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.fmcg-form-group {
    flex: 1;
    min-width: 250px;
}

.fmcg-form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--fmcg-dark);
    font-size: 16px;
}

.fmcg-form-input,
.fmcg-form-select,
.fmcg-form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.fmcg-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.fmcg-form-input:focus,
.fmcg-form-select:focus,
.fmcg-form-textarea:focus {
    border-color: var(--fmcg-primary);
    outline: none;
    box-shadow: 0 5px 20px rgba(255, 110, 64, 0.15);
    transform: translateY(-2px);
}

.fmcg-form-submit {
    margin-top: 20px;
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--fmcg-primary), #FF8A65);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 110, 64, 0.2);
}

.fmcg-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 110, 64, 0.3);
}

.fmcg-pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.fmcg-price-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--fmcg-shadow-md);
    padding: 2rem;
    text-align: center;
    transition: var(--fmcg-transition-base);
}

.fmcg-price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.fmcg-price-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fmcg-price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--fmcg-price-red);
}

.fmcg-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.fmcg-price-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--fmcg-border-color);
}

.fmcg-price-features li:last-child {
    border-bottom: none;
}

.fmcg-bonus {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #fff3e0;
    border-radius: 8px;
    border-left: 4px solid var(--fmcg-primary-orange);
}

.fmcg-bonus-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--fmcg-primary-orange);
}

.fmcg-bonus-text {
    font-size: 1rem;
    color: var(--fmcg-text-primary);
}

/* 价值主张区块 */
.fmcg-value {
    padding: 5rem 0;
    background-color: var(--fmcg-bg-light);
    text-align: center;
}

.fmcg-value-statement {
    font-size: 1.75rem;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: var(--fmcg-text-primary);
}

.fmcg-value-highlight {
    color: var(--fmcg-primary-orange);
}

/* 创新点区块 */
.fmcg-innovation {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.fmcg-innovation::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, white, transparent);
    z-index: 1;
}

.fmcg-innovation-card {
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.fmcg-innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--fmcg-primary);
    opacity: 0.8;
}

.fmcg-innovation-card:nth-child(2)::before {
    background: var(--fmcg-secondary);
}

.fmcg-innovation-card:nth-child(3)::before {
    background: var(--fmcg-tertiary);
}

.fmcg-innovation-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.fmcg-innovation-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--fmcg-dark);
    padding-left: 15px;
    position: relative;
}

.fmcg-innovation-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #546E7A;
    margin-bottom: 20px;
}

.fmcg-innovation-example {
    background: rgba(255, 110, 64, 0.1);
    border-radius: 10px;
    padding: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--fmcg-primary);
    font-weight: 500;
    position: relative;
}

.fmcg-innovation-example::before {
    content: '案例';
    position: absolute;
    top: -10px;
    left: 15px;
    background: var(--fmcg-primary);
    color: white;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.fmcg-innovation-conclusion {
    margin-top: 60px !important;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 3;
}

/* 行业适配区块 */
.fmcg-adaptation {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.fmcg-category-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--fmcg-border-color);
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.fmcg-category-tab {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--fmcg-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 30px;
    margin: 0 10px;
}

.fmcg-category-tab.active {
    color: white;
    background: var(--fmcg-primary);
    box-shadow: 0 5px 15px rgba(255, 110, 64, 0.3);
}

.fmcg-category-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.fmcg-category-content.active {
    display: block;
}

.fmcg-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fmcg-feature-item {
    padding: 15px 0;
    display: flex;
    align-items: start;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.fmcg-feature-item:last-child {
    border-bottom: none;
}

.fmcg-feature-icon {
    margin-right: 15px;
    color: var(--fmcg-primary);
    flex-shrink: 0;
    margin-top: 5px;
    font-size: 18px;
}

.fmcg-feature-text {
    font-size: 16px;
    line-height: 1.7;
    color: #546E7A;
}

.fmcg-feature-text strong {
    color: var(--fmcg-dark);
    font-weight: 700;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shelfSlide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes floatingDots {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

@keyframes lightSweep {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* 增强视觉效果的粒子动画 */
.fmcg-banner {
    position: relative;
}

.fmcg-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,255,255,0.3)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: 0.1;
    z-index: 1;
    animation: floatingDots 60s linear infinite;
}

@keyframes floatingDots {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* 增强标题动画效果 */
.fmcg-banner h1 {
    position: relative;
    overflow: hidden;
}

.fmcg-banner h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: lightSweep 3s ease-in-out infinite;
}

@keyframes lightSweep {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* 增强按钮悬停效果 */
.fmcg-btn-primary:hover {
    box-shadow: 0 0 20px rgba(255, 110, 64, 0.5);
    transform: translateY(-3px);
}

/* 增强卡片悬停效果 */
.fmcg-insight-card:hover,
.fmcg-solution-card:hover,
.fmcg-innovation-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

/* 增强信任卡片背景效果 */
.fmcg-trust-card {
    background: linear-gradient(145deg, #f8f9fa, #ececec);
}

.fmcg-trust-card:hover {
    background: linear-gradient(145deg, #ececec, #f8f9fa);
}

/* 增强时间线动画 */
.fmcg-timeline-dot {
    box-shadow: 0 0 0 5px rgba(255, 110, 64, 0.2);
    animation: pulse 2s infinite;
}

/* 增强表单输入焦点效果 */
.fmcg-form-input:focus,
.fmcg-form-select:focus,
.fmcg-form-textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 110, 64, 0.15);
    transform: translateY(-2px);
}

/* 增强提交按钮效果 */
.fmcg-form-submit:hover {
    box-shadow: 0 5px 15px rgba(255, 213, 79, 0.4);
    transform: translateY(-3px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .fmcg-banner h1 {
        font-size: 48px;
    }
    
    .fmcg-banner-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .fmcg-stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .fmcg-diagnostic {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .fmcg-banner h1 {
        font-size: 36px;
    }
    
    .fmcg-banner p {
        font-size: 18px;
    }
    
    .fmcg-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .fmcg-subtitle {
        font-size: 26px;
    }
    
    .fmcg-trust-card,
    .fmcg-innovation-card,
    .fmcg-solution-card {
        padding: 25px 20px;
    }
} 