/* ── Job Search Advice Page ───────────────────────────────────────── */

/* ── Hero (split) ────────────────────────────────────────────────────── */
.ja-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 519px;
    overflow: hidden;
}
.ja-hero-left {
    background: linear-gradient(135deg, #0b1f3a 0%, #0f2d55 60%, #0d2340 100%);
    display: flex; align-items: center;
    padding: 48px 60px 48px max(calc((100vw - 1200px)/2 + 24px), 40px);
    position: relative; overflow: hidden;
}
.ja-hero-left::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 85% 30%, rgba(182,50,62,.2) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(99,102,241,.15) 0%, transparent 50%);
    pointer-events: none;
}
.ja-hero-left::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ja-hero-right {
    position: relative; overflow: hidden; min-height: 386px;
}
.ja-hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.ja-hero-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(11,31,58,.45) 0%, transparent 55%);
}
.ja-hero-content { position: relative; z-index: 1; max-width: 540px; }

.ja-hero-kicker {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px; padding: 6px 16px;
    font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.88);
    letter-spacing: .5px; text-transform: uppercase; margin-bottom: 20px;
}
.ja-hero h1 {
    font-size: clamp(24px, 2.4vw, 38px); font-weight: 900;
    color: #fff; margin: 0 0 16px; line-height: 1.12; letter-spacing: -.3px;
}
.ja-hl { color: #f87171; }
.ja-hero p {
    font-size: clamp(14px, 1.3vw, 16px); color: rgba(255,255,255,.72);
    line-height: 1.7; margin: 0 0 28px;
}
.ja-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.ja-btn-primary {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 12px 24px; background: var(--vs-red); color: #fff;
    border-radius: 10px; font-weight: 800; font-size: 14.5px;
    text-decoration: none; transition: background .15s, transform .12s;
    box-shadow: 0 4px 14px rgba(182,50,62,.3);
}
.ja-btn-primary:hover { background: #c0392b; transform: translateY(-2px); color: #fff; }
.ja-btn-outline {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 22px; border: 2px solid rgba(255,255,255,.4);
    color: #fff; border-radius: 10px; font-weight: 700; font-size: 14.5px;
    text-decoration: none; transition: border-color .15s, background .15s;
}
.ja-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

.ja-hero-stats { display: flex; align-items: center; gap: 0; }
.ja-stat { padding: 0 20px 0 0; }
.ja-stat strong { display: block; font-size: 26px; font-weight: 900; color: #fff; line-height: 1; }
.ja-stat span { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 600; white-space: nowrap; }
.ja-stat-div { width: 1px; height: 32px; background: rgba(255,255,255,.15); margin: 0 20px 0 0; }

/* ── Sections ─────────────────────────────────────────────────────────── */
.ja-section { padding: 88px 0; }
.ja-section--soft { background: #f4f7fa; }

.ja-heading { max-width: 700px; margin-bottom: 52px; }
.ja-heading--center { text-align: center; margin: 0 auto 52px; }
.ja-heading h2 {
    font-size: clamp(26px, 3vw, 38px); font-weight: 900;
    color: var(--vs-navy); margin: 10px 0 12px; line-height: 1.2;
}
.ja-heading p { font-size: 17px; color: var(--vs-muted); line-height: 1.65; margin: 0; }

/* ── Résumé Tips grid ────────────────────────────────────────────────── */
.ja-tips-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    margin-bottom: 32px;
}
.ja-tip-card {
    background: #fff; border: 1.5px solid #e8ecf4; border-radius: 16px;
    padding: 24px 20px; transition: box-shadow .2s, transform .18s;
}
.ja-tip-card:hover { box-shadow: 0 10px 32px rgba(11,31,58,.1); transform: translateY(-4px); }
.ja-tip-icon {
    width: 46px; height: 46px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.ja-tip-card h3 { font-size: 14.5px; font-weight: 800; color: var(--vs-navy); margin: 0 0 8px; }
.ja-tip-card p { font-size: 13px; color: var(--vs-muted); line-height: 1.65; margin: 0; }

/* Pro tip callout */
.ja-pro-tip {
    display: flex; align-items: flex-start; gap: 18px;
    background: rgba(182,50,62,.05); border: 1.5px solid rgba(182,50,62,.2);
    border-left: 4px solid var(--vs-red);
    border-radius: 14px; padding: 24px 28px;
}
.ja-pro-tip-icon {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
    background: rgba(182,50,62,.1); color: var(--vs-red);
    display: flex; align-items: center; justify-content: center;
}
.ja-pro-tip strong { display: block; color: var(--vs-navy); font-size: 16px; margin-bottom: 6px; }
.ja-pro-tip p { color: var(--vs-muted); margin: 0; font-size: 14.5px; line-height: 1.65; }
.ja-pro-tip a { color: var(--vs-red); font-weight: 800; text-decoration: none; }
.ja-pro-tip a:hover { text-decoration: underline; }

/* ── Interview grid ───────────────────────────────────────────────────── */
.ja-interview-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.ja-interview-card {
    display: flex; align-items: flex-start; gap: 18px;
    background: #fff; border: 1.5px solid #e8ecf4; border-radius: 16px;
    padding: 24px; transition: box-shadow .2s, border-color .2s, transform .18s;
}
.ja-interview-card:hover {
    box-shadow: 0 8px 28px rgba(11,31,58,.09); border-color: rgba(11,31,58,.15);
    transform: translateX(4px);
}
.ja-interview-num {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
    background: var(--vs-navy); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 900; letter-spacing: .5px;
}
.ja-interview-card h3 { font-size: 15px; font-weight: 800; color: var(--vs-navy); margin: 0 0 6px; }
.ja-interview-card p { font-size: 13.5px; color: var(--vs-muted); line-height: 1.65; margin: 0; }

/* ── Tools grid ──────────────────────────────────────────────────────── */
.ja-tools-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.ja-tool-card {
    background: #fff; border: 1.5px solid #e8ecf4; border-radius: 16px;
    padding: 28px 24px; transition: box-shadow .2s, transform .18s;
}
.ja-tool-card:hover { box-shadow: 0 10px 32px rgba(11,31,58,.1); transform: translateY(-4px); }
.ja-tool-card--featured {
    border-color: rgba(182,50,62,.25); background: rgba(182,50,62,.03);
}
.ja-tool-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.ja-tool-card h3 { font-size: 15.5px; font-weight: 800; color: var(--vs-navy); margin: 0 0 10px; }
.ja-tool-card p { font-size: 14px; color: var(--vs-muted); line-height: 1.65; margin: 0; }
.ja-tool-card a { color: var(--vs-red); font-weight: 800; text-decoration: none; }
.ja-tool-card a:hover { text-decoration: underline; }

/* ── CTA ─────────────────────────────────────────────────────────────── */
.ja-cta {
    background: linear-gradient(135deg, #0b1f3a 0%, #1a3a5c 100%);
    padding: 80px 0;
}
.ja-cta-inner {
    display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.ja-cta-text h2 {
    font-size: clamp(28px, 3.2vw, 42px); font-weight: 900;
    color: #fff; margin: 0 0 16px; line-height: 1.15; letter-spacing: -.3px;
}
.ja-cta-text p { font-size: 17px; color: rgba(255,255,255,.68); margin: 0 0 32px; line-height: 1.65; }
.ja-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ja-btn-outline-dark {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 11px 24px; border: 2px solid rgba(255,255,255,.35);
    color: #fff; border-radius: 10px; font-weight: 700; font-size: 14.5px;
    text-decoration: none; transition: border-color .15s, background .15s;
}
.ja-btn-outline-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.ja-cta-image img {
    width: 100%; border-radius: 16px; object-fit: cover; aspect-ratio: 4/3;
    box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .ja-tips-grid { grid-template-columns: repeat(2, 1fr); }
    .ja-tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .ja-hero { grid-template-columns: 1fr; height: auto; }
    .ja-hero-right { min-height: 414px; }
    .ja-hero-left { padding: 56px 40px; }
    .ja-cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .ja-cta-image { display: none; }
}
@media (max-width: 768px) {
    .ja-interview-grid { grid-template-columns: 1fr; }
    .ja-tools-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .ja-hero-left { padding: 48px 24px; }
    .ja-hero-stats { display: none; }
    .ja-tips-grid { grid-template-columns: 1fr; }
    .ja-section { padding: 56px 0; }
}
