.elementor-4462 .elementor-element.elementor-element-f3ff543{--display:flex;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}/* Start custom CSS for html, class: .elementor-element-48049cb *//* Friction Finder Survey - Clean Minimal Design
 * Coinmotion Dormancy Survey 
 * Version: 4.0 - Simplified and Fixed
 */

/* Brand Colors */
:root {
    --cm-primary-blue: #163951;
    --cm-secondary-gray: #5C7485;
    --cm-cta-blue: #048EAD;
    --cm-light-gray: #F3F5F7;
    --cm-white: #FFFFFF;
    --cm-success: #10B981;
    --cm-border-gray: #E1E7EC;
    --cm-shadow-sm: 0 2px 8px rgba(22, 57, 81, 0.08);
    --cm-shadow-md: 0 4px 16px rgba(22, 57, 81, 0.12);
    --cm-shadow-lg: 0 8px 32px rgba(22, 57, 81, 0.16);
}

#cm-survey * { box-sizing: border-box; }
#cm-survey { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; 
    color: var(--cm-primary-blue); 
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--cm-shadow-lg);
}

/* Header Styles */
#cm-survey .survey-header { 
    background: var(--cm-light-gray);
    color: var(--cm-primary-blue); 
    padding: 32px 24px 24px; 
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cm-survey .survey-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    pointer-events: none;
}

#cm-survey .survey-header h1 { 
    font-size: 26px; 
    font-weight: 700; 
    margin: 0 0 8px; 
    letter-spacing: -0.5px;
    position: relative;
    color: var(--cm-primary-blue);
}

#cm-survey .survey-header p { 
    margin: 0; 
    color: var(--cm-secondary-gray);
    font-size: 15px;
    position: relative;
}

/* Progress Bar */
#cm-survey .progress-bar { 
    height: 4px; 
    background: var(--cm-light-gray); 
    overflow: hidden; 
    margin: 0;
}

#cm-survey .progress-fill { 
    height: 100%; 
    background: linear-gradient(90deg, var(--cm-cta-blue) 0%, var(--cm-success) 100%);
    width: 33%; 
    transition: width .4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Question Sections */
#cm-survey .question-section { 
    display: none; 
    padding: 32px 24px; 
    background: var(--cm-white); 
    min-height: 400px;
}

#cm-survey .question-section.active { 
    display: block; 
    animation: fadeIn 0.3s ease-in;
}

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

/* Questions */
#cm-survey .question { 
    font-size: 20px; 
    font-weight: 700; 
    margin: 0 0 24px; 
    line-height: 1.4;
    color: var(--cm-primary-blue);
}

#cm-survey .question-sub {
    font-size: 16px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--cm-primary-blue);
}

/* Option Buttons */
#cm-survey .options { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}

/* Fix for "Something else" option with textarea */
#cm-survey #cmOtherReasonDiv {
    margin-top: 16px;
    padding: 16px;
    background: var(--cm-light-gray);
    border-radius: 8px;
}

#cm-survey .option-btn.selected + #cmOtherReasonDiv {
    display: block !important;
}

#cm-survey .options.compact {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

#cm-survey .option-btn { 
    background: var(--cm-white); 
    border: 2px solid var(--cm-border-gray); 
    border-radius: 12px; 
    padding: 16px 20px; 
    text-align: left; 
    font-size: 15px; 
    color: var(--cm-secondary-gray); 
    cursor: pointer; 
    transition: all 0.2s ease; 
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

#cm-survey .option-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(4, 142, 173, 0.05), transparent);
    transition: left 0.5s ease;
}

#cm-survey .option-btn:hover::before {
    left: 100%;
}

#cm-survey .option-btn.small {
    padding: 12px 18px;
    font-size: 14px;
    flex: 0 1 auto;
}

#cm-survey .option-btn:hover { 
    background: var(--cm-light-gray); 
    border-color: var(--cm-cta-blue); 
    transform: translateY(-2px);
    box-shadow: var(--cm-shadow-md);
}

#cm-survey .option-btn.selected { 
    background: var(--cm-cta-blue); 
    border-color: var(--cm-cta-blue); 
    color: var(--cm-white);
    transform: scale(1.02);
}

#cm-survey .option-icon {
    font-size: 20px;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

/* ============================================
   OFFER SECTION - COMPLETELY REDESIGNED
   ============================================ */

/* Offer Container - Clean reset */
#cm-survey .offer-container {
    padding: 32px 24px;
    background: var(--cm-white);
}

/* Offer Header */
#cm-survey .offer-header {
    padding: 0;
    margin-bottom: 24px;
    background: transparent;
}

#cm-survey .offer-badge {
    display: inline-block;
    background: var(--cm-cta-blue);
    color: var(--cm-white);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

#cm-survey .offer-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--cm-primary-blue);
    margin: 0 0 12px;
    line-height: 1.3;
}

#cm-survey .offer-description {
    font-size: 16px;
    color: var(--cm-secondary-gray);
    line-height: 1.5;
    margin: 0 0 24px;
}

/* Benefits Section - Simple and Clean */
#cm-survey .offer-benefits {
    background: transparent;
    padding: 0;
    margin: 0 0 24px;
}

#cm-survey .benefits-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--cm-secondary-gray);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#cm-survey .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#cm-survey .benefits-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    color: var(--cm-secondary-gray);
    line-height: 1.5;
    font-size: 14px;
}

#cm-survey .benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--cm-success);
    font-weight: bold;
    font-size: 14px;
}

/* Value Proposition - Clean Info Box */
#cm-survey .offer-value {
    background: var(--cm-light-gray);
    border-radius: 12px;
    padding: 20px;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

#cm-survey .value-icon {
    font-size: 24px;
}

#cm-survey .value-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--cm-primary-blue);
}

/* How it works section - Numbered Steps */
#cm-survey .offer-how-it-works {
    background: transparent;
    padding: 0;
    margin: 0 0 24px;
}

#cm-survey .how-title {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--cm-secondary-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#cm-survey .how-description {
    margin: 0;
    line-height: 1.6;
    color: var(--cm-secondary-gray);
    font-size: 14px;
    counter-reset: step-counter;
}

/* Style the description as numbered steps */
#cm-survey .how-description::after {
    content: "";
    display: table;
    clear: both;
}

/* If we need to manually parse the text into steps, we'll use CSS to add numbers */
#cm-survey .how-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

#cm-survey .how-steps li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: var(--cm-secondary-gray);
    font-size: 14px;
    line-height: 1.5;
    counter-increment: step-counter;
}

#cm-survey .how-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--cm-cta-blue);
    color: var(--cm-white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Button - Primary Action */
#cm-survey .offer-cta {
    background: var(--cm-cta-blue);
    color: var(--cm-white);
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 16px;
    padding: 16px 24px;
    margin: 0 0 12px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

#cm-survey .offer-cta:hover {
    background: #037A96;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(4, 142, 173, 0.2);
}

#cm-survey .cta-text {
    display: inline;
}

/* Skip button - Secondary Action */
#cm-survey .skip-btn {
    background: transparent;
    border: none;
    color: var(--cm-cta-blue);
    font-size: 14px;
    cursor: pointer;
    padding: 8px;
    text-decoration: underline;
    transition: opacity 0.2s ease;
    display: block;
    margin: 0 auto;
    text-align: center;
}

#cm-survey .skip-btn:hover {
    opacity: 0.7;
}

/* Input Fields */
#cm-survey .text-input, 
#cm-survey textarea { 
    width: 100%; 
    padding: 14px 16px; 
    border: 2px solid var(--cm-border-gray); 
    border-radius: 8px; 
    font-size: 15px; 
    color: var(--cm-primary-blue); 
    background: var(--cm-white); 
    margin-bottom: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
}

#cm-survey .text-input:focus, 
#cm-survey textarea:focus { 
    outline: none; 
    border-color: var(--cm-cta-blue);
    box-shadow: 0 0 0 4px rgba(4, 142, 173, 0.1);
    background: #FAFBFC;
}

#cm-survey textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
#cm-survey .submit-btn { 
    background: var(--cm-cta-blue);
    color: var(--cm-white); 
    border: none; 
    border-radius: 12px; 
    padding: 16px 24px; 
    font-size: 16px; 
    font-weight: 600; 
    cursor: pointer; 
    width: 100%; 
    transition: all 0.2s ease;
}

#cm-survey .submit-btn:hover { 
    background: #037A96;
    transform: translateY(-1px); 
    box-shadow: 0 4px 12px rgba(4, 142, 173, 0.2);
}

#cm-survey .submit-btn:active {
    transform: translateY(0);
}

/* Thank You Section */
#cm-survey .thank-you { 
    text-align: center; 
    padding: 48px 24px;
}

#cm-survey .success-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: scaleIn 0.4s ease;
    color: var(--cm-success);
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

#cm-survey .thank-you h2 { 
    font-size: 24px; 
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--cm-primary-blue);
}

#cm-survey .thank-you-main {
    font-size: 16px;
    color: var(--cm-secondary-gray);
    margin: 0 0 8px;
    line-height: 1.5;
}

#cm-survey .thank-you-sub { 
    color: var(--cm-secondary-gray); 
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Accessibility */
#cm-survey .sr-only { 
    position: absolute; 
    width: 1px; 
    height: 1px; 
    padding: 0; 
    margin: -1px; 
    overflow: hidden; 
    clip: rect(0, 0, 0, 0); 
    border: 0; 
}

/* Hidden Field */
#cm-survey .hidden-field {
    display: none;
}

/* Loading State */
#cm-survey .loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    #cm-survey {
        border-radius: 0;
        box-shadow: none;
    }
    
    #cm-survey .survey-header { 
        padding: 24px 16px 20px; 
    }
    
    #cm-survey .survey-header h1 {
        font-size: 22px;
    }
    
    #cm-survey .question-section,
    #cm-survey .offer-container { 
        padding: 24px 16px; 
    }
    
    #cm-survey .question {
        font-size: 18px;
    }
    
    #cm-survey .option-btn {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    #cm-survey .option-icon {
        font-size: 18px;
        width: 24px;
    }
    
    #cm-survey .offer-title {
        font-size: 20px;
    }
    
    #cm-survey .offer-description {
        font-size: 15px;
    }
    
    #cm-survey .value-text {
        font-size: 18px;
    }
    
    #cm-survey .benefits-list li {
        font-size: 13px;
    }
    
    #cm-survey .options.compact {
        flex-direction: column;
    }
    
    #cm-survey .option-btn.small {
        width: 100%;
    }
}

/* Ensure text remains readable on all backgrounds */
#cm-survey * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}/* End custom CSS */