/**
 * CRM Prep Modal - Premium Finance Design (10/10)
 * Ultra-professional institutional aesthetic
 * Inspired by Bloomberg Terminal, Goldman Sachs, BlackRock
 */

/* ============================================
   Theme Variables - Premium Finance
   ============================================ */
:root {
    --sffc-bg: #FAFBFC;
    --sffc-card: #FFFFFF;
    --sffc-border: #DFE3E8;
    --sffc-border-light: #EDF0F2;
    --sffc-text: #121517;
    --sffc-text-secondary: #424B54;
    --sffc-text-muted: #6C757D;
    --sffc-accent: #0D353E;
    --sffc-accent-light: #E8F0F2;
    --sffc-blue: #0056D2;
    --sffc-green: #00875A;
    --sffc-red: #C9372C;
    --sffc-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.03);
    --sffc-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    --sffc-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --sffc-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ============================================
   Modal Container
   ============================================ */
[data-prep-modal] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 21, 23, 0.6);
    backdrop-filter: blur(8px);
    opacity: 1;
    visibility: visible;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

[data-prep-modal][aria-hidden="true"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

[data-prep-modal-close] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* ============================================
   Modal Dialog - Premium Layout
   ============================================ */
.sffc-crm-prep-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    max-height: 92vh;
    background: var(--sffc-card);
    border-radius: 4px;
    box-shadow: var(--sffc-shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--sffc-border);
}

/* ============================================
   Modal Header - Sidebar Style
   ============================================ */
.sffc-crm-prep-aside {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: var(--sffc-accent);
    border-bottom: none;
    flex-shrink: 0;
}

.sffc-crm-prep-aside-title {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sffc-crm-prep-close {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.sffc-crm-prep-close svg {
    width: 18px;
    height: 18px;
    stroke: #FFFFFF;
}

.sffc-crm-prep-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   Main Content Area
   ============================================ */
.sffc-crm-prep-main {
    flex: 1;
    overflow-y: auto;
    background: var(--sffc-bg);
    scrollbar-width: thin;
    scrollbar-color: var(--sffc-border) transparent;
}

.sffc-crm-prep-main::-webkit-scrollbar {
    width: 10px;
}

.sffc-crm-prep-main::-webkit-scrollbar-track {
    background: transparent;
}

.sffc-crm-prep-main::-webkit-scrollbar-thumb {
    background: var(--sffc-border);
    border-radius: 5px;
}

.sffc-crm-prep-main::-webkit-scrollbar-thumb:hover {
    background: var(--sffc-text-muted);
}

.sffc-crm-prep-container {
    padding: 32px;
    max-width: 100%;
}

/* ============================================
   Page Header - Premium Style
   ============================================ */
.sffc-crm-prep-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding: 28px;
    background: var(--sffc-card);
    border-radius: 4px;
    border: 1px solid var(--sffc-border);
    box-shadow: var(--sffc-shadow-sm);
}

.sffc-crm-prep-header-logo {
    width: 72px;
    height: 72px;
    border-radius: 3px;
    border: 1px solid var(--sffc-border);
    background: var(--sffc-card);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: var(--sffc-shadow-sm);
}

.sffc-crm-prep-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.sffc-crm-prep-header-logo span {
    font-size: 28px;
    font-weight: 700;
    color: var(--sffc-accent);
}

.sffc-crm-prep-header-content {
    flex: 1;
    min-width: 0;
}

.sffc-crm-prep-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--sffc-text);
    margin: 0 0 8px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.sffc-crm-prep-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 15px;
    color: var(--sffc-text-secondary);
    margin-bottom: 16px;
}

.sffc-crm-prep-company {
    font-weight: 600;
    color: var(--sffc-text);
}

.sffc-crm-prep-separator {
    color: var(--sffc-border);
    font-weight: 400;
}

.sffc-crm-prep-location {
    color: var(--sffc-text-secondary);
}

/* Header Badges */
.sffc-crm-prep-header-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sffc-crm-prep-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--sffc-accent-light);
    border: 1px solid var(--sffc-border);
    border-radius: 3px;
    font-size: 13px;
    color: var(--sffc-text-secondary);
    font-weight: 500;
}

.sffc-crm-prep-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--sffc-accent);
    flex-shrink: 0;
}

.sffc-crm-prep-badge strong {
    color: var(--sffc-text);
    font-weight: 600;
}

.sffc-crm-prep-badge--action {
    background: var(--sffc-accent);
    border-color: var(--sffc-accent);
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid var(--sffc-accent);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
}

.sffc-crm-prep-badge--action:hover {
    background: var(--sffc-accent-hover);
    border-color: var(--sffc-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(13, 53, 62, 0.2);
}

.sffc-crm-prep-badge--action:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.sffc-crm-prep-badge--action svg {
    stroke: #FFFFFF;
}

/* ============================================
   Mock Documents/Materials Grid
   ============================================ */
.sffc-crm-prep-materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
    padding: 0;
}

.sffc-crm-prep-material-item {
    background: var(--sffc-card);
    border: 1px solid var(--sffc-border);
    border-radius: 4px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: var(--sffc-shadow-sm);
}

.sffc-crm-prep-material-item:hover {
    border-color: var(--sffc-accent);
    box-shadow: var(--sffc-shadow-md);
    transform: translateY(-2px);
}

.sffc-crm-prep-material-icon {
    width: 48px;
    height: 48px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid;
    transition: all 0.2s ease;
    position: relative;
}

.sffc-crm-prep-material-icon--word {
    background: #FFFFFF;
    border-color: #D1DEEB;
    box-shadow: 0 1px 3px rgba(43, 87, 154, 0.1);
}

.sffc-crm-prep-material-icon--word svg {
    fill: #4A90E2;
}

.sffc-crm-prep-material-icon--pdf {
    background: #FFFFFF;
    border-color: #F5D5D5;
    box-shadow: 0 1px 3px rgba(220, 38, 38, 0.1);
}

.sffc-crm-prep-material-icon--pdf svg {
    fill: #E85D5D;
}

.sffc-crm-prep-material-icon svg {
    filter: none;
    transition: all 0.2s ease;
}

.sffc-crm-prep-material-item:hover .sffc-crm-prep-material-icon--word {
    background: #F0F6FC;
    border-color: #4A90E2;
    box-shadow: 0 2px 6px rgba(74, 144, 226, 0.15);
}

.sffc-crm-prep-material-item:hover .sffc-crm-prep-material-icon--pdf {
    background: #FEF5F5;
    border-color: #E85D5D;
    box-shadow: 0 2px 6px rgba(232, 93, 93, 0.15);
}

.sffc-crm-prep-material-info {
    flex: 1;
    min-width: 0;
}

.sffc-crm-prep-material-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--sffc-text);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sffc-crm-prep-material-meta {
    font-size: 12px;
    color: var(--sffc-text-muted);
    font-weight: 500;
}

.sffc-crm-prep-material-action {
    flex-shrink: 0;
}

.sffc-crm-prep-material-btn {
    width: 36px;
    height: 36px;
    border-radius: 3px;
    border: 1px solid var(--sffc-border);
    background: var(--sffc-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sffc-crm-prep-material-btn:hover {
    background: var(--sffc-accent);
    border-color: var(--sffc-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 53, 62, 0.15);
}

.sffc-crm-prep-material-btn svg {
    stroke: var(--sffc-accent);
    transition: stroke 0.2s ease;
}

.sffc-crm-prep-material-btn:hover svg {
    stroke: #FFFFFF;
}

.sffc-crm-prep-material-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.sffc-crm-prep-material-item.sffc-crm-prep-material-item--requested {
    background: var(--sffc-accent-light);
    border-color: var(--sffc-accent);
}

.sffc-crm-prep-material-item--requested .sffc-crm-prep-material-btn {
    background: var(--sffc-green);
    border-color: var(--sffc-green);
}

.sffc-crm-prep-material-item--requested .sffc-crm-prep-material-btn svg {
    stroke: #FFFFFF;
}

/* ============================================
   Contacts Wrapper - Side by Side Layout
   ============================================ */
.sffc-crm-prep-contacts-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

/* ============================================
   Section Styles
   ============================================ */
.sffc-crm-prep-section {
    background: var(--sffc-card);
    border: 1px solid var(--sffc-border);
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--sffc-shadow-sm);
}

.sffc-crm-prep-section--contact {
    margin-bottom: 0;
}

.sffc-crm-prep-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--sffc-text);
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.2px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sffc-border-light);
}

.sffc-crm-prep-section-title svg {
    width: 18px;
    height: 18px;
    stroke: var(--sffc-accent);
    flex-shrink: 0;
}

/* ============================================
   Person Card - Recruiter
   ============================================ */
.sffc-crm-prep-person-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sffc-crm-prep-person-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sffc-accent-light);
    border: 2px solid var(--sffc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.sffc-crm-prep-person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sffc-crm-prep-person-avatar span {
    font-size: 22px;
    font-weight: 700;
    color: var(--sffc-accent);
}

.sffc-crm-prep-person-info {
    flex: 1;
    min-width: 0;
}

.sffc-crm-prep-person-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--sffc-text);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.sffc-crm-prep-person-title {
    font-size: 14px;
    color: var(--sffc-text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}

.sffc-crm-prep-person-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sffc-crm-prep-person-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--sffc-blue);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.sffc-crm-prep-person-link:hover {
    color: var(--sffc-accent);
    text-decoration: underline;
}

.sffc-crm-prep-person-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ============================================
   Team Contacts Grid
   ============================================ */
.sffc-crm-prep-team-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sffc-crm-prep-team-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--sffc-bg);
    border: 1px solid var(--sffc-border-light);
    border-radius: 3px;
    transition: all 0.2s ease;
}

.sffc-crm-prep-team-card:hover {
    background: var(--sffc-card);
    border-color: var(--sffc-border);
    box-shadow: var(--sffc-shadow-sm);
}

.sffc-crm-prep-team-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sffc-accent-light);
    border: 1px solid var(--sffc-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sffc-crm-prep-team-avatar span {
    font-size: 16px;
    font-weight: 700;
    color: var(--sffc-accent);
}

.sffc-crm-prep-team-info {
    flex: 1;
    min-width: 0;
}

.sffc-crm-prep-team-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--sffc-text);
    margin-bottom: 2px;
}

.sffc-crm-prep-team-title {
    font-size: 13px;
    color: var(--sffc-text-secondary);
    margin-bottom: 6px;
}

.sffc-crm-prep-team-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sffc-crm-prep-team-link {
    font-size: 12px;
    color: var(--sffc-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.sffc-crm-prep-team-link:hover {
    color: var(--sffc-accent);
    text-decoration: underline;
}

/* ============================================
   Properties Grid - Financial Report Style
   ============================================ */
.sffc-crm-prep-properties {
    background: var(--sffc-card);
    border: 1px solid var(--sffc-border);
    border-radius: 3px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0;
    overflow: hidden;
}

.sffc-crm-prep-property {
    padding: 18px 20px;
    border-right: 1px solid var(--sffc-border-light);
    border-bottom: 1px solid var(--sffc-border-light);
    transition: background 0.2s ease;
}

.sffc-crm-prep-property:hover {
    background: var(--sffc-bg);
}

.sffc-crm-prep-property:last-child {
    border-bottom: none;
}

.sffc-crm-prep-property:nth-last-child(-n+3) {
    border-bottom: none;
}

.sffc-crm-prep-property-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--sffc-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.sffc-crm-prep-property-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--sffc-text);
    letter-spacing: -0.2px;
}

/* ============================================
   Application Process Checklist with Icons
   ============================================ */
.sffc-crm-prep-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.sffc-crm-prep-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--sffc-bg);
    border: 1px solid var(--sffc-border-light);
    border-radius: 3px;
    transition: all 0.2s ease;
}

.sffc-crm-prep-checkbox:hover {
    background: var(--sffc-card);
    border-color: var(--sffc-border);
    box-shadow: var(--sffc-shadow-sm);
}

.sffc-crm-prep-checkbox-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sffc-accent);
}

.sffc-crm-prep-checkbox-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--sffc-accent);
}

.sffc-crm-prep-checkbox-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--sffc-text);
    letter-spacing: -0.1px;
}

/* ============================================
   Content Areas - Proper Height
   ============================================ */
.sffc-crm-prep-content {
    background: var(--sffc-bg);
    border: 1px solid var(--sffc-border-light);
    border-radius: 3px;
    padding: 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--sffc-text-secondary);
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--sffc-border) transparent;
}

.sffc-crm-prep-content::-webkit-scrollbar {
    width: 8px;
}

.sffc-crm-prep-content::-webkit-scrollbar-track {
    background: transparent;
}

.sffc-crm-prep-content::-webkit-scrollbar-thumb {
    background: var(--sffc-border);
    border-radius: 4px;
}

.sffc-crm-prep-content p {
    margin: 0 0 12px 0;
}

.sffc-crm-prep-content p:last-child {
    margin-bottom: 0;
}

.sffc-crm-prep-content h3,
.sffc-crm-prep-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--sffc-text);
    margin: 20px 0 10px 0;
}

.sffc-crm-prep-content h3:first-child,
.sffc-crm-prep-content h4:first-child {
    margin-top: 0;
}

.sffc-crm-prep-content ul,
.sffc-crm-prep-content ol {
    margin: 12px 0;
    padding-left: 24px;
}

.sffc-crm-prep-content li {
    margin-bottom: 6px;
}

.sffc-crm-prep-content--expandable {
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

.sffc-crm-prep-content--expandable.sffc-crm-prep-content--expanded {
    max-height: none;
    overflow-y: auto;
}

/* View More Link */
.sffc-crm-prep-view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sffc-accent);
    text-decoration: none;
    background: var(--sffc-accent-light);
    border: 1px solid var(--sffc-border);
    border-radius: 3px;
    transition: all 0.2s ease;
}

.sffc-crm-prep-view-more:hover {
    background: var(--sffc-accent);
    color: #FFFFFF;
    border-color: var(--sffc-accent);
    transform: translateY(-1px);
    box-shadow: var(--sffc-shadow-sm);
}

.sffc-crm-prep-view-more svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.2s ease;
}

.sffc-crm-prep-view-more:hover svg {
    stroke: #FFFFFF;
}

/* ============================================
   Question Blocks
   ============================================ */
.sffc-crm-prep-question-block {
    padding: 18px;
    background: var(--sffc-bg);
    border: 1px solid var(--sffc-border-light);
    border-radius: 3px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.sffc-crm-prep-question-block:last-child {
    margin-bottom: 0;
}

.sffc-crm-prep-question-block:hover {
    background: var(--sffc-card);
    border-color: var(--sffc-border);
    box-shadow: var(--sffc-shadow-sm);
}

.sffc-crm-prep-question-number {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--sffc-accent);
    margin-bottom: 8px;
    padding: 4px 10px;
    background: var(--sffc-accent-light);
    border-radius: 2px;
}

.sffc-crm-prep-question-prompt {
    font-size: 15px;
    font-weight: 600;
    color: var(--sffc-text);
    margin-bottom: 10px;
    line-height: 1.5;
}

.sffc-crm-prep-question-ideal {
    font-size: 14px;
    color: var(--sffc-text-secondary);
    line-height: 1.6;
    padding: 12px;
    background: var(--sffc-card);
    border-left: 3px solid var(--sffc-green);
    border-radius: 2px;
}

.sffc-crm-prep-question-ideal strong {
    color: var(--sffc-green);
    font-weight: 700;
}

/* ============================================
   Downloadable Files - Premium Style
   ============================================ */
.sffc-crm-prep-files {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}

.sffc-crm-prep-file {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--sffc-bg);
    border: 1px solid var(--sffc-border-light);
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.sffc-crm-prep-file:hover {
    background: var(--sffc-card);
    border-color: var(--sffc-border);
    box-shadow: var(--sffc-shadow-sm);
    transform: translateY(-1px);
}

.sffc-crm-prep-file-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    flex-shrink: 0;
    border: 1px solid;
}

.sffc-crm-prep-file-icon--docx {
    background: #E8F2FF;
    border-color: #CCE4FF;
}

.sffc-crm-prep-file-icon--docx svg {
    fill: #0056D2;
}

.sffc-crm-prep-file-icon--pdf {
    background: #FFEBE9;
    border-color: #FFD5D2;
}

.sffc-crm-prep-file-icon--pdf svg {
    fill: #C9372C;
}

.sffc-crm-prep-file-info {
    flex: 1;
    min-width: 0;
}

.sffc-crm-prep-file-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--sffc-text);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sffc-crm-prep-file-meta {
    font-size: 12px;
    color: var(--sffc-text-muted);
    font-weight: 500;
}

.sffc-crm-prep-file > svg {
    width: 18px;
    height: 18px;
    stroke: var(--sffc-text-muted);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.sffc-crm-prep-file:hover > svg {
    stroke: var(--sffc-accent);
    transform: translateY(2px);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .sffc-crm-prep-dialog {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .sffc-crm-prep-aside {
        padding: 20px 24px;
    }

    .sffc-crm-prep-container {
        padding: 24px 20px;
    }

    .sffc-crm-prep-header {
        flex-direction: column;
        padding: 20px;
    }

    .sffc-crm-prep-header-logo {
        width: 64px;
        height: 64px;
    }

    .sffc-crm-prep-contacts-wrapper {
        grid-template-columns: 1fr;
    }

    .sffc-crm-prep-properties {
        grid-template-columns: 1fr;
    }

    .sffc-crm-prep-checklist {
        grid-template-columns: 1fr;
    }

    .sffc-crm-prep-files {
        grid-template-columns: 1fr;
    }

    .sffc-crm-prep-section {
        padding: 20px;
    }

    .sffc-crm-prep-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    [data-prep-modal] {
        padding: 0;
    }

    .sffc-crm-prep-aside {
        padding: 16px 20px;
    }

    .sffc-crm-prep-container {
        padding: 20px 16px;
    }

    .sffc-crm-prep-header {
        padding: 16px;
    }

    .sffc-crm-prep-section {
        padding: 16px;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
