/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --primary-blue: #0f4c97;
    --primary-hover: #123a72;
    --hero-dark: #0b2f5f;
    --accent-orange: #f97316;
    --accent-orange-hover: #ea580c;
    --bg-soft-blue: #eef7ff;
    --bg-light: #f5f8fc;
    --bg-card: #ffffff;
    --text-dark: #0f172a;
    --text-main: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --success-green: #16a34a;
    --soft-green: #ecfdf5;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-hero: 0 15px 35px rgba(0, 0, 0, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 999px;
}

/* ==========================================================================
   Base
   ========================================================================== */
body {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 15px;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    margin-top: 0;
    font-weight: 700;
}

p { margin-top: 0; margin-bottom: 15px; }
a { text-decoration: none; transition: all 0.2s ease; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.cb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cb-section { padding: 45px 0; }
.cb-bg-light { background-color: var(--bg-light); }
.cb-bg-soft { background-color: var(--bg-soft-blue); }
.cb-mb-large { margin-bottom: 60px; }
.cb-text-center { text-align: center; }
.cb-text-left { text-align: left; }
.cb-text-green { color: var(--success-green); font-weight: 700; }

.cb-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.cb-section-title {
    font-size: 28px;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.cb-section .cb-section-title.cb-text-center { margin-bottom: 30px; }

.cb-view-all-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
}
.cb-view-all-link:hover { color: var(--primary-hover); text-decoration: underline; }

/* ==========================================================================
   Hero
   ========================================================================== */
.cb-home-hero {
    position: relative;
    background-color: var(--primary-blue);
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 90px 0 70px;
    overflow: hidden;
}

.cb-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(11, 47, 95, 0.4), var(--primary-blue) 70%);
}

.cb-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cb-hero-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.cb-hero-content {
    flex: 6;
    text-align: left;
}

.cb-hero-dashboard {
    flex: 4;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-hero);
}

.cb-hero-title {
    color: #ffffff;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.cb-hero-title span { color: #60a5fa; }

.cb-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 600px;
    margin-bottom: 30px;
    font-weight: 400;
}

/* ==========================================================================
   Search panel
   ========================================================================== */
.cb-hero-search-panel {
    background: #ffffff;
    padding: 10px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-bottom: 25px;
    display: inline-block;
    width: 100%;
}

.cb-hero-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cb-search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: #ffffff;
}

.cb-search-icon {
    font-size: 15px;
    color: var(--text-muted);
    margin-right: 8px;
}

.cb-search-input-group input,
.cb-search-select {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    color: var(--text-dark);
    padding: 10px 0;
    font-family: inherit;
    background: transparent;
}

.cb-search-input-group input::placeholder { color: #94a3b8; }
.cb-search-select { cursor: pointer; color: var(--text-main); }

.cb-search-divider {
    width: 1px;
    height: 25px;
    background-color: var(--border-color);
}

.cb-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cb-action-label {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 600;
}

/* ==========================================================================
   Live Dashboard Card
   ========================================================================== */
.cb-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cb-dash-title {
    font-size: 18px;
    margin: 0;
    color: var(--text-dark);
}

.cb-pulse-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--soft-green);
    color: var(--success-green);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.cb-pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.cb-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.cb-dash-stat-box {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.cb-stat-val { font-size: 20px; font-weight: 800; color: var(--primary-blue); margin-bottom: 2px; }
.cb-stat-lbl { font-size: 12px; color: var(--text-muted); font-weight: 600; }

.cb-dash-sub { font-size: 14px; margin: 0 0 12px 0; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.cb-dash-job-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }

.cb-dash-job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: #ffffff;
    transition: border-color 0.2s;
}

.cb-dash-job-item:hover { border-color: var(--primary-blue); }

.cb-dash-job-info h5 { margin: 0 0 3px 0; font-size: 14px; color: var(--text-dark); }
.cb-dash-job-info p { margin: 0; font-size: 12px; color: var(--text-muted); }

.cb-dash-empty {
    padding: 20px;
    text-align: center;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.cb-btn-view-small {
    background: var(--bg-soft-blue);
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}
.cb-btn-view-small:hover { background: var(--primary-blue); color: white; }

.cb-dash-btn-full {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--bg-light);
    color: var(--text-main);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s;
}
.cb-dash-btn-full:hover { background: var(--bg-soft-blue); color: var(--primary-blue); }


/* ==========================================================================
   Buttons
   ========================================================================== */
.cb-btn-primary, .cb-search-btn {
    background-color: var(--primary-blue);
    color: #ffffff;
    border: 1px solid var(--primary-blue);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}
.cb-btn-primary:hover { background-color: var(--primary-hover); border-color: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.cb-btn-orange, .cb-search-btn {
    background-color: var(--accent-orange);
    color: #ffffff;
    border: 1px solid var(--accent-orange);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}
.cb-btn-orange:hover, .cb-search-btn:hover { background-color: var(--accent-orange-hover); border-color: var(--accent-orange-hover); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.cb-btn-outline-blue {
    background-color: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    text-align: center;
}
.cb-btn-outline-blue:hover { background-color: var(--bg-soft-blue); }

.cb-btn-outline-white {
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
}
.cb-btn-outline-white:hover { background-color: rgba(255,255,255,0.25); border-color: #ffffff; }

.cb-btn-large { padding: 14px 32px; font-size: 16px; }

/* ==========================================================================
   Audience cards
   ========================================================================== */
.cb-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cb-audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cb-audience-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.cb-audience-featured { border-top: 3px solid var(--accent-orange); }

.cb-audience-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.cb-icon-blue { background: var(--bg-soft-blue); color: var(--primary-blue); }
.cb-icon-orange { background: #fff7ed; color: var(--accent-orange); }
.cb-icon-navy { background: #f1f5f9; color: var(--hero-dark); }

.cb-audience-content h3 { font-size: 18px; margin-bottom: 8px; }
.cb-audience-content p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* ==========================================================================
   Features
   ========================================================================== */
.cb-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.cb-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.cb-feature-card:hover { transform: translateY(-2px); border-color: var(--primary-blue); }

.cb-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-soft-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.cb-feature-title { font-size: 17px; margin-bottom: 6px; }
.cb-feature-desc { color: var(--text-muted); font-size: 14px; margin: 0; line-height: 1.5; }

/* ==========================================================================
   Categories
   ========================================================================== */
.cb-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
}

.cb-category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    text-decoration: none;
    color: var(--text-dark);
}

.cb-category-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cb-category-icon {
    font-size: 22px;
    background: var(--bg-light);
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-category-info { flex: 1; }
.cb-category-name { font-size: 16px; margin: 0 0 2px 0; color: var(--text-dark); }
.cb-category-desc { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ==========================================================================
   Jobs CTA / Preview
   ========================================================================== */
.cb-jobs-cta-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.cb-jobs-cta-desc {
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 20px;
}

.cb-jobs-cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.cb-jobs-cta-list li {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cb-jobs-cta-list li span {
    color: var(--success-green);
    background: var(--soft-green);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.cb-jobs-cta-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.cb-sample-job-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px;
    box-shadow: var(--shadow-sm);
    opacity: 0.9;
    transform: translateX(15px);
}
.cb-sample-job-card:nth-child(2) { opacity: 1; transform: translateX(0); z-index: 2; box-shadow: var(--shadow-md); border-color: var(--primary-blue); }
.cb-sample-job-card:nth-child(3) { opacity: 0.8; transform: translateX(30px); }

.cb-sample-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.cb-sample-logo {
    width: 36px; height: 36px; border-radius: 8px; color: white;
    display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px;
}
.cb-bg-blue { background: var(--primary-blue); }
.cb-bg-orange { background: var(--accent-orange); }
.cb-bg-navy { background: var(--hero-dark); }
.cb-bg-green { background: var(--success-green); }

.cb-sample-header h5 { margin: 0 0 2px 0; font-size: 15px; }
.cb-sample-header span { font-size: 12px; color: var(--text-muted); font-weight: 500; }

.cb-sample-badges { display: flex; gap: 6px; }
.cb-sample-badges span {
    background: var(--bg-light); padding: 3px 8px; border-radius: var(--radius-full);
    font-size: 11px; font-weight: 600; color: var(--text-main); border: 1px solid var(--border-color);
}

/* ==========================================================================
   Partners
   ========================================================================== */
.cb-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
}

.cb-partner-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.cb-partner-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-color);
}

.cb-partner-logo {
    width: 40px;
    height: 40px;
    background: var(--bg-soft-blue);
    color: var(--primary-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.cb-partner-info { flex: 1; }
.cb-partner-info h4 { margin: 0 0 2px 0; font-size: 15px; color: var(--text-dark); }
.cb-partner-info p { margin: 0; font-size: 12px; color: var(--text-muted); }

/* ==========================================================================
   How it works
   ========================================================================== */
.cb-steps-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cb-steps-column {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.cb-steps-header-box {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.cb-blue-border { border-color: var(--primary-blue); }
.cb-orange-border { border-color: var(--accent-orange); }

.cb-steps-header { font-size: 20px; margin: 0; color: var(--text-dark); }

.cb-step-list { display: flex; flex-direction: column; gap: 20px; }

.cb-step-item { display: flex; gap: 12px; align-items: flex-start; }

.cb-step-number {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px; color: white; flex-shrink: 0;
}

.cb-step-text h4 { font-size: 16px; margin: 0 0 3px 0; }
.cb-step-text p { font-size: 14px; margin: 0; color: var(--text-muted); }

/* ==========================================================================
   Blog
   ========================================================================== */
.cb-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.cb-blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
}

.cb-blog-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.cb-blog-title { font-size: 17px; margin: 0 0 8px 0; color: var(--text-dark); }
.cb-blog-desc { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cb-final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.cb-final-cta-card {
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
}

.cb-cta-navy {
    background-color: var(--hero-dark);
    color: white;
}

.cb-cta-employer {
    background-color: var(--bg-soft-blue);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.cb-cta-title { font-size: 24px; margin-bottom: 10px; letter-spacing: -0.5px; }
.cb-cta-navy .cb-cta-title { color: white; }
.cb-cta-employer .cb-cta-title { color: var(--text-dark); }

.cb-cta-desc { font-size: 15px; margin-bottom: 25px; line-height: 1.5; }
.cb-cta-navy .cb-cta-desc { color: rgba(255,255,255,0.8); }
.cb-cta-employer .cb-cta-desc { color: var(--text-main); }

.cb-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.cb-btn-text-light { color: white; font-weight: 600; text-decoration: none; font-size: 15px; display: inline-flex; align-items: center; }
.cb-btn-text-light:hover { text-decoration: underline; }

.cb-btn-text-primary { color: var(--primary-blue); font-weight: 600; text-decoration: none; font-size: 15px; display: inline-flex; align-items: center; }
.cb-btn-text-primary:hover { text-decoration: underline; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .cb-hero-layout { flex-direction: column; gap: 40px; }
    .cb-hero-content { text-align: center; }
    .cb-hero-search-panel { max-width: 100%; margin-left: 0; margin-right: 0; }
    .cb-hero-dashboard { width: 100%; box-sizing: border-box; }
    
    .cb-hero-title { font-size: 36px; }
    
    .cb-audience-grid { grid-template-columns: 1fr; gap: 20px; }
    .cb-jobs-cta-box { grid-template-columns: 1fr; }
    .cb-jobs-cta-visual { display: none; }
    .cb-steps-wrapper { grid-template-columns: 1fr; gap: 25px; }
    .cb-final-cta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .cb-section { padding: 40px 0; }
    .cb-section-title { font-size: 24px; margin-bottom: 25px; }
    .cb-section-header { flex-direction: column; gap: 10px; align-items: flex-start; }
    
    .cb-home-hero { padding: 80px 15px 50px; }
    .cb-hero-title { font-size: 30px; }
    .cb-hero-subtitle { font-size: 15px; }
    
    .cb-hero-search-form { flex-direction: column; gap: 10px; }
    .cb-search-divider { display: none; }
    .cb-search-input-group { border: 1px solid var(--border-color); border-radius: var(--radius-sm); width: 100%; box-sizing: border-box; }
    .cb-search-btn { width: 100%; }
    
    .cb-dash-stats { grid-template-columns: 1fr; }
    
    .cb-category-grid { grid-template-columns: 1fr; }
    .cb-features-grid { grid-template-columns: 1fr; }
    .cb-partners-grid { grid-template-columns: 1fr; }
    
    .cb-final-cta-card { padding: 25px 20px; text-align: center; }
    .cb-cta-actions { flex-direction: column; }
    .cb-cta-actions a { width: 100%; box-sizing: border-box; text-align: center; justify-content: center; }
}
.cb-final-cta-wrap {
    border-radius: 20px;
}
/* =========================================================
   Homepage Hero Compact + Colorful Live Board v7
   ========================================================= */

/* Hero gap reduce */
.cb-home-hero {
    padding: 54px 0 48px;
}

.cb-hero-layout {
    gap: 38px;
}

.cb-hero-title {
    font-size: 40px;
    line-height: 1.08;
    margin-bottom: 14px;
}

.cb-hero-subtitle {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 24px;
    max-width: 620px;
}

.cb-hero-search-panel {
    margin-bottom: 18px;
}

.cb-hero-actions {
    margin-top: 8px;
}

/* Live board colorful premium card */
.cb-hero-dashboard {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.13), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(191, 219, 254, 0.9);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.20);
}

.cb-hero-dashboard::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #0f4c97, #16a34a);
}

.cb-hero-dashboard::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -52px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background: rgba(15, 76, 151, 0.08);
}

/* Dashboard header */
.cb-dash-header {
    position: relative;
    z-index: 2;
    margin-bottom: 18px;
    padding-bottom: 14px;
}

.cb-dash-title {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
}

.cb-pulse-badge {
    background: #ecfdf5;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

/* Stats colorful */
.cb-dash-stats {
    position: relative;
    z-index: 2;
    gap: 12px;
    margin-bottom: 18px;
}

.cb-dash-stat-box {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 15px;
    padding: 15px 10px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.045);
}

.cb-dash-stat-box:nth-child(1) {
    border-color: #bfdbfe;
    background: linear-gradient(180deg, #eff6ff, #ffffff);
}

.cb-dash-stat-box:nth-child(2) {
    border-color: #fed7aa;
    background: linear-gradient(180deg, #fff7ed, #ffffff);
}

.cb-dash-stat-box:nth-child(3) {
    border-color: #bbf7d0;
    background: linear-gradient(180deg, #ecfdf5, #ffffff);
}

.cb-stat-val {
    font-size: 23px;
    line-height: 1.1;
}

.cb-dash-stat-box:nth-child(1) .cb-stat-val {
    color: #0f4c97;
}

.cb-dash-stat-box:nth-child(2) .cb-stat-val {
    color: #f97316;
}

.cb-dash-stat-box:nth-child(3) .cb-stat-val {
    color: #16a34a;
}

.cb-stat-lbl {
    font-size: 12px;
}

/* Latest job preview */
.cb-dash-sub {
    position: relative;
    z-index: 2;
    color: #0f4c97;
    font-size: 13px;
    font-weight: 800;
}

.cb-dash-job-list {
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
}

.cb-dash-job-item {
    border-radius: 15px;
    padding: 13px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.cb-dash-job-item:hover {
    border-color: #0f4c97;
    transform: translateY(-1px);
}

.cb-dash-job-info h5 {
    font-size: 14px;
    font-weight: 800;
}

.cb-dash-job-info p {
    font-size: 12px;
    color: #64748b;
}

.cb-btn-view-small {
    background: #eff6ff;
    color: #0f4c97;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 6px 11px;
}

.cb-btn-view-small:hover {
    background: #0f4c97;
    color: #ffffff;
}

/* Browse all jobs button */
.cb-dash-btn-full {
    position: relative;
    z-index: 2;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f4c97, #0891b2);
    color: #ffffff;
    padding: 12px;
}

.cb-dash-btn-full:hover {
    background: linear-gradient(135deg, #123a72, #0e7490);
    color: #ffffff;
}

/* Reduce gap after hero */
.cb-section.cb-bg-light {
    padding-top: 28px;
}

/* Desktop height correction */
@media (min-width: 993px) {
    .cb-hero-content {
        padding-top: 4px;
    }

    .cb-hero-dashboard {
        margin-top: 0;
    }
}

/* Mobile */
@media (max-width: 992px) {
    .cb-home-hero {
        padding: 42px 0 44px;
    }

    .cb-hero-layout {
        gap: 26px;
    }
}

@media (max-width: 768px) {
    .cb-home-hero {
        padding: 34px 0 38px;
    }

    .cb-hero-title {
        font-size: 30px;
    }

    .cb-hero-dashboard {
        padding: 20px;
        border-radius: 18px;
    }
}