/* ===================================================================
   CAREER — Dreamvion Careers Page Styles
   =================================================================== */

/* -------- CAREER HERO -------- */
.career-hero {
    padding: 140px 0 90px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.career-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.career-hero::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.career-hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.career-hero-content .eyebrow {
    margin-bottom: 16px;
}

.career-hero-content h1 {
    font-size: clamp(32px, 4.8vw, 52px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
}

.career-hero-content h1 .accent-word {
    color: var(--accent);
}

.career-hero-sub {
    font-size: 17.5px;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.career-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* -------- WHY WORK WITH US -------- */
.why-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-work-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.why-work-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.why-work-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    margin: 0 auto 16px;
}

.why-work-card h4 {
    font-size: 16.5px;
    margin-bottom: 10px;
}

.why-work-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* -------- OPENINGS -------- */
.openings-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.openings-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.job-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.job-header h4 {
    font-size: 18px;
    font-weight: 600;
}

.job-type {
    display: inline-block;
    padding: 2px 14px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 4px;
}

.job-location {
    font-size: 14px;
    color: var(--text-muted);
    white-space: nowrap;
}

.job-location i {
    color: var(--accent);
    margin-right: 4px;
}

.job-body p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.job-meta span {
    font-size: 13px;
    color: var(--text-muted);
}

.job-meta span i {
    color: var(--accent);
    margin-right: 6px;
    opacity: 0.7;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.job-tags span {
    padding: 4px 14px;
    background: rgba(56, 189, 248, 0.06);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.job-apply {
    padding: 10px 24px;
    font-size: 14px;
}

/* -------- CULTURE & BENEFITS -------- */
.culture-section {
    background: var(--bg);
}

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

.culture-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.culture-item:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.culture-item i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.culture-item h4 {
    font-size: 16.5px;
    margin-bottom: 10px;
}

.culture-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* -------- TEAM TESTIMONIALS -------- */
.team-testimonials-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.team-testimonials-section .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-testimonials-section .testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.team-testimonials-section .testimonial-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.team-testimonials-section .testimonial-quote {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 18px;
    font-style: italic;
}

.team-testimonials-section .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.team-testimonials-section .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #03131c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.team-testimonials-section .testimonial-author strong {
    display: block;
    font-size: 14.5px;
}

.team-testimonials-section .testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* -------- HIRING PROCESS -------- */
.process-section {
    background: var(--bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.process-step:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.process-number {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 12px;
}

.process-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.process-content p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* -------- FAQ -------- */
.faq-career-section {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.career-faq {
    max-width: 820px;
    margin: 0 auto;
}

/* -------- CTA -------- */
.cta-section {
    padding: 40px 0 80px;
    background: var(--bg);
}

.cta-box {
    background: linear-gradient(155deg, var(--bg-elevated), var(--bg-elevated-2));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 56px 64px;
    text-align: center;
}

.cta-box .eyebrow {
    justify-content: center;
    margin-bottom: 12px;
}

.cta-box h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box h2 .accent-word {
    color: var(--accent);
}

.cta-box p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1080px) {
    .why-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 991px) {
    .career-hero {
        padding: 120px 0 64px;
    }

    .team-testimonials-section .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .career-hero-content h1 {
        font-size: 28px;
    }

    .career-hero-sub {
        font-size: 16px;
    }

    .career-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .career-hero-cta .btn {
        justify-content: center;
    }

    .why-work-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        padding: 20px 18px;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-header h4 {
        font-size: 16.5px;
    }

    .job-meta {
        gap: 12px;
    }

    .job-meta span {
        font-size: 12px;
    }

    .job-tags span {
        font-size: 10.5px;
        padding: 3px 12px;
    }

    .job-apply {
        width: 100%;
        justify-content: center;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }

    .team-testimonials-section .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-box {
        padding: 32px 20px;
        border-radius: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .career-hero {
        padding: 100px 0 48px;
    }

    .career-hero-content h1 {
        font-size: 24px;
    }

    .career-hero-sub {
        font-size: 14.5px;
    }

    .job-card {
        padding: 16px 14px;
    }

    .job-header h4 {
        font-size: 15px;
    }

    .job-type {
        font-size: 10.5px;
        padding: 2px 12px;
    }

    .job-location {
        font-size: 12.5px;
    }

    .job-body p {
        font-size: 13.5px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .cta-box p {
        font-size: 15px;
    }

    .process-number {
        font-size: 30px;
    }

    .process-content h4 {
        font-size: 14.5px;
    }

    .process-content p {
        font-size: 12.5px;
    }
}