/**
 * Advanced Job Opportunities Styling - Clean Conversion-Focused Design
 * Matches the premium audit mode aesthetic with excellent whitespace
 *
 * Color Palette (Updated):
 * - Primary: #1e3a5f (professional navy)
 * - Success: #059669 (emerald green)
 * - Warning: #d97706 (amber)
 * - Background: #F7F6F3 (warm gray)
 * - Cards: #ffffff (pure white)
 * - Text Primary: #1e293b (dark slate)
 * - Text Secondary: #64748b (slate gray)
 * - Borders: #e5e7eb (light gray)
 */

/* Base Reset */
.sffc-job-opportunities-advanced {
    isolation: isolate;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sffc-job-opportunities-advanced .sffc-job-opportunity {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #F7F6F3;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

/* Main Layout - Content-first with sticky sidebar */
.sffc-job-opportunities-advanced .sffc-job-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 40px;
    align-items: start;
}

/* Content takes the 1fr column, sidebar takes the 380px column */
.sffc-job-opportunities-advanced .sffc-job-content {
    grid-column: 1;
    order: 1;
    min-width: 0;
}

.sffc-job-opportunities-advanced .sffc-recruiter-column {
    grid-column: 2;
    order: 2;
}

.sffc-job-opportunities-advanced .sffc-action-sidebar {
    order: 2;
}

/* ===== RIGHT STICKY COLUMN: ACTION SIDEBAR ===== */
.sffc-recruiter-column {
    position: sticky;
    top: 40px;
    height: fit-content;
    z-index: 10;
}

.sffc-recruiter-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sffc-recruiter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.sffc-recruiter-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sffc-recruiter-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sffc-recruiter-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #111827;
}

.sffc-recruiter-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.sffc-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.sffc-star-icon {
    display: inline-block;
    vertical-align: middle;
}

.sffc-rating-text {
    font-size: 14px;
    color: #6b7280;
}

.sffc-recruiter-bio {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

.sffc-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sffc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    min-height: 48px;
}

.sffc-btn-primary {
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
    color: #ffffff;
    border: none;
}

.sffc-btn-primary:hover {
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a2e 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 46, 0.3);
}

.sffc-btn-secondary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f1 100%);
    color: #1e2947;
    border: 1px solid #e8e5e0;
}

.sffc-btn-secondary:hover {
    background: linear-gradient(135deg, #f8f6f1 0%, #ffffff 100%);
    border-color: #1e3a2e;
    transform: translateY(-1px);
}

/* Smart Apply Button - Premium styling */
.sffc-btn-smart-apply {
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.sffc-btn-smart-apply::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.sffc-btn-smart-apply:hover::before {
    left: 100%;
}

.sffc-btn-smart-apply:hover {
    background: linear-gradient(135deg, #2d5a3d 0%, #3d7a4d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 46, 0.4);
}

.sffc-btn-premium {
    background: #60a5fa;
    color: #fff;
}

.sffc-btn-premium:hover {
    background: #3b82f6;
}

.sffc-btn-consultant {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.sffc-btn-consultant:hover {
    background: #bfdbfe;
}

.sffc-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ==============================================
   CONTENT SECTIONS - Clean, Readable Design
   ============================================== */
.sffc-job-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

/* Individual content sections - Minimal, clean cards */
.sffc-content-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    position: relative;
}

/* Remove hover effects for cleaner feel */
.sffc-content-section::before {
    display: none;
}

.sffc-content-section:hover {
    /* No transform on hover - keep it stable */
}

/* Section Titles - Cleaner, less decorative */
.sffc-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 20px 0;
    padding-bottom: 0;
    border-bottom: none;
    position: relative;
}

.sffc-section-title::after {
    display: none;
}

.sffc-section-icon {
    width: 22px;
    height: 22px;
    color: #64748b;
    flex-shrink: 0;
}

/* Special styling for header section */
.sffc-header-section {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

.sffc-header-section:hover {
    transform: none;
}

.sffc-header-section::before {
    display: none;
}

/* Enhanced Typography - Better readability */
.sffc-content-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 16px 0;
}

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

.sffc-content-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 24px 0 12px 0;
    line-height: 1.4;
}

.sffc-content-section h3:first-child {
    margin-top: 0;
}

.sffc-content-section h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 20px 0 10px 0;
    line-height: 1.4;
}

.sffc-content-section ul {
    margin: 0 0 24px 0;
    padding-left: 0;
    list-style: none;
}

.sffc-content-section li {
    position: relative;
    padding: 8px 0 8px 32px;
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

.sffc-content-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: #7fb069;
    border-radius: 50%;
    transform: translateY(-50%);
}

.sffc-content-section strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Enhanced Recruiter Section */
.sffc-consultant-avatar {
    width: 80px !important;
    height: 80px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-bottom: 16px !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    position: relative !important;
    background: #f8f6f1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.sffc-consultant-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px !important;
    display: block !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 0 !important;
    min-height: 0 !important;
}

.sffc-avatar-placeholder {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #e8e5e0 0%, #d1ccc4 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #6b7280 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    border-radius: 12px !important;
}

.sffc-avatar-placeholder svg {
    width: 32px !important;
    height: 32px !important;
    opacity: 0.7 !important;
}

.sffc-consultant-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #1e293b;
    line-height: 1.3;
}

.sffc-consultant-title {
    font-size: 14px;
    font-weight: 500;
    color: #0ea5e9;
    margin: 0 0 4px 0;
}

.sffc-consultant-company {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    margin: 0 0 12px 0;
}

.sffc-consultant-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
}

.sffc-consultant-specialties {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    margin: 12px 0;
}

/* Blurred/Privacy Elements */
.sffc-blurred {
    filter: blur(2px);
    opacity: 0.7;
}

.sffc-blurred-text {
    position: relative;
}

/* Removed sffc-login-prompt styles */

/* Premium Badge */
.sffc-premium-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #92400e;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

/* Job Header Section - Clean Professional Layout */
.sffc-job-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f1 100%);
    color: #1e2947;
    border-radius: 20px;
    padding: 40px;
    margin: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #e8e5e0;
    box-shadow: 0 4px 6px -1px rgba(30, 41, 71, 0.08), 0 2px 4px -1px rgba(30, 41, 71, 0.04);
}

.sffc-job-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30, 58, 46, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50px, -50px);
}

.sffc-company-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sffc-company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sffc-job-title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: #1e2947;
    line-height: 1.2;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 2;
}

.sffc-job-meta-line {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 16px;
    color: #4a5568;
    position: relative;
    z-index: 2;
    margin-top: 8px;
}

.sffc-location,
.sffc-posted-date,
.sffc-applicant-count {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sffc-location .sffc-icon {
    width: 14px;
    height: 14px;
}

/* Header Action Buttons */
.sffc-header-actions {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.sffc-header-actions .sffc-btn {
    white-space: nowrap;
    min-width: 140px;
    justify-content: center;
}

/* ===== JOB SUMMARY SECTION ===== */
.sffc-job-summary {
    padding: 32px;
    border-bottom: 1px solid #f3f4f6;
}

.sffc-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 0;
}

.sffc-summary-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f1 100%);
    border-radius: 16px;
    border: 1px solid #e8e5e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sffc-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1e3a2e, #2d5a3d);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sffc-summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -4px rgba(30, 58, 46, 0.12);
}

.sffc-summary-card:hover::before {
    opacity: 1;
}

.sffc-summary-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sffc-salary-icon {
    background: #ecfccb;
    color: #65a30d;
}

.sffc-location-icon {
    background: #dbeafe;
    color: #1e40af;
}

.sffc-type-icon {
    background: #fef3c7;
    color: #d97706;
}

.sffc-summary-icon svg {
    width: 24px;
    height: 24px;
}

.sffc-summary-content {
    display: flex;
    flex-direction: column;
}

.sffc-summary-label {
    font-size: 13px;
    font-weight: 500;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.sffc-summary-value {
    font-size: 18px;
    font-weight: 700;
    color: #1e2947;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

/* ===== SKILLS SECTION ===== */
.sffc-skills-section {
    padding: 32px;
    border-bottom: 1px solid #f3f4f6;
}

.sffc-skills-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 24px 0;
    color: #2c3e50;
}

.sffc-skills-chart {
    position: relative;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.sffc-skill-metrics {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sffc-skill-metric {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #f8f6f1 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.sffc-skill-metric:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f1 100%);
    border-color: #7fb069;
    transform: translateX(8px);
    box-shadow: 0 8px 16px rgba(127, 176, 105, 0.15);
}

.sffc-skill-metric:hover .sffc-skill-percentage {
    opacity: 1;
    visibility: visible;
}

.sffc-skill-metric.active {
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
    border-color: #1e3a2e;
    color: #ffffff;
    transform: translateX(12px);
    box-shadow: 0 12px 24px rgba(30, 58, 46, 0.2);
}

.sffc-skill-metric.active .sffc-skill-title,
.sffc-skill-metric.active .sffc-skill-desc {
    color: #ffffff;
}

.sffc-skill-metric.active .sffc-skill-score {
    color: #2c3e50;
}

/* Percentage display on hover */
.sffc-skill-percentage {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: #7fb069;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.sffc-skill-percentage::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #7fb069;
}

.sffc-skill-percent {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #e8e5e0;
}

.sffc-skill-score {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.sffc-skill-details {
    flex: 1;
}

.sffc-skill-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #2c3e50;
}

.sffc-skill-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.sffc-skill-circles {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sffc-progress-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sffc-progress-rail {
    fill: none;
    stroke: #f3f4f6;
}

.sffc-progress-value {
    fill: none;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.sffc-requirements-list {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.sffc-requirement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f9fafb;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
}

.sffc-requirement-item::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9,20.42L2.79,14.21L5.62,11.38L9,14.77L18.88,4.88L21.71,7.71L9,20.42Z" fill="%2384cc16"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    flex-shrink: 0;
}

/* ===== QUALIFICATIONS SECTION ===== */
.sffc-qualifications-section {
    padding: 32px;
    border-bottom: 1px solid #f3f4f6;
}

.sffc-qualifications-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 24px 0;
    color: #111827;
}

.sffc-qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.sffc-qual-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
}

.sffc-qual-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #dbeafe;
    color: #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sffc-qual-icon svg {
    width: 20px;
    height: 20px;
}

.sffc-qual-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #111827;
}

.sffc-qual-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* ===== DESCRIPTION SECTION ===== */
.sffc-description-section {
    padding: 32px;
    border-bottom: 1px solid #f3f4f6;
}

.sffc-description-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 24px 0;
    color: #111827;
}

.sffc-description-content {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.sffc-description-content p {
    margin-bottom: 16px;
}

.sffc-description-content ul,
.sffc-description-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.sffc-description-content li {
    margin-bottom: 8px;
}

/* ===== CONSULTANT SECTION ===== */
.sffc-consultant-section {
    padding: 32px;
}

.sffc-consultant-card {
    background: #f8f6f1;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f3f4f6;
}

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

.sffc-consultant-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #111827;
}

.sffc-premium-badge {
    background: #60a5fa;
    color: #fff;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.sffc-consultant-profile {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Consultant avatar styling is defined above in Enhanced Recruiter Section */

.sffc-consultant-info {
    flex: 1;
}

.sffc-consultant-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #111827;
}

.sffc-consultant-title {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 2px 0;
}

.sffc-consultant-org {
    font-size: 14px;
    color: #84cc16;
    font-weight: 500;
    margin: 0 0 12px 0;
}

.sffc-consultant-bio {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.sffc-consultant-experience {
    font-size: 13px;
    color: #374151;
    margin: 4px 0;
}

.sffc-consultant-location {
    font-size: 13px;
    color: #6b7280;
    margin: 4px 0;
}

.sffc-consultant-specialties {
    font-size: 13px;
    color: #374151;
    margin: 8px 0;
    line-height: 1.4;
}

.sffc-consultant-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
}

.sffc-consultant-rating .sffc-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.sffc-consultant-rating .sffc-rating-text {
    font-size: 13px;
    color: #6b7280;
}

.sffc-consultant-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.sffc-consultant-actions .sffc-btn {
    font-size: 13px;
    padding: 10px 16px;
    min-height: auto;
}

.sffc-consultant-locked {
    text-align: center;
    padding: 40px 20px;
}

.sffc-lock-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: #9ca3af;
}

.sffc-lock-icon svg {
    width: 100%;
    height: 100%;
}

.sffc-consultant-locked h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #111827;
}

.sffc-consultant-locked p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 24px 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== POPUP STYLES ===== */
.sffc-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
}

.sffc-popup h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #111827;
}

.sffc-popup p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 24px 0;
}

.sffc-popup-actions {
    display: flex;
    gap: 12px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .sffc-job-opportunities-advanced .sffc-job-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px 20px;
    }
    
    .sffc-recruiter-column {
        position: static;
        order: 2;
    }
    
    .sffc-job-content {
        order: 1;
    }
    
    .sffc-content-section {
        padding: 32px 24px;
    }
    
    .sffc-section-title {
        font-size: 22px;
    }
    
    .sffc-job-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .sffc-job-opportunities-advanced .sffc-job-layout {
        padding: 16px;
        gap: 20px;
    }
    
    .sffc-job-header {
        padding: 20px 16px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }
    
    .sffc-header-actions {
        width: 100%;
        margin-left: 0;
        order: 3;
        margin-top: 16px;
    }
    
    .sffc-header-actions .sffc-btn {
        flex: 1;
        min-width: auto;
    }
    
    .sffc-company-logo {
        width: 56px;
        height: 56px;
    }
    
    .sffc-job-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .sffc-job-meta-line {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .sffc-content-section {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .sffc-section-title {
        font-size: 20px;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .sffc-section-icon {
        width: 24px;
        height: 24px;
    }
    
    .sffc-summary-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sffc-summary-card {
        padding: 20px 16px;
        gap: 16px;
    }
    
    .sffc-summary-icon {
        width: 48px;
        height: 48px;
    }
    
    .sffc-skills-chart {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .sffc-skill-circles {
        width: 200px;
        height: 200px;
        order: -1;
    }
    
    .sffc-skill-metrics {
        width: 100%;
    }
    
    .sffc-skill-metric {
        padding: 12px 16px;
        margin-bottom: 8px;
    }
    
    .sffc-skill-metric:hover {
        transform: translateX(4px);
    }
    
    .sffc-skill-percentage {
        position: static;
        transform: none;
        margin-top: 8px;
        margin-left: auto;
        opacity: 1;
        visibility: visible;
        background: #f8f6f1;
        color: #2c3e50;
        border: 1px solid #e8e5e0;
    }
    
    .sffc-skill-percentage::before {
        display: none;
    }
    
    /* Hide duplicate consultant section on mobile */
    .sffc-consultant-card {
        display: none;
    }
    
    .sffc-consultant-profile {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 16px;
    }
    
    .sffc-consultant-avatar {
        width: 64px !important;
        height: 64px !important;
        margin-bottom: 8px !important;
    }
    
    .sffc-consultant-avatar img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        max-width: none !important;
        max-height: none !important;
        min-width: 0 !important;
        min-height: 0 !important;
    }
    
    .sffc-consultant-actions {
        width: 100%;
        gap: 12px;
    }
    
    .sffc-consultant-actions .sffc-btn {
        flex: 1;
        font-size: 14px;
        padding: 12px 16px;
        min-height: 48px;
    }
    
    .sffc-recruiter-card {
        padding: 20px 16px;
    }
    
    .sffc-action-buttons {
        gap: 8px;
    }
    
    .sffc-btn {
        min-height: 48px;
        font-size: 14px;
        padding: 12px 16px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .sffc-job-opportunities-advanced .sffc-job-layout {
        padding: 12px;
        gap: 16px;
    }
    
    .sffc-job-header {
        padding: 16px 12px;
    }
    
    .sffc-header-actions {
        gap: 8px;
        margin-top: 12px;
    }
    
    .sffc-header-actions .sffc-btn {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .sffc-job-title {
        font-size: 20px;
    }
    
    .sffc-cv-form-popup {
        max-width: 95vw;
        margin: 20px;
        max-height: 85vh;
    }
    
    .sffc-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .sffc-content-section {
        padding: 20px 12px;
        border-radius: 12px;
    }
    
    .sffc-section-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .sffc-summary-card {
        padding: 16px 12px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .sffc-summary-icon {
        align-self: center;
    }
    
    .sffc-skill-circles {
        width: 160px;
        height: 160px;
    }
    
    .sffc-skill-metric {
        padding: 10px 12px;
        border-radius: 8px;
    }
    
    .sffc-skill-title {
        font-size: 14px;
    }
    
    .sffc-skill-desc {
        font-size: 12px;
    }
    
    .sffc-consultant-avatar {
        width: 56px !important;
        height: 56px !important;
    }
    
    .sffc-consultant-avatar img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        max-width: none !important;
        max-height: none !important;
        min-width: 0 !important;
        min-height: 0 !important;
    }
    
    .sffc-consultant-actions .sffc-btn {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .sffc-recruiter-card {
        padding: 16px 12px;
    }
    
    .sffc-recruiter-logo {
        width: 64px;
        height: 64px;
    }
}

/* ===== OTHER AGENCIES CARD ===== */
.sffc-other-agencies-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    margin-top: 24px;
    box-shadow: 0 4px 6px -1px rgba(30, 41, 71, 0.08), 0 2px 4px -1px rgba(30, 41, 71, 0.04);
    border: 1px solid #e8e5e0;
}

.sffc-other-agencies-header {
    margin-bottom: 24px;
    text-align: center;
}

.sffc-other-agencies-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.sffc-agencies-subtitle {
    color: #64748b;
    font-size: 16px;
    margin: 0;
}

.sffc-agencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.sffc-agency-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.sffc-agency-item:hover {
    border-color: #3b82f6;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.sffc-agency-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
}

.sffc-agency-logo svg {
    width: 24px;
    height: 24px;
}

.sffc-agency-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.sffc-agency-jobs {
    color: #059669;
    font-size: 14px;
    font-weight: 500;
}

/* ===== RELATED JOBS SECTION ===== */
.sffc-related-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.sffc-related-job-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.sffc-related-job-card:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.sffc-job-header {
    margin-bottom: 16px;
}

.sffc-job-title {
    margin: 0 0 8px 0;
}

.sffc-job-title a {
    color: #1e293b;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.sffc-job-title a:hover {
    color: #3b82f6;
}

.sffc-job-company {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.sffc-job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.sffc-job-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 14px;
}

.sffc-detail-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.sffc-job-excerpt {
    margin-bottom: 20px;
}

.sffc-job-excerpt p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.sffc-job-actions {
    display: flex;
    gap: 12px;
}

/* ===== FAQ SECTION ===== */
.sffc-faq-container {
    margin-top: 20px;
}

.sffc-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.sffc-faq-item:hover {
    border-color: #3b82f6;
}

.sffc-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.sffc-faq-question:hover {
    background: #f8fafc;
}

.sffc-faq-question[aria-expanded="true"] {
    background: #f0f9ff;
    color: #1d4ed8;
}

.sffc-faq-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.sffc-faq-question[aria-expanded="true"] .sffc-faq-icon {
    transform: rotate(180deg);
}

.sffc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
}

.sffc-faq-answer div {
    padding: 0 24px 20px 24px;
    color: #4b5563;
    line-height: 1.6;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .sffc-agencies-grid {
        grid-template-columns: 1fr;
    }
    
    .sffc-related-jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .sffc-job-details {
        flex-direction: column;
        gap: 8px;
    }
    
    .sffc-job-actions {
        flex-direction: column;
    }
    
    .sffc-other-agencies-card {
        padding: 20px;
        margin-top: 16px;
    }
    
    .sffc-agency-item {
        padding: 16px;
    }
    
    .sffc-related-job-card {
        padding: 20px;
    }
    
    .sffc-faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .sffc-faq-answer div {
        padding: 0 20px 16px 20px;
    }
}

/* ===== CV FORM STYLES ===== */
.sffc-cv-form-popup {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.sffc-cv-form {
    margin-top: 20px;
}

.sffc-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.sffc-form-field {
    margin-bottom: 20px;
    flex: 1;
}

.sffc-form-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.sffc-form-field input,
.sffc-form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e5e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: #ffffff;
    box-sizing: border-box;
}

.sffc-form-field input:focus,
.sffc-form-field textarea:focus {
    outline: none;
    border-color: #7fb069;
    box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.1);
}

.sffc-form-field input.sffc-field-error,
.sffc-form-field textarea.sffc-field-error {
    border-color: #ef4444;
}

.sffc-form-field small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #6c757d;
}

.sffc-form-field input[type="file"] {
    padding: 8px;
    border-style: dashed;
    cursor: pointer;
}

.sffc-intro-benefits {
    margin: 20px 0;
}

/* ===== LOADING STATES ===== */
.sffc-loading {
    opacity: 0.6;
    pointer-events: none;
}

.sffc-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== ANIMATIONS ===== */
.sffc-skill-circles svg {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* ===== EXPERT REVIEW SERVICE PROMOTION ===== */
.sffc-expert-review-promo {
    background: linear-gradient(135deg, #fefdfb 0%, #f8f6f1 100%);
    border: 1px solid #e8e5e0;
    border-radius: 12px;
    padding: 28px;
    margin: 28px 0;
    position: relative;
    overflow: hidden;
}

.sffc-expert-review-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
}

.sffc-promo-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sffc-promo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.sffc-promo-icon svg {
    width: 22px;
    height: 22px;
}

.sffc-promo-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a2e;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.sffc-member-badge {
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a2e 100%);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.sffc-promo-description {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sffc-review-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.sffc-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e8e5e0;
    transition: all 0.2s ease;
}

.sffc-feature-item:hover {
    border-color: #2d5a3d;
    box-shadow: 0 3px 8px rgba(30, 58, 46, 0.1);
    transform: translateY(-1px);
}

.sffc-check-icon {
    width: 18px;
    height: 18px;
    color: #2d5a3d;
    flex-shrink: 0;
}

.sffc-feature-item span {
    color: #1e3a2e;
    font-weight: 500;
    line-height: 1.4;
    font-size: 14px;
}

.sffc-promo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e8e5e0;
}

.sffc-stat {
    text-align: center;
}

.sffc-stat-number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #1e3a2e;
    line-height: 1;
    margin-bottom: 4px;
}

.sffc-stat-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.sffc-promo-actions {
    text-align: center;
}

.sffc-btn-premium {
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(30, 58, 46, 0.25);
    margin-bottom: 12px;
}

.sffc-btn-premium:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(30, 58, 46, 0.35);
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a2e 100%);
}

.sffc-btn-premium .sffc-icon {
    width: 18px;
    height: 18px;
}

.sffc-promo-note {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
    font-style: italic;
}

/* Mobile optimizations for expert review promo */
@media (max-width: 768px) {
    .sffc-expert-review-promo {
        padding: 24px 20px;
        margin: 24px 0;
    }
    
    .sffc-promo-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .sffc-promo-title {
        font-size: 20px;
        min-width: auto;
    }
    
    .sffc-review-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .sffc-promo-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }
    
    .sffc-stat-number {
        font-size: 24px;
    }
    
    .sffc-btn-premium {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .sffc-expert-review-promo {
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .sffc-promo-icon {
        width: 40px;
        height: 40px;
    }
    
    .sffc-promo-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .sffc-promo-title {
        font-size: 18px;
    }
    
    .sffc-feature-item {
        padding: 10px 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* ===== EXPERT REVIEW POPUP ===== */
.sffc-expert-review-popup {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.sffc-review-popup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.sffc-review-popup-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.sffc-review-popup-icon svg {
    width: 24px;
    height: 24px;
}

.sffc-review-popup-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a2e;
    margin: 0;
    flex: 1;
}

.sffc-member-exclusive {
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a2e 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.sffc-review-description {
    font-size: 16px;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.6;
    text-align: center;
}

.sffc-review-services {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.sffc-service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.sffc-service-item:hover {
    border-color: #2d5a3d;
    background: #f8f6f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 46, 0.1);
}

.sffc-service-icon {
    width: 24px;
    height: 24px;
    color: #2d5a3d;
    flex-shrink: 0;
    margin-top: 2px;
}

.sffc-service-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a2e;
    margin: 0 0 4px 0;
}

.sffc-service-details p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.sffc-review-guarantee {
    text-align: center;
    margin-bottom: 24px;
}

.sffc-guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a2e 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

.sffc-guarantee-badge svg {
    width: 20px;
    height: 20px;
}

.sffc-review-footer-note {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 13px;
    color: #64748b;
    margin: 16px 0 0 0;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    line-height: 1.4;
}

.sffc-info-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Mobile optimizations for expert review popup */
@media (max-width: 768px) {
    .sffc-expert-review-popup {
        width: 95%;
        margin: 20px;
        max-height: 85vh;
    }
    
    .sffc-review-popup-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .sffc-review-popup-header h3 {
        font-size: 20px;
    }
    
    .sffc-service-item {
        padding: 16px;
        gap: 12px;
    }
    
    .sffc-service-icon {
        width: 20px;
        height: 20px;
    }
    
    .sffc-service-details h4 {
        font-size: 15px;
    }
    
    .sffc-service-details p {
        font-size: 13px;
    }
    
    .sffc-guarantee-badge {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .sffc-review-footer-note {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .sffc-expert-review-popup {
        width: 98%;
        margin: 10px;
    }
    
    .sffc-review-popup-icon {
        width: 40px;
        height: 40px;
    }
    
    .sffc-review-popup-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .sffc-review-popup-header h3 {
        font-size: 18px;
    }
    
    .sffc-service-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* ===== SIMPLIFIED CV FORM ===== */
.sffc-cv-form-popup {
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.sffc-cv-form-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e5e0;
}

.sffc-brand-logo {
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(30, 58, 46, 0.1);
}

.sffc-cv-form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a2e;
    margin: 0 0 8px 0;
}

.sffc-cv-form-header p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.sffc-cv-form .sffc-form-field {
    margin-bottom: 20px;
    text-align: left;
}

.sffc-cv-form .sffc-form-field label {
    display: block;
    font-weight: 600;
    color: #1e3a2e;
    margin-bottom: 8px;
    font-size: 14px;
}

.sffc-cv-form .sffc-form-field input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e8e5e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
    box-sizing: border-box;
}

.sffc-cv-form .sffc-form-field input:focus {
    outline: none;
    border-color: #2d5a3d;
    box-shadow: 0 0 0 3px rgba(30, 58, 46, 0.1);
}

.sffc-cv-form .sffc-form-field input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.sffc-cv-form .sffc-popup-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.sffc-cv-form .sffc-btn {
    flex: 1;
    max-width: 150px;
}

/* Mobile optimizations for CV form */
@media (max-width: 480px) {
    .sffc-cv-form-popup {
        width: 95%;
        margin: 20px;
    }

    .sffc-brand-logo {
        width: 56px;
        height: 56px;
    }

    .sffc-cv-form-header h3 {
        font-size: 20px;
    }

    .sffc-cv-form .sffc-popup-actions {
        flex-direction: column;
    }

    .sffc-cv-form .sffc-btn {
        max-width: none;
    }
}

/* ===== ENHANCED JOB SUMMARY STYLES ===== */

.job-summary-enhanced {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
}

.job-summary-enhanced h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    border-bottom: 3px solid #1e3a2e;
    padding-bottom: 12px;
}

.job-summary-enhanced .job-summary-intro {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 32px;
    padding: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-radius: 12px;
    border-left: 4px solid #1e3a2e;
}

.job-summary-enhanced .job-summary-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.job-summary-enhanced .job-summary-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-summary-enhanced .section-icon {
    font-size: 24px;
}

/* Role Reality Section */
.job-summary-enhanced .role-reality-section .reality-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.job-summary-enhanced .reality-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #3b82f6;
    font-size: 15px;
    line-height: 1.6;
}

/* Stand Out Section */
.job-summary-enhanced .stand-out-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.job-summary-enhanced .stand-out-card {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #fde047;
}

.job-summary-enhanced .stand-out-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #854d0e;
    margin: 0 0 12px 0;
}

.job-summary-enhanced .stand-out-card .how-to {
    font-size: 14px;
    color: #a16207;
    margin: 8px 0;
    padding: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 8px;
}

.job-summary-enhanced .stand-out-card .mistake {
    font-size: 14px;
    color: #dc2626;
    margin: 8px 0;
    padding: 12px;
    background: #fef2f2;
    border-radius: 8px;
    border-left: 3px solid #dc2626;
}

/* Interview Battlecard Section */
.job-summary-enhanced .battlecard-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.job-summary-enhanced .battlecard-stage {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border-top: 4px solid #1e3a2e;
}

.job-summary-enhanced .battlecard-stage h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-summary-enhanced .stage-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #1e3a2e;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.job-summary-enhanced .battlecard-stage p {
    font-size: 14px;
    margin: 12px 0;
    color: #475569;
}

.job-summary-enhanced .battlecard-stage ul {
    margin: 8px 0 16px 20px;
    padding: 0;
}

.job-summary-enhanced .battlecard-stage li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 6px;
}

.job-summary-enhanced .red-flags {
    color: #dc2626 !important;
}

.job-summary-enhanced .red-flags + ul li {
    color: #dc2626;
}

/* Skills Section */
.job-summary-enhanced .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.job-summary-enhanced .skill-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #6b7280;
}

.job-summary-enhanced .skill-card.priority-critical {
    border-left-color: #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.job-summary-enhanced .skill-card.priority-important {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.job-summary-enhanced .skill-card.priority-preferred {
    border-left-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.job-summary-enhanced .skill-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.job-summary-enhanced .skill-header h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.job-summary-enhanced .priority-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background: #1e293b;
    color: white;
}

.job-summary-enhanced .skill-card.priority-critical .priority-badge {
    background: #dc2626;
}

.job-summary-enhanced .skill-card.priority-important .priority-badge {
    background: #f59e0b;
}

.job-summary-enhanced .skill-card.priority-preferred .priority-badge {
    background: #10b981;
}

.job-summary-enhanced .skill-card ul {
    margin: 0;
    padding-left: 18px;
}

.job-summary-enhanced .skill-card li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 6px;
}

/* Career Trajectory Section */
.job-summary-enhanced .trajectory-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 30px;
}

.job-summary-enhanced .trajectory-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(to bottom, #1e3a2e 0%, #10b981 100%);
    border-radius: 2px;
}

.job-summary-enhanced .trajectory-step {
    position: relative;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 16px;
}

.job-summary-enhanced .trajectory-step::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 24px;
    width: 14px;
    height: 14px;
    background: #1e3a2e;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #1e3a2e;
}

.job-summary-enhanced .trajectory-step.exit-opps {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #10b981;
}

.job-summary-enhanced .trajectory-step.exit-opps::before {
    background: #10b981;
    box-shadow: 0 0 0 2px #10b981;
}

.job-summary-enhanced .timeline-marker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1e3a2e;
    background: #e0f2fe;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.job-summary-enhanced .trajectory-step p {
    font-size: 15px;
    color: #475569;
    margin: 8px 0 0 0;
    line-height: 1.6;
}

/* Compensation Section */
.job-summary-enhanced .compensation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.job-summary-enhanced .comp-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.job-summary-enhanced .comp-card strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
}

.job-summary-enhanced .comp-card span {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.job-summary-enhanced .comp-card.highlight {
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
}

.job-summary-enhanced .comp-card.highlight strong,
.job-summary-enhanced .comp-card.highlight span {
    color: white;
}

.job-summary-enhanced .negotiation-tip {
    background: #fef3c7;
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
    border-left: 4px solid #f59e0b;
    margin-top: 16px;
}

/* Questions Section */
.job-summary-enhanced .questions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-summary-enhanced .questions-list li {
    position: relative;
    padding: 16px 20px 16px 50px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #475569;
}

.job-summary-enhanced .questions-list li::before {
    content: '?';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #1e3a2e;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Application Checklist Section */
.job-summary-enhanced .checklist-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-summary-enhanced .checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.job-summary-enhanced .checklist-item:hover {
    background: #f1f5f9;
    border-color: #1e3a2e;
}

.job-summary-enhanced .checklist-item input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #1e3a2e;
}

.job-summary-enhanced .checklist-item span {
    font-size: 15px;
    color: #475569;
    line-height: 1.5;
}

.job-summary-enhanced .checklist-item:has(input:checked) {
    background: #ecfdf5;
    border-color: #10b981;
}

.job-summary-enhanced .checklist-item:has(input:checked) span {
    text-decoration: line-through;
    color: #10b981;
}

/* Responsive adjustments for enhanced summary */
@media (max-width: 768px) {
    .job-summary-enhanced h2 {
        font-size: 22px;
    }

    .job-summary-enhanced .job-summary-intro {
        font-size: 16px;
        padding: 16px;
    }

    .job-summary-enhanced .job-summary-section {
        padding: 20px;
    }

    .job-summary-enhanced .battlecard-stages,
    .job-summary-enhanced .stand-out-factors,
    .job-summary-enhanced .skills-grid,
    .job-summary-enhanced .reality-cards {
        grid-template-columns: 1fr;
    }

    .job-summary-enhanced .compensation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-summary-enhanced .trajectory-timeline {
        padding-left: 24px;
    }
}

/* ===== ENHANCED SUMMARY SHORTCODE STYLES ===== */
/* Styles for the render_enhanced_summary helper output */

.sffc-enhanced-summary {
    margin-top: 24px;
}

/* Role Reality Section */
.sffc-role-reality .sffc-reality-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.sffc-role-reality .sffc-reality-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #3b82f6;
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

/* Stand Out Section */
.sffc-stand-out .sffc-stand-out-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.sffc-stand-out .sffc-stand-out-card {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #fde047;
}

.sffc-stand-out .sffc-stand-out-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #854d0e;
    margin: 0 0 12px 0;
}

.sffc-stand-out .sffc-how-to {
    font-size: 14px;
    color: #a16207;
    margin: 12px 0;
    padding: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 8px;
}

.sffc-stand-out .sffc-how-to p {
    margin: 8px 0 0 0;
}

.sffc-stand-out .sffc-avoid {
    font-size: 14px;
    color: #dc2626;
    margin: 12px 0 0;
    padding: 12px;
    background: #fef2f2;
    border-radius: 8px;
    border-left: 3px solid #dc2626;
}

.sffc-stand-out .sffc-avoid p {
    margin: 8px 0 0 0;
}

/* Interview Battlecard Section */
.sffc-battlecard .sffc-battlecard-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.sffc-battlecard .sffc-stage-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border-top: 4px solid #1e3a2e;
}

.sffc-battlecard .sffc-stage-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.sffc-battlecard .sffc-stage-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #1e3a2e;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.sffc-battlecard .sffc-stage-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.sffc-battlecard .sffc-stage-card p {
    font-size: 14px;
    margin: 12px 0;
    color: #475569;
    line-height: 1.6;
}

.sffc-battlecard .sffc-stage-card ul {
    margin: 8px 0 16px 20px;
    padding: 0;
}

.sffc-battlecard .sffc-stage-card li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
    line-height: 1.5;
}

.sffc-battlecard .sffc-red-flags {
    background: #fef2f2;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 12px;
}

.sffc-battlecard .sffc-red-flags strong {
    color: #dc2626;
}

.sffc-battlecard .sffc-red-flags ul {
    margin: 8px 0 0 20px;
}

.sffc-battlecard .sffc-red-flags li {
    color: #dc2626;
}

.sffc-battlecard .sffc-closing-tip {
    background: #ecfdf5;
    border-radius: 8px;
    padding: 12px 16px;
    border-left: 4px solid #10b981;
    margin-top: 12px;
}

/* Career Trajectory Section */
.sffc-career-trajectory .sffc-trajectory-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 30px;
}

.sffc-career-trajectory .sffc-trajectory-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(to bottom, #1e3a2e 0%, #10b981 100%);
    border-radius: 2px;
}

.sffc-career-trajectory .sffc-trajectory-step {
    position: relative;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 16px;
}

.sffc-career-trajectory .sffc-trajectory-step::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 24px;
    width: 14px;
    height: 14px;
    background: #1e3a2e;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #1e3a2e;
}

.sffc-career-trajectory .sffc-exit-opps {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #10b981;
}

.sffc-career-trajectory .sffc-exit-opps::before {
    background: #10b981;
    box-shadow: 0 0 0 2px #10b981;
}

.sffc-career-trajectory .sffc-timeline-marker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1e3a2e;
    background: #e0f2fe;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.sffc-career-trajectory .sffc-trajectory-step p {
    font-size: 15px;
    color: #475569;
    margin: 8px 0 0 0;
    line-height: 1.6;
}

/* Compensation Section */
.sffc-compensation .sffc-comp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.sffc-compensation .sffc-comp-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.sffc-compensation .sffc-comp-card strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
}

.sffc-compensation .sffc-comp-card span {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
}

.sffc-compensation .sffc-highlight {
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
}

.sffc-compensation .sffc-highlight strong,
.sffc-compensation .sffc-highlight span {
    color: white;
}

.sffc-compensation .sffc-negotiation-tip {
    background: #fef3c7;
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
    border-left: 4px solid #f59e0b;
    margin-top: 16px;
    color: #92400e;
}

/* Questions to Ask Section */
.sffc-questions-to-ask .sffc-questions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sffc-questions-to-ask .sffc-questions-list li {
    position: relative;
    padding: 16px 20px 16px 50px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #475569;
    line-height: 1.5;
}

.sffc-questions-to-ask .sffc-questions-list li::before {
    content: '?';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #1e3a2e;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Application Checklist Section */
.sffc-checklist .sffc-checklist-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sffc-checklist .sffc-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.sffc-checklist .sffc-checklist-item:hover {
    background: #f1f5f9;
    border-color: #1e3a2e;
}

.sffc-checklist .sffc-checklist-item input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #1e3a2e;
}

.sffc-checklist .sffc-checklist-item span {
    font-size: 15px;
    color: #475569;
    line-height: 1.5;
}

.sffc-checklist .sffc-checklist-item:has(input:checked) {
    background: #ecfdf5;
    border-color: #10b981;
}

.sffc-checklist .sffc-checklist-item:has(input:checked) span {
    text-decoration: line-through;
    color: #10b981;
}

/* Responsive for enhanced summary shortcode */
@media (max-width: 768px) {
    .sffc-stand-out .sffc-stand-out-grid,
    .sffc-battlecard .sffc-battlecard-stages,
    .sffc-role-reality .sffc-reality-cards {
        grid-template-columns: 1fr;
    }

    .sffc-compensation .sffc-comp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sffc-career-trajectory .sffc-trajectory-timeline {
        padding-left: 24px;
    }

    .sffc-career-trajectory .sffc-trajectory-step::before {
        left: -20px;
        width: 12px;
        height: 12px;
    }
}

/* ===== ENHANCED SKILLS DISPLAY (Priority-Based) ===== */
.sffc-skills-enhanced {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sffc-skill-group {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e8e5e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sffc-skill-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.sffc-skill-group-header h4 {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.sffc-priority-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sffc-priority-indicator.critical {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.4);
}

.sffc-priority-indicator.important {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.sffc-priority-indicator.preferred {
    background: linear-gradient(135deg, #1e3a2e, #2d5a3d);
    box-shadow: 0 0 8px rgba(30, 58, 46, 0.3);
}

.sffc-priority-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
}

.sffc-priority-tag.critical {
    background: #fef2f2;
    color: #dc2626;
}

.sffc-priority-tag.important {
    background: #fffbeb;
    color: #d97706;
}

.sffc-priority-tag.preferred {
    background: #f0fdf4;
    color: #1e3a2e;
}

.sffc-skill-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.sffc-skill-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px 20px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.sffc-skill-critical .sffc-skill-item {
    border-left-color: #dc2626;
}

.sffc-skill-important .sffc-skill-item {
    border-left-color: #f59e0b;
}

.sffc-skill-preferred .sffc-skill-item {
    border-left-color: #1e3a2e;
}

.sffc-skill-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.sffc-skill-name {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.sffc-skill-bullets {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sffc-skill-bullets li {
    position: relative;
    padding-left: 16px;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 4px;
}

.sffc-skill-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: #94a3b8;
    border-radius: 50%;
}

.sffc-skill-bullets li:last-child {
    margin-bottom: 0;
}

/* Responsive for enhanced skills */
@media (max-width: 768px) {
    .sffc-skill-group {
        padding: 20px;
    }

    .sffc-skill-group-header {
        flex-wrap: wrap;
    }

    .sffc-skill-items {
        grid-template-columns: 1fr;
    }

    .sffc-priority-tag {
        margin-top: 8px;
    }
}

/* =============================================
   ACTIONABLE VIEW STYLES
   Transform job pages into practical tools
   ============================================= */

.sffc-actionable-view {
    --action-primary: #1e3a2e;
    --action-primary-light: #2d5a3d;
    --action-accent: #f59e0b;
    --action-success: #10b981;
    --action-warning: #f59e0b;
    --action-danger: #ef4444;
    --action-bg: #f8fafc;
}

/* ==============================================
   HERO SECTION - Clean, Impactful Design
   ============================================== */
.sffc-job-hero {
    background: #ffffff;
    color: #1e293b;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    position: relative;
}

.sffc-hero-badge {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sffc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sffc-badge-hot {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.sffc-badge-recent {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}

.sffc-badge-new {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.sffc-hero-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.25;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.sffc-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.sffc-hero-meta > span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #64748b;
}

.sffc-hero-meta > span svg {
    color: #94a3b8;
}

.sffc-hero-company {
    font-weight: 600;
    color: #1e293b !important;
}

.sffc-hero-salary {
    background: #f0fdf4;
    color: #16a34a;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid #bbf7d0;
}

/* Hero Role Summary */
.sffc-hero-summary {
    margin-top: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    position: relative;
}

.sffc-hero-summary::before {
    content: '"';
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 32px;
    font-family: Georgia, serif;
    color: #3b82f6;
    opacity: 0.3;
    line-height: 1;
}

.sffc-hero-summary p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .sffc-hero-summary {
        margin-top: 12px;
        padding: 14px 16px;
    }

    .sffc-hero-summary p {
        font-size: 14px;
        padding-left: 16px;
    }

    .sffc-hero-summary::before {
        font-size: 28px;
        left: 10px;
    }
}

/* Quick Stats Bar - Cleaner horizontal pills */
.sffc-quick-stats {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.sffc-stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Hero Quick Actions - Horizontal row in hero section */
.sffc-hero-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.sffc-hero-quick-actions .sffc-quick-action {
    flex: 1;
    min-width: 120px;
    justify-content: center;
    margin-bottom: 0;
    background: #f8fafc;
    border-color: #e2e8f0;
}

.sffc-hero-quick-actions .sffc-quick-action:hover {
    background: #1e3a5f;
    border-color: #1e3a5f;
    color: #ffffff;
}

.sffc-hero-quick-actions .sffc-quick-action:hover svg {
    stroke: #ffffff;
}

@media (max-width: 640px) {
    .sffc-hero-quick-actions {
        flex-direction: column;
    }

    .sffc-hero-quick-actions .sffc-quick-action {
        flex: none;
        width: 100%;
    }
}

.sffc-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    background: #f8fafc;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.sffc-stat-item svg {
    color: #94a3b8;
}

.sffc-stat-item .sffc-stat-value {
    color: #1e293b;
    font-weight: 600;
}

.sffc-stat-item .sffc-stat-icon {
    flex-shrink: 0;
}

.sffc-stat-highlight {
    background: #fef3c7;
    border-color: #fde68a;
    color: #92400e;
}

.sffc-stat-highlight .sffc-stat-value {
    color: #92400e;
}

/* ==============================================
   ACTION SIDEBAR - Clean, Conversion-Focused
   ============================================== */
.sffc-action-sidebar {
    position: sticky;
    top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: fit-content;
}

.sffc-action-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* Primary CTA Card - Most Important */
.sffc-apply-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.sffc-apply-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #1e293b;
}

.sffc-apply-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 20px 0;
}

/* Button Styles - Clean and Clear */
.sffc-btn-lg {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
}

.sffc-btn-full {
    width: 100%;
    justify-content: center;
}

/* Primary Button - Navy */
.sffc-action-sidebar .sffc-btn-primary {
    background: #1e3a5f;
    color: #ffffff;
    border: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.sffc-action-sidebar .sffc-btn-primary:hover {
    background: #2d4a6f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

/* Outline Button */
.sffc-btn-outline {
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #475569;
    margin-top: 10px;
}

.sffc-btn-outline:hover {
    border-color: #1e3a5f;
    color: #1e3a5f;
    background: #f8fafc;
}

/* Smart Apply Benefits List */
.sffc-smart-apply-benefits {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.sffc-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #475569;
    padding: 6px 0;
}

.sffc-benefit svg {
    color: #059669;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Recruiter Card in Sidebar */
.sffc-sidebar-recruiter {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 16px;
}

.sffc-sidebar-recruiter-avatar {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e5e7eb;
}

.sffc-sidebar-recruiter-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sffc-sidebar-recruiter-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 2px;
}

.sffc-sidebar-recruiter-info p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* Quick Actions - Cleaner */
.sffc-quick-actions {
    padding: 0;
}

.sffc-quick-actions h4 {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sffc-quick-action {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-bottom: 8px;
    text-decoration: none;
}

.sffc-quick-action:last-child {
    margin-bottom: 0;
}

.sffc-quick-action svg {
    color: #94a3b8;
    width: 16px;
    height: 16px;
}

.sffc-quick-action:hover {
    background: #f8fafc;
    border-color: #1e3a5f;
    color: #1e3a5f;
}

.sffc-quick-action:hover svg {
    color: #1e3a5f;
}

/* At a Glance Grid */
.sffc-glance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sffc-glance-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #e8e5e0;
    transition: all 0.2s ease;
}

.sffc-glance-card:hover {
    border-color: var(--action-primary);
    box-shadow: 0 4px 12px rgba(30, 58, 46, 0.1);
}

.sffc-glance-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sffc-icon-salary { background: #ecfdf5; color: #10b981; }
.sffc-icon-location { background: #eff6ff; color: #3b82f6; }
.sffc-icon-type { background: #fef3c7; color: #f59e0b; }
.sffc-icon-exp { background: #f3e8ff; color: #8b5cf6; }

.sffc-glance-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sffc-glance-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sffc-glance-value {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

/* Role Reality Visual */
.sffc-reality-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sffc-reality-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--action-primary);
}

.sffc-reality-number {
    width: 28px;
    height: 28px;
    background: var(--action-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.sffc-reality-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.5;
}

/* Skills Fit Checker */
.sffc-skills-fit-checker {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
}

.sffc-fit-intro {
    margin-bottom: 24px;
}

.sffc-fit-intro p {
    font-size: 15px;
    color: #475569;
    margin: 0 0 16px 0;
}

.sffc-fit-meter {
    position: relative;
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.sffc-fit-progress {
    height: 100%;
    background: linear-gradient(90deg, #ef4444 0%, #f59e0b 50%, #10b981 100%);
    border-radius: 6px;
    transition: width 0.5s ease;
}

.sffc-fit-label {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.sffc-skills-fit-checker .sffc-skill-group {
    margin-bottom: 20px;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.sffc-skills-fit-checker .sffc-skill-group h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.sffc-priority-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.sffc-dot-critical { background: #ef4444; }
.sffc-dot-important { background: #f59e0b; }
.sffc-dot-preferred { background: #10b981; }

.sffc-skill-count {
    font-weight: 400;
    color: #94a3b8;
}

.sffc-skill-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sffc-skill-check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.sffc-skill-check:hover {
    border-color: #e2e8f0;
}

.sffc-skill-check input {
    display: none;
}

.sffc-check-box {
    width: 22px;
    height: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.sffc-skill-check input:checked + .sffc-check-box {
    background: var(--action-success);
    border-color: var(--action-success);
}

.sffc-skill-check input:checked + .sffc-check-box::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.sffc-skill-check input:checked ~ .sffc-skill-name {
    text-decoration: line-through;
    color: #94a3b8;
}

.sffc-skills-fit-checker .sffc-skill-name {
    font-size: 14px;
    color: #475569;
    flex: 1;
    font-weight: 400;
    margin-bottom: 0;
}

.sffc-skill-hint {
    font-size: 12px;
    color: #94a3b8;
    font-style: italic;
}

.sffc-fit-result {
    margin-top: 20px;
}

.sffc-result-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

.sffc-result-good {
    background: #ecfdf5;
    color: #059669;
}

.sffc-result-partial {
    background: #fef3c7;
    color: #d97706;
}

.sffc-result-gap {
    background: #fef2f2;
    color: #dc2626;
}

/* Interview Timeline */
.sffc-interview-timeline {
    position: relative;
    padding-left: 40px;
}

.sffc-interview-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(180deg, var(--action-primary), #cbd5e1);
}

.sffc-timeline-stage {
    position: relative;
    margin-bottom: 24px;
}

.sffc-timeline-stage:last-child {
    margin-bottom: 0;
}

.sffc-stage-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--action-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sffc-stage-num {
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.sffc-stage-content {
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid #e8e5e0;
}

.sffc-stage-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.sffc-stage-focus {
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
}

.sffc-stage-questions ul,
.sffc-warning-list {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.sffc-stage-questions li,
.sffc-warning-list li {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 6px;
}

.sffc-test-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.sffc-test-tag {
    font-size: 12px;
    padding: 4px 12px;
    background: #f1f5f9;
    border-radius: 20px;
    color: #475569;
}

.sffc-stage-warnings {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
}

.sffc-warning-list li {
    color: #dc2626;
}

/* Compensation Visual */
.sffc-comp-visual {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
}

.sffc-salary-range {
    margin-bottom: 24px;
}

.sffc-salary-bar {
    position: relative;
    height: 40px;
    background: linear-gradient(90deg, #fecaca 0%, #fef3c7 50%, #d1fae5 100%);
    border-radius: 8px;
}

.sffc-salary-fill {
    position: absolute;
    top: 0;
    height: 100%;
    background: rgba(30, 58, 46, 0.1);
    border-radius: 8px;
}

.sffc-salary-marker {
    position: absolute;
    top: 100%;
    transform: translateX(-50%);
    text-align: center;
    padding-top: 8px;
}

.sffc-marker-label {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sffc-marker-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.sffc-posted-salary {
    margin-top: 48px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sffc-posted-salary .sffc-label {
    font-size: 14px;
    color: #64748b;
}

.sffc-posted-salary .sffc-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--action-primary);
}

.sffc-comp-factors {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.sffc-comp-factors h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.sffc-factor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.sffc-factor {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
}

.sffc-factor-icon {
    width: 20px;
    height: 20px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.sffc-comp-tip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 16px;
    background: #eff6ff;
    border-radius: 12px;
}

.sffc-comp-tip svg {
    color: #3b82f6;
    flex-shrink: 0;
}

.sffc-comp-tip p {
    font-size: 13px;
    color: #3b82f6;
    margin: 0;
    line-height: 1.5;
}

/* Application Checklist Visual */
.sffc-checklist-visual {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 32px;
}

.sffc-checklist-progress {
    text-align: center;
    flex-shrink: 0;
}

.sffc-progress-ring {
    position: relative;
    width: 100px;
    height: 100px;
}

.sffc-progress-ring svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.sffc-progress-bg {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 3;
}

.sffc-progress-fill {
    fill: none;
    stroke: var(--action-success);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

.sffc-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 700;
    color: var(--action-primary);
}

.sffc-progress-label {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #64748b;
}

.sffc-checklist-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sffc-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sffc-checklist-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sffc-checklist-item input {
    display: none;
}

.sffc-check-indicator {
    width: 22px;
    height: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.sffc-checklist-item input:checked + .sffc-check-indicator {
    background: var(--action-success);
    border-color: var(--action-success);
}

.sffc-checklist-item input:checked + .sffc-check-indicator::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.sffc-checklist-item input:checked ~ .sffc-item-text {
    text-decoration: line-through;
    color: #94a3b8;
}

.sffc-item-text {
    font-size: 14px;
    color: #475569;
}

.sffc-checklist-cta {
    display: none;
}

/* Career Path Visual */
.sffc-career-visual {
    padding: 20px 0;
}

.sffc-career-path {
    position: relative;
    padding-left: 40px;
}

.sffc-path-step {
    position: relative;
    padding-bottom: 24px;
}

.sffc-path-step:last-child {
    padding-bottom: 0;
}

.sffc-step-connector {
    position: absolute;
    left: -32px;
    top: 24px;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.sffc-path-step:last-child .sffc-step-connector {
    display: none;
}

.sffc-step-node {
    position: absolute;
    left: -40px;
    top: 0;
}

.sffc-step-node svg {
    color: var(--action-primary);
}

.sffc-step-dot {
    display: block;
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid #cbd5e1;
    border-radius: 50%;
}

.sffc-path-step .sffc-step-content {
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 3px solid #e2e8f0;
}

.sffc-step-current .sffc-step-content {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border-left-color: var(--action-primary);
}

.sffc-path-step .sffc-step-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.sffc-step-timeline {
    display: inline-block;
    font-size: 12px;
    color: #64748b;
    background: white;
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.sffc-path-step .sffc-step-content p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Questions Visual */
.sffc-questions-visual {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
}

.sffc-questions-intro {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 16px 0;
}

.sffc-questions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sffc-question-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.sffc-question-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sffc-question-icon {
    width: 24px;
    height: 24px;
    background: var(--action-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.sffc-question-text {
    flex: 1;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.sffc-copy-btn {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: #94a3b8;
    border-radius: 6px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.sffc-copy-btn:hover {
    background: #f1f5f9;
    color: var(--action-primary);
}

/* Collapsible Full Description */
.sffc-collapsible {
    background: white;
    border-radius: 16px;
    border: 1px solid #e8e5e0;
    overflow: hidden;
}

.sffc-collapsible-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
}

.sffc-collapsible-header::-webkit-details-marker {
    display: none;
}

.sffc-collapsible-header .sffc-section-title {
    margin: 0;
}

.sffc-collapsible-icon {
    transition: transform 0.3s ease;
    color: #94a3b8;
}

.sffc-collapsible[open] .sffc-collapsible-icon {
    transform: rotate(180deg);
}

.sffc-collapsible .sffc-description-content {
    padding: 0 24px 24px 24px;
    border-top: 1px solid #e8e5e0;
    padding-top: 20px;
}

/* Section Badge */
.sffc-section-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    background: #ecfdf5;
    color: var(--action-primary);
    border-radius: 12px;
    margin-left: 12px;
}

/* No Data Message */
.sffc-no-data {
    font-size: 14px;
    color: #94a3b8;
    font-style: italic;
    padding: 20px;
    text-align: center;
    background: #f8fafc;
    border-radius: 12px;
}

/* Responsive Actionable View */
@media (max-width: 1024px) {
    .sffc-glance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sffc-checklist-visual {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sffc-factor-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sffc-job-hero {
        padding: 24px;
    }

    .sffc-hero-title {
        font-size: 24px;
    }

    .sffc-hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .sffc-stats-bar {
        flex-direction: column;
        gap: 12px;
    }

    .sffc-glance-grid {
        grid-template-columns: 1fr;
    }

    .sffc-glance-card {
        padding: 16px;
    }

    .sffc-interview-timeline {
        padding-left: 30px;
    }

    .sffc-stage-marker {
        left: -30px;
        width: 24px;
        height: 24px;
    }

    .sffc-stage-num {
        font-size: 12px;
    }

    .sffc-career-path {
        padding-left: 30px;
    }

    .sffc-step-node {
        left: -30px;
    }
}

/* ===========================================
   FIRM PULSE - Company Intelligence Section
   =========================================== */

.sffc-firm-pulse {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
}

.sffc-badge-intel {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
}

.sffc-firm-pulse-container {
    padding: 0;
}

/* =====================================================
   HERO MATCH DONUT CHART
   ===================================================== */
.sffc-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.sffc-hero-left {
    flex: 1;
    min-width: 0;
}

.sffc-hero-match {
    flex-shrink: 0;
}

.sffc-hero-match-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    min-width: 180px;
}

.sffc-hero-donut {
    position: relative;
    width: 88px;
    height: 88px;
}

.sffc-donut-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.sffc-donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.sffc-donut-score {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.sffc-donut-lock {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.sffc-donut-lock svg {
    width: 16px;
    height: 16px;
    color: white;
}

.sffc-hero-donut.state-locked .donut-segment {
    opacity: 0.3;
    filter: blur(1px);
}

.sffc-hero-match-info {
    text-align: center;
}

.sffc-match-strength {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.sffc-strength-excellent {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
}

.sffc-strength-strong {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.sffc-strength-good {
    background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
    color: #854d0e;
}

.sffc-strength-fair {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #4b5563;
}

.sffc-match-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
    font-size: 10px;
    color: #64748b;
}

.sffc-breakdown-item {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.sffc-breakdown-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sffc-match-cta {
    font-size: 12px;
    color: #64748b;
}

.sffc-match-cta a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.sffc-match-cta a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 640px) {
    .sffc-hero-content {
        flex-direction: column;
    }

    .sffc-hero-match-container {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }

    .sffc-hero-match-info {
        text-align: left;
    }

    .sffc-match-breakdown {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   GROWTH INSIGHT CARD - McKinsey/Bain Style
   ===================================================== */
.sffc-growth-insight {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.sffc-insight-header {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.sffc-insight-left {
    flex: 1;
    min-width: 0;
}

.sffc-insight-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.sffc-insight-label {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.sffc-insight-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.sffc-insight-badge svg {
    width: 14px;
    height: 14px;
}

.sffc-badge-green {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
    border: 1px solid #86efac;
}

.sffc-badge-yellow {
    background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
    color: #854d0e;
    border: 1px solid #fde047;
}

.sffc-badge-red {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.sffc-badge-gray {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.sffc-insight-summary {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* Trend Chart */
.sffc-trend-chart {
    width: 220px;
    flex-shrink: 0;
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
}

.sffc-trend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.sffc-trend-title {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sffc-trend-value {
    font-size: 14px;
    font-weight: 700;
}

.sffc-trend-green { color: #10b981; }
.sffc-trend-yellow { color: #f59e0b; }
.sffc-trend-red { color: #ef4444; }
.sffc-trend-gray { color: #6b7280; }

.sffc-trend-graph {
    height: 60px;
    margin-bottom: 8px;
}

.sffc-trend-svg {
    width: 100%;
    height: 100%;
}

.sffc-trend-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #94a3b8;
}

/* Signal Chips */
.sffc-insight-signals-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.sffc-signal-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
}

.sffc-signal-chip svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.sffc-signal-positive {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.sffc-signal-neutral {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.sffc-signal-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}

/* Implication Box */
.sffc-insight-implication {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px 20px;
    border-left: 4px solid #3b82f6;
}

.sffc-implication-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #3b82f6;
    font-size: 13px;
    font-weight: 600;
}

.sffc-implication-header svg {
    flex-shrink: 0;
}

.sffc-insight-implication p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
}

/* Insight Card Color Variants */
.sffc-insight-green {
    border-top: 3px solid #10b981;
}

.sffc-insight-yellow {
    border-top: 3px solid #f59e0b;
}

.sffc-insight-red {
    border-top: 3px solid #ef4444;
}

.sffc-insight-gray {
    border-top: 3px solid #6b7280;
}

/* Meta Bar */
.sffc-pulse-meta-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sffc-firm-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 6px;
}

.sffc-firm-type-badge svg {
    width: 14px;
    height: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .sffc-insight-header {
        flex-direction: column;
    }

    .sffc-trend-chart {
        width: 100%;
    }

    .sffc-insight-signals-bar {
        flex-direction: column;
    }

    .sffc-signal-chip {
        width: 100%;
    }
}

/* Pulse Header */
.sffc-pulse-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.sffc-pulse-sentiment {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
}

.sffc-sentiment-icon {
    font-size: 18px;
}

/* Sentiment Colors */
.sffc-sentiment-green {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
    border: 1px solid #86efac;
}

.sffc-sentiment-yellow {
    background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
    color: #854d0e;
    border: 1px solid #fde047;
}

.sffc-sentiment-red {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.sffc-sentiment-gray {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #4b5563;
    border: 1px solid #d1d5db;
}

/* Pulse Meta */
.sffc-pulse-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sffc-firm-type {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    background: white;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.sffc-pulse-cached {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #94a3b8;
}

/* Pulse Reason */
.sffc-pulse-reason {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border-left: 3px solid #0ea5e9;
}

/* Pulse Sections */
.sffc-pulse-sections {
    display: grid;
    gap: 16px;
}

.sffc-pulse-section {
    background: white;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
}

.sffc-pulse-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.sffc-pulse-section-icon {
    font-size: 16px;
}

.sffc-pulse-section-content {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Pulse Items List */
.sffc-pulse-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sffc-pulse-item {
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.sffc-pulse-item:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.sffc-pulse-item-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.sffc-pulse-item-title {
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.4;
    text-decoration: none;
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
}

a.sffc-pulse-item-title:hover {
    color: #0ea5e9;
}

.sffc-external-icon {
    flex-shrink: 0;
    opacity: 0.5;
    margin-top: 2px;
}

a.sffc-pulse-item-title:hover .sffc-external-icon {
    opacity: 1;
}

.sffc-pulse-item-time {
    font-size: 11px;
    color: #94a3b8;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Pulse Tags */
.sffc-pulse-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sffc-pulse-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.sffc-tag-value {
    background: #dbeafe;
    color: #1e40af;
}

.sffc-tag-type {
    background: #e0e7ff;
    color: #4338ca;
}

.sffc-tag-sector {
    background: #f3e8ff;
    color: #7c3aed;
}

.sffc-tag-impact {
    font-weight: 600;
}

.sffc-impact-green {
    background: #dcfce7;
    color: #166534;
}

.sffc-impact-orange {
    background: #ffedd5;
    color: #c2410c;
}

.sffc-impact-red {
    background: #fee2e2;
    color: #991b1b;
}

.sffc-impact-gray {
    background: #f3f4f6;
    color: #4b5563;
}

/* Pulse Summary */
.sffc-pulse-summary {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.sffc-pulse-summary p {
    font-size: 13px;
    color: #0369a1;
    margin: 0;
    font-weight: 500;
}

/* Pulse Disclaimer */
.sffc-pulse-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 14px;
    background: #fffbeb;
    border-radius: 8px;
    border: 1px solid #fde68a;
    font-size: 12px;
    color: #92400e;
    line-height: 1.4;
}

.sffc-pulse-disclaimer svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* Pulse Footer */
.sffc-pulse-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
    font-size: 11px;
    color: #94a3b8;
}

.sffc-pulse-updated {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sffc-pulse-source {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #10b981;
    font-weight: 500;
}

/* Pulse Fallback */
.sffc-pulse-fallback .sffc-pulse-cta {
    margin-top: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.sffc-pulse-fallback .sffc-pulse-cta p {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 12px 0;
}

.sffc-pulse-fallback .sffc-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sffc-pulse-fallback .sffc-btn-outline:hover {
    background: #0ea5e9;
    color: white;
}

/* Pulse Section Specific Styles */
.sffc-pulse-deals .sffc-pulse-section-title {
    color: #0369a1;
}

.sffc-pulse-news .sffc-pulse-section-title {
    color: #7c3aed;
}

.sffc-pulse-signals .sffc-pulse-section-title {
    color: #dc2626;
}

.sffc-pulse-market_intel .sffc-pulse-section-title {
    color: #059669;
}

/* Responsive Firm Pulse */
@media (max-width: 768px) {
    .sffc-pulse-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sffc-pulse-item-main {
        flex-direction: column;
        gap: 4px;
    }

    .sffc-pulse-item-time {
        order: -1;
        font-size: 10px;
    }

    .sffc-pulse-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ==============================================
   CONVERSION-FOCUSED ELEMENTS
   Match Score Preview & Urgency Indicators
   ============================================== */

/* Match Score Preview Card - Shows in sidebar for logged-in users */
.sffc-match-preview {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.sffc-match-preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.sffc-match-preview-score {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.sffc-match-preview-score svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.sffc-match-preview-score circle {
    fill: none;
    stroke-width: 5;
}

.sffc-match-preview-score .score-bg {
    stroke: #d1fae5;
}

.sffc-match-preview-score .score-fill {
    stroke: #059669;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s ease;
}

.sffc-match-preview-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 700;
    color: #059669;
}

.sffc-match-preview-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: #166534;
    margin: 0 0 4px 0;
}

.sffc-match-preview-text p {
    font-size: 13px;
    color: #15803d;
    margin: 0;
    line-height: 1.4;
}

.sffc-match-preview-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    background: #059669;
    color: #ffffff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sffc-match-preview-cta:hover {
    background: #047857;
    transform: translateY(-1px);
}

/* Urgency Indicator */
.sffc-urgency-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 8px;
    margin-bottom: 16px;
}

.sffc-urgency-icon {
    width: 20px;
    height: 20px;
    color: #d97706;
    flex-shrink: 0;
}

.sffc-urgency-text {
    font-size: 13px;
    font-weight: 500;
    color: #92400e;
    line-height: 1.4;
}

.sffc-urgency-indicator.sffc-urgency-high {
    background: #fee2e2;
    border-color: #fecaca;
}

.sffc-urgency-indicator.sffc-urgency-high .sffc-urgency-icon {
    color: #dc2626;
}

.sffc-urgency-indicator.sffc-urgency-high .sffc-urgency-text {
    color: #991b1b;
}

/* Application Stats - Social proof */
.sffc-application-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 16px;
}

.sffc-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sffc-stat-item svg {
    width: 16px;
    height: 16px;
    color: #64748b;
}

.sffc-stat-item span {
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

/* Skill Match Tags - Quick glance at compatibility */
.sffc-skill-match-preview {
    margin-bottom: 16px;
}

.sffc-skill-match-preview h5 {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
}

.sffc-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sffc-skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.sffc-skill-tag.sffc-skill-match {
    background: #d1fae5;
    color: #166534;
}

.sffc-skill-tag.sffc-skill-match svg {
    width: 12px;
    height: 12px;
    color: #059669;
}

.sffc-skill-tag.sffc-skill-missing {
    background: #fee2e2;
    color: #991b1b;
}

.sffc-skill-tag.sffc-skill-partial {
    background: #fef3c7;
    color: #92400e;
}

/* Quick Apply Teaser - For guests */
.sffc-quick-apply-teaser {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    border-radius: 12px;
    padding: 20px;
    color: #ffffff;
    margin-bottom: 16px;
}

.sffc-quick-apply-teaser h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.sffc-quick-apply-teaser p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.sffc-quick-apply-teaser .sffc-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.sffc-quick-apply-teaser .sffc-benefit-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 4px 0;
}

.sffc-quick-apply-teaser .sffc-benefit-list li::before {
    display: none;
}

.sffc-quick-apply-teaser .sffc-benefit-list svg {
    width: 14px;
    height: 14px;
    color: #4ade80;
    flex-shrink: 0;
}

.sffc-quick-apply-teaser .sffc-btn-light {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    background: #ffffff;
    color: #1e3a5f;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sffc-quick-apply-teaser .sffc-btn-light:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

/* Posted Time Badge */
.sffc-posted-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #ecfdf5;
    color: #059669;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.sffc-posted-badge.sffc-posted-new {
    background: #dcfce7;
    color: #16a34a;
}

.sffc-posted-badge svg {
    width: 14px;
    height: 14px;
}

/* ==============================================
   RESPONSIVE STYLES - Mobile & Tablet
   ============================================== */

/* Tablet breakpoint - Stack layout */
@media (max-width: 1024px) {
    .sffc-job-opportunities-advanced .sffc-job-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 20px;
    }

    .sffc-job-opportunities-advanced .sffc-job-content {
        order: 1;
    }

    .sffc-job-opportunities-advanced .sffc-action-sidebar {
        order: 2;
        position: relative;
        top: 0;
    }

    .sffc-recruiter-column {
        position: relative;
        top: 0;
    }

    /* Hero adjustments */
    .sffc-job-header {
        padding: 28px;
        gap: 20px;
    }

    .sffc-company-logo {
        width: 64px;
        height: 64px;
    }

    .sffc-job-title {
        font-size: 24px;
    }

    .sffc-job-subtitle {
        font-size: 15px;
    }

    /* Content sections */
    .sffc-content-section {
        padding: 24px;
    }

    .sffc-section-title {
        font-size: 16px;
    }

    /* Action sidebar becomes horizontal cards */
    .sffc-action-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 16px;
    }

    .sffc-recruiter-card {
        padding: 24px;
    }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .sffc-job-opportunities-advanced .sffc-job-layout {
        padding: 16px;
        gap: 16px;
    }

    /* Hero section mobile */
    .sffc-job-header {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-radius: 16px;
    }

    .sffc-job-header::before {
        display: none;
    }

    .sffc-company-logo {
        width: 56px;
        height: 56px;
    }

    .sffc-job-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .sffc-job-subtitle {
        font-size: 14px;
    }

    .sffc-job-meta {
        flex-wrap: wrap;
        gap: 8px;
    }

    .sffc-meta-item {
        font-size: 12px;
        padding: 6px 10px;
    }

    .sffc-job-badges {
        flex-wrap: wrap;
        gap: 8px;
    }

    .sffc-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* Content sections mobile */
    .sffc-content-section {
        padding: 20px;
        border-radius: 10px;
    }

    .sffc-section-title {
        font-size: 15px;
        gap: 8px;
    }

    .sffc-section-icon {
        width: 20px;
        height: 20px;
    }

    .sffc-content-section p {
        font-size: 14px;
    }

    .sffc-content-section li {
        font-size: 14px;
        padding: 6px 0 6px 24px;
    }

    .sffc-content-section li::before {
        width: 6px;
        height: 6px;
        top: 14px;
    }

    /* Sidebar cards mobile */
    .sffc-action-sidebar {
        grid-template-columns: 1fr;
    }

    .sffc-recruiter-card {
        padding: 20px;
        border-radius: 16px;
    }

    .sffc-recruiter-logo,
    .sffc-consultant-avatar {
        width: 60px !important;
        height: 60px !important;
    }

    .sffc-recruiter-name,
    .sffc-consultant-name {
        font-size: 16px;
    }

    .sffc-btn {
        padding: 12px 16px;
        font-size: 14px;
        min-height: 44px;
    }

    /* Conversion elements mobile */
    .sffc-match-preview {
        padding: 16px;
    }

    .sffc-match-preview-score {
        width: 48px;
        height: 48px;
    }

    .sffc-match-preview-value {
        font-size: 12px;
    }

    .sffc-urgency-indicator {
        padding: 10px 14px;
    }

    .sffc-urgency-text {
        font-size: 12px;
    }

    .sffc-application-stats {
        flex-wrap: wrap;
        gap: 12px;
        padding: 10px 14px;
    }

    .sffc-quick-apply-teaser {
        padding: 16px;
    }

    .sffc-quick-apply-teaser h4 {
        font-size: 14px;
    }

    .sffc-quick-apply-teaser p,
    .sffc-quick-apply-teaser .sffc-benefit-list li {
        font-size: 12px;
    }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
    .sffc-job-opportunities-advanced .sffc-job-layout {
        padding: 12px;
    }

    .sffc-job-header {
        padding: 16px;
    }

    .sffc-company-logo {
        width: 48px;
        height: 48px;
    }

    .sffc-job-title {
        font-size: 18px;
    }

    .sffc-job-subtitle {
        font-size: 13px;
    }

    .sffc-content-section {
        padding: 16px;
    }

    .sffc-section-title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .sffc-recruiter-card {
        padding: 16px;
        border-radius: 12px;
    }

    .sffc-action-buttons {
        gap: 10px;
    }

    .sffc-btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    /* Skill tags wrap nicely */
    .sffc-skill-tags {
        gap: 4px;
    }

    .sffc-skill-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* =====================================================
   MOBILITY BADGE STYLES
   ===================================================== */

/* Mobility Badge in Hero Section */
.sffc-badge-mobility {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    background: linear-gradient(135deg, #e8f4fd 0%, #d0ebff 100%);
    color: #1971c2;
    border: 1px solid rgba(25, 113, 194, 0.2);
}

.sffc-badge-mobility svg {
    flex-shrink: 0;
}

.sffc-badge-mobility.sffc-mobility-favorable {
    background: linear-gradient(135deg, #d3f9d8 0%, #b2f2bb 100%);
    color: #2b8a3e;
    border-color: rgba(43, 138, 62, 0.2);
}

.sffc-badge-mobility.sffc-mobility-challenging {
    background: linear-gradient(135deg, #fff3bf 0%, #ffe066 100%);
    color: #e67700;
    border-color: rgba(230, 119, 0, 0.2);
}

.sffc-badge-mobility.sffc-mobility-local {
    background: linear-gradient(135deg, #e7f5ff 0%, #d0ebff 100%);
    color: #1864ab;
    border-color: rgba(24, 100, 171, 0.2);
}

/* =====================================================
   MOBILITY CTA CARD IN SIDEBAR
   ===================================================== */

.sffc-mobility-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
}

.sffc-mobility-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.sffc-mobility-card-header svg {
    color: #1971c2;
}

.sffc-mobility-card-header h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}

.sffc-mobility-destination {
    margin-bottom: 12px;
}

.sffc-mobility-to {
    font-size: 13px;
    color: #495057;
}

.sffc-mobility-score-mini {
    margin-bottom: 12px;
}

.sffc-mobility-score-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.sffc-mobility-score-fill {
    height: 100%;
    background: linear-gradient(90deg, #40c057 0%, #37b24d 100%);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.sffc-mobility-score-label {
    font-size: 12px;
    color: #868e96;
    font-weight: 500;
}

.sffc-mobility-insights {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.sffc-mobility-insight {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #495057;
    padding: 6px 0;
    border-bottom: 1px solid #f1f3f5;
}

.sffc-mobility-insight:last-child {
    border-bottom: none;
}

.sffc-mobility-insight svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.sffc-insight-positive svg {
    color: #40c057;
}

.sffc-insight-warning svg {
    color: #fab005;
}

.sffc-insight-neutral svg {
    color: #868e96;
}

.sffc-btn-text.sffc-mobility-expand {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    color: #1971c2;
    cursor: pointer;
    transition: color 0.2s ease;
}

.sffc-btn-text.sffc-mobility-expand:hover {
    color: #1864ab;
}

/* =====================================================
   LOCATION INTELLIGENCE SECTION
   ===================================================== */

.sffc-location-intel {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.sffc-badge-mobility-intel {
    background: linear-gradient(135deg, #e8f4fd 0%, #d0ebff 100%);
    color: #1971c2;
}

.sffc-location-intel-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Relocation Overview */
.sffc-relocation-overview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.sffc-relocation-route {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sffc-location-from,
.sffc-location-to {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sffc-loc-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #868e96;
}

.sffc-loc-name {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
}

.sffc-relocation-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e8f4fd 0%, #d0ebff 100%);
    border-radius: 50%;
    color: #1971c2;
}

/* Mobility Score Display */
.sffc-mobility-score-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.sffc-score-circle {
    position: relative;
    width: 80px;
    height: 80px;
}

.sffc-score-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.sffc-score-circle .sffc-score-bg {
    fill: none;
    stroke: #e9ecef;
    stroke-width: 3;
}

.sffc-score-circle .sffc-score-fill {
    fill: none;
    stroke: #40c057;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

.sffc-score-circle.score-favorable .sffc-score-fill {
    stroke: #40c057;
}

.sffc-score-circle.score-neutral .sffc-score-fill {
    stroke: #fab005;
}

.sffc-score-circle.score-challenging .sffc-score-fill {
    stroke: #fa5252;
}

.sffc-score-circle .sffc-score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 700;
    color: #212529;
}

.sffc-score-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #868e96;
}

.sffc-score-verdict {
    font-size: 13px;
    font-weight: 600;
    color: #212529;
}

/* Comparison Grid */
.sffc-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.sffc-comparison-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s ease;
}

.sffc-comparison-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sffc-comparison-card.sffc-card-positive {
    border-color: rgba(64, 192, 87, 0.3);
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}

.sffc-comparison-card.sffc-card-warning {
    border-color: rgba(250, 176, 5, 0.3);
    background: linear-gradient(135deg, #fff 0%, #fffbeb 100%);
}

.sffc-comparison-card.sffc-card-neutral {
    border-color: #e9ecef;
}

.sffc-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.sffc-card-header svg {
    color: #495057;
}

.sffc-card-header h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #495057;
}

.sffc-card-value {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sffc-change-direction {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 20px;
    font-weight: 700;
    color: #212529;
}

.sffc-change-direction.positive {
    color: #40c057;
}

.sffc-change-direction.negative {
    color: #fa5252;
}

.sffc-change-label {
    font-size: 12px;
    color: #868e96;
}

.sffc-visa-difficulty {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

.sffc-visa-type {
    font-size: 12px;
    color: #868e96;
}

/* Key Insights */
.sffc-key-insights {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.sffc-key-insights h4 {
    margin: 0 0 16px 0;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}

.sffc-insights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sffc-insight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #495057;
}

.sffc-insight-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.sffc-insight-item.sffc-insight-positive svg {
    color: #40c057;
}

.sffc-insight-item.sffc-insight-warning svg {
    color: #fab005;
}

.sffc-insight-item.sffc-insight-neutral svg {
    color: #868e96;
}

/* Footer */
.sffc-location-intel-footer {
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.sffc-data-source {
    margin: 0;
    font-size: 11px;
    color: #adb5bd;
    font-style: italic;
}

/* =====================================================
   MOBILITY RESPONSIVE STYLES
   ===================================================== */

@media (max-width: 768px) {
    .sffc-relocation-overview {
        flex-direction: column;
        gap: 20px;
        padding: 16px;
    }

    .sffc-relocation-route {
        flex-direction: column;
        text-align: center;
    }

    .sffc-relocation-arrow {
        transform: rotate(90deg);
    }

    .sffc-comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sffc-comparison-card {
        padding: 12px;
    }

    .sffc-card-header h4 {
        font-size: 12px;
    }

    .sffc-change-direction {
        font-size: 18px;
    }

    .sffc-mobility-card {
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .sffc-comparison-grid {
        grid-template-columns: 1fr;
    }

    .sffc-loc-name {
        font-size: 14px;
    }

    .sffc-score-circle {
        width: 70px;
        height: 70px;
    }

    .sffc-score-circle .sffc-score-value {
        font-size: 18px;
    }
}

/* Highlight animation for scroll-to section */
.sffc-location-intel.sffc-highlight {
    animation: sffc-highlight-pulse 2s ease-out;
}

@keyframes sffc-highlight-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 113, 194, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(25, 113, 194, 0.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(25, 113, 194, 0);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .sffc-job-opportunities-advanced .sffc-content-section {
        border-width: 2px;
    }

    .sffc-job-opportunities-advanced .sffc-btn {
        border-width: 2px;
    }

    .sffc-job-opportunities-advanced .sffc-job-header {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .sffc-job-opportunities-advanced * {
        transition: none !important;
        animation: none !important;
    }
}