* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



:root {
    --primary: #0066cc;
    --primary-dark: #0052a3;
    --primary-light: #3385d6;
    --primary-lighter: #66a3e0;
    --secondary: #4d94ff;
    --accent: #0066cc;
    --danger: #e63946;
    --success: #06a77d;
    --bg-dark: #f0f7ff;
    --bg-secondary: #e6f2ff;
    --bg-tertiary: #d9ecff;
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --border: #b3d9ff;
    --border-light: #cce5ff;
    --shadow: rgba(0, 102, 204, 0.1);
    --shadow-hover: rgba(0, 102, 204, 0.15);
    --charcoal: #1a1a2e;
    --charcoal-dark: #0d0d1a;
    --cream: #ffffff;
    --cream-light: #ffffff;
    --gold: #0066cc;
    --gold-dark: #0052a3;
    --gold-light: #3385d6;
    --blue-light: #d8e6f4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #f0f7ff 0%, #e6f2ff 100%);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0;
}


/* Navigation */
.navbar {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 10000;
    backdrop-filter: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    width: 100%;
    margin: 0;
    padding: 0;
    pointer-events: auto !important;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    pointer-events: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    flex-shrink: 0;
    z-index: 1001;
    pointer-events: auto;
    min-width: 0;
}

.logo a {
    pointer-events: auto;
    cursor: pointer;
    display: inline-block;
}

.logo-icon {
    font-size: 1.4rem;
}

.logo-img {
    height: auto;
    max-height: 106px;
    width: auto;
    max-width: 211px;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin-left: -116px;
  }


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    min-width: 44px; /* Better touch target */
    min-height: 44px;
    -webkit-tap-highlight-color: rgba(0, 102, 204, 0.1);
    touch-action: manipulation;
    pointer-events: auto;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    pointer-events: auto;
}

.nav-btn {
    background: none;
    border: none;
    color: #333333;
    cursor: pointer;
    padding: 0.5rem 0;
    border-radius: 0;
    transition: color 0.2s ease;
    font-size: 0.95rem;
    font-weight: 400;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    pointer-events: auto;
    text-decoration: none !important;
}

.nav-btn::after {
    content: '▼';
    font-size: 0.65rem;
    color: #666666;
    margin-left: 0.25rem;
    transition: transform 0.2s ease;
}

.nav-btn:hover {
    color: #0066cc;
    background: none;
}

.nav-btn:hover::after {
    color: #0066cc;
}

.nav-btn.active {
    color: #0066cc;
    background: none;
    border: none;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Talent Hub Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    color: #333333;
    cursor: pointer;
    padding: 0.5rem 0;
    border-radius: 0;
    transition: color 0.2s ease;
    font-size: 0.95rem;
    font-weight: 400;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    pointer-events: auto;
}

.nav-dropdown-btn::after {
    content: '▼';
    font-size: 0.65rem;
    color: #666666;
    margin-left: 0.25rem;
    transition: transform 0.2s ease;
}

.nav-dropdown-btn:hover {
    color: #0066cc;
    background: none;
}

.nav-dropdown-btn:hover::after {
    color: #0066cc;
}

.nav-dropdown-btn.active {
    color: #0066cc;
    background: none;
    border: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-dropdown-btn.active::after {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10001;
    pointer-events: none;
}

.nav-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-menu {
    pointer-events: none;
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333333;
    text-decoration: none !important;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    pointer-events: auto;
}

.nav-dropdown-item:hover {
    background-color: #f0f7ff;
    color: #0066cc;
}

.nav-dropdown-item.active {
    background-color: #f0f7ff;
    color: #0066cc;
    font-weight: 500;
}

/* Mobile responsive styles for dropdown */
@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-btn {
        width: 100%;
        text-align: left;
        padding: 0.75rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #333333;
        -webkit-tap-highlight-color: rgba(0, 102, 204, 0.1);
        touch-action: manipulation;
    }
    
    .nav-dropdown-btn::after {
        margin-left: auto;
    }
    
    .nav-dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        border-top: 1px solid #e5e5e5;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #ffffff;
        padding: 0;
    }
    
    .nav-dropdown-menu.show {
        display: block;
    }
    
    .nav-dropdown-item {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #f0f0f0;
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .nav-dropdown-item:last-child {
        border-bottom: none;
    }
}

/* Auth Buttons in Navbar */
.nav-auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid #e5e5e5;
}

/* Remove all underlines from header links */
.navbar a,
.navbar .nav-btn,
.navbar .nav-dropdown-item,
.navbar .logo a {
    text-decoration: none !important;
}

.navbar a:hover,
.navbar .nav-btn:hover,
.navbar .nav-dropdown-item:hover {
    text-decoration: none !important;
}

.btn-login,
.btn-signup {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0;
    border-radius: 0;
    cursor: pointer;
    transition: color 0.2s ease;
    white-space: nowrap;
    border: none;
    outline: none;
    background: none;
}

.btn-login {
    color: #0066cc;
    text-decoration: none;
}

.btn-login:hover {
    color: #0052a3;
    background: none;
    transform: none;
    box-shadow: none;
}

.btn-signup {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-signup:hover {
    background: #0052a3;
    transform: none;
    box-shadow: none;
}

.btn-login:active,
.btn-signup:active {
    transform: none;
}

/* New Auth Buttons - Separate classes to avoid conflicts */
.auth-btn-signin,
.auth-btn-signup {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0;
    border-radius: 0;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
    border: none;
    outline: none;
    background: none;
    pointer-events: auto;
    z-index: 10001;
}

.auth-btn-signin {
    color: #0066cc;
    text-decoration: none;
    background: transparent;
}

.auth-btn-signin:hover {
    color: #0052a3;
    background: none;
    transform: none;
    box-shadow: none;
}

.auth-btn-signup {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.auth-btn-signup:hover {
    background: #0052a3;
    transform: none;
    box-shadow: none;
}

.auth-btn-signin:active,
.auth-btn-signup:active {
    transform: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 4rem 0;
    display: none;
    animation: fadeIn 0.5s ease;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem 0;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--charcoal-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.typing-text {
    color: var(--charcoal-dark);
}

.typing-highlight {
    color: var(--primary);
    min-width: 0;
}

.typing-cursor {
    color: var(--primary);
    animation: blink 1s infinite;
    display: inline-block;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-jobscan {
    background: #ffffff;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-jobscan:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-linkedin {
    background: #0077b5;
    color: #ffffff;
    border: 2px solid #0077b5;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-linkedin:hover {
    background: #005885;
    border-color: #005885;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.3);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.stat-icon {
    color: var(--success);
    font-size: 1.2rem;
    font-weight: 600;
}

.stat-text {
    color: var(--text-secondary);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.resume-preview-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resume-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.resume-preview-header {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2rem 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.resume-profile-section {
    position: relative;
    width: 120px;
    height: 120px;
}

.resume-profile-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.resume-profile-img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    top: 10px;
    left: 10px;
}

.resume-score-badge {
    background: rgba(6, 167, 125, 0.9);
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.resume-score-badge .score-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.resume-score-badge .score-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.resume-preview-content {
    padding: 2rem;
    padding-top: 1rem;
}

.resume-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    margin-bottom: 0.25rem;
}

.resume-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.resume-section {
    margin-bottom: 1.5rem;
}

.resume-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.resume-job-item {
    margin-bottom: 1.25rem;
}

.job-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 0.25rem;
}

.job-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.job-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.job-bullets {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.job-bullets li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.job-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.resume-contact-info {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.contact-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.resume-skills-section {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.skills-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.skills-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal-dark);
}

.ats-perfect-btn {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.skill-chip {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--border);
}

.add-skill-btn {
    background: transparent;
    border: 1px dashed var(--border);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.add-skill-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.card-1 {
    width: 250px;
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    width: 220px;
    bottom: 80px;
    right: 60px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-badge {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.card-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 0.5rem;
}

.card-badge {
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    font-weight: 600;
    font-size: 1rem;
    background: var(--primary);
    color: #ffffff;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
    background: var(--primary-dark);
}

.btn-secondary {
    font-weight: 600;
    font-size: 1rem;
    background: #ffffff;
    color: var(--primary);
    border: 2px solid var(--primary);
    letter-spacing: 0;
    text-transform: none;
    border-radius: 8px;
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Features */
.features {
    margin-top: 8rem;
    text-align: center;
}

.features h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--charcoal-dark);
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.15);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}


.feature-card h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--charcoal-dark);
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-secondary);
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.section-header-text {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-text h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal-dark);
    letter-spacing: -0.02em;
}

.section-header-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    margin-top: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefit-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal-dark);
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Industry Features Section */
.industry-features {
    padding: 6rem 0;
    background: #ffffff;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.industry-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.15);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal-dark);
}

.industry-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonial Rating */
.testimonial-rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

/* Success Metrics Section */
.success-metrics {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    margin-top: 4rem;
}

.success-metrics .section-header-text h2,
.success-metrics .section-header-text p {
    color: #ffffff;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: stretch;
}

.metric-card {
    background: rgba(135, 206, 250, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.metric-card:hover {
    transform: translateY(-8px);
    background: rgba(135, 206, 250, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.metric-number {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
    color: #ffffff;
    line-height: 1.4;
}

.metric-label strong {
    font-weight: 700;
    display: inline-block;
}

.metric-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    max-width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.faq-item h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal-dark);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Integration Section */
.integration-section {
    padding: 6rem 0;
    background: #ffffff;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.integration-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.integration-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.15);
}

.integration-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.integration-item h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--charcoal-dark);
}

.integration-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ATS Checker */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal-dark);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.section-header-image {
    width: 100%;
    max-width: 800px;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.checker-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.upload-box {
    grid-column: 1;
}

.upload-area {
    border: 2px dashed var(--primary);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 102, 204, 0.05);
}

.upload-area:hover {
    background: rgba(0, 102, 204, 0.1);
    border-color: var(--primary-light);
    transform: scale(1.02);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.upload-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.upload-area h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.upload-area p {
    color: var(--text-secondary);
}

.uploaded-name {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(6, 167, 125, 0.15);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--success);
    display: none;
}

.results-box {
    grid-column: 1 / -1;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.results-header h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    letter-spacing: -0.02em;
}

.ats-score-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.score-circle-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.25);
}

.score-value {
    font-size: 4rem;
    font-weight: 800;
    color: white;
}

.score-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.score-status {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.analysis-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.analysis-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    letter-spacing: -0.01em;
}

.card-badge {
    background: rgba(0, 102, 204, 0.15);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.progress-bar {
    background: var(--bg-tertiary);
    height: 8px;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transition: width 0.5s ease;
}

.keywords-list,
.checks-list,
.skills-list,
.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.keyword-tag,
.skill-tag {
    background: rgba(0, 102, 204, 0.15);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.check-item.pass {
    color: var(--success);
}

.check-item.fail {
    color: var(--danger);
}

.recommendation-item {
    background: var(--bg-tertiary);
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    border-left: 3px solid var(--accent);
    color: var(--text-primary);
}

/* LinkedIn Optimization */
.linkedin-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.linkedin-input-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.input-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.input-tab {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    top: 2px;
}

.input-tab:hover {
    color: var(--primary);
}

.input-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.input-content {
    padding: 1rem 0;
}

.url-input-area {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.url-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.url-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.input-hint {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.upload-area-linkedin {
    border: 2px dashed var(--primary);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 102, 204, 0.05);
}

.upload-area-linkedin:hover {
    background: rgba(0, 102, 204, 0.1);
    border-color: var(--primary-light);
    transform: scale(1.02);
}

.linkedin-results-box {
    margin-top: 2rem;
}

/* Jobscan Section */
.jobscan-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.input-method-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.input-method-content {
    display: none;
    padding: 1rem 0;
}

.input-method-content.active {
    display: block;
}

.linkedin-url-input {
    margin-bottom: 2rem;
}

.linkedin-url-input label {
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 0.75rem;
}

.job-filters {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px var(--shadow);
}

.job-filters h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 0.5rem;
}

.form-select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.filter-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.job-results {
    margin-top: 2rem;
    padding: 2rem 0;
}

/* Resume Scan Styles */
.resumescan-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.resumescan-input-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.input-section-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.input-section-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 0.5rem;
}

.input-section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.form-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 0.75rem;
}

.form-hint {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    resize: vertical;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.upload-area-resumescan {
    border: 2px dashed var(--primary);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 102, 204, 0.02);
}

.upload-area-resumescan:hover {
    background: rgba(0, 102, 204, 0.05);
    border-color: var(--accent);
}

.upload-area-resumescan .upload-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.upload-area-resumescan h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 0.5rem;
}

.upload-area-resumescan p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.upload-area-resumescan .upload-hint {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.resumescan-results-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px var(--shadow);
    margin-top: 2rem;
    position: relative;
    min-height: 600px;
}

/* Top Action Buttons */
.results-top-actions {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.btn-track, .btn-print {
    padding: 0.5rem 1.25rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-track:hover, .btn-print:hover {
    background: #f5f5f5;
    border-color: #0066cc;
    color: #0066cc;
}

/* Resume Scan Layout */
.resume-scan-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    min-height: calc(100vh - 200px);
}

/* Left Sidebar */
.resume-scan-sidebar {
    background: #f8f9fa;
    border-right: 1px solid #e0e0e0;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Match Rate Section */
.match-rate-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.match-rate-circle-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
}

.match-rate-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    stroke: #e0e0e0;
}

.circle-progress {
    stroke: #0066cc;
    stroke-dasharray: 339.292;
    transition: stroke-dashoffset 1s ease;
}

.match-rate-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
}

/* Sidebar Actions */
.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-upload-rescan, .btn-optimize {
    width: 100%;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 6px;
    background: #0066cc;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-upload-rescan:hover, .btn-optimize:hover {
    background: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

.link-power-edit {
    text-align: center;
    color: #0066cc;
    text-decoration: none;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.link-power-edit:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* Category Breakdown */
.category-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.category-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item:hover {
    opacity: 0.8;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.category-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.category-issues {
    font-size: 0.85rem;
    color: #666;
}

.category-progress {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.category-progress-bar {
    height: 100%;
    background: #0066cc;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.category-progress-bar.full {
    width: 100% !important;
}

/* Sidebar Footer */
.sidebar-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.link-guide {
    display: block;
    text-align: center;
    color: #0066cc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.link-guide:hover {
    text-decoration: underline;
}

/* Main Content Area */
.resume-scan-main {
    padding: 2rem 2.5rem;
    background: white;
    overflow-y: auto;
}

.scan-main-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
}

.scan-tabs {
    display: flex;
    gap: 0;
}

.scan-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.scan-tab.active {
    color: #0066cc;
    border-bottom-color: #0066cc;
}

.scan-tab:hover {
    color: #0066cc;
}

.scan-job-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

/* Scan Sections */
.scan-section {
    margin-bottom: 3rem;
}

.section-header-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.section-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.section-badge.important {
    background: #fff3cd;
    color: #856404;
}

.section-description {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.section-description p {
    margin: 0;
    font-size: 0.95rem;
}

.section-tip {
    background: #f0f7ff;
    border-left: 3px solid #0066cc;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.section-tip p {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}

.section-tip strong {
    color: #0066cc;
}

/* Checks Container */
.checks-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.check-item:hover {
    background: #f0f0f0;
}

.check-item.pass {
    border-left-color: #28a745;
}

.check-item.fail {
    border-left-color: #dc3545;
}

.check-icon {
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.check-item.pass .check-icon {
    color: #28a745;
}

.check-item.fail .check-icon {
    color: #dc3545;
}

.check-content {
    flex: 1;
}

.check-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.check-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.check-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.9rem;
}

.check-link:hover {
    text-decoration: underline;
}

.check-category {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.match-score-container {
    text-align: center;
    margin: 2rem 0 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 12px;
}

.match-summary {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.keywords-breakdown,
.skills-breakdown {
    margin-top: 1.5rem;
}

.keywords-breakdown h4,
.skills-breakdown h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.keywords-breakdown h4:first-child,
.skills-breakdown h4:first-child {
    margin-top: 0;
}

.keyword-tag.missing,
.skill-tag.missing {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.3);
}

.no-items {
    color: var(--text-secondary);
    font-style: italic;
    padding: 1rem;
    text-align: center;
}

.analysis-card.full-width {
    grid-column: 1 / -1;
}

.comparison-table {
    margin-top: 1rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-label {
    font-weight: 600;
    color: var(--charcoal-dark);
}

.comparison-value {
    color: var(--text-primary);
}

.comparison-value.highlight {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.btn-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-header h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal-dark);
}

.results-header h3 span {
    color: var(--primary);
}

.results-sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.results-sort label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal-dark);
}

.job-results-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px var(--shadow);
}

.job-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--shadow-hover);
    transform: translateY(-2px);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    margin-bottom: 0.5rem;
}

.job-company {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
}

.job-match-score {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.skill-tag {
    background: var(--cream-light);
    color: var(--charcoal);
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    border: 1px solid var(--border);
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.job-posted {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.job-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-apply {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-apply:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

.btn-save {
    background: #ffffff;
    color: var(--charcoal-dark);
    border: 2px solid var(--border);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.results-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.pagination-btn {
    background: #ffffff;
    color: var(--charcoal-dark);
    border: 2px solid var(--border);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    font-size: 1.1rem;
    color: var(--charcoal-dark);
    font-weight: 600;
}

/* Resume Builder */
.builder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.builder-form {
    padding: 2rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 2px 8px var(--shadow);
}

.builder-form h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--charcoal-dark);
    letter-spacing: -0.02em;
}

.builder-header-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.01em;
}

/* Style Selector */
.style-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.style-option {
    background: #ffffff;
    border: 2px solid #e8ecf0;
    border-radius: 20px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    font-family: inherit;
    outline: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.style-option::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.style-option:focus {
    outline: 3px solid rgba(0, 102, 204, 0.2);
    outline-offset: 3px;
}

.style-option:hover {
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 102, 204, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.style-option:hover::after {
    transform: scaleX(1);
}

.style-option.active {
    border-color: var(--primary);
    border-width: 3px;
    box-shadow: 0 16px 40px rgba(0, 102, 204, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    background: linear-gradient(135deg, #ffffff 0%, #e6f2ff 100%);
}

.style-option.active::after {
    transform: scaleX(1);
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, #0052a3 50%, var(--primary-dark) 100%);
}

.style-preview-card {
    height: 320px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
}

.style-preview-header {
    padding: 1.5rem 1.25rem;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.style-preview-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 30px 30px, 25px 25px;
}

.modern-header {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 50%, #003d7a 100%);
    border-bottom: none;
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.modern-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.classic-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 3px solid #1a1a1a;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.executive-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-bottom: none;
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.executive-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
}

.minimal-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.creative-header {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-left: 5px solid var(--primary);
    padding-left: 1.5rem;
    position: relative;
}

.creative-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 2px 0 8px rgba(0, 102, 204, 0.3);
}

.technical-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 3px solid #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Swiss Minimalist - Clean, centered, minimal design */
.swiss-minimal-header {
    background: #ffffff;
    border-bottom: 1px solid #000000;
    text-align: center;
    padding: 1.5rem 1.25rem;
    position: relative;
}

.swiss-minimal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: #000000;
}

.swiss-minimal-header .preview-name {
    color: #000000;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.swiss-minimal-header .preview-title {
    color: #666666;
    font-weight: 400;
}

/* Glassmorphism Dark - Modern dark theme with glass effect */
.glass-dark-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.glass-dark-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-dark-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6 0%, rgba(139, 92, 246, 0.3) 100%);
}

.glass-dark-header .preview-name,
.glass-dark-header .preview-title {
    color: #f8fafc;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Neo-Brutalism Pop - Bold orange with black borders */
.neo-brutalism-header {
    background: #fdba74;
    border-bottom: 3px solid #000000;
    position: relative;
    box-shadow: 0 4px 0px #000000;
}

.neo-brutalism-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.03) 10px,
        rgba(0, 0, 0, 0.03) 20px
    );
}

.neo-brutalism-header .preview-name {
    color: #000000;
    font-weight: 900;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.neo-brutalism-header .preview-title {
    color: #1f2937;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Executive Corporate - Deep navy professional */
.corporate-pro-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%);
    border-bottom: none;
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.corporate-pro-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d97706 0%, rgba(217, 119, 6, 0.5) 100%);
}

.corporate-pro-header .preview-name,
.corporate-pro-header .preview-title {
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Bold Header Creative - Vibrant pink/red with diagonal split */
.creative-banner-header {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 30%, #be123c 60%, #f43f5e 100%);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.creative-banner-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.creative-banner-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.creative-banner-header .preview-name,
.creative-banner-header .preview-title {
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

/* Navy Professional - Deep navy blue header block */
.navy-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%);
    border-bottom: none;
    text-align: center;
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.navy-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(191, 219, 254, 0.5) 0%, rgba(191, 219, 254, 0.2) 100%);
}

.navy-header .preview-name,
.navy-header .preview-title {
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navy-header .preview-title {
    color: #bfdbfe;
    font-weight: 300;
    letter-spacing: 2px;
}

/* The Developer - Monospace style with green accents */
.mono-header {
    background: #ffffff;
    border-bottom: 1px dashed #333333;
    font-family: 'Courier New', monospace;
    position: relative;
}

.mono-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: #16a34a;
    opacity: 0.3;
}

.mono-header .preview-name {
    color: #333333;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.mono-header .preview-title {
    color: #16a34a;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Vogue Elegant - Fashion/Editorial with gold accents */
.elegant-header {
    background: #ffffff;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
}

.elegant-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #d4af37;
}

.elegant-header .preview-name {
    color: #2d2d2d;
    font-style: italic;
    font-weight: 400;
    font-family: 'Georgia', serif;
}

.elegant-header .preview-title {
    color: #666666;
    font-family: 'Arial', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Dark Sidebar - Split layout with dark sidebar */
.sidebar-dark-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.sidebar-dark-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #334155;
}

.sidebar-dark-header .preview-name {
    color: #334155;
    font-weight: 700;
}

.sidebar-dark-header .preview-title {
    color: #64748b;
    font-weight: 600;
}

/* Pill Headers - Rounded pill style headers */
.pill-header {
    background: #ffffff;
    border-bottom: 2px solid #f3f4f6;
    position: relative;
}

.pill-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #f43f5e;
}

.pill-header .preview-name {
    color: #374151;
    font-weight: 800;
}

.pill-header .preview-title {
    color: #f43f5e;
    font-weight: 600;
}

/* Green Accent - Left border accent style */
.accent-header {
    background: #ffffff;
    border-left: 4px solid #10b981;
    position: relative;
    padding-left: 1.5rem;
}

.accent-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #10b981;
}

.accent-header .preview-name {
    color: #1e293b;
    font-weight: 800;
}

.accent-header .preview-title {
    color: #64748b;
    font-weight: 600;
}

/* Card Grid - Boxed card layout */
.boxed-header {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.5rem;
}

.boxed-header .preview-name {
    color: #1e293b;
    font-weight: 700;
}

.boxed-header .preview-title {
    color: #64748b;
    font-weight: 600;
}

/* Timeline - Vertical line style */
.timeline-header {
    background: #ffffff;
    border-bottom: 2px solid #cbd5e1;
    position: relative;
}

.timeline-header::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3b82f6;
    border: 2px solid #ffffff;
}

.timeline-header .preview-name {
    color: #1e293b;
    font-weight: 600;
    padding-left: 1.5rem;
}

.timeline-header .preview-title {
    color: #64748b;
    font-weight: 400;
    padding-left: 1.5rem;
}

/* High Voltage - High contrast yellow/black */
.contrast-header {
    background: #000000;
    border-bottom: 3px solid #facc15;
    position: relative;
}

.contrast-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: #facc15;
}

.contrast-header .preview-name {
    color: #facc15;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial Black', sans-serif;
}

.contrast-header .preview-title {
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.preview-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--charcoal-dark);
    margin-bottom: 0.35rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.modern-header .preview-name,
.executive-header .preview-name,
.glass-dark-header .preview-name,
.corporate-pro-header .preview-name,
.creative-banner-header .preview-name,
.navy-header .preview-name,
.contrast-header .preview-name {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.preview-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.modern-header .preview-title,
.executive-header .preview-title,
.glass-dark-header .preview-title,
.corporate-pro-header .preview-title,
.creative-banner-header .preview-title,
.contrast-header .preview-title {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.style-preview-content {
    flex: 1;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.style-preview-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 204, 0.1) 50%, transparent 100%);
}

.preview-section {
    flex: 1;
    position: relative;
}

.preview-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.35rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.preview-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-dark);
}

.classic-header ~ .style-preview-content .preview-section-title,
.technical-header ~ .style-preview-content .preview-section-title {
    color: var(--charcoal-dark);
    border-bottom: 1px solid var(--charcoal-dark);
}

.minimal-header ~ .style-preview-content .preview-section-title {
    border-bottom: 1px solid var(--border);
    color: var(--charcoal-dark);
}

/* Swiss Minimalist - Ultra clean, centered */
.swiss-minimal-header ~ .style-preview-content {
    text-align: center;
}

.swiss-minimal-header ~ .style-preview-content .preview-section-title {
    color: #000000;
    border-bottom: 1px solid #000000;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.swiss-minimal-header ~ .style-preview-content .preview-section-title::after {
    display: none;
}

/* Glassmorphism Dark - Purple accent */
.glass-dark-header ~ .style-preview-content {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-dark-header ~ .style-preview-content .preview-section-title {
    color: #8b5cf6;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.glass-dark-header ~ .style-preview-content .preview-item-title,
.glass-dark-header ~ .style-preview-content .preview-item-company {
    color: #e2e8f0;
}

.glass-dark-header ~ .style-preview-content .preview-skill {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Neo-Brutalism - Bold black borders */
.neo-brutalism-header ~ .style-preview-content {
    background: #fdba74;
    border: 2px solid #000000;
    border-top: none;
}

.neo-brutalism-header ~ .style-preview-content .preview-section-title {
    color: #000000;
    border-bottom: 2px solid #000000;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.neo-brutalism-header ~ .style-preview-content .preview-section-title::after {
    display: none;
}

.neo-brutalism-header ~ .style-preview-content .preview-skill {
    background: #000000;
    color: #fdba74;
    border: 2px solid #000000;
    font-weight: 900;
    box-shadow: 2px 2px 0px #000000;
}

/* Corporate Pro - Professional navy accents */
.corporate-pro-header ~ .style-preview-content .preview-section-title {
    color: #1e3a8a;
    border-bottom: 2px solid #1e3a8a;
}

.corporate-pro-header ~ .style-preview-content .preview-section-title::after {
    background: #d97706;
    width: 40px;
}

.corporate-pro-header ~ .style-preview-content .preview-skill {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(30, 58, 138, 0.05) 100%);
    color: #1e3a8a;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

/* Creative Banner - Vibrant styling */
.creative-banner-header ~ .style-preview-content {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.creative-banner-header ~ .style-preview-content .preview-section-title {
    color: #f43f5e;
    border-bottom: 2px solid #f43f5e;
    font-weight: 800;
}

.creative-banner-header ~ .style-preview-content .preview-skill {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.15) 0%, rgba(244, 63, 94, 0.08) 100%);
    color: #be123c;
    border: 1px solid rgba(244, 63, 94, 0.3);
    font-weight: 700;
}

.preview-item {
    margin-bottom: 0.65rem;
    padding: 0.4rem 0;
    position: relative;
}

.preview-item-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.preview-item-company {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.preview-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.preview-skill {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.12) 0%, rgba(0, 102, 204, 0.08) 100%);
    color: var(--primary-dark);
    padding: 0.35rem 0.65rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid rgba(0, 102, 204, 0.15);
    box-shadow: 0 1px 3px rgba(0, 102, 204, 0.1);
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.preview-skill:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 102, 204, 0.15);
}

.style-label {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 2px solid #e8ecf0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    position: relative;
    transition: all 0.3s ease;
}

.style-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.style-option:hover .style-label {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border-top-color: rgba(0, 102, 204, 0.2);
}

.style-option:hover .style-label::before {
    transform: scaleX(1);
}

.style-option.active .style-label {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 102, 204, 0.12) 100%);
    border-top-color: var(--primary);
}

.style-option.active .style-label::before {
    transform: scaleX(1);
    height: 3px;
}

.style-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--charcoal-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
}

.style-option.active .style-name {
    color: var(--primary-dark);
}

.style-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.style-option.active .style-desc {
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.builder-preview {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.resume-preview {
    background: #ffffff;
    color: var(--charcoal-dark);
    padding: 2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    box-shadow: 0 4px 12px var(--shadow);
    border: 1px solid var(--border);
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.resume-header {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.resume-header h1 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.resume-contact {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    align-items: center;
}

.resume-contact span {
    color: #555;
    white-space: nowrap;
}

.resume-contact span:not(:last-child)::after {
    content: " | ";
    margin: 0 0.25rem;
    color: #555;
}

.resume-section {
    margin-bottom: 1.5rem;
}

.resume-section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.experience-item,
.education-item,
.certification-item {
    margin-bottom: 1rem;
}

.experience-item ul,
.experience-item ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.experience-item li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 0.4rem;
}

.experience-item p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.item-title {
    font-weight: 700;
    color: #000;
}

.item-subtitle {
    color: var(--primary);
    font-size: 0.9rem;
}

.item-date {
    color: #999;
    font-size: 0.85rem;
}

.skills-display {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-badge {
    background: var(--primary);
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Resume Styles */
/* Style 1: Modern */
.resume-style-modern .resume-header {
    border-bottom: 3px solid var(--primary);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.resume-style-modern .resume-header h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.resume-style-modern .resume-section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.resume-style-modern .item-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Style 2: Classic */
.resume-style-classic .resume-header {
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.resume-style-classic .resume-header h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.resume-style-classic .resume-contact {
    justify-content: center;
    font-size: 0.9rem;
}

.resume-style-classic .resume-section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 0.25rem;
    margin-top: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.resume-style-classic .item-title {
    font-weight: 700;
    color: var(--charcoal-dark);
}

.resume-style-classic .item-subtitle {
    color: var(--charcoal-dark);
    font-weight: 500;
}

/* Style 3: Executive */
.resume-style-executive .resume-header {
    background: linear-gradient(135deg, var(--charcoal-dark), var(--charcoal));
    color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: none;
}

.resume-style-executive .resume-header h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.resume-style-executive .resume-contact {
    color: rgba(255, 255, 255, 0.9);
}

.resume-style-executive .resume-contact span {
    color: rgba(255, 255, 255, 0.9);
}

.resume-style-executive .resume-section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    border-bottom: none;
    letter-spacing: 0.05em;
}

.resume-style-executive .item-title {
    font-weight: 700;
    color: var(--charcoal-dark);
    font-size: 1.05rem;
}

/* Style 4: Minimal */
.resume-style-minimal .resume-header {
    border-bottom: none;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.resume-style-minimal .resume-header h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--charcoal-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.resume-style-minimal .resume-contact {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.resume-style-minimal .resume-contact span {
    color: var(--text-secondary);
}

.resume-style-minimal .resume-section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal-dark);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
    margin-top: 1.5rem;
    text-transform: none;
    letter-spacing: 0.1em;
}

.resume-style-minimal .item-title {
    font-weight: 500;
    color: var(--charcoal-dark);
    font-size: 0.95rem;
}

.resume-style-minimal .item-subtitle {
    color: var(--text-secondary);
    font-weight: 400;
}

/* Style 5: Creative */
.resume-style-creative .resume-header {
    border-left: 5px solid var(--primary);
    padding-left: 1.5rem;
    border-bottom: none;
    margin-bottom: 2rem;
}

.resume-style-creative .resume-header h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--charcoal-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.resume-style-creative .resume-section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    border-left: 3px solid var(--primary);
    padding-left: 0.75rem;
    margin-top: 1.5rem;
    border-bottom: none;
    letter-spacing: -0.01em;
}

.resume-style-creative .item-title {
    font-weight: 600;
    color: var(--charcoal-dark);
}

.resume-style-creative .item-subtitle {
    color: var(--primary);
    font-weight: 500;
}

.resume-style-creative .skill-badge {
    background: var(--primary);
    border-radius: 20px;
    color: #ffffff;
}

/* Style 6: Technical */
.resume-style-technical .resume-header {
    border-bottom: 2px solid var(--charcoal-dark);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.resume-style-technical .resume-header h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    margin-bottom: 0.5rem;
    font-variant: small-caps;
    letter-spacing: 0.05em;
}

.resume-style-technical .resume-section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    border-bottom: 2px solid var(--charcoal-dark);
    padding-bottom: 0.25rem;
    margin-top: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.resume-style-technical .item-title {
    font-weight: 700;
    color: var(--charcoal-dark);
    font-size: 0.95rem;
}

.resume-style-technical .item-subtitle {
    color: var(--charcoal-dark);
    font-weight: 600;
    font-size: 0.85rem;
}

.resume-style-technical .item-date {
    color: var(--text-secondary);
    font-weight: 500;
}

.resume-style-technical .skill-badge {
    background: var(--charcoal-dark);
    color: var(--primary-light);
    border-radius: 6px;
    font-weight: 600;
}

/* Style 7: Defined - Two-Column Layout */
.resume-style-defined {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    background: #ffffff;
}

@media (max-width: 1200px) {
    .resume-style-defined {
        grid-template-columns: 200px 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .resume-style-defined {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .resume-style-defined .resume-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.resume-style-defined .resume-header {
    grid-column: 1 / -1;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.resume-style-defined .resume-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    flex: 1;
}

.resume-style-defined .resume-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #555;
}

.resume-style-defined .resume-contact span::after {
    content: none;
}

.resume-style-defined .resume-section {
    margin-bottom: 1.5rem;
}

.resume-style-defined .resume-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.resume-style-defined .item-title {
    font-weight: 600;
    color: #000;
    font-size: 0.95rem;
}

.resume-style-defined .item-subtitle {
    color: #0066cc;
    font-size: 0.9rem;
}

.resume-style-defined .skill-badge {
    background: #f0f7ff;
    color: #0066cc;
    border-radius: 4px;
    font-weight: 500;
}

/* Style 8: Visionary - Warm & Organic */
.resume-style-visionary {
    background: linear-gradient(135deg, #fef5e7 0%, #fdebd0 50%, #fad7a0 100%);
    position: relative;
    overflow: hidden;
}

.resume-style-visionary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.resume-style-visionary > * {
    position: relative;
    z-index: 1;
}

.resume-style-visionary .resume-header {
    background: linear-gradient(135deg, #d4a574 0%, #c98a5f 100%);
    color: #fff;
    padding: 2rem;
    margin: -2rem -2rem 2rem -2rem;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
}

.resume-style-visionary .resume-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.resume-style-visionary .resume-contact {
    color: rgba(255, 255, 255, 0.95);
}

.resume-style-visionary .resume-contact span {
    color: rgba(255, 255, 255, 0.95);
}

.resume-style-visionary .resume-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b5a3c;
    border-bottom: 2px solid #d4a574;
    padding-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.resume-style-visionary .item-title {
    font-weight: 600;
    color: #5d4037;
    font-size: 1rem;
}

.resume-style-visionary .item-subtitle {
    color: #8b5a3c;
    font-size: 0.9rem;
}

.resume-style-visionary .skill-badge {
    background: #d4a574;
    color: #fff;
    border-radius: 20px;
    font-weight: 500;
}

/* Style 10: Navy Professional - Header Block */
.resume-style-navy {
    font-family: 'Lato', sans-serif;
}

.resume-style-navy .resume-header {
    background-color: #1e3a8a;
    color: white;
    padding: 2.5rem;
    margin: -2rem -2rem 2rem -2rem;
    text-align: center;
    border-bottom: none;
}

.resume-style-navy .resume-header h1 {
    color: white;
    letter-spacing: 1px;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.resume-style-navy .resume-contact {
    color: #bfdbfe;
    font-weight: 300;
    letter-spacing: 2px;
    justify-content: center;
}

.resume-style-navy .resume-contact span {
    color: #93c5fd;
}

.resume-style-navy .resume-section-title {
    color: #1e3a8a;
    border-left: 5px solid #1e3a8a;
    padding-left: 10px;
    text-transform: uppercase;
    font-size: 1.1rem;
    border-bottom: none;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.resume-style-navy .skill-badge {
    background: #3b82f6;
    color: white;
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
}

/* Style 11: The Developer - Monospace */
.resume-style-mono {
    font-family: 'Roboto Mono', 'Courier New', monospace;
    color: #333;
}

.resume-style-mono .resume-header {
    border-bottom: 1px dashed #333;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.resume-style-mono .resume-header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.resume-style-mono .resume-contact {
    color: #16a34a;
    font-weight: 600;
}

.resume-style-mono .resume-contact span {
    color: #16a34a;
}

.resume-style-mono .resume-section-title {
    background: #f3f4f6;
    display: inline-block;
    padding: 2px 8px;
    color: #16a34a;
    font-weight: 600;
    border-bottom: none;
}

.resume-style-mono .item-date {
    font-weight: bold;
}

/* Style 12: Vogue Elegant - Fashion/Editorial */
.resume-style-elegant {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #2d2d2d;
}

.resume-style-elegant .resume-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    border-bottom: none;
}

.resume-style-elegant .resume-header::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #d4af37;
    margin: 1.5rem auto 0;
}

.resume-style-elegant .resume-header h1 {
    font-style: italic;
    font-size: 3rem;
    font-weight: 400;
    color: #2d2d2d;
}

.resume-style-elegant .resume-contact {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #666;
}

.resume-style-elegant .resume-section-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 1.5rem;
    border-bottom: none;
}

/* Style 13: Dark Sidebar - Split Layout */
.resume-style-sidebar-dark {
    font-family: 'Open Sans', sans-serif;
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100%;
    position: relative;
}

.resume-style-sidebar-dark .resume-header {
    grid-column: 1 / -1;
    background: #fff;
    padding: 2.5rem;
    border-bottom: 1px solid #eee;
    margin: -2rem -2rem 2rem -2rem;
}

.resume-style-sidebar-dark .resume-section {
    padding: 0 2rem;
    margin-top: 2rem;
    grid-column: 2;
}

.resume-style-sidebar-dark .resume-section.sidebar {
    grid-column: 1;
    grid-row: 2 / span 10;
    background: #334155;
    color: white;
    padding: 2rem;
    margin: 0;
    height: 100%;
}

.resume-style-sidebar-dark .resume-section.sidebar .resume-section-title {
    color: #94a3b8;
    border-color: #475569;
}

.resume-style-sidebar-dark .resume-section-title {
    color: #334155;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 700;
}

@media (max-width: 768px) {
    .resume-style-sidebar-dark {
        grid-template-columns: 1fr;
    }
    .resume-style-sidebar-dark .resume-section.sidebar {
        grid-column: 1;
        grid-row: auto;
    }
}

/* Style 14: Pill Headers - Rounded Headers */
.resume-style-pill {
    font-family: 'Montserrat', sans-serif;
}

.resume-style-pill .resume-header h1 {
    font-weight: 800;
    color: #374151;
}

.resume-style-pill .resume-contact {
    color: #f43f5e;
    font-weight: 600;
}

.resume-style-pill .resume-section-title {
    background: #374151;
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border-bottom: none;
}

/* Style 15: Green Accent - Left Border */
.resume-style-accent {
    font-family: 'Inter', sans-serif;
    padding-left: 3rem !important;
    position: relative;
}

.resume-style-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background: #10b981;
}

.resume-style-accent .resume-header {
    margin-bottom: 2rem;
}

.resume-style-accent .resume-header h1 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 800;
}

.resume-style-accent .resume-section-title {
    color: #10b981;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.1rem;
    border-bottom: none;
}

/* Style 16: Boxed Grid - Modern Cards */
.resume-style-boxed {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
}

.resume-style-boxed .resume-header {
    background: white;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.resume-style-boxed .resume-section {
    background: white;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.resume-style-boxed .resume-section-title {
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    color: #64748b;
}

/* Style 17: Timeline - Vertical Line */
.resume-style-timeline {
    font-family: 'Lato', sans-serif;
}

.resume-style-timeline .experience-item,
.resume-style-timeline .education-item,
.resume-style-timeline .certification-item {
    border-left: 2px solid #cbd5e1;
    padding-left: 1.5rem;
    position: relative;
    margin-left: 10px;
    margin-bottom: 1.5rem;
}

.resume-style-timeline .experience-item::before,
.resume-style-timeline .education-item::before,
.resume-style-timeline .certification-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3b82f6;
}

.resume-style-timeline .resume-header h1 {
    color: #1e293b;
}

.resume-style-timeline .resume-section-title {
    font-size: 1.3rem;
    font-weight: 300;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    border-bottom: none;
}

/* Style 18: High Voltage - Yellow/Black Contrast */
.resume-style-contrast {
    font-family: 'Oswald', sans-serif;
}

.resume-style-contrast .resume-header {
    background: #000;
    color: #facc15;
    padding: 2rem;
    margin: -2rem -2rem 2rem -2rem;
    border-bottom: none;
}

.resume-style-contrast .resume-header h1 {
    color: #facc15;
    text-transform: uppercase;
    font-size: 3.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 800;
    letter-spacing: 1px;
}

.resume-style-contrast .resume-contact {
    color: white;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
}

.resume-style-contrast .resume-contact span {
    color: #666;
    font-family: 'Inter', sans-serif;
}

.resume-style-contrast .resume-section-title {
    font-size: 1.8rem;
    text-transform: uppercase;
    border-bottom: 4px solid #facc15;
    display: inline-block;
    padding-right: 20px;
    font-weight: 800;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.resume-style-contrast .skill-badge {
    background: #f43f5e;
    color: white;
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
}

/* Style: Swiss Minimalist - Clean, centered, minimal design */
.resume-style-swiss-minimal {
    font-family: 'Inter', sans-serif;
    color: #000;
}

.resume-style-swiss-minimal .resume-header {
    border-top: 8px solid #000;
    padding-top: 2rem;
    margin-bottom: 3rem;
    text-align: left;
    border-bottom: none;
}

.resume-style-swiss-minimal .resume-header h1 {
    font-size: 3.5rem;
    letter-spacing: -2px;
    line-height: 0.9;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.5rem;
}

.resume-style-swiss-minimal .resume-contact {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: #666;
}

.resume-style-swiss-minimal .resume-section-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    letter-spacing: 1px;
    color: #000;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.resume-style-swiss-minimal .skill-badge {
    background: #3b82f6;
    color: white;
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
}

/* Style: Glassmorphism Dark - Modern dark theme with glass effect */
.resume-style-glass-dark {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #e2e8f0;
}

.resume-style-glass-dark .resume-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    padding: 2rem;
    margin: -2rem -2rem 2rem -2rem;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.resume-style-glass-dark .resume-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6 0%, rgba(139, 92, 246, 0.3) 100%);
}

.resume-style-glass-dark .resume-header h1 {
    color: #f8fafc;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.resume-style-glass-dark .resume-contact {
    color: #f8fafc;
}

.resume-style-glass-dark .resume-contact span {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.resume-style-glass-dark .resume-section-title {
    color: #8b5cf6;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.resume-style-glass-dark .item-title,
.resume-style-glass-dark .item-subtitle {
    color: #e2e8f0;
}

.resume-style-glass-dark .skill-badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
}

/* Style: Corporate Pro - Executive Corporate Professional */
.resume-style-corporate-pro {
    font-family: 'Inter', sans-serif;
}

.resume-style-corporate-pro .resume-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%);
    color: white;
    padding: 2rem;
    margin: -2rem -2rem 2rem -2rem;
    border-bottom: none;
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.resume-style-corporate-pro .resume-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d97706 0%, rgba(217, 119, 6, 0.5) 100%);
}

.resume-style-corporate-pro .resume-header h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
}

.resume-style-corporate-pro .resume-contact {
    color: rgba(255, 255, 255, 0.95);
}

.resume-style-corporate-pro .resume-contact span {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.resume-style-corporate-pro .resume-section-title {
    color: #1e3a8a;
    border-bottom: 2px solid #1e3a8a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
    position: relative;
}

.resume-style-corporate-pro .resume-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d97706;
}

.resume-style-corporate-pro .skill-badge {
    background: #f0f7ff;
    color: #1e3a8a;
    border-radius: 4px;
    padding: 0.25rem 0.75rem;
    font-weight: 500;
}

/* Style: Neo-Brutalism Pop - Bold orange with black borders */
.resume-style-neo-brutalism {
    font-family: 'Inter', sans-serif;
    background: #fdba74;
}

.resume-style-neo-brutalism .resume-header {
    background: #fdba74;
    border-bottom: 3px solid #000000;
    padding: 2rem;
    margin: -2rem -2rem 2rem -2rem;
    position: relative;
    box-shadow: 0 4px 0px #000000;
}

.resume-style-neo-brutalism .resume-header h1 {
    color: #000000;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.resume-style-neo-brutalism .resume-contact {
    color: #1f2937;
    font-weight: 700;
}

.resume-style-neo-brutalism .resume-contact span {
    color: #1f2937;
    font-weight: 700;
}

.resume-style-neo-brutalism .resume-section-title {
    color: #000000;
    border-bottom: 2px solid #000000;
    font-weight: 900;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.resume-style-neo-brutalism .item-title,
.resume-style-neo-brutalism .item-subtitle {
    color: #000000;
    font-weight: 700;
}

.resume-style-neo-brutalism .skill-badge {
    background: #000000;
    color: #fdba74;
    border: 2px solid #000000;
    font-weight: 900;
    box-shadow: 2px 2px 0px #000000;
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
}

/* Style 9: Confetti - Minimalist & Playful */
.resume-style-confetti {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.resume-style-confetti::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(100, 200, 255, 0.15) 3px, transparent 3px),
        radial-gradient(circle at 65% 45%, rgba(100, 255, 200, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 85% 15%, rgba(255, 200, 100, 0.15) 4px, transparent 4px),
        radial-gradient(circle at 35% 75%, rgba(255, 150, 200, 0.15) 2px, transparent 2px);
    background-size: 80px 80px, 60px 60px, 100px 100px, 70px 70px;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.resume-style-confetti > * {
    position: relative;
    z-index: 1;
}

.resume-style-confetti .resume-header {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.resume-style-confetti .resume-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.resume-style-confetti .resume-contact {
    justify-content: center;
    font-size: 0.85rem;
}

.resume-style-confetti .resume-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
    padding-left: 1.5rem;
}

.resume-style-confetti .resume-section-title::before {
    content: '01';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    color: #0066cc;
    font-weight: 700;
}

.resume-style-confetti .resume-section:nth-of-type(2) .resume-section-title::before {
    content: '02';
}

.resume-style-confetti .resume-section:nth-of-type(3) .resume-section-title::before {
    content: '03';
}

.resume-style-confetti .item-title {
    font-weight: 600;
    color: #000;
    font-size: 0.95rem;
}

.resume-style-confetti .skill-badge {
    background: #f0f7ff;
    color: #0066cc;
    border-radius: 4px;
    font-weight: 500;
}

/* Style 10: Authority - Bold & Dark */
.resume-style-authority {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
}

.resume-style-authority .resume-header {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    color: #fff;
    padding: 2rem;
    margin: -2rem -2rem 2rem -2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.resume-style-authority .resume-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex: 1;
}

.resume-style-authority .resume-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.resume-style-authority .resume-contact span {
    color: rgba(255, 255, 255, 0.9);
}

.resume-style-authority .resume-contact span::after {
    content: none;
}

.resume-style-authority .resume-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.resume-style-authority .item-title {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.resume-style-authority .item-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.resume-style-authority .item-date {
    color: rgba(255, 255, 255, 0.6);
}

.resume-style-authority .skill-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
}

.resume-style-authority p,
.resume-style-authority li {
    color: rgba(255, 255, 255, 0.9);
}

/* Style 11: Popular - Clean & Gradient */
.resume-style-popular {
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 50%, #faf5ff 100%);
    position: relative;
}

.resume-style-popular .resume-header {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 50%, #e9d5ff 100%);
    color: #4c1d95;
    padding: 2rem;
    margin: -2rem -2rem 2rem -2rem;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.resume-style-popular .resume-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(124, 29, 149, 0.1)"/></svg>');
    opacity: 0.3;
    border-radius: 12px 12px 0 0;
}

.resume-style-popular .resume-header > * {
    position: relative;
    z-index: 1;
}

.resume-style-popular .resume-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #4c1d95;
    margin: 0;
    flex: 1;
}

.resume-style-popular .resume-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b21a8;
}

.resume-style-popular .resume-contact span {
    color: #6b21a8;
}

.resume-style-popular .resume-contact span::after {
    content: none;
}

.resume-style-popular .resume-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #7c3aed;
    border-bottom: 2px solid #e9d5ff;
    padding-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.resume-style-popular .item-title {
    font-weight: 600;
    color: #000;
    font-size: 0.95rem;
}

.resume-style-popular .item-subtitle {
    color: #7c3aed;
    font-size: 0.9rem;
}

.resume-style-popular .skill-badge {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
    color: #4c1d95;
    border-radius: 20px;
    font-weight: 500;
}

.form-item {
    background: var(--bg-tertiary);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.form-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.remove-btn {
    background: var(--danger);
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 0.3rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #dc2626;
}

/* Logo Slider Section */
.logo-slider-section {
    padding: 3rem 0;
    background: #ffffff;
    margin: 2rem 0;
    overflow: hidden;
    position: relative;
}

.logo-slider-section::before,
.logo-slider-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-slider-section::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.logo-slider-section::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.logo-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-slider-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll-logos 30s linear infinite;
    will-change: transform;
}

.logo-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-slide:hover {
    transform: scale(1.1);
}

.logo-img-slider {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-img-slider:hover {
    filter: none;
    opacity: 1;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Resume Counter Section */
.resume-counter-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    margin: -1rem 0 0 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


.counter-content {
    display: flex !important;
    margin-top:-50px;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Speedometer Icon */
.speedometer-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
    overflow: hidden;
}

/* Gauge arc - semi-circular */
.speedometer-icon::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    border: 3px solid transparent;
    border-top: 3px solid #66a3e0;
    border-right: 3px solid #66a3e0;
    border-radius: 50%;
    top: 6px;
    left: 8px;
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 55%);
}

/* Needle */
.speedometer-icon::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 16px;
    background: #0066cc;
    border-radius: 2px 2px 0 0;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) rotate(40deg);
    transform-origin: bottom center;
    box-shadow: 0 1px 3px rgba(0, 102, 204, 0.4);
    z-index: 2;
}

/* Pivot point */
.speedometer-pivot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #66a3e0;
    border-radius: 50%;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.counter-number {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    display: inline-block;
    opacity: 1;
    visibility: visible;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.counter-digit {
    display: inline-block;
    position: relative;
    line-height: 1;
    vertical-align: baseline;
}

.counter-digit.rolling-digit {
    height: 1em;
    overflow: hidden;
    vertical-align: baseline;
    display: inline-flex;
    align-items: flex-start;
}

.digit-inner {
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.digit-inner span {
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.counter-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    visibility: visible;
}


.resume-counter-section.visible .counter-text {
    opacity: 1;
    visibility: visible;
}

@keyframes counterGlow {
    0% {
        transform: scale(0.95) translateY(5px);
        opacity: 0.8;
        text-shadow: 0 0 0 rgba(0, 102, 204, 0);
    }
    30% {
        transform: scale(1.05) translateY(-2px);
        opacity: 1;
        text-shadow: 0 0 25px rgba(0, 102, 204, 0.25);
    }
    60% {
        transform: scale(1.02) translateY(0);
        opacity: 1;
        text-shadow: 0 0 15px rgba(0, 102, 204, 0.2);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
        text-shadow: 0 0 0 rgba(0, 102, 204, 0);
    }
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: var(--bg-tertiary);
    margin: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-card {
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.15);
}

.stat-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: #ffffff;
}

.how-it-works h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--charcoal-dark);
    letter-spacing: -0.02em;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.step-card {
    text-align: center;
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.step-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.step-card h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal-dark);
    letter-spacing: -0.01em;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.testimonials h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--charcoal-dark);
    letter-spacing: -0.02em;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    align-items: flex-start;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.15);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--primary);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    margin-top: 4rem;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-text {
    color: #ffffff;
}

.cta-text h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #ffffff;
    color: var(--primary);
}

.cta-buttons .btn-primary:hover {
    background: var(--bg-tertiary);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Cover Letter Builder Styles */
.coverletter-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.coverletter-input-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.input-section-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-secondary);
}

.input-section-header h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal-dark);
}

.input-section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal-dark);
    font-size: 1rem;
}

.form-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.upload-area-coverletter {
    border: 2px dashed var(--primary);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 102, 204, 0.05);
    margin-top: 0.5rem;
}

.upload-area-coverletter:hover {
    background: rgba(0, 102, 204, 0.1);
    border-color: var(--primary-light);
    transform: scale(1.02);
}

.coverletter-results-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-secondary);
    flex-wrap: wrap;
    gap: 1rem;
}

.results-header h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--charcoal-dark);
}

.results-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.analysis-summary {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.analysis-summary h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal-dark);
}

.analysis-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.analysis-point {
    padding: 0.75rem;
    background: #ffffff;
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.coverletter-preview-container {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.coverletter-preview {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--charcoal-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.coverletter-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.coverletter-date {
    text-align: left;
}

.coverletter-sender {
    text-align: right;
    white-space: pre-line;
}

.coverletter-recipient {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    white-space: pre-line;
}

.coverletter-greeting {
    margin-bottom: 1rem;
    font-weight: 500;
}

.coverletter-body {
    margin-bottom: 1.5rem;
}

.coverletter-body p {
    margin-bottom: 1rem;
    text-align: justify;
}

.coverletter-closing {
    margin-top: 2rem;
    white-space: pre-line;
}

.coverletter-tips {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.coverletter-tips h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal-dark);
}

.tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.tip-item {
    padding: 0.75rem;
    background: #ffffff;
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.seo-score-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    padding: 2rem;
    color: #ffffff;
}

.seo-score-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.seo-score-container {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
}

.seo-score-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.seo-score-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
}

.seo-score-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.seo-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.seo-detail-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seo-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.seo-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.coverletter-info-section {
    margin-top: 6rem;
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.coverletter-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--charcoal-dark);
}

.info-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info-step {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.info-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.15);
}

.info-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.info-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal-dark);
}

.info-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.coverletter-features {
    margin-top: 4rem;
    padding: 4rem 0;
}

.coverletter-features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--charcoal-dark);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.15);
}

.feature-item .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal-dark);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: flex-start;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .newherovisual {
        width: 100%;
        padding: 0.75rem 0;
    }

    .newherovisual .dashboard-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 15px;
    }

    .newherovisual .ats-score-card {
        grid-column: 1;
        grid-row: 1;
    }

    .newherovisual .keyword-density-card {
        grid-column: 2;
        grid-row: 1;
    }

    .newherovisual .resume-detail-card {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .newherovisual .card {
        padding: 18px;
    }

    .newherovisual .score-ring {
        width: 90px;
        height: 90px;
    }

    .newherovisual .score-inner {
        width: 76px;
        height: 76px;
    }

    .newherovisual .score-value {
        font-size: 2em;
    }

    .resume-preview-card {
        max-width: 100%;
        transform: scale(0.9);
        transform-origin: top right;
    }

    .checker-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .linkedin-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .resumescan-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Responsive styles for new resume scan results */
    .resume-scan-layout {
        grid-template-columns: 1fr;
    }

    .resume-scan-sidebar {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 1.5rem;
    }

    .results-top-actions {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
        justify-content: flex-end;
    }

    .resume-scan-main {
        padding: 1.5rem;
    }

    .match-rate-circle-container {
        width: 120px;
        height: 120px;
    }

    .resumescan-input-box {
        padding: 1.5rem;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .comparison-label {
        font-size: 0.9rem;
    }

    .url-input-area {
        flex-direction: column;
    }

    .builder-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .builder-preview {
        position: static;
        max-height: none;
    }

    .hero-title {
        font-size: 3rem !important;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .style-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .style-preview-card {
        height: 300px;
    }
    
    .style-option:hover {
        transform: translateY(-6px) scale(1.01);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0;
    }

    .nav-container {
        flex-direction: row;
        gap: 0.75rem;
        padding: 0.5rem 1rem;
        flex-wrap: wrap;
    }

    .logo-img {
        max-height: 50px;
        max-width: 150px;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: left center;
        flex-shrink: 0;
    }

    .logo {
        font-size: 1.2rem;
        gap: 0.5rem;
    }
    
    .nav-container {
        padding: 0.35rem 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        backdrop-filter: none;
        flex-direction: column;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e5e5e5;
        gap: 0.5rem;
        align-items: stretch;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-btn {
        font-size: 0.95rem;
        padding: 0.75rem 0;
        width: 100%;
        text-align: left;
        border-radius: 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        color: #333333;
        -webkit-tap-highlight-color: rgba(0, 102, 204, 0.1);
        touch-action: manipulation;
    }

    .nav-btn::after {
        margin-left: auto;
    }

    .nav-btn:hover,
    .nav-btn.active {
        background: none;
        color: #0066cc;
    }
    
    .nav-btn:active {
        background: none;
        transform: none;
    }

    .nav-auth-buttons {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e5e5e5;
        padding-top: 1rem;
        margin-top: 0.5rem;
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-login {
        width: 100%;
        padding: 0;
        font-size: 0.95rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }

    .btn-signup {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* New Auth Buttons - Mobile Responsive */
    .auth-btn-signin {
        width: 100%;
        padding: 0;
        font-size: 0.95rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }

    .auth-btn-signup {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
        margin-bottom: 2rem;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        order: 1;
    }

    .newherovisual {
        order: 2;
        width: 100%;
        margin-top: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.75rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .typing-text,
    .typing-highlight {
        font-size: 1.75rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 0.625rem 0.5rem;
        font-size: 0.8rem;
        line-height: 1.2;
        text-align: center;
    }

    .hero-actions .btn-primary::after {
        content: '';
    }

    .hero-actions .btn-secondary::after {
        content: '';
    }

    .hero-actions .btn-jobscan::after {
        content: '';
    }

    .hero-actions .btn-linkedin::after {
        content: '';
    }

    .hero-stats {
        gap: 0.5rem;
    }

    .hero-stat-item {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .stat-icon {
        font-size: 1rem;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        order: 2;
        width: 100%;
        margin-top: 1rem;
    }

    .newherovisual {
        width: 100%;
        padding: 0.5rem 0;
        order: 2;
    }

    .newherovisual .dashboard-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
        max-width: 100%;
    }

    .newherovisual .ats-score-card {
        grid-column: 1;
        grid-row: 1;
    }

    .newherovisual .keyword-density-card {
        grid-column: 1;
        grid-row: 2;
    }

    .newherovisual .resume-detail-card {
        grid-column: 1;
        grid-row: 3;
    }

    .newherovisual .card {
        padding: 15px;
    }

    .newherovisual .card-title {
        font-size: 0.95em;
        margin-bottom: 12px;
    }

    .newherovisual .score-ring {
        width: 80px;
        height: 80px;
    }

    .newherovisual .score-inner {
        width: 68px;
        height: 68px;
    }

    .newherovisual .score-value {
        font-size: 1.8em;
    }

    .resume-preview-card {
        max-width: 90%;
        width: 100%;
        transform: scale(1);
        transform-origin: center;
        margin-right: 0;
        margin-left: 0;
        animation: slideInUp 0.6s ease-out;
        height: auto;
        max-height: 500px;
        overflow-y: auto;
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .resume-preview-header {
        padding: 1.25rem;
        padding-bottom: 2.5rem;
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
        align-items: flex-start;
    }

    .resume-profile-section {
        width: 80px;
        height: 80px;
    }

    .resume-profile-img {
        width: 65px;
        height: 65px;
        top: 7.5px;
        left: 7.5px;
    }

    .resume-score-badge {
        padding: 0.6rem 1rem;
    }

    .resume-score-badge .score-value {
        font-size: 1.5rem;
    }

    .resume-score-badge .score-label {
        font-size: 0.7rem;
    }

    .resume-preview-content {
        padding: 1.25rem;
    }

    .resume-name {
        font-size: 1.2rem;
    }

    .resume-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .resume-section {
        margin-bottom: 1rem;
    }

    .resume-section-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .resume-job-item {
        margin-bottom: 1rem;
    }

    .job-title {
        font-size: 0.85rem;
    }

    .job-location,
    .job-date {
        font-size: 0.75rem;
    }

    .contact-item {
        font-size: 0.75rem;
    }

    .skills-title {
        font-size: 0.9rem;
    }

    .ats-perfect-btn {
        padding: 0.45rem 0.8rem;
        font-size: 0.7rem;
    }

    .skill-chip {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .add-skill-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .style-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .style-preview-card {
        height: 280px;
    }
    
    .style-option:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .style-preview-header {
        padding: 1.25rem 1rem;
        min-height: 90px;
    }
    
    .preview-name {
        font-size: 1rem;
    }
    
    .preview-title {
        font-size: 0.75rem;
    }
    
    .style-preview-content {
        padding: 0.85rem 1rem;
        gap: 0.85rem;
    }
    
    .preview-section-title {
        font-size: 0.65rem;
    }
    
    .preview-item-title {
        font-size: 0.65rem;
    }
    
    .preview-item-company {
        font-size: 0.6rem;
    }
    
    .preview-skill {
        font-size: 0.55rem;
        padding: 0.15rem 0.4rem;
    }
    
    .style-label {
        padding: 0.6rem 0.75rem;
    }
    
    .style-name {
        font-size: 0.85rem;
    }
    
    .style-desc {
        font-size: 0.65rem;
    }

    .ats-score-container {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.5rem;
    }

    .score-circle-large {
        width: 150px;
        height: 150px;
    }

    .score-value {
        font-size: 3rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .jobscan-container {
        padding: 1rem;
    }

    .filters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .job-filters {
        padding: 1.5rem;
    }

    .job-card {
        padding: 1.5rem;
    }

    .job-card-header {
        flex-direction: column;
        align-items: start;
    }

    .job-card-footer {
        flex-direction: column;
        align-items: start;
    }

    .job-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-apply,
    .btn-save {
        width: 100%;
    }

    .results-header {
        flex-direction: column;
        align-items: start;
    }

    .filter-actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-image {
        height: 150px;
    }

    .step-card h3 {
        font-size: 1.1rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }
    
    /* Standardize all card subtext sizes in mobile */
    .feature-card p,
    .testimonial-content p,
    .testimonial-author span,
    .job-description,
    .job-posted,
    .job-detail-item {
        font-size: 0.9rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .testimonial-card {
        padding: 1.75rem;
        gap: 1.25rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .feature-list {
        font-size: 0.8rem;
    }

    .feature-list li {
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .step-card {
        padding: 1.25rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .step-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .step-card p {
        font-size: 0.85rem;
    }

    .step-image {
        height: 120px;
        margin-bottom: 0.75rem;
    }
    
    .analysis-card p,
    .recommendation-item {
        font-size: 0.9rem;
    }

    .feature-image {
        height: 180px;
    }

    .features h2,
    .how-it-works h2,
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .section-header-image {
        height: 200px;
    }

    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .cta-image {
        order: -1;
        height: 250px;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .builder-form {
        padding: 1.5rem;
    }

    .builder-form h1 {
        font-size: 1.75rem;
    }

    .form-section h2 {
        font-size: 1.25rem;
    }

    .upload-area {
        padding: 2rem 1rem;
    }

    .upload-area h3 {
        font-size: 1.1rem;
    }

    .floating-card {
        width: 180px;
        padding: 1rem;
    }

    .card-1 {
        top: 20px;
        left: 20px;
    }

    .card-2 {
        bottom: 40px;
        right: 20px;
    }

    .score-circle {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .card-number {
        font-size: 1.5rem;
    }

    .section {
        padding: 2rem 0;
        min-height: auto;
    }

    .stats-section,
    .how-it-works,
    .testimonials,
    .cta-section,
    .benefits-section,
    .industry-features,
    .success-metrics,
    .faq-section,
    .integration-section,
    .coverletter-info-section,
    .coverletter-features,
    .features {
        padding: 2rem 0;
    }

    .coverletter-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coverletter-input-box,
    .coverletter-results-box {
        padding: 1.5rem;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .results-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .coverletter-preview {
        padding: 1.5rem;
        font-size: 0.9rem;
    }

    .seo-score-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .seo-score-circle {
        width: 150px;
        height: 150px;
    }

    .seo-score-value {
        font-size: 2.5rem;
    }

    .seo-details {
        grid-template-columns: 1fr;
    }

    .info-steps,
    .features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .coverletter-info-section h2,
    .coverletter-features h2 {
        font-size: 2rem;
    }

    .features {
        margin-top: 3rem;
    }

    .benefits-grid,
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .faq-grid,
    .integration-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 100%;
    }

    .metric-card {
        padding: 2rem 1.5rem;
        min-height: 240px;
    }

    .metric-number {
        font-size: 3.5rem;
        margin-bottom: 0.75rem;
    }

    .metric-label {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .metric-card p {
        font-size: 0.9rem;
    }

    .section-header-text {
        margin-bottom: 2rem;
    }

    .section-header-text h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .section-header-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .metric-number {
        font-size: 3rem;
    }

    .metric-label {
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .logo-slider-section {
        padding: 2rem 0;
        margin: 1.5rem 0;
    }

    .logo-slider-section::before,
    .logo-slider-section::after {
        width: 50px;
    }

    .logo-slider-track {
        gap: 2rem;
        animation-duration: 25s;
    }

    .logo-slide {
        padding: 0.75rem 1rem;
    }

    .logo-img-slider {
        height: 40px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0;
    }

    .nav-container {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
    }

    .logo-img {
        width: 70px;
        height: 70px;
    }

    .mobile-menu-toggle {
        width: 28px;
        height: 28px;
    }

    .nav-links {
        padding: 0.75rem;
        gap: 0.4rem;
    }

    .nav-btn {
        font-size: 0.95rem;
        padding: 0.75rem 0;
        color: #333333;
    }

    .nav-btn::after {
        margin-left: auto;
    }

    .nav-auth-buttons {
        margin-top: 0.75rem;
        padding-top: 1rem;
        border-top: 1px solid #e5e5e5;
    }

    .btn-login {
        font-size: 0.95rem;
        padding: 0;
        text-align: left;
        justify-content: flex-start;
    }

    .btn-signup {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
        margin-bottom: 1.5rem;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        order: 1;
    }

    .newherovisual {
        order: 2;
        width: 100%;
        margin-top: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.4rem !important;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .typing-text,
    .typing-highlight {
        font-size: 1.4rem !important;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        line-height: 1.4;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
        margin-bottom: 1.25rem;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 0.5rem 0.4rem;
        font-size: 0.7rem;
        line-height: 1.2;
        text-align: center;
    }

    .hero-stats {
        gap: 0.4rem;
    }

    .hero-stat-item {
        font-size: 0.7rem;
        gap: 0.4rem;
    }

    .stat-icon {
        font-size: 0.9rem;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        order: 2;
        width: 100%;
        margin-top: 0.75rem;
    }

    .newherovisual {
        width: 100%;
        padding: 0.5rem 0;
        order: 2;
    }

    .newherovisual .dashboard-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
        max-width: 100%;
    }

    .newherovisual .ats-score-card {
        grid-column: 1;
        grid-row: 1;
    }

    /* Show mobile card after ATS Score - same row, next column */
    .mobile-after-ats-card {
        display: flex !important;
        grid-column: 2;
        grid-row: 1;
    }

    .newherovisual .keyword-density-card {
        display: none;
    }

    .newherovisual .resume-detail-card {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    /* Position Top Missing Skills and Improvement Suggestions in row 2 */
    .newherovisual .missing-skills-card {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }

    .newherovisual .improvement-suggestions-card {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }

    /* Show mobile-only card */
    .mobile-only-card {
        display: flex !important;
        grid-column: 1 / -1;
        grid-row: 4;
    }

    .newherovisual .card {
        padding: 12px;
    }

    .analysis-summary {
        gap: 0.625rem;
    }

    .analysis-item {
        padding: 0.4rem 0;
    }

    .analysis-icon {
        width: 20px;
        height: 20px;
        font-size: 1em;
    }

    .analysis-text {
        font-size: 0.85em;
    }

    .quality-stats {
        gap: 0.75rem;
    }

    .quality-item {
        padding: 0.5rem 0;
    }

    .quality-label {
        font-size: 0.8em;
    }

    .quality-value {
        font-size: 1em;
    }

    .newherovisual .card-title {
        font-size: 0.85em;
        margin-bottom: 10px;
    }

    .newherovisual .score-ring {
        width: 70px;
        height: 70px;
    }

    .newherovisual .score-inner {
        width: 60px;
        height: 60px;
    }

    .newherovisual .score-value {
        font-size: 1.5em;
    }

    .newherovisual .score-gauge-container {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .resume-preview-card {
        max-width: 95%;
        width: 100%;
        transform: scale(1);
        transform-origin: center;
        margin-right: 0;
        margin-left: 0;
        animation: slideInUp 0.6s ease-out;
        height: auto;
        max-height: 450px;
        overflow-y: auto;
    }

    .resume-preview-header {
        padding: 1rem;
        padding-bottom: 2rem;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .resume-profile-section {
        width: 70px;
        height: 70px;
    }

    .resume-profile-img {
        width: 55px;
        height: 55px;
        top: 7.5px;
        left: 7.5px;
    }

    .resume-score-badge {
        padding: 0.5rem 0.75rem;
    }

    .resume-score-badge .score-value {
        font-size: 1.3rem;
    }

    .resume-score-badge .score-label {
        font-size: 0.65rem;
    }

    .resume-preview-content {
        padding: 1rem;
    }

    .resume-name {
        font-size: 1.1rem;
    }

    .resume-title {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .resume-section {
        margin-bottom: 0.75rem;
    }

    .resume-section-title {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .resume-job-item {
        margin-bottom: 0.75rem;
    }

    .job-title {
        font-size: 0.75rem;
    }

    .job-location,
    .job-date {
        font-size: 0.7rem;
    }

    .job-bullets li {
        font-size: 0.7rem;
    }

    .resume-contact-info {
        margin-bottom: 0.75rem;
        padding-top: 0.75rem;
    }

    .contact-item {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }

    .resume-skills-section {
        padding-top: 0.75rem;
    }

    .skills-header {
        margin-bottom: 0.75rem;
    }

    .skills-title {
        font-size: 0.8rem;
    }

    .ats-perfect-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.65rem;
    }

    .skills-list {
        gap: 0.4rem;
        margin-bottom: 0.5rem;
    }

    .skill-chip {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }

    .add-skill-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }

    .section-header h1 {
        font-size: 1.75rem;
    }

    .section-header-text {
        margin-bottom: 1.5rem;
    }

    .section-header-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .section-header-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .features h2,
    .how-it-works h2,
    .testimonials h2 {
        font-size: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.75rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .benefits-grid,
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .benefit-item,
    .industry-card {
        padding: 1.25rem;
    }

    .benefit-icon,
    .industry-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .benefit-item h3,
    .industry-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .benefit-item p,
    .industry-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.75rem;
        max-width: 100%;
    }

    .metric-card {
        padding: 1.75rem 1.25rem;
        min-height: 220px;
    }

    .metric-number {
        font-size: 3rem;
        margin-bottom: 0.75rem;
    }

    .metric-label {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .metric-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .testimonial-card {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-rating {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .testimonial-content p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .testimonial-author strong {
        font-size: 0.9rem;
    }

    .testimonial-author span {
        font-size: 0.75rem;
    }

    .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .style-selector {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .style-preview-card {
        height: 260px;
    }
    
    .style-option:hover {
        transform: translateY(-4px) scale(1);
    }
    
    .style-preview-header {
        padding: 1rem 0.85rem;
        min-height: 85px;
    }
    
    .preview-name {
        font-size: 0.95rem;
    }
    
    .preview-title {
        font-size: 0.7rem;
    }
    
    .style-preview-content {
        padding: 0.75rem 0.85rem;
        gap: 0.5rem;
    }
    
    .preview-section-title {
        font-size: 0.6rem;
        margin-bottom: 0.4rem;
    }
    
    .preview-item-title {
        font-size: 0.6rem;
    }
    
    .preview-item-company {
        font-size: 0.55rem;
    }
    
    .preview-skill {
        font-size: 0.5rem;
        padding: 0.15rem 0.35rem;
    }
    
    .style-label {
        padding: 0.5rem 0.6rem;
    }
    
    .style-name {
        font-size: 0.8rem;
    }
    
    .style-desc {
        font-size: 0.6rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .logo {
        font-size: 1.15rem;
        gap: 0.5rem;
    }

    .logo-img {
        max-height: 50px;
        max-width: 150px;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: left center;
        flex-shrink: 0;
    }

    .section {
        padding: 1.5rem 0;
        min-height: auto;
    }

    .features {
        margin-top: 2rem;
    }

    .stats-section,
    .how-it-works,
    .testimonials,
    .cta-section,
    .benefits-section,
    .industry-features,
    .success-metrics,
    .faq-section,
    .integration-section,
    .coverletter-info-section,
    .coverletter-features,
    .features {
        padding: 2rem 0;
    }

    .logo-slider-section {
        padding: 1.5rem 0;
        margin: 1rem 0;
    }

    .logo-slider-section::before,
    .logo-slider-section::after {
        width: 40px;
    }

    .logo-slider-track {
        gap: 1.5rem;
        animation-duration: 20s;
    }

    .logo-slide {
        padding: 0.5rem 0.75rem;
    }

    .logo-img-slider {
        height: 35px;
        max-width: 80px;
    }

    .resume-counter-section {
        padding: 1rem 0;
        margin: -0.75rem 0 0 0;
    }

    .counter-content {
        gap: 0.5rem;
        margin-top: -30px !important;
    }

    .speedometer-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .speedometer-icon::before {
        width: 26px;
        height: 26px;
        border-width: 2.5px;
        top: 5px;
        left: 7px;
    }

    .speedometer-icon::after {
        width: 2.5px;
        height: 13px;
        bottom: 10px;
    }

    .speedometer-pivot {
        width: 5px;
        height: 5px;
        bottom: 8px;
    }

    .counter-number {
        font-size: 1.75rem;
    }

    .counter-text {
        font-size: 1.1rem;
    }

    .step-card {
        padding: 1rem;
    }
}

/* Extra small screens - 480px and below */
@media (max-width: 480px) {
    .speedometer-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .speedometer-icon::before {
        width: 22px;
        height: 22px;
        border-width: 2px;
        top: 4px;
        left: 7px;
    }

    .speedometer-icon::after {
        width: 2px;
        height: 11px;
        bottom: 9px;
    }

    .speedometer-pivot {
        width: 4px;
        height: 4px;
        bottom: 7px;
    }

    .counter-content {
        gap: 0.4rem;
        margin-top: -25px !important;
    }

    .counter-number {
        font-size: 1.5rem;
    }

    .counter-text {
        font-size: 1rem;
    }

    .step-image {
        height: 100px;
        margin-bottom: 1rem;
    }

    .step-card h3 {
        font-size: 1rem;
    }

    .step-card p {
        font-size: 0.85rem;
    }
    
    /* Standardize all card subtext sizes in small mobile */
    .feature-card p,
    .testimonial-content p,
    .testimonial-author span,
    .job-description,
    .job-posted,
    .job-detail-item,
    .analysis-card p,
    .recommendation-item {
        font-size: 0.85rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-image {
        height: 120px;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        flex-direction: row;
        gap: 1rem;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .analysis-card {
        padding: 1rem;
    }

    .style-option {
        padding: 0.75rem;
    }

    .style-name {
        font-size: 1rem;
    }

    .style-desc {
        font-size: 0.7rem;
    }

    .cta-text h2 {
        font-size: 1.75rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.footer-logo-img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: contain;
    object-position: center;
}

.footer-logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: -0.01em;
}

.footer-description {
    color: rgba(250, 248, 243, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 248, 243, 0.1);
    border: 1px solid rgba(250, 248, 243, 0.2);
    border-radius: 8px;
    color: var(--cream);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.footer-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(250, 248, 243, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-light);
    padding-left: 15px;
}

.footer-link:hover::before {
    width: 8px;
    background: var(--primary-light);
}

.footer-newsletter {
    max-width: 300px;
}

.newsletter-text {
    color: rgba(250, 248, 243, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(250, 248, 243, 0.2);
    border-radius: 8px;
    background: rgba(250, 248, 243, 0.05);
    color: var(--cream);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.newsletter-input::placeholder {
    color: rgba(250, 248, 243, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.newsletter-btn {
    padding: 0.875rem 1.5rem;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.newsletter-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 248, 243, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(250, 248, 243, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom-link {
    color: rgba(250, 248, 243, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--primary-light);
}

.footer-separator {
    color: rgba(250, 248, 243, 0.3);
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-logo-img {
        width: 90px;
        height: 90px;
        object-fit: contain;
        object-position: center;
        flex-shrink: 0;
    }

    .footer-logo {
        gap: 0.65rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 4rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-logo-img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        object-position: center;
        flex-shrink: 0;
    }

    .footer-logo {
        gap: 0.6rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
    }

    .footer-logo-text {
        font-size: 1.25rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-input {
        flex: 1;
    }

    .newsletter-btn {
        white-space: nowrap;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .footer-bottom-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-newsletter {
        grid-column: 1;
    }

    .footer-logo {
        margin-bottom: 1.25rem;
    }

    .footer-logo-img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        object-position: center;
    }

    .footer-logo-text {
        font-size: 1.15rem;
    }

    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links {
        gap: 0.625rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .newsletter-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .newsletter-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
        width: 100%;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .copyright {
        font-size: 0.8rem;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .footer-bottom-link {
        font-size: 0.8rem;
    }

    .footer-separator {
        font-size: 0.8rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- NEW HERO VISUAL DASHBOARD STYLES --- */
.newherovisual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 3rem 0;
    margin: 0 auto;
    overflow: hidden;
}

.hero-dashboard-image {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    filter: brightness(1) contrast(1) saturate(1);
}

.hero-dashboard-image:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    filter: brightness(1.02) contrast(1.05) saturate(1.1);
}

/* Responsive styles for hero dashboard image */
@media (max-width: 1024px) {
    .newherovisual {
        padding: 2rem 0;
    }
    
    .hero-dashboard-image {
        max-width: 100%;
        padding: 0 1.5rem;
        border-radius: 14px;
    }
}

@media (max-width: 768px) {
    .newherovisual {
        padding: 1.5rem 0;
    }

    .hero-dashboard-image {
        max-width: 100%;
        padding: 0 1rem;
        border-radius: 12px;
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.12),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    
    .hero-dashboard-image:hover {
        transform: translateY(-2px);
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .newherovisual {
        padding: 1rem 0;
    }
    
    .hero-dashboard-image {
        padding: 0 0.75rem;
        border-radius: 10px;
    }
}

/* ============================================
   PDF EXPORT STYLES - ATS-Friendly Formatting
   ============================================ */

/* PDF Export Mode - Optimized for ATS */
.resume-preview.pdf-export-mode {
    width: 8.5in !important;
    max-width: 8.5in !important;
    min-height: 11in;
    padding: 0.75in !important;
    margin: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 11pt !important;
    line-height: 1.5 !important;
    color: #000000 !important;
    page-break-inside: avoid;
    overflow: visible !important;
    position: relative;
    font-family: 'Inter', Arial, sans-serif !important;
}

/* Reset all margins and padding for PDF */
.resume-preview.pdf-export-mode * {
    box-sizing: border-box !important;
}

/* Header Section */
.resume-preview.pdf-export-mode .resume-header {
    border-bottom: 2px solid #0066cc !important;
    padding-bottom: 0.5rem !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
    page-break-after: avoid;
    width: 100% !important;
}

.resume-preview.pdf-export-mode .resume-header h1 {
    font-size: 22pt !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin: 0 0 0.4rem 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    page-break-after: avoid;
    font-family: 'Inter', Arial, sans-serif !important;
}

/* Contact Information - Fixed Display */
.resume-preview.pdf-export-mode .resume-contact {
    display: block !important;
    font-size: 10pt !important;
    color: #555555 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.5 !important;
    width: 100% !important;
}

.resume-preview.pdf-export-mode .resume-contact span {
    display: inline !important;
    color: #555555 !important;
    white-space: nowrap !important;
    font-size: 10pt !important;
    margin: 0 !important;
    padding: 0 !important;
}

.resume-preview.pdf-export-mode .resume-contact span:not(:last-child)::after {
    content: " | " !important;
    margin: 0 0.25rem !important;
    color: #555555 !important;
    display: inline !important;
}

/* Section Styling */
.resume-preview.pdf-export-mode .resume-section {
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
    padding: 0 !important;
    page-break-inside: avoid;
    width: 100% !important;
}

.resume-preview.pdf-export-mode .resume-section-title {
    font-size: 12pt !important;
    font-weight: 600 !important;
    color: #0066cc !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border-bottom: 1px solid #0066cc !important;
    padding-bottom: 0.25rem !important;
    margin-bottom: 0.75rem !important;
    margin-top: 1rem !important;
    page-break-after: avoid;
    font-family: 'Inter', Arial, sans-serif !important;
    line-height: 1.3 !important;
}

.resume-preview.pdf-export-mode .resume-section p {
    font-size: 11pt !important;
    line-height: 1.6 !important;
    color: #000000 !important;
    margin: 0.5rem 0 !important;
    padding: 0 !important;
}

/* Experience, Education, Certification Items */
.resume-preview.pdf-export-mode .experience-item,
.resume-preview.pdf-export-mode .education-item,
.resume-preview.pdf-export-mode .certification-item {
    margin-bottom: 0.75rem !important;
    margin-top: 0 !important;
    padding: 0 !important;
    page-break-inside: avoid;
    width: 100% !important;
}

.resume-preview.pdf-export-mode .item-title {
    font-size: 11pt !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin: 0 0 0.2rem 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    font-family: 'Inter', Arial, sans-serif !important;
}

.resume-preview.pdf-export-mode .item-subtitle {
    font-size: 10pt !important;
    color: #0066cc !important;
    font-weight: 500 !important;
    margin: 0 0 0.2rem 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}

.resume-preview.pdf-export-mode .item-date {
    font-size: 10pt !important;
    color: #666666 !important;
    margin: 0 0 0.4rem 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}

/* Lists in Experience Items */
.resume-preview.pdf-export-mode .experience-item ul,
.resume-preview.pdf-export-mode .experience-item ol {
    margin: 0.4rem 0 !important;
    padding-left: 1.5rem !important;
    list-style-type: disc !important;
    list-style-position: outside !important;
}

.resume-preview.pdf-export-mode .experience-item li {
    font-size: 11pt !important;
    line-height: 1.5 !important;
    color: #000000 !important;
    margin-bottom: 0.3rem !important;
    padding: 0 !important;
}

.resume-preview.pdf-export-mode .experience-item p {
    font-size: 11pt !important;
    line-height: 1.6 !important;
    color: #000000 !important;
    margin: 0.4rem 0 !important;
    padding: 0 !important;
}

/* Skills Display */
.resume-preview.pdf-export-mode .skills-display {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.4rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.resume-preview.pdf-export-mode .skill-badge {
    background: #0066cc !important;
    color: #ffffff !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 3px !important;
    font-size: 10pt !important;
    font-weight: 500 !important;
    display: inline-block !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* Page Break Controls */
.resume-preview.pdf-export-mode h1,
.resume-preview.pdf-export-mode h2,
.resume-preview.pdf-export-mode h3 {
    page-break-after: avoid !important;
    orphans: 3 !important;
    widows: 3 !important;
}

.resume-preview.pdf-export-mode .experience-item:last-child,
.resume-preview.pdf-export-mode .education-item:last-child,
.resume-preview.pdf-export-mode .certification-item:last-child {
    margin-bottom: 0 !important;
}

/* Fix for all resume styles in PDF */
.resume-preview.pdf-export-mode.resume-style-modern .resume-header,
.resume-preview.pdf-export-mode.resume-style-classic .resume-header,
.resume-preview.pdf-export-mode.resume-style-executive .resume-header,
.resume-preview.pdf-export-mode.resume-style-minimal .resume-header,
.resume-preview.pdf-export-mode.resume-style-creative .resume-header,
.resume-preview.pdf-export-mode.resume-style-technical .resume-header {
    border-bottom: 2px solid #0066cc !important;
    padding-bottom: 0.5rem !important;
    margin-bottom: 1rem !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.resume-preview.pdf-export-mode.resume-style-modern .resume-header h1,
.resume-preview.pdf-export-mode.resume-style-classic .resume-header h1,
.resume-preview.pdf-export-mode.resume-style-executive .resume-header h1,
.resume-preview.pdf-export-mode.resume-style-minimal .resume-header h1,
.resume-preview.pdf-export-mode.resume-style-creative .resume-header h1,
.resume-preview.pdf-export-mode.resume-style-technical .resume-header h1 {
    font-size: 22pt !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin-bottom: 0.4rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.resume-preview.pdf-export-mode.resume-style-modern .resume-section-title,
.resume-preview.pdf-export-mode.resume-style-classic .resume-section-title,
.resume-preview.pdf-export-mode.resume-style-executive .resume-section-title,
.resume-preview.pdf-export-mode.resume-style-minimal .resume-section-title,
.resume-preview.pdf-export-mode.resume-style-creative .resume-section-title,
.resume-preview.pdf-export-mode.resume-style-technical .resume-section-title {
    font-size: 12pt !important;
    font-weight: 600 !important;
    color: #0066cc !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid #0066cc !important;
    padding-bottom: 0.25rem !important;
    margin-bottom: 0.75rem !important;
    margin-top: 1rem !important;
}

/* Executive style special handling */
.resume-preview.pdf-export-mode.resume-style-executive .resume-header {
    background: #ffffff !important;
    color: #000000 !important;
    padding: 0 !important;
}

.resume-preview.pdf-export-mode.resume-style-executive .resume-contact {
    color: #555555 !important;
}

.resume-preview.pdf-export-mode.resume-style-executive .resume-contact span {
    color: #555555 !important;
}

/* Additional PDF fixes - Ensure text doesn't break incorrectly */
.resume-preview.pdf-export-mode {
    word-spacing: normal !important;
    letter-spacing: normal !important;
}

.resume-preview.pdf-export-mode .resume-contact span:empty {
    display: none !important;
}

/* Ensure proper text rendering in PDF */
.resume-preview.pdf-export-mode,
.resume-preview.pdf-export-mode * {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

/* Fix for any hidden elements that should be visible in PDF */
.resume-preview.pdf-export-mode .resume-section[style*="display: none"] {
    display: none !important;
}

.resume-preview.pdf-export-mode .resume-section:not([style*="display: none"]) {
    display: block !important;
}

/* ============================================
   PDF EXPORT CONTAINER - New Separate Classes
   ============================================ */

#pdfExportContainer {
    position: absolute !important;
    left: -9999px !important;
    top: 0 !important;
    width: 8.5in !important;
    min-width: 8.5in !important;
    max-width: 8.5in !important;
    background: #ffffff !important;
    z-index: -9999 !important;
    overflow: visible !important;
    visibility: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    display: block !important;
    height: auto !important;
    transform: none !important;
}

#pdfResumePreview {
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    text-align: left !important;
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
}

/* PDF Resume Preview - Exact Replication of resume-preview resume-style-modern */
.pdf-resume-preview {
    width: 8.5in !important;
    max-width: 8.5in !important;
    min-height: 11in !important;
    padding: 0.5in !important;
    margin: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 11pt !important;
    line-height: 1.5 !important;
    color: #000000 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    overflow: visible !important;
    position: relative !important;
    box-sizing: border-box !important;
    text-align: left !important;
    display: block !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
    transform: none !important;
    left: 0 !important;
    top: 0 !important;
}

.pdf-resume-preview * {
    box-sizing: border-box !important;
    font-family: Arial, Helvetica, sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.pdf-resume-preview > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.pdf-resume-preview .resume-header:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Header Section */
.pdf-resume-preview .resume-header {
    border-bottom: 2px solid #0066cc !important;
    padding-bottom: 0.5rem !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    page-break-after: avoid;
    text-align: left !important;
}

.pdf-resume-preview .resume-header h1 {
    font-size: 22pt !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin: 0 0 0.4rem 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    page-break-after: avoid;
    font-family: 'Inter', Arial, sans-serif !important;
}

/* Contact Information */
.pdf-resume-preview .resume-contact {
    display: block !important;
    font-size: 10pt !important;
    color: #555555 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.5 !important;
    width: 100% !important;
}

.pdf-resume-preview .resume-contact span {
    display: inline !important;
    color: #555555 !important;
    white-space: nowrap !important;
    font-size: 10pt !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pdf-resume-preview .resume-contact span:not(:last-child)::after {
    content: " | " !important;
    margin: 0 0.25rem !important;
    color: #555555 !important;
    display: inline !important;
}

/* Section Styling */
.pdf-resume-preview .resume-section {
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
    padding: 0 !important;
    page-break-inside: avoid;
    width: 100% !important;
    display: block !important;
}

.pdf-resume-preview .resume-section-title {
    font-size: 12pt !important;
    font-weight: 600 !important;
    color: #0066cc !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border-bottom: 1px solid #0066cc !important;
    padding-bottom: 0.25rem !important;
    margin-bottom: 0.75rem !important;
    margin-top: 1rem !important;
    page-break-after: avoid;
    font-family: 'Inter', Arial, sans-serif !important;
    line-height: 1.3 !important;
}

.pdf-resume-preview .resume-section p {
    font-size: 11pt !important;
    line-height: 1.6 !important;
    color: #000000 !important;
    margin: 0.5rem 0 !important;
    padding: 0 !important;
}

/* Experience, Education, Certification Items */
.pdf-resume-preview .experience-item,
.pdf-resume-preview .education-item,
.pdf-resume-preview .certification-item {
    margin-bottom: 0.75rem !important;
    margin-top: 0 !important;
    padding: 0 !important;
    page-break-inside: avoid;
    width: 100% !important;
    display: block !important;
}

.pdf-resume-preview .item-title {
    font-size: 11pt !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin: 0 0 0.2rem 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    font-family: 'Inter', Arial, sans-serif !important;
}

.pdf-resume-preview .item-subtitle {
    font-size: 10pt !important;
    color: #0066cc !important;
    font-weight: 500 !important;
    margin: 0 0 0.2rem 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}

.pdf-resume-preview .item-date {
    font-size: 10pt !important;
    color: #666666 !important;
    margin: 0 0 0.4rem 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}

/* Lists in Experience Items */
.pdf-resume-preview .experience-item ul,
.pdf-resume-preview .experience-item ol {
    margin: 0.4rem 0 !important;
    padding-left: 1.5rem !important;
    list-style-type: disc !important;
    list-style-position: outside !important;
}

.pdf-resume-preview .experience-item li {
    font-size: 11pt !important;
    line-height: 1.5 !important;
    color: #000000 !important;
    margin-bottom: 0.3rem !important;
    padding: 0 !important;
}

.pdf-resume-preview .experience-item p {
    font-size: 11pt !important;
    line-height: 1.6 !important;
    color: #000000 !important;
    margin: 0.4rem 0 !important;
    padding: 0 !important;
}

/* Skills Display */
.pdf-resume-preview .skills-display {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.4rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.pdf-resume-preview .skill-badge {
    background: #0066cc !important;
    color: #ffffff !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 3px !important;
    font-size: 10pt !important;
    font-weight: 500 !important;
    display: inline-block !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* Page Break Controls */
.pdf-resume-preview h1,
.pdf-resume-preview h2,
.pdf-resume-preview h3 {
    page-break-after: avoid !important;
    orphans: 3 !important;
    widows: 3 !important;
}

.pdf-resume-preview .experience-item:last-child,
.pdf-resume-preview .education-item:last-child,
.pdf-resume-preview .certification-item:last-child {
    margin-bottom: 0 !important;
}

/* Modern Style Specific */
.pdf-resume-style-modern .resume-header {
    border-bottom: 2px solid #0066cc !important;
    padding-bottom: 0.5rem !important;
    margin-bottom: 1rem !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.pdf-resume-style-modern .resume-header h1 {
    font-size: 22pt !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin-bottom: 0.4rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.pdf-resume-style-modern .resume-section-title {
    font-size: 12pt !important;
    font-weight: 600 !important;
    color: #0066cc !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid #0066cc !important;
    padding-bottom: 0.25rem !important;
    margin-bottom: 0.75rem !important;
    margin-top: 1rem !important;
}

/* Defined Style PDF */
.pdf-resume-style-defined {
    display: block !important;
}

.pdf-resume-style-defined .resume-header {
    border-bottom: 2px solid #e0e0e0 !important;
    padding-bottom: 0.5rem !important;
    margin-bottom: 1rem !important;
    background: transparent !important;
}

.pdf-resume-style-defined .resume-section-title {
    font-size: 11pt !important;
    font-weight: 600 !important;
    color: #0066cc !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid #e0e0e0 !important;
    padding-bottom: 0.25rem !important;
    margin-bottom: 0.75rem !important;
}

/* Visionary Style PDF */
.pdf-resume-style-visionary {
    background: #fef5e7 !important;
}

.pdf-resume-style-visionary .resume-header {
    background: #d4a574 !important;
    color: #ffffff !important;
    padding: 0.75rem !important;
    margin: -0.5in -0.5in 1rem -0.5in !important;
    border-bottom: none !important;
}

.pdf-resume-style-visionary .resume-header h1 {
    color: #ffffff !important;
}

.pdf-resume-style-visionary .resume-contact span {
    color: rgba(255, 255, 255, 0.95) !important;
}

.pdf-resume-style-visionary .resume-section-title {
    color: #8b5a3c !important;
    border-bottom: 2px solid #d4a574 !important;
}

/* Confetti Style PDF */
.pdf-resume-style-confetti {
    background: #ffffff !important;
}

.pdf-resume-style-confetti .resume-header {
    border-bottom: 1px solid #e0e0e0 !important;
    text-align: center !important;
}

.pdf-resume-style-confetti .resume-contact {
    justify-content: center !important;
}

.pdf-resume-style-confetti .resume-section-title {
    color: #0066cc !important;
    border-bottom: none !important;
    padding-left: 1.5rem !important;
    position: relative !important;
}

.pdf-resume-style-confetti .resume-section-title::before {
    content: '01' !important;
    position: absolute !important;
    left: 0 !important;
    font-size: 10pt !important;
    color: #0066cc !important;
    font-weight: 700 !important;
}

/* Swiss Minimalist PDF */
.pdf-resume-style-swiss-minimal .resume-header {
    border-top: 8px solid #000 !important;
    padding-top: 1rem !important;
    text-align: left !important;
}

.pdf-resume-style-swiss-minimal .resume-header h1 {
    font-size: 2.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: -2px !important;
    font-weight: 800 !important;
    color: #000 !important;
}

.pdf-resume-style-swiss-minimal .resume-contact {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #666 !important;
}

.pdf-resume-style-swiss-minimal .resume-section-title {
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    border-bottom: 2px solid #000 !important;
    color: #000 !important;
    letter-spacing: 1px !important;
}

/* Glassmorphism Dark PDF */
.pdf-resume-style-glass-dark {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%) !important;
}

.pdf-resume-style-glass-dark .resume-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
    color: white !important;
    padding: 0.75rem !important;
    margin: -0.5in -0.5in 1rem -0.5in !important;
}

.pdf-resume-style-glass-dark .resume-header h1 {
    color: #f8fafc !important;
    font-weight: 800 !important;
}

.pdf-resume-style-glass-dark .resume-contact span {
    color: rgba(255, 255, 255, 0.9) !important;
}

.pdf-resume-style-glass-dark .resume-section-title {
    color: #8b5cf6 !important;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3) !important;
}

.pdf-resume-style-glass-dark .item-title,
.pdf-resume-style-glass-dark .item-subtitle {
    color: #e2e8f0 !important;
}

/* Neo-Brutalism PDF */
.pdf-resume-style-neo-brutalism {
    background: #fdba74 !important;
}

.pdf-resume-style-neo-brutalism .resume-header {
    background: #fdba74 !important;
    border-bottom: 3px solid #000000 !important;
    padding: 0.75rem !important;
    margin: -0.5in -0.5in 1rem -0.5in !important;
    box-shadow: 0 4px 0px #000000 !important;
}

.pdf-resume-style-neo-brutalism .resume-header h1 {
    color: #000000 !important;
    font-weight: 900 !important;
}

.pdf-resume-style-neo-brutalism .resume-contact span {
    color: #1f2937 !important;
    font-weight: 700 !important;
}

.pdf-resume-style-neo-brutalism .resume-section-title {
    color: #000000 !important;
    border-bottom: 2px solid #000000 !important;
    font-weight: 900 !important;
}

.pdf-resume-style-neo-brutalism .skill-badge {
    background: #000000 !important;
    color: #fdba74 !important;
    border: 2px solid #000000 !important;
    font-weight: 900 !important;
}

/* Corporate Pro PDF */
.pdf-resume-style-corporate-pro .resume-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%) !important;
    color: white !important;
    padding: 0.75rem !important;
    margin: -0.5in -0.5in 1rem -0.5in !important;
}

.pdf-resume-style-corporate-pro .resume-header h1 {
    color: #ffffff !important;
    font-weight: 800 !important;
}

.pdf-resume-style-corporate-pro .resume-contact span {
    color: rgba(255, 255, 255, 0.95) !important;
}

.pdf-resume-style-corporate-pro .resume-section-title {
    color: #1e3a8a !important;
    border-bottom: 2px solid #1e3a8a !important;
}

.pdf-resume-style-corporate-pro .resume-section-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 40px !important;
    height: 2px !important;
    background: #d97706 !important;
}

/* Navy Professional PDF */
.pdf-resume-style-navy .resume-header {
    background: #1e3a8a !important;
    color: white !important;
    padding: 0.75rem !important;
    margin: -0.5in -0.5in 1rem -0.5in !important;
    text-align: center !important;
}

.pdf-resume-style-navy .resume-header h1 {
    color: white !important;
}

.pdf-resume-style-navy .resume-contact span {
    color: #93c5fd !important;
}

.pdf-resume-style-navy .resume-section-title {
    color: #1e3a8a !important;
    border-left: 5px solid #1e3a8a !important;
    padding-left: 10px !important;
}

/* The Developer PDF */
.pdf-resume-style-mono .resume-header {
    border-bottom: 1px dashed #333 !important;
}

.pdf-resume-style-mono .resume-header h1 {
    font-family: 'Courier New', monospace !important;
}

.pdf-resume-style-mono .resume-contact span {
    color: #16a34a !important;
}

.pdf-resume-style-mono .resume-section-title {
    background: #f3f4f6 !important;
    color: #16a34a !important;
    padding: 2px 8px !important;
}

/* Vogue Elegant PDF */
.pdf-resume-style-elegant .resume-header {
    text-align: center !important;
}

.pdf-resume-style-elegant .resume-header h1 {
    font-style: italic !important;
    font-family: 'Georgia', serif !important;
}

.pdf-resume-style-elegant .resume-section-title {
    color: #d4af37 !important;
    text-align: center !important;
    text-transform: uppercase !important;
}

/* Dark Sidebar PDF */
.pdf-resume-style-sidebar-dark .resume-header {
    border-bottom: 1px solid #eee !important;
}

.pdf-resume-style-sidebar-dark .resume-section-title {
    color: #334155 !important;
    border-bottom: 2px solid #e2e8f0 !important;
}

/* Pill Headers PDF */
.pdf-resume-style-pill .resume-header h1 {
    color: #374151 !important;
}

.pdf-resume-style-pill .resume-contact {
    color: #f43f5e !important;
}

.pdf-resume-style-pill .resume-section-title {
    background: #374151 !important;
    color: white !important;
    padding: 6px 15px !important;
    border-radius: 50px !important;
}

/* Green Accent PDF */
.pdf-resume-style-accent {
    padding-left: 1.5rem !important;
    position: relative !important;
}

.pdf-resume-style-accent::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 4px !important;
    background: #10b981 !important;
}

.pdf-resume-style-accent .resume-section-title {
    color: #10b981 !important;
    text-transform: uppercase !important;
}

/* Boxed Grid PDF */
.pdf-resume-style-boxed {
    background: #f8fafc !important;
}

.pdf-resume-style-boxed .resume-header {
    background: white !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    text-align: center !important;
}

.pdf-resume-style-boxed .resume-section {
    background: white !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 1rem !important;
}

.pdf-resume-style-boxed .resume-section-title {
    color: #64748b !important;
    border-bottom: 1px solid #eee !important;
}

/* Timeline PDF */
.pdf-resume-style-timeline .experience-item,
.pdf-resume-style-timeline .education-item,
.pdf-resume-style-timeline .certification-item {
    border-left: 2px solid #cbd5e1 !important;
    padding-left: 1rem !important;
    position: relative !important;
}

.pdf-resume-style-timeline .experience-item::before,
.pdf-resume-style-timeline .education-item::before,
.pdf-resume-style-timeline .certification-item::before {
    content: '' !important;
    position: absolute !important;
    left: -4px !important;
    top: 0 !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #3b82f6 !important;
}

.pdf-resume-style-timeline .resume-section-title {
    color: #3b82f6 !important;
    font-weight: 300 !important;
}

/* High Voltage PDF */
.pdf-resume-style-contrast .resume-header {
    background: #000 !important;
    color: #facc15 !important;
    padding: 0.75rem !important;
    margin: -0.5in -0.5in 1rem -0.5in !important;
}

.pdf-resume-style-contrast .resume-header h1 {
    color: #facc15 !important;
    text-transform: uppercase !important;
}

.pdf-resume-style-contrast .resume-contact span {
    color: #666 !important;
}

.pdf-resume-style-contrast .resume-section-title {
    text-transform: uppercase !important;
    border-bottom: 4px solid #facc15 !important;
    font-weight: 800 !important;
}

/* Authority Style PDF */
.pdf-resume-style-authority {
    background: #1a1a2e !important;
    color: #ffffff !important;
}

.pdf-resume-style-authority .resume-header {
    background: #0f3460 !important;
    color: #ffffff !important;
    padding: 0.75rem !important;
    margin: -0.5in -0.5in 1rem -0.5in !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.pdf-resume-style-authority .resume-header h1 {
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.pdf-resume-style-authority .resume-contact span {
    color: rgba(255, 255, 255, 0.9) !important;
}

.pdf-resume-style-authority .resume-section-title {
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    text-transform: uppercase !important;
}

.pdf-resume-style-authority .item-title,
.pdf-resume-style-authority p,
.pdf-resume-style-authority li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.pdf-resume-style-authority .skill-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

/* Popular Style PDF */
.pdf-resume-style-popular {
    background: #faf5ff !important;
}

.pdf-resume-style-popular .resume-header {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%) !important;
    color: #4c1d95 !important;
    padding: 0.75rem !important;
    margin: -0.5in -0.5in 1rem -0.5in !important;
    border-bottom: none !important;
}

.pdf-resume-style-popular .resume-header h1 {
    color: #4c1d95 !important;
}

.pdf-resume-style-popular .resume-contact span {
    color: #6b21a8 !important;
}

.pdf-resume-style-popular .resume-section-title {
    color: #7c3aed !important;
    border-bottom: 2px solid #e9d5ff !important;
}

.pdf-resume-style-popular .item-subtitle {
    color: #7c3aed !important;
}

.pdf-resume-style-popular .skill-badge {
    background: #a78bfa !important;
    color: #4c1d95 !important;
}

/* Ensure text rendering */
.pdf-resume-preview,
.pdf-resume-preview * {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

/* Hide empty sections */
.pdf-resume-preview .resume-contact span:empty {
    display: none !important;
}

/* Ensure all visible sections are displayed */
.pdf-resume-preview .resume-section[style*="display: none"] {
    display: none !important;
}

.pdf-resume-preview .resume-section:not([style*="display: none"]) {
    display: block !important;
}

/* ========== Talent Hub Auth Modals ========== */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.auth-modal[style*="display: flex"] {
    display: flex !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.auth-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.auth-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid #f0f7ff;
}

.auth-modal-header h2 {
    font-size: 1.75rem;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
}

.auth-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.auth-modal-close:hover {
    background: #f0f7ff;
    color: var(--primary);
    transform: rotate(90deg);
}

.auth-form-group {
    margin-bottom: 1.5rem;
    padding: 0 2rem;
}

.auth-form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.auth-form-group input,
.auth-form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.auth-form-group input:focus,
.auth-form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.auth-form-actions {
    padding: 1.5rem 2rem 2rem;
}

.auth-btn-primary {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.auth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.auth-btn-primary:active {
    transform: translateY(0);
}

.auth-switch-text {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.auth-switch-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-switch-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Ensure modal displays correctly */
.auth-modal[style*="display: flex"],
.auth-modal.show,
.header-auth-modal[style*="display: flex"],
.header-auth-modal.show {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Header auth modals specific styling */
.header-auth-modal {
    z-index: 10001 !important;
}

.header-auth-modal .auth-modal-content {
    animation: slideUp 0.3s ease;
}

.auth-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10001;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
}

.auth-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.auth-notification-success {
    background: linear-gradient(135deg, #06a77d 0%, #048a6a 100%);
}

.auth-notification-error {
    background: linear-gradient(135deg, #e63946 0%, #c72a35 100%);
}

.auth-notification-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Enhanced Blue Styling for Talent Hub - Consistent Theme */
.talent-hub-container,
.featured-container,
.post-resume-container,
.profile-container,
.admin-container {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 50%, #d6e9ff 100%);
    min-height: calc(100vh - 80px);
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 80px;
}

.post-resume-container {
    max-width: 900px;
}

.profile-container {
    max-width: 1200px;
}

/* Headers - Consistent Blue Theme for All Talent Hub Pages */
.talent-hub-header,
.featured-header,
.post-resume-header,
.profile-header,
.admin-header {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.talent-hub-header h1,
.featured-header h1,
.post-resume-header h1,
.profile-header h1,
.admin-header h1 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.talent-hub-header p,
.featured-header p,
.post-resume-header p,
.admin-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Cards and Containers - Blue Theme */
.search-filters-container,
.resume-form,
.featured-card,
.candidate-card,
.sidebar-card,
.admin-section,
.users-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.search-input {
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.search-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Cards and Containers - Blue Theme */
.search-filters-container,
.resume-form,
.featured-card,
.candidate-card,
.sidebar-card,
.admin-section,
.users-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s;
}

.candidate-card:hover,
.featured-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    transform: translateY(-8px);
}

.skill-tag,
.skill-tag-featured,
.skill-tag-input,
.skill-tag-large {
    background: linear-gradient(135deg, #e6f2ff 0%, #d6e9ff 100%);
    border: 1px solid rgba(0, 102, 204, 0.3);
    color: var(--primary-dark);
}

.skill-tag-featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
}

/* All Talent Hub Buttons - Blue Theme */
.btn-view-profile,
.btn-view-profile-featured,
.btn-contact,
.btn-contact-featured,
.btn-submit,
.btn-cta,
.btn-add-skill,
.btn-add-experience,
.btn-add-certification,
.btn-feature,
.btn-public,
.btn-download-cv {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    transition: all 0.3s;
}

.btn-view-profile:hover,
.btn-view-profile-featured:hover,
.btn-submit:hover,
.btn-cta:hover,
.btn-add-skill:hover,
.btn-add-experience:hover,
.btn-add-certification:hover,
.btn-feature:hover,
.btn-public:hover,
.btn-download-cv:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.btn-contact,
.btn-contact-featured {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-contact:hover,
.btn-contact-featured:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

/* Featured Badge - Blue Theme */
.featured-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

/* CTA Section - Blue Theme */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.3);
}

.cta-section .btn-cta {
    background: white;
    color: var(--primary);
}

.cta-section .btn-cta:hover {
    background: #f0f7ff;
    transform: scale(1.05);
}

/* Info Banner - Blue Theme */
.info-banner {
    background: linear-gradient(135deg, #e6f2ff 0%, #d6e9ff 100%);
    border-left: 4px solid var(--primary);
}

/* Form Elements - Blue Theme */
.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.filter-select:focus,
.filter-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* File Upload - Blue Theme */
.file-upload-label:hover,
.file-upload-label.has-file {
    border-color: var(--primary);
    background: #f0f7ff;
}

/* Experience and Certification Entries - Blue Theme */
.experience-entry:hover,
.certification-entry:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
}

/* Stat Boxes - Blue Theme */
.stat-box,
.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 2px solid rgba(0, 102, 204, 0.1);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.08);
}

.stat-box:hover,
.stat-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.2);
}

.stat-box-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.25);
}

.stat-box-value {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Quick Stats Container - Blue Theme */
.quick-stats {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

/* Results Count - Blue Theme */
.results-count {
    background: white;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
    color: var(--primary-dark);
}

/* Contact Form - Blue Theme */
.contact-form {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.1);
}

.contact-note {
    background: #f0f7ff;
}

/* Profile Photo - Blue Theme */
.candidate-photo,
.featured-photo,
.profile-photo-large {
    border: 3px solid rgba(0, 102, 204, 0.2);
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.15);
}

.candidate-card:hover .candidate-photo,
.featured-card:hover .featured-photo {
    border-color: var(--primary);
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.25);
}

/* Admin Table - Blue Theme */
.admin-table th {
    background: #f9f9f9;
    color: #333;
}

.admin-table tr:hover {
    background: #f0f7ff;
}

/* Role Badges - Blue Theme */
.role-badge {
    border-radius: 12px;
}

.role-admin {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.role-recruiter {
    background: linear-gradient(135deg, #3385d6 0%, var(--primary) 100%);
    color: white;
}

.role-candidate {
    background: linear-gradient(135deg, #66a3e0 0%, #3385d6 100%);
    color: white;
}

/* Responsive adjustments for auth modals */
@media (max-width: 768px) {
    .auth-modal-content {
        width: 95%;
        max-width: none;
        border-radius: 12px;
    }
    
    .auth-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .auth-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .auth-form-group {
        padding: 0 1.5rem;
    }
    
    .auth-form-actions {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .auth-notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .auth-notification.show {
        transform: translateY(0);
    }
}

/* Talent Hub Container Styles - All Pages */
.talent-hub-container,
.talent-hub-home-container,
.featured-container,
.post-resume-container,
.profile-container,
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 50%, #d6e9ff 100%);
    min-height: calc(100vh - 80px);
}

.post-resume-container {
    max-width: 900px;
}

.profile-container {
    max-width: 1200px;
}

/* Responsive styles for Talent Hub pages */
@media (max-width: 768px) {
    .talent-hub-container,
    .talent-hub-home-container,
    .featured-container,
    .post-resume-container,
    .profile-container,
    .admin-container {
        padding: 1rem;
        margin-top: 80px;
    }
    
    .talent-hub-header,
    .featured-header,
    .post-resume-header,
    .admin-header {
        padding: 1.5rem;
    }
    
    .talent-hub-header h1,
    .featured-header h1,
    .post-resume-header h1,
    .admin-header h1 {
        font-size: 2rem;
    }
    
    .search-filters-container {
        padding: 1.5rem;
    }
    
    .search-bar {
        flex-direction: column;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }
    
    .candidates-grid,
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .resume-form {
        padding: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1.5rem 1rem;
    }
    
    .stat-box-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-box-value {
        font-size: 2rem;
    }
    
    .stat-box-label {
        font-size: 0.9rem;
    }
    
    .stats-header {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-header h2 {
        font-size: 1.5rem;
    }
    
    .stats-header p {
        font-size: 0.9rem;
    }
    
    .featured-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .admin-table {
        font-size: 0.85rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .talent-hub-container,
    .featured-container,
    .post-resume-container,
    .profile-container,
    .admin-container {
        padding: 0.75rem;
    }
    
    .talent-hub-header,
    .featured-header,
    .post-resume-header,
    .admin-header {
        padding: 1rem;
    }
    
    .talent-hub-header h1,
    .featured-header h1,
    .post-resume-header h1,
    .admin-header h1 {
        font-size: 1.75rem;
    }
    
    .search-filters-container,
    .resume-form {
        padding: 1rem;
    }
    
    .quick-stats,
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .candidate-actions,
    .featured-actions {
        flex-direction: column;
    }
    
    .btn-view-profile,
    .btn-contact,
    .btn-view-profile-featured,
    .btn-contact-featured {
        width: 100%;
    }
}

/* ============================================
   Talent Hub Preloader Styles (Unique IDs)
   ============================================ */

/* Preloader Overlay - Unique ID to avoid conflicts */
#th-preloader-overlay-2024 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 50%, #d6e9ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#th-preloader-overlay-2024[style*="display: none"] {
    display: none !important;
}

/* Preloader Container */
.th-preloader-container-2024 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

/* Preloader Spinner */
.th-preloader-spinner-2024 {
    position: relative;
    width: 80px;
    height: 80px;
}

.th-preloader-spinner-ring-2024 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #0066cc;
    border-radius: 50%;
    animation: th-preloader-spin-2024 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.th-preloader-spinner-ring-2024:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: #0066cc;
}

.th-preloader-spinner-ring-2024:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: #3385d6;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.th-preloader-spinner-ring-2024:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: #66a3e0;
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
}

.th-preloader-spinner-ring-2024:nth-child(4) {
    animation-delay: 0s;
    border-top-color: #4d94ff;
    width: 30%;
    height: 30%;
    top: 35%;
    left: 35%;
}

@keyframes th-preloader-spin-2024 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hide body content while preloader is active */
body:not([data-preloader-ready="true"]) {
    visibility: hidden;
    overflow: hidden;
}

body[data-preloader-ready="true"] {
    visibility: visible;
    overflow: auto;
}