/* ============================================
   CREATIVE VISUAL STORYTELLING ENHANCEMENTS
   ============================================ */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    margin: 0 auto 20px auto;
    animation: badgePulse 2s ease-in-out infinite;
}

.hero-badge i {
    font-size: 1.1rem;
}

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

/* Hero Value Props */
.hero-value-props {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.value-prop-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.6s ease forwards;
}

.hero-tagline ~ .hero-subtitle ~ .hero-value-props .value-prop-item:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-tagline ~ .hero-subtitle ~ .hero-value-props .value-prop-item:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-tagline ~ .hero-subtitle ~ .hero-value-props .value-prop-item:nth-child(3) {
    animation-delay: 0.5s;
}

.value-prop-item .prop-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
}

.value-prop-item span {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

/* Header Badges */
.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border: 1.5px solid rgba(102, 126, 234, 0.25);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.header-badge i {
    font-size: 1rem;
}

.header-badge.business-badge {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

/* Opportunity Tagline */
.opportunity-tagline {
    margin: 20px 0;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-left: 4px solid #3b82f6;
    border-radius: 12px;
}

.opportunity-tagline .tagline-text {
    font-size: 1.3rem;
    color: #1e293b;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.opportunity-tagline strong {
    color: #3b82f6;
    font-weight: 800;
    font-size: 1.4rem;
}

/* Content Badges */
.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.content-badge.weather-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    color: #2563eb;
    border: 1.5px solid rgba(59, 130, 246, 0.3);
}

.content-badge.assessment-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
    color: #059669;
    border: 1.5px solid rgba(16, 185, 129, 0.3);
}

.content-badge.maintenance-badge {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(249, 115, 22, 0.15) 100%);
    color: #ea580c;
    border: 1.5px solid rgba(245, 158, 11, 0.3);
}

.content-badge.roster-badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
    color: #7c3aed;
    border: 1.5px solid rgba(139, 92, 246, 0.3);
}

.content-badge i {
    font-size: 0.9rem;
}

/* Workflow Tagline */
.workflow-tagline {
    margin: 20px auto;
    max-width: 700px;
    padding: 18px 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.06) 0%, rgba(118, 75, 162, 0.06) 100%);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.15);
}

.workflow-tagline .tagline-text {
    font-size: 1.15rem;
    color: #475569;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.workflow-tagline strong {
    color: #667eea;
    font-weight: 700;
}

/* Business Promise */
.business-promise {
    margin: 25px 0 40px;
    padding: 22px 35px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.08) 100%);
    border-left: 5px solid #10b981;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.business-promise::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, 0.03) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.business-promise .promise-highlight {
    font-size: 1.35rem;
    color: #1e293b;
    font-weight: 500;
    margin: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.business-promise strong {
    color: #10b981;
    font-weight: 800;
}

/* Enhanced Step Numbers */
.workflow-step .step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}

/* Visual Emphasis for Important Points */
.benefit-list-main li strong,
.benefit-list li strong,
.feature-points li strong {
    color: #667eea;
    font-weight: 700;
}

/* Icon Animations */
.header-badge i,
.content-badge i {
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Metric Highlight Animation */
.metric-box {
    position: relative;
    overflow: hidden;
}

.metric-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: metricShine 4s ease-in-out infinite;
}

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

/* Hover Effects for Cards */
.benefit-card-main:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.problem-card:hover {
    transform: translateY(-5px);
}

/* Active Slide Emphasis */
.slide.active .header-badge {
    animation: badgeFadeIn 0.6s ease forwards, badgePulse 2s ease-in-out infinite 0.6s;
}

.slide.active .opportunity-tagline,
.slide.active .workflow-tagline,
.slide.active .business-promise {
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards 0.3s;
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-value-props {
        flex-direction: column;
        gap: 15px;
    }
    
    .opportunity-tagline .tagline-text,
    .workflow-tagline .tagline-text {
        font-size: 1.1rem;
    }
    
    .business-promise .promise-highlight {
        font-size: 1.15rem;
    }
    
    .value-prop-item {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   CTA ENHANCEMENTS
   ============================================ */

.cta-highlight {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1.5px solid rgba(102, 126, 234, 0.25);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    opacity: 0;
    animation: slideUpFade 0.6s ease forwards;
}

.slide-closing.active .highlight-item:nth-child(1) {
    animation-delay: 0.2s;
}

.slide-closing.active .highlight-item:nth-child(2) {
    animation-delay: 0.3s;
}

.slide-closing.active .highlight-item:nth-child(3) {
    animation-delay: 0.4s;
}

.highlight-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.cta-button {
    position: relative;
    overflow: hidden;
}

.button-arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* ============================================
   CTA ENHANCEMENTS
   ============================================ */
.metric-box {
    position: relative;
}

.metric-box::before {
    content: "↑";
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #10b981;
    font-weight: 900;
    opacity: 0.3;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Feature Point Emphasis */
.feature-points li {
    position: relative;
}

.feature-points li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.4s ease;
}

.feature-points li:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .cta-highlight {
        flex-direction: column;
        gap: 12px;
    }
    
    .highlight-item {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   SUMMARY CARDS
   ============================================ */

.summary-card {
    margin-top: 40px;
    padding: 30px 35px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 5px solid #f59e0b;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.2);
    opacity: 0;
    transform: translateY(20px);
}

.slide-business-case.active .summary-card {
    animation: slideUpFade 0.8s ease forwards 0.8s;
}

.summary-card .summary-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.summary-card h4 {
    font-size: 1.4rem;
    color: #78350f;
    margin: 0 0 12px 0;
    font-weight: 800;
}

.summary-card p {
    font-size: 1.2rem;
    color: #92400e;
    margin: 0;
    line-height: 1.7;
    font-weight: 500;
}

.summary-card strong {
    color: #b45309;
    font-weight: 800;
}

/* ============================================
   ENHANCED ANIMATIONS
   ============================================ */

.benefit-card-main,
.problem-card,
.value-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.workflow-step:hover {
    transform: translateY(-10px) scale(1.05);
}

@media (max-width: 768px) {
    .summary-card {
        padding: 20px;
    }
    
    .summary-card h4 {
        font-size: 1.2rem;
    }
    
    .summary-card p {
        font-size: 1rem;
    }
    
    .workflow-total-time {
        width: 100%;
        justify-content: center;
    }
}


