/* Homepage Widget Embedded in Landing Page - NO BORDERS */
.ly-homepage-embedded {
    margin: 0;
    padding: 60px 30px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 
        0 4px 20px rgba(13, 79, 82, 0.15),
        inset 0 2px 0 rgba(13, 79, 82, 0.1);
    position: relative;
}

/* Remove the bold emphasis line at top */
.ly-homepage-embedded::before {
    display: none;
}

.ly-homepage-embedded .ly-steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Main Title - HORMOZI STYLE */
.ly-homepage-embedded .ly-main-title {
    text-align: center;
    font-size: <?php echo esc_attr(get_option('loyalyard_landing_homepage_title_size', '2.8')); ?>rem;
    font-weight: 900;
    color: <?php echo esc_attr(get_option('loyalyard_landing_homepage_title_color', '#0d4f52')); ?>;
    margin: 0 0 3rem 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #0d4f52 0%, #448288 50%, #0d4f52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1rem;
}

/* Underline accent */
.ly-homepage-embedded .ly-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0d4f52, #448288);
    border-radius: 2px;
}

/* 3 Steps Grid - Vertical Stack */
.ly-homepage-embedded .ly-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.ly-homepage-embedded .ly-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.ly-homepage-embedded .ly-step:last-child {
    border-bottom: none;
}

.ly-homepage-embedded .ly-step-num {
    width: <?php echo esc_attr(get_option('loyalyard_landing_homepage_circle_size', '80')); ?>px;
    height: <?php echo esc_attr(get_option('loyalyard_landing_homepage_circle_size', '80')); ?>px;
    background: linear-gradient(135deg, #0d4f52 0%, #448288 50%, #0d4f52 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: <?php echo esc_attr(get_option('loyalyard_landing_homepage_number_size', '2')); ?>rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 
        0 4px 16px rgba(13, 79, 82, 0.3),
        0 0 0 4px #ffffff,
        0 0 0 6px #0d4f52,
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ly-homepage-embedded .ly-step:hover .ly-step-num {
    transform: scale(1.05);
    box-shadow: 
        0 6px 24px rgba(13, 79, 82, 0.4),
        0 0 0 4px #ffffff,
        0 0 0 6px #0d4f52,
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.ly-homepage-embedded .ly-step-content {
    flex: 1;
    padding-top: 0.25rem;
}

.ly-homepage-embedded .ly-step h3 {
    font-size: <?php echo esc_attr(get_option('loyalyard_landing_homepage_step_size', '1.5')); ?>rem;
    font-weight: 700;
    color: <?php echo esc_attr(get_option('loyalyard_landing_homepage_step_color', '#1a202c')); ?>;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.ly-homepage-embedded .ly-step-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Checkmark Bullets for Step 3 */
.ly-homepage-embedded .ly-step-checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.ly-homepage-embedded .ly-step-checklist li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
}

.ly-homepage-embedded .ly-step-checklist li:last-child {
    margin-bottom: 0;
}

.ly-homepage-embedded .ly-step-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: <?php echo esc_attr(get_option('loyalyard_landing_homepage_circle_color', '#044D50')); ?>;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ly-homepage-embedded {
        padding: 40px 20px;
    }

    .ly-homepage-embedded .ly-main-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .ly-homepage-embedded .ly-steps {
        gap: 0;
    }

    .ly-homepage-embedded .ly-step {
        padding: 1.5rem 0;
        gap: 1.25rem;
    }

    .ly-homepage-embedded .ly-step-num {
        flex-shrink: 0;
        margin: 0;
    }

    .ly-homepage-embedded .ly-step h3 {
        font-size: 1.125rem;
        margin: 0 0 0.5rem 0;
    }
    
    .ly-homepage-embedded .ly-step-desc {
        font-size: 0.9375rem;
    }
}

