/* Landing Pages Shared Styles */

/* Free Badge & CTA Styling */
.hero-free-badge {
    display: flex;
    justify-content: center;
}

.free-badge {
    background: linear-gradient(45deg, #10b981, #34d399);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: pulse 2s infinite;
}

.free-badge-large {
    background: linear-gradient(45deg, #10b981, #34d399);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    animation: bounce 2s infinite;
    display: inline-block;
    margin: 20px 0;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Pricing & Feature Styles */
.pricing-item.free-tier {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.15));
    border-color: rgba(16, 185, 129, 0.3);
}

.pricing-item.free-tier .popular-badge {
    background: linear-gradient(to right, #10b981, #34d399);
}

/* Hero Image Styling */
.hero-image-styled {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Video Container Styling */
.video-container-styled {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Process Steps Styling */
.process-steps {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.process-steps li {
    margin-bottom: 15px;
}

.process-steps .step-number {
    color: var(--accent-color, #d862b4);
    font-weight: 600;
    margin-right: 10px;
}

/* Benefits List Styling */
.benefits-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.benefits-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.benefits-list .check-icon {
    color: var(--accent-color, #d862b4);
    margin-right: 10px;
    margin-top: 3px;
}

/* Pain Point Sections */
.pain-point-section {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(255, 99, 71, 0.1));
    border: 2px solid rgba(255, 99, 71, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.solution-section {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

/* Time-focused styles */
.time-waste-section {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 87, 34, 0.1));
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.time-save-section {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1));
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

/* Money-focused styles */
.money-waste-section {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(255, 152, 0, 0.1));
    border: 2px solid rgba(244, 67, 54, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.money-save-section {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1));
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

/* Business growth styles */
.bottleneck-section {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1), rgba(244, 67, 54, 0.1));
    border: 2px solid rgba(255, 87, 34, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.growth-section {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(103, 58, 183, 0.1));
    border: 2px solid rgba(33, 150, 243, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

/* Calculator styles */
.time-calculator,
.savings-calculator,
.capacity-calculator {
    background: rgba(20, 10, 38, 0.8);
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    border: 2px solid rgba(109, 8, 209, 0.3);
}

.time-calculator {
    padding: 30px;
}

/* Big numbers */
.big-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color, #d862b4);
    display: block;
}

.big-dollar {
    font-size: 56px;
    font-weight: 700;
    color: #4caf50;
    display: block;
}

.waste-dollar {
    font-size: 56px;
    font-weight: 700;
    color: #f44336;
    display: block;
}

.big-multiplier {
    font-size: 64px;
    font-weight: 700;
    color: #2196f3;
    display: block;
}

.revenue-number {
    font-size: 48px;
    font-weight: 700;
    color: #4caf50;
    display: block;
}

/* Emoji styles */
.pain-point-icon,
.solution-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pain-point-icon {
    color: #ff6347;
}

.solution-icon {
    color: #10b981;
}

.time-emoji,
.money-emoji,
.growth-emoji {
    font-size: 32px;
    margin-right: 15px;
}

.growth-emoji {
    font-size: 40px;
}

.pain-emoji {
    font-size: 24px;
    margin-right: 10px;
}

/* CTA boxes */
.free-trial-box,
.roi-highlight,
.growth-path {
    background: linear-gradient(45deg, #10b981, #34d399);
    border-radius: 20px;
    padding: 40px;
    color: white;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
}

.growth-path {
    background: linear-gradient(45deg, #2196f3, #673ab7);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.3);
}

.free-trial-box h3,
.roi-highlight h3,
.growth-path h3 {
    color: white;
    margin-bottom: 20px;
}

/* Testimonial and feature boxes */
.testimonial-time,
.scaling-benefit {
    background: rgba(20, 10, 38, 0.6);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid var(--accent-color, #d862b4);
    margin: 20px 0;
}

/* Comparison styles */
.comparison-table {
    background: rgba(20, 10, 38, 0.6);
    border-radius: 15px;
    overflow: hidden;
    margin: 30px 0;
}

.comparison-table th {
    background: linear-gradient(45deg, #6d08d1, #d862b4);
    color: white;
    padding: 15px;
    text-align: center;
}

.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(109, 8, 209, 0.1);
}

.vs-section {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(139, 69, 19, 0.1));
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
}

.vs-section.winner {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1));
    border: 2px solid rgba(76, 175, 80, 0.3);
}

/* Before/after and business stage styles */
.before-after,
.business-stage {
    background: rgba(20, 10, 38, 0.6);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    text-align: center;
    border: 2px solid rgba(109, 8, 209, 0.2);
}

.before-after.before {
    border-left: 5px solid #f44336;
}

.before-after.after {
    border-left: 5px solid #4caf50;
}

.stage-active {
    border-color: var(--accent-color, #d862b4);
    background: linear-gradient(135deg, rgba(109, 8, 209, 0.15), rgba(216, 98, 180, 0.15));
}

/* Cost breakdown */
.cost-breakdown {
    background: rgba(20, 10, 38, 0.4);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid rgba(109, 8, 209, 0.2);
}

/* Percentage badge */
.percentage-badge {
    background: linear-gradient(45deg, #ff9800, #ff5722);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0;
}

/* Check and X marks */
.check-mark {
    color: #10b981;
    font-size: 18px;
}

.x-mark {
    color: #ff6347;
    font-size: 18px;
}

/* Arrow styles */
.arrow-right {
    font-size: 24px;
    color: var(--accent-color, #d862b4);
}

/* List styles */
.clean-list {
    list-style: none;
    padding: 0;
}

.clean-list li {
    margin: 10px 0;
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features-list li {
    margin: 8px 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .big-number,
    .big-dollar,
    .waste-dollar {
        font-size: 36px;
    }
    
    .big-multiplier {
        font-size: 48px;
    }
    
    .revenue-number {
        font-size: 32px;
    }
    
    .free-badge-large {
        font-size: 18px;
        padding: 12px 24px;
    }
    
    .pain-point-icon,
    .solution-icon {
        font-size: 36px;
    }
    
    .time-emoji,
    .money-emoji,
    .growth-emoji {
        font-size: 24px;
    }
}
