/* ============================================
   Resume Checker Page Styles
   ============================================ */

:root {
    --rc-primary: #0A66C2;
    --rc-success: #10B981;
    --rc-warning: #F59E0B;
    --rc-danger: #EF4444;
    --rc-dark: #1a1f36;
    --rc-coral: #FF6B6B;
}

/* ---------- Hero Section ---------- */
/* ---------- Hero Section ---------- */
.rc-hero {
    background: linear-gradient(-45deg, #ffffff, #f0fdf4, #eff6ff, #f5f3ff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 8rem 0 6rem;
    /* Increased top padding for header */
    color: #1f2937;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.rc-hero::before {
    display: none;
    /* Remove the pattern overlay */
}

.rc-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.rc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    color: var(--rc-primary);
    border: 1px solid #bfdbfe;
}

.rc-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #111827;
    letter-spacing: -0.02em;
}

.rc-hero h1 span {
    background: linear-gradient(135deg, var(--rc-primary) 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rc-hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Upload Zone */
.rc-upload-zone {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.rc-upload-area {
    display: block;
    width: 100%;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.rc-upload-area:hover,
.rc-upload-area.dragging {
    border-color: var(--rc-primary);
    background: rgba(10, 102, 194, 0.05);
}

.rc-upload-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--rc-primary), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.rc-upload-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.rc-upload-hint {
    color: #6b7280;
    font-size: 0.875rem;
}

.rc-upload-formats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.rc-format-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

/* Trust Logos */
.rc-trust-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0.6;
}

.rc-trust-logos img {
    height: 24px;
    filter: grayscale(1) brightness(2);
}

/* ---------- Features Section ---------- */
.rc-features {
    padding: 5rem 0;
    background: white;
}

.rc-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.rc-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.rc-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.rc-section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.rc-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.rc-feature-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.rc-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.rc-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.rc-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.rc-feature-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ---------- Security Section ---------- */
.rc-security {
    padding: 3rem 0;
    background: #f9fafb;
}

.rc-security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.rc-security-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.rc-security-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.rc-security-text {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ---------- CTA Banner ---------- */
.rc-cta-banner {
    background: linear-gradient(135deg, #FF6B6B 0%, #ee5a5a 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.rc-cta-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.rc-cta-banner p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.rc-cta-input-group {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
}

.rc-cta-input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.rc-cta-input-group button {
    padding: 1rem 2rem;
    background: var(--rc-dark);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rc-cta-input-group button:hover {
    background: #2d3561;
}

/* ---------- Tools Section ---------- */
.rc-tools {
    padding: 5rem 0;
    background: white;
}

.rc-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.rc-tool-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.rc-tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.rc-tool-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.rc-tool-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.rc-tool-card p {
    font-size: 0.75rem;
    color: #6b7280;
}

/* ---------- FAQ Section ---------- */
.rc-faq {
    padding: 5rem 0;
    background: #f9fafb;
}

.rc-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.rc-faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.rc-faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rc-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.rc-faq-item.open .rc-faq-question::after {
    transform: rotate(45deg);
}

.rc-faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rc-faq-item.open .rc-faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.rc-faq-answer p {
    color: #6b7280;
    line-height: 1.7;
}

/* ---------- Results Section ---------- */
.rc-results {
    display: none;
    padding: 3rem 0;
    background: #f0f4f8;
    min-height: 100vh;
}

.rc-results.visible {
    display: block;
}

.rc-results-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
}

/* Score Sidebar */
.rc-score-sidebar {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.rc-score-header {
    text-align: center;
    margin-bottom: 2rem;
}

.rc-score-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.rc-score-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--rc-success);
}

.rc-score-value span {
    font-size: 1.5rem;
    color: #9ca3af;
}

.rc-score-issues {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Category Breakdown */
.rc-category-list {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.rc-category-item {
    margin-bottom: 1.25rem;
}

.rc-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
}

.rc-category-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.rc-category-name .icon {
    font-size: 1rem;
}

.rc-category-score {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.rc-category-score.good {
    background: rgba(16, 185, 129, 0.1);
    color: var(--rc-success);
}

.rc-category-score.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--rc-warning);
}

.rc-category-score.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--rc-danger);
}

.rc-category-chevron {
    transition: transform 0.3s ease;
}

.rc-category-item.open .rc-category-chevron {
    transform: rotate(180deg);
}

.rc-category-details {
    padding-left: 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.rc-category-item.open .rc-category-details {
    max-height: 300px;
}

.rc-check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    padding: 0.5rem 0;
    color: #6b7280;
}

.rc-check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
}

.rc-check-icon.pass {
    background: rgba(16, 185, 129, 0.1);
    color: var(--rc-success);
}

.rc-check-icon.fail {
    background: rgba(239, 68, 68, 0.1);
    color: var(--rc-danger);
}

.rc-check-badge {
    margin-left: auto;
    font-size: 0.625rem;
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
    background: #f3f4f6;
    color: #6b7280;
}

.rc-check-badge.issue {
    background: rgba(239, 68, 68, 0.1);
    color: var(--rc-danger);
}

.rc-unlock-btn {
    width: 100%;
    padding: 1rem;
    background: var(--rc-success);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.rc-unlock-btn:hover {
    background: #059669;
}

/* Main Content Area */
.rc-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Content Card */
.rc-content-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rc-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rc-content-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.rc-content-title .icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.rc-issues-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 50px;
    color: #6b7280;
}

/* ATS Accordion */
.rc-ats-accordion {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.rc-ats-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rc-ats-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rc-ats-body {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.rc-ats-accordion.open .rc-ats-body {
    padding: 1.5rem;
    max-height: 1000px;
}

.rc-ats-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.rc-ats-description strong {
    color: #1f2937;
}

/* Parse Rate Bar */
.rc-parse-rate {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.rc-parse-bar {
    height: 12px;
    background: #e5e7eb;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.rc-parse-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rc-success), #34d399);
    border-radius: 50px;
    transition: width 1s ease;
}

.rc-parse-marker {
    position: absolute;
    right: 0;
    top: -8px;
    width: 28px;
    height: 28px;
    background: var(--rc-success);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.rc-parse-text {
    font-size: 1rem;
    color: var(--rc-success);
    font-weight: 600;
}

.rc-parse-text span {
    display: block;
    font-weight: 400;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Resume Preview Card */
.rc-resume-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
}

.rc-resume-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.rc-resume-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.rc-toggle-group {
    display: flex;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
}

.rc-toggle-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.rc-toggle-btn.active {
    background: white;
    color: var(--rc-success);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Resume Preview Content */
.rc-resume-preview {
    background: #f9fafb;
    border-radius: 8px;
    padding: 2rem;
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
}

.rc-resume-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.rc-resume-title-text {
    color: var(--rc-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.rc-resume-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.rc-resume-section {
    margin-bottom: 1.5rem;
}

.rc-resume-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1f2937;
}

.rc-resume-section p {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.6;
}

.rc-skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.rc-skill-tag {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #374151;
}

/* CTA Button in Preview */
.rc-preview-cta {
    position: sticky;
    bottom: 0;
    background: linear-gradient(180deg, transparent, white 30%);
    padding: 2rem 0 0;
    text-align: center;
}

.rc-preview-cta button {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rc-preview-cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* Avatar Circle */
.rc-avatar {
    width: 80px;
    height: 80px;
    background: var(--rc-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    float: right;
    margin-left: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .rc-results-container {
        grid-template-columns: 1fr;
    }

    .rc-score-sidebar {
        position: static;
    }

    .rc-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rc-hero h1 {
        font-size: 2rem;
    }

    .rc-features-grid {
        grid-template-columns: 1fr;
    }

    .rc-security-badges {
        flex-direction: column;
        gap: 1.5rem;
    }

    .rc-cta-input-group {
        flex-direction: column;
    }

    .rc-tools-grid {
        grid-template-columns: 1fr;
    }

    .rc-upload-zone {
        padding: 1.5rem;
    }
}

/* Loading State */
.rc-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
}

.rc-loading.visible {
    display: flex;
}

.rc-loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e5e7eb;
    border-top-color: var(--rc-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.rc-loading-text {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: #374151;
    font-weight: 500;
}

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

/* ---------- Resume Comparison Styles ---------- */
.rc-resume-comparison {
    min-height: 500px;
}

.rc-resume-preview {
    background: #f9fafb;
    border-radius: 8px;
    padding: 2rem;
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
    position: relative;
}

/* ATS Version Specific Styles */
.rc-ats-version {
    background: linear-gradient(180deg, #f0fdf4 0%, #f9fafb 100%);
    border: 2px solid #10B981;
}

.rc-ats-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.rc-ats-avatar {
    background: linear-gradient(135deg, #10B981, #059669) !important;
}

.rc-ats-title {
    color: #059669 !important;
}

.rc-ats-section h4 {
    color: #059669;
    border-bottom-color: #059669;
}

.rc-ats-company {
    color: #059669 !important;
}

.rc-ats-skills .rc-skill-tag {
    background: #ecfdf5;
    border-color: #10B981;
    color: #059669;
}

/* Resume Content Styles */
.rc-resume-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.rc-resume-title-text {
    color: var(--rc-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.rc-resume-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.rc-resume-section {
    margin-bottom: 1.5rem;
}

.rc-resume-section h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #1f2937;
}

.rc-resume-section p {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Experience and Education Items */
.rc-experience-item,
.rc-education-item {
    margin-bottom: 1rem;
}

.rc-experience-item strong,
.rc-education-item strong {
    display: block;
    font-size: 0.9rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.rc-company {
    display: block;
    color: var(--rc-primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.rc-date {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.rc-experience-item ul {
    list-style: disc;
    padding-left: 1.25rem;
    font-size: 0.85rem;
    color: #4b5563;
}

.rc-experience-item ul li {
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.rc-education-item span {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Skills Grid */
.rc-skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.rc-skill-tag {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #374151;
}

/* Avatar Circle */
.rc-avatar {
    width: 80px;
    height: 80px;
    background: var(--rc-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    float: right;
    margin-left: 1rem;
}

/* CTA Button in Preview */
.rc-preview-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.rc-preview-cta button {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rc-preview-cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* Parse Rate Result */
.rc-parse-result {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rc-success);
    margin-bottom: 0.25rem;
}

/* Toggle Group */
.rc-toggle-group {
    display: flex;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
}

.rc-toggle-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.rc-toggle-btn.active {
    background: white;
    color: var(--rc-success);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .rc-results-container {
        grid-template-columns: 1fr;
    }

    .rc-score-sidebar {
        position: static;
    }

    .rc-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rc-hero {
        padding-top: 6rem;
    }

    .rc-hero h1 {
        font-size: 2rem;
    }

    .rc-features-grid {
        grid-template-columns: 1fr;
    }

    .rc-security-badges {
        flex-direction: column;
        gap: 1.5rem;
    }

    .rc-cta-input-group {
        flex-direction: column;
    }

    .rc-tools-grid {
        grid-template-columns: 1fr;
    }

    .rc-upload-zone {
        padding: 1.5rem;
    }

    .rc-content-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Loading State */
.rc-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
}

.rc-loading.visible {
    display: flex;
}

.rc-loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e5e7eb;
    border-top-color: var(--rc-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.rc-loading-text {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: #374151;
    font-weight: 500;
}