﻿/*.hero-section {
    min-height: 400px;
    padding: 1.5rem 0;
}

.hero-image-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}*/

/* Prevent layout shift with explicit sizing */
/*.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 0.375rem;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}*/

/* Enhanced CTA button styling */
.cta-button {
    transition: all 0.3s ease;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(var(--rz-primary-rgb), 0.4) !important;
    }

/* Modern Feature Cards Section */

.modern-feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

    .modern-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .modern-feature-card:hover::before {
        transform: scaleX(1);
    }

    .modern-feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.95);
    }

.modern-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Modern Transformation Section */

    .modern-transformation-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
        pointer-events: none;
    }

.modern-transformation-content {
    position: relative;
    z-index: 2;
}

.modern-before-after-container {
    position: relative;
}

.modern-before-after-image {
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

    .modern-before-after-image:hover {
        transform: scale(1.05);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    }

.modern-arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    margin: 0 auto;
}

/* Modern How It Works Section */
.modern-how-it-works {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
    .modern-how-it-works::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

/* Modern How It Works Section - add missing class declaration */
.modern-how-it-works-image {
}
    .modern-how-it-works-image:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

.modern-how-it-works-content {
    position: relative;
    z-index: 2;
}

.modern-steps-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    counter-reset: step-counter;
}

    .modern-steps-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 16px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

        .modern-steps-list li:hover {
            transform: translateX(12px);
            box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
            background: rgba(255, 255, 255, 0.95);
        }

        .modern-steps-list li::before {
            content: counter(step-counter);
            counter-increment: step-counter;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3b82f6, #6366f1);
            color: white;
            font-weight: 700;
            font-size: 1rem;
            margin-right: 1.25rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .modern-steps-list li .step-content {
            flex: 1;
            padding-top: 0.25rem;
        }

/* Modern Print Templates Section */
.modern-print-templates {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

    .modern-print-templates::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -50%;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
        pointer-events: none;
    }

.modern-print-templates-content {
    position: relative;
    z-index: 2;
}

.modern-feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

    .modern-feature-list li {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        padding: 0.75rem;
        border-radius: 12px;
        transition: all 0.2s ease;
    }

        .modern-feature-list li:hover {
            background: rgba(16, 185, 129, 0.05);
        }

        .modern-feature-list li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            font-weight: bold;
            font-size: 0.75rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }

.modern-template-image {
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .modern-template-image:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

/* Modern Target Segments Section */

.modern-segment-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

    .modern-segment-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
        background: rgba(255, 255, 255, 0.95);
    }

.modern-segment-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin: 0 auto 1.5rem;
}

    .modern-segment-image:hover {
        transform: scale(1.1);
        box-shadow: 0 16px 32px rgba(139, 92, 246, 0.2);
    }

/* Modern Testimonial Section */
.modern-testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.modern-quote-marks {
    font-size: 3rem;
    color: #3b82f6;
    line-height: 1;
    margin-bottom: 1rem;
}

/* Modern Compliance Section */
.modern-compliance-section {
    padding: 3rem;
}

.modern-compliance-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.modern-compliance-badge {
    transition: all 0.3s ease;
    filter: grayscale(0.3);
}

    .modern-compliance-badge:hover {
        transform: scale(1.1);
        filter: grayscale(0);
    }

/* Modern Tabs Section */
.modern-tabs-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.modern-tab-image {
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

    .modern-tab-image:hover {
        transform: scale(1.05);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    }


/* Common Modern Elements */
.modern-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modern-highlight {
    color: #3b82f6;
    font-weight: 600;
}

/* Modern FAQ Section - add missing class declaration */
.modern-faq-section {
}

/* Mobile optimizations */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 1rem 0 !important;
    }

    .hero-image-container {
        height: auto !important;
        margin-top: 1rem;
    }

    .display-5 {
        font-size: 2rem !important;
    }

    .cta-button {
        width: 100% !important;
        min-width: auto !important;
        max-width: 350px;
    }

    .modern-how-it-works,
    .modern-print-templates,
    .modern-features-section,
    .modern-transformation-section,
    .modern-target-segments,
    .modern-testimonial-section,
    .modern-compliance-section,
    .modern-tabs-section,
    .modern-faq-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
        border-radius: 20px;
    }

    .modern-section-title {
        font-size: 1.75rem;
    }

    .modern-steps-list li {
        padding: 1.25rem;
    }

        .modern-steps-list li:hover {
            transform: translateX(8px);
        }

    .modern-arrow-container {
        width: 48px;
        height: 48px;
    }

    .modern-compliance-badges {
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .cta-button {
        max-width: 320px;
    }
}
