.elementor-4611 .elementor-element.elementor-element-ccc589b{--display:flex;}/* Start custom CSS for html, class: .elementor-element-41bed8e *//* Coinmotion NPS Survey
 * Follows the Coinmotion brand system
 */

:root {
    --cm-primary-blue: #163951;
    --cm-secondary-gray: #5C7485;
    --cm-cta-blue: #048EAD;
    --cm-light-gray: #F3F5F7;
    --cm-white: #FFFFFF;
    --cm-success: #10B981;
    --cm-warning: #F59E0B;
    --cm-danger: #EF4444;
    --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);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Header ── */
#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 0.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: 360px;
}

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

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

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

/* ── NPS scale ── */
#cm-survey .nps-label-row {
    display: flex;
    justify-content: space-between;
    margin: 0 0 10px;
    padding: 0;
}

#cm-survey .nps-label-text {
    font-size: 13px;
    color: var(--cm-secondary-gray);
}

#cm-survey .nps-scale {
    display: flex;
    gap: 6px;
    margin: 0 0 28px;
    flex-wrap: nowrap;
}

#cm-survey .nps-btn {
    flex: 1;
    aspect-ratio: 1;
    min-width: 0;
    border: 2px solid var(--cm-border-gray);
    border-radius: 10px;
    background: var(--cm-white);
    color: var(--cm-secondary-gray);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    padding: 0;
    line-height: 1;
}

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

#cm-survey .nps-btn.selected {
    background: var(--cm-cta-blue);
    border-color: var(--cm-cta-blue);
    color: var(--cm-white);
    transform: scale(1.08);
    box-shadow: var(--cm-shadow-md);
}

/* ── Textarea ── */
#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: 8px;
    font-family: inherit;
    transition: all 0.2s ease;
    resize: vertical;
    min-height: 120px;
}

#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;
}

/* ── Character counter ── */
#cm-survey .char-counter {
    text-align: right;
    font-size: 13px;
    color: var(--cm-secondary-gray);
    margin: 0 0 20px;
    transition: color 0.2s ease;
}

#cm-survey .char-counter--warning {
    color: var(--cm-warning);
}

#cm-survey .char-counter--limit {
    color: var(--cm-danger);
    font-weight: 600;
}

/* ── Buttons ── */
#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;
    font-family: inherit;
}

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

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

#cm-survey .submit-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

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

#cm-survey .success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cm-success);
    color: var(--cm-white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: cmScaleIn 0.4s ease;
}

@keyframes cmScaleIn {
    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;
}

/* ── Mobile ── */
@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 {
        padding: 24px 16px;
    }

    #cm-survey .question {
        font-size: 18px;
    }

    #cm-survey .nps-scale {
        gap: 4px;
    }

    #cm-survey .nps-btn {
        font-size: 13px;
        border-radius: 8px;
    }
}/* End custom CSS */