/* Megaleads Funnel - Fully Customizable Design */

* {
    box-sizing: border-box;
}

.mf-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--mf-container-bg, #f5f5f5);
    min-height: var(--mf-widget-height, 700px);
    color: var(--mf-title-color, #1a1a1a);
    line-height: 1.6;
}

/* Progress Bar */
.mf-progress {
    padding: 20px 0;
    margin-bottom: var(--mf-progress-margin, 24px);
}

.mf-progress-bar {
    height: var(--mf-progress-height, 4px);
    background: var(--mf-progress-bg, #e5e7eb);
    border-radius: calc(var(--mf-progress-height, 4px) / 2);
    overflow: hidden;
    margin-bottom: 8px;
}

.mf-progress-fill {
    height: 100%;
    background: var(--mf-progress-fill, #1a1a1a);
    border-radius: calc(var(--mf-progress-height, 4px) / 2);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mf-progress-text {
    font-size: 13px;
    color: var(--mf-progress-text, #6b7280);
    text-align: center;
}

/* Steps Container */
.mf-steps-container {
    max-width: var(--mf-container-max-width, 600px);
    margin: 0 auto;
    padding: var(--mf-container-padding, 20px 20px 40px 20px);
}

.mf-step {
    display: none;
    animation: mfFadeIn 0.4s ease;
}

.mf-step.active {
    display: block;
}

@keyframes mfFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mf-step-content {
    background: var(--mf-card-bg, #ffffff);
    border-radius: var(--mf-card-radius, 16px);
    overflow: hidden;
    box-shadow: var(--mf-card-shadow, 0 4px 20px rgba(0, 0, 0, 0.08));
}

/* Step Header with Image */
.mf-step-header {
    width: 100%;
    height: var(--mf-image-height, 200px);
    overflow: hidden;
    border-radius: var(--mf-image-radius, 16px 16px 0 0);
}

.mf-step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Progress Bar inside step */
.mf-step-content .mf-progress {
    padding: 20px var(--mf-content-padding, 20px) 0;
    background: transparent;
    border: none;
}

/* Step content area below image */
.mf-step-content .mf-step-title {
    padding: 0 var(--mf-content-padding, 20px);
}

.mf-step-content .mf-step-subtitle {
    padding: 0 var(--mf-content-padding, 20px);
}

.mf-step-content .mf-options {
    padding: 0 var(--mf-content-padding, 20px);
}

.mf-step-content .mf-btn-group {
    padding: 0 var(--mf-content-padding, 20px) 32px;
}

.mf-step-content .mf-address-form,
.mf-step-content .mf-contact-form,
.mf-step-content .mf-form {
    padding: 0 var(--mf-content-padding, 20px);
    margin-top: var(--mf-form-margin-top, 0);
    margin-bottom: var(--mf-form-margin-bottom, 0);
}

.mf-step-content .mf-quick-dates {
    padding: 0 var(--mf-content-padding, 20px);
}

.mf-step-content .mf-calendar {
    margin: 0 var(--mf-content-padding, 20px) 20px;
}

.mf-step-content .mf-timeslots {
    padding: 0 var(--mf-content-padding, 20px);
}

@media (max-width: 768px) {
    .mf-container {
        --mf-content-padding: var(--mf-content-padding-mobile, 16px);
    }
    
    .mf-step-header {
        height: 150px;
    }
}

/* Step Titles */
.mf-step-title {
    font-size: var(--mf-title-size, 28px);
    font-weight: 700;
    color: var(--mf-title-color, #1a1a1a);
    margin: 0 0 var(--mf-title-margin, 8px) 0;
    text-align: center;
    letter-spacing: -0.02em;
}

.mf-step-subtitle {
    font-size: var(--mf-subtitle-size, 16px);
    color: var(--mf-subtitle-color, #6b7280);
    margin: 0 0 var(--mf-subtitle-margin, 32px) 0;
    text-align: center;
}

/* Labels */
.mf-form-group label {
    display: block;
    font-size: var(--mf-label-size, 14px);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--mf-label-color, #374151);
}

/* Option text */
.mf-option-text {
    flex: 1;
    font-size: var(--mf-option-text-size, 16px);
    font-weight: 500;
    color: var(--mf-option-text-color, #1a1a1a);
}

.mf-option-icon {
    font-size: var(--mf-option-icon-size, 24px);
}

/* Buttons */
.mf-container .mf-btn,
.mf-container button.mf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: var(--mf-btn-padding, 18px 40px) !important;
    font-size: var(--mf-btn-font-size, 16px) !important;
    font-weight: 600 !important;
    border-radius: var(--mf-btn-radius, 12px) !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
    line-height: 1.4;
}

.mf-container .mf-btn-primary,
.mf-container button.mf-btn-primary {
    background: var(--mf-btn-bg, #1a1a1a) !important;
    color: var(--mf-btn-text, #ffffff) !important;
}

.mf-container .mf-btn-primary:hover {
    background: var(--mf-btn-hover, #333333) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mf-container .mf-btn-secondary,
.mf-container button.mf-btn-secondary {
    background: var(--mf-btn-secondary-bg, transparent) !important;
    color: var(--mf-btn-secondary-text, #6b7280) !important;
    border: 2px solid var(--mf-btn-secondary-border, #e5e7eb) !important;
}

.mf-container .mf-btn-secondary:hover {
    background: #f9fafb !important;
    border-color: #d1d5db !important;
    color: #374151 !important;
}

.mf-container .mf-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.mf-form input.mf-error,
.mf-form-group input.mf-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.mf-privacy-group.mf-error {
    color: #ef4444;
}

.mf-privacy-group.mf-error input {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

.mf-btn-large {
    padding: 20px 48px !important;
    font-size: 18px !important;
}

.mf-btn-arrow {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.mf-btn:hover .mf-btn-arrow {
    transform: translateX(4px);
}

.mf-btn-group {
    display: flex;
    justify-content: center;
    gap: var(--mf-btn-group-gap, 16px);
    margin-top: var(--mf-btn-group-margin-top, 40px);
    margin-bottom: var(--mf-btn-group-margin-bottom, 32px);
}

/* Quick Date Buttons */
.mf-quick-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.mf-quick-date {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: var(--mf-radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.mf-quick-date:hover {
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.mf-quick-date.selected {
    background: var(--mf-accent);
    color: white;
    border-color: var(--mf-accent);
}

.mf-quick-icon {
    font-size: 16px;
}

/* Calendar */
.mf-calendar {
    margin-bottom: 20px;
}

.mf-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mf-calendar-month {
    font-size: 18px;
    font-weight: 600;
}

.mf-calendar-prev,
.mf-calendar-next {
    width: 40px;
    height: 40px;
    border-radius: var(--mf-btn-radius, 12px);
    border: 2px solid var(--mf-btn-border, var(--mf-btn-bg, #1a1a1a));
    background: var(--mf-card-bg, white);
    cursor: pointer;
    font-size: 18px;
    color: var(--mf-btn-bg, #1a1a1a);
    transition: all 0.2s ease;
}

.mf-calendar-prev:hover,
.mf-calendar-next:hover {
    background: var(--mf-btn-bg, #1a1a1a);
    color: var(--mf-btn-color, white);
    border-color: var(--mf-btn-bg, #1a1a1a);
}

.mf-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.mf-calendar-day-header {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    padding: 8px;
    text-transform: uppercase;
}

.mf-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    background: #f8f9fa;
}

.mf-calendar-day:hover:not(.disabled):not(.empty) {
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.mf-calendar-day.selected {
    background: var(--mf-accent);
    color: white;
    border-color: var(--mf-accent);
}

.mf-calendar-day.disabled {
    background: transparent;
    color: #d1d5db;
    cursor: not-allowed;
}

.mf-calendar-day.empty {
    background: transparent;
    cursor: default;
}

.mf-calendar-day.today {
    border-color: var(--mf-accent);
}

/* Timeslots */
.mf-selected-date-display {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
}

.mf-timeslots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.mf-timeslot {
    padding: 20px 16px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: var(--mf-radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mf-timeslot:hover {
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.mf-timeslot.selected {
    background: var(--mf-accent);
    color: white;
    border-color: var(--mf-accent);
}

.mf-timeslot-time {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mf-timeslot-spots {
    font-size: 12px;
    color: #6b7280;
}

.mf-timeslot.selected .mf-timeslot-spots {
    color: rgba(255, 255, 255, 0.8);
}

/* Options */
.mf-options {
    display: flex;
    flex-direction: column;
    gap: var(--mf-option-gap, 12px);
    margin-bottom: 20px;
}

.mf-option {
    cursor: pointer;
}

.mf-option input {
    display: none;
}

.mf-option-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: var(--mf-option-padding, 20px 24px);
    background: var(--mf-option-bg, #ffffff);
    border: var(--mf-option-border-width, 2px) solid var(--mf-option-border, #e5e7eb);
    border-radius: var(--mf-option-radius, 12px);
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.mf-option:hover .mf-option-box {
    background: var(--mf-option-bg, #ffffff);
    border-color: var(--mf-option-hover-border, #d1d5db);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.mf-option input:checked + .mf-option-box {
    background: var(--mf-option-selected-bg, #ffffff);
    border-color: var(--mf-option-selected-border, #10B981);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
}

.mf-option-icon {
    font-size: var(--mf-option-icon-size, 24px);
}

.mf-option-text {
    flex: 1;
    font-size: var(--mf-option-text-size, 16px);
    font-weight: 500;
    color: var(--mf-option-text-color, #1a1a1a);
}

.mf-option-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--mf-option-border, #e5e7eb);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
}

.mf-option input:checked + .mf-option-box .mf-option-check {
    background: var(--mf-option-check, #10B981);
}

/* Forms */
.mf-form,
.mf-contact-form,
.mf-address-form {
    max-width: var(--mf-form-max-width, 400px);
    margin: var(--mf-form-margin-top, 0) auto var(--mf-form-margin-bottom, 0);
    padding: 0 var(--mf-content-padding, 20px);
}

.mf-form input[type="text"],
.mf-form input[type="email"],
.mf-form input[type="tel"],
.mf-form input[type="number"],
.mf-form textarea {
    width: 100%;
    padding: var(--mf-input-padding, 16px) 20px;
    font-size: 16px;
    color: var(--mf-title-color, #1a1a1a);
    background: #ffffff;
    border: 2px solid var(--mf-input-border, #e5e7eb);
    border-radius: var(--mf-input-radius, 12px);
    transition: all 0.2s ease;
    font-family: inherit;
}

.mf-form input:focus {
    outline: none;
    border-color: var(--mf-btn-bg, #1a1a1a);
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.08);
}

.mf-form input.mf-error {
    border-color: #ef4444;
}

.mf-form .mf-btn-group {
    padding: 0;
}

.mf-form-group {
    margin-bottom: var(--mf-form-field-spacing, 20px);
}

.mf-form-group label {
    display: block;
    font-size: var(--mf-label-size, 14px);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--mf-label-color, #374151);
}

.mf-form-group .mf-input {
    width: 100%;
}

.mf-input {
    flex: 1;
    padding: var(--mf-input-padding, 16px 20px);
    font-size: 16px;
    color: var(--mf-input-text, #1a1a1a);
    background: var(--mf-input-bg, #ffffff);
    border: 2px solid var(--mf-input-border, #e5e7eb);
    border-radius: var(--mf-input-radius, 12px);
    transition: all 0.2s ease;
    font-family: inherit;
}

.mf-input:focus {
    outline: none;
    border-color: var(--mf-input-focus, #1a1a1a);
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.08);
}

.mf-input.error {
    border-color: #ef4444;
}

/* Address Lookup Result */
.mf-address-result {
    margin-top: 16px;
}

.mf-address-result:empty {
    display: none;
}

.mf-address-loading,
.mf-address-found,
.mf-address-error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--mf-radius);
    font-size: 15px;
}

.mf-address-loading {
    background: #f3f4f6;
    color: #6b7280;
}

.mf-address-found {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #86efac;
}

.mf-address-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.mf-address-icon {
    font-size: 18px;
}

.mf-address-text {
    font-weight: 500;
}

.mf-spinner-small {
    width: 16px;
    height: 16px;
    border: 2px solid #d1d5db;
    border-top-color: #6b7280;
    border-radius: 50%;
    animation: afSpin 0.8s linear infinite;
}

.mf-form-row {
    display: flex;
    gap: 12px;
}

.mf-form-group-large {
    flex: 2;
}

.mf-form-group-small {
    flex: 1;
}

.mf-form-group-half {
    flex: 1;
}

.mf-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #d1d5db;
    border-top-color: #6b7280;
    border-radius: 50%;
    animation: afSpin 0.8s linear infinite;
}

@keyframes afSpin {
    to { transform: rotate(360deg); }
}

/* Success */
.mf-success-content {
    text-align: center;
    padding: var(--mf-success-padding, 80px) 48px;
}

.mf-success-icon {
    width: var(--mf-success-icon-size, 80px);
    height: var(--mf-success-icon-size, 80px);
    background: var(--mf-success-icon-bg, #10B981);
    color: var(--mf-success-icon-color, white);
    font-size: calc(var(--mf-success-icon-size, 80px) / 2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px auto 24px;
    animation: mfPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes mfPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.mf-success-title {
    font-size: var(--mf-success-title-size, 28px);
    font-weight: 700;
    margin: 0 0 12px 0;
    text-align: center;
}

.mf-success-subtitle {
    font-size: var(--mf-success-subtitle-size, 16px);
    color: #6b7280;
    margin: 0 0 28px 0;
    text-align: center;
    padding: 0 var(--mf-content-padding, 20px);
}

/* Confirmation Details */
.mf-confirmation-details {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 0 var(--mf-content-padding, 20px) 28px;
    flex-wrap: wrap;
}

.mf-confirmation-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0fdf4;
    border: 2px solid #10B981;
    border-radius: 12px;
    padding: 12px 16px;
}

.mf-confirmation-icon {
    font-size: 18px;
}

.mf-confirmation-value {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Success Bullet Points */
.mf-success-points {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.mf-success-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 15px;
    color: #374151;
}

.mf-success-point-icon {
    color: #10B981;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.mf-success-point-text {
    line-height: 1.4;
}

/* Booking Summary in Success */
.mf-booking-summary {
    background: #f0fdf4;
    border: 2px solid var(--mf-success);
    border-radius: var(--mf-radius);
    padding: 20px 24px;
    margin: 24px auto;
    max-width: 300px;
}

.mf-booking-summary .mf-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: none;
}

.mf-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.mf-summary-item:last-child {
    border-bottom: none;
}

.mf-summary-label {
    color: #6b7280;
    font-size: 14px;
}

.mf-summary-value {
    font-weight: 600;
    font-size: 15px;
}

/* Expectations List */
.mf-expectations {
    background: #f8f9fa;
    border-radius: var(--mf-radius);
    padding: 24px;
    margin: 32px 0;
    text-align: left;
}

.mf-expectations-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
    text-align: center;
}

.mf-expectations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mf-expectations-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
}

.mf-expectations-list li:last-child {
    border-bottom: none;
}

.mf-exp-icon {
    font-size: 20px;
}

/* Spinner */
.mf-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: afSpin 0.8s linear infinite;
}

@keyframes afSpin {
    to { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mf-progress {
        padding: 16px var(--mf-content-padding, 16px);
    }
    
    .mf-steps-container {
        padding: var(--mf-container-padding, 0 16px);
    }
    
    .mf-step-title {
        font-size: var(--mf-title-size, 24px);
    }
    
    .mf-quick-dates {
        flex-direction: column;
    }
    
    .mf-quick-date {
        justify-content: center;
    }
    
    .mf-btn-group {
        flex-direction: column-reverse;
    }
    
    .mf-btn-group .mf-btn {
        width: 100%;
    }
    
    .mf-timeslots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mf-form-row {
        flex-direction: column;
    }
    
    .mf-form-group-large,
    .mf-form-group-small {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .mf-timeslots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mf-calendar-grid {
        gap: 4px;
    }
    
    .mf-calendar-day {
        font-size: 12px;
        border-radius: 8px;
    }
    
    .mf-calendar-day-header {
        font-size: 10px;
        padding: 4px;
    }
    
    .mf-calendar-prev,
    .mf-calendar-next {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .mf-calendar-month {
        font-size: 15px;
    }
}

/* ================================================
   CONVERSION BOOST ELEMENTS
   ================================================ */

/* Urgency Banner */
.mf-urgency-banner {
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #92400e;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Social Proof */
.mf-social-proof {
    text-align: center;
    padding: 16px;
    font-size: 14px;
    color: #6b7280;
    margin-top: 20px;
}

/* Trust Badges */
.mf-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.mf-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.mf-badge-icon {
    font-size: 16px;
}

/* Limited Spots */
.mf-limited-spots {
    text-align: center;
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #991b1b;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}

/* Recent Signups */
.mf-recent-signups {
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    color: #6b7280;
    margin-top: 16px;
}

/* Progress Incentive */
.mf-progress-incentive {
    text-align: center;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #86efac;
    border-radius: 10px;
    color: #166534;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
}

/* Privacy Checkbox */
.mf-privacy-group {
    margin-top: 16px;
}

.mf-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.mf-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--mf-option-selected-border, #10B981);
}

.mf-checkbox-text a {
    color: var(--mf-progress-fill, #1a1a1a);
    text-decoration: underline;
}

/* Data Safe Notice */
.mf-data-safe {
    text-align: center;
    padding: 12px;
    font-size: 13px;
    color: #6b7280;
    margin-top: 16px;
}

/* Contact Alternatives */
.mf-contact-alternatives {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.mf-or-text {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.mf-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mf-whatsapp-btn,
.mf-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mf-whatsapp-btn {
    background: #25d366;
    color: white;
}

.mf-whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.mf-phone-btn {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.mf-phone-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

/* Success CTA */
.mf-success-cta {
    margin-top: 24px;
    text-align: center;
}

/* Share Buttons */
.mf-share-buttons {
    margin-top: 32px;
    text-align: center;
}

.mf-share-label {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.mf-share-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.mf-share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f3f4f6;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mf-share-icon:hover {
    transform: scale(1.1);
}

.mf-share-whatsapp:hover {
    background: #25d366;
}

.mf-share-facebook:hover {
    background: #1877f2;
}

.mf-share-email:hover {
    background: #6b7280;
}

/* Redirect Notice */
.mf-redirect-notice {
    margin-top: 24px;
    padding: 12px;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    background: #f9fafb;
    border-radius: 8px;
}

.mf-countdown {
    font-weight: 700;
    color: var(--mf-progress-fill, #1a1a1a);
}

/* Mobile adjustments for conversion elements */
@media (max-width: 768px) {
    .mf-trust-badges {
        gap: 12px;
    }
    
    .mf-trust-badge {
        font-size: 12px;
    }
    
    .mf-contact-buttons {
        flex-direction: column;
    }
    
    .mf-whatsapp-btn,
    .mf-phone-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   VOORBLAD STYLES
   ========================================== */

.mf-step-voorblad .mf-step-content {
    text-align: center;
    padding-bottom: 32px;
}

.mf-step-voorblad .mf-step-title {
    padding: 24px var(--mf-content-padding, 20px) 0 var(--mf-content-padding, 20px);
    margin-bottom: 8px;
}

.mf-step-voorblad .mf-step-subtitle {
    padding: 0 var(--mf-content-padding, 20px);
    margin-bottom: 0;
    font-size: var(--mf-subtitle-size, 16px);
    line-height: 1.5;
}

.mf-voorblad-usps {
    list-style: none;
    padding: 0;
    margin: 28px auto 0 auto;
    display: inline-block;
    text-align: left;
    background: #f8faf8;
    border-radius: 12px;
    padding: 16px 24px;
}

.mf-voorblad-usp {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 15px;
    color: #374151;
}

.mf-voorblad-usp-icon {
    color: #10B981;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.mf-voorblad-usp-text {
    line-height: 1.4;
}

.mf-voorblad-cta {
    margin: 28px var(--mf-content-padding, 20px) 0 var(--mf-content-padding, 20px);
}

.mf-btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    max-width: 100%;
    border-radius: var(--mf-btn-radius, 12px);
}

/* Review Slider */
.mf-review-slider {
    margin: 24px var(--mf-content-padding, 20px) 0 var(--mf-content-padding, 20px);
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.mf-review-slider-track {
    position: relative;
    min-height: 140px;
}

.mf-review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.mf-review-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.mf-review-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 12px;
}

.mf-star {
    color: #FBBF24;
    font-size: 16px;
    line-height: 1;
}

.mf-star-empty {
    color: #e5e7eb;
}

.mf-review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 12px 0;
    font-style: italic;
}

.mf-review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
}

.mf-review-name {
    font-weight: 600;
    color: #1a1a1a;
}

.mf-review-date {
    color: #9ca3af;
}

.mf-review-dots {
    display: none;
}

.mf-review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mf-review-dot:hover {
    background: #d1d5db;
}

.mf-review-dot.active {
    background: var(--mf-progress-fill, #1a1a1a);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 480px) {
    .mf-step-voorblad .mf-step-title {
        font-size: var(--mf-title-size, 24px);
    }
    
    .mf-step-voorblad .mf-step-subtitle {
        font-size: var(--mf-subtitle-size, 15px);
    }
    
    .mf-voorblad-cta {
        margin: 24px var(--mf-content-padding, 16px) 0 var(--mf-content-padding, 16px);
    }
    
    .mf-voorblad-reviews {
        margin: 20px var(--mf-content-padding, 16px) 0 var(--mf-content-padding, 16px);
    }
}
