/* JOBS SPECIFIC STYLES - EXPANDED */

/* --- HERO --- */
.jobs-hero {
    padding: 100px 0;
    background-color: var(--color-bg-cream);
    overflow: hidden;
}

.ai-center {
    align-items: center;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.not-a-job-board-tag {
    background: var(--color-text-dark);
    color: var(--color-accent-yellow);
    font-weight: 800;
    padding: 8px 16px;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 32px;
    transform: rotate(-2deg);
}

.hero-title-max {
    font-size: 80px;
    line-height: 0.9;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.highlight-marker {
    background: linear-gradient(120deg, transparent 0%, transparent 10%, var(--color-accent-yellow) 10%, var(--color-accent-yellow) 90%, transparent 90%);
    padding: 0 10px;
}

.hero-desc-lead {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-desc-sub {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 48px;
    max-width: 500px;
}

.hero-cta-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.btn--black {
    background-color: var(--color-text-dark);
    color: white;
    transition: all 0.2s;
}

.btn--black:hover {
    background-color: black;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn--xxl {
    padding: 24px 48px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.sub-cta-text {
    font-size: 14px;
    opacity: 0.6;
    font-style: italic;
}

/* --- VISUALS --- */
.hero-visual-strong {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chaos-graphic {
    position: relative;
    width: 100%;
    height: 100%;
}

.chaos-item {
    position: absolute;
    font-size: 40px;
    opacity: 0.4;
    animation: float 4s infinite ease-in-out;
}

.chaos-item:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.chaos-item:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.chaos-item:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.filter-funnel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.verified-candidate-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 300px;
    transform: rotate(2deg);
}

.v-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
}

.v-name {
    font-weight: 800;
    font-size: 18px;
}

.v-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent-green);
    display: flex;
    align-items: center;
    gap: 4px;
}

.v-score {
    margin-left: auto;
    font-weight: 900;
    font-size: 20px;
    color: var(--color-text-dark);
}

/* --- TICKER --- */
.logo-ticker-dark {
    background-color: var(--color-text-dark);
    color: rgba(255, 255, 255, 0.4);
    padding: 60px 0;
    text-align: center;
}

.logo-ticker-dark p {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 32px;
    opacity: 0.6;
}

.logo-row {
    display: flex;
    justify-content: space-around;
    font-size: 24px;
    font-weight: 900;
    flex-wrap: wrap;
    gap: 32px;
}

.logo-row span {
    color: white;
    opacity: 0.8;
}

/* --- STATS AGITATION --- */
.problem-agitation-section {
    padding: 120px 0;
    background: white;
}

.section-head-bold {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-box {
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 20px;
}

.stat-num {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
}

.text-red {
    color: #F76A35;
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 16px;
}

.stat-desc {
    font-size: 16px;
    opacity: 0.7;
}

/* --- FEATURE DEEP DIVES --- */
.feature-deep-dive {
    padding: 120px 0;
}

.bg-cream {
    background-color: var(--color-bg-cream);
}

.bg-white {
    background-color: white;
}

.feature-num {
    font-size: 120px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    line-height: 0.8;
    margin-bottom: -40px;
    position: relative;
    z-index: 0;
}

.feature-head {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.feature-body {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.8;
    max-width: 450px;
}

.feature-check-list {
    list-style: none;
}

.feature-check-list li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.feature-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent-green);
    font-weight: 900;
}

.ui-mock-vetting {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
    max-width: 400px;
    margin: 0 auto;
}

.ui-row {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 600;
}

.ui-row.fail .status {
    color: #F76A35;
}

.ui-row.pass .status {
    color: var(--color-accent-green);
}

.ui-mock-reputation {
    display: flex;
    justify-content: center;
}

.rep-card {
    background: var(--color-text-dark);
    color: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
}

.rep-card i {
    font-size: 40px;
    color: var(--color-accent-yellow);
    margin-bottom: 16px;
}

.score-display {
    font-size: 64px;
    font-weight: 900;
    margin: 16px 0;
    color: var(--color-accent-yellow);
}

.ui-mock-speed .msg-bubble {
    background: white;
    border: 4px solid #000;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 8px 8px 0px #000;
}

.msg-head {
    font-weight: 900;
    color: #F76A35;
    margin-bottom: 12px;
}

.msg-action {
    background: #000;
    color: white;
    text-align: center;
    padding: 8px;
    margin-top: 16px;
    font-weight: 700;
    border-radius: 4px;
}

/* --- AUDIENCE --- */
.segment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.segment-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.2s;
    border: 1px solid #eee;
}

.segment-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent-yellow);
}

.seg-icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--color-text-dark);
}

.segment-card h3 {
    font-weight: 800;
    margin-bottom: 8px;
}

.segment-card p {
    font-size: 14px;
    opacity: 0.7;
}

/* --- PRICING TEASER --- */
.pricing-teaser {
    padding: 120px 0;
    background: var(--color-bg-cream);
}

.price-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    align-items: center;
}

.price-opt {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    position: relative;
}

.price-opt.recommended {
    transform: scale(1.1);
    border: 2px solid var(--color-text-dark);
    z-index: 2;
    box-shadow: var(--shadow-strong);
}

.rec-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-text-dark);
    color: var(--color-accent-yellow);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 800;
    border-radius: 4px;
}

.p-amount {
    font-size: 48px;
    font-weight: 900;
    margin: 24px 0;
}

.period {
    font-size: 16px;
    font-weight: 500;
    color: #888;
}

/* --- FAQ --- */
.jobs-faq {
    padding: 100px 0;
    background: white;
}

.faq-list details {
    border-bottom: 1px solid #eee;
    padding: 24px 0;
}

.faq-list summary {
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.faq-list p {
    margin-top: 16px;
    font-size: 16px;
    opacity: 0.7;
    line-height: 1.6;
}

/* --- FINAL CTA --- */
.final-cta-monolith {
    padding: 100px 0;
    background: var(--color-text-dark);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 24px;
    color: var(--color-accent-yellow);
}

.cta-sub {
    font-size: 24px;
    opacity: 0.8;
    margin-bottom: 48px;
}

.cta-note {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.5;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {

    .grid-2-col,
    .stats-grid,
    .segment-grid,
    .price-options {
        grid-template-columns: 1fr;
    }

    .hero-title-max {
        font-size: 48px;
    }

    .feature-head {
        font-size: 32px;
    }

    .cta-title {
        font-size: 48px;
    }

    .hero-visual-strong {
        display: none;
    }

    .reverse-desktop {
        display: flex;
        flex-direction: column-reverse;
    }

    .price-opt.recommended {
        transform: scale(1);
    }
}