  @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&display=swap');

  :root {
    --blue-dark: #519BC0;
    --blue-light: #5ADEFC;
    --gold-dark: #F79A1E;
    --gold-light: #FFE727;
    --green-dark: #029345;
    --green-light: #88C23F;
    --red-dark: #D90503;
    --red-light: #FE5C45;
    --bg-parchment: #F5EDE0;
    --bg-dark: #1a1a2e;
    --bg-card: #FFFBF5;
    --text-dark: #2C2420;
    --text-mid: #5A4F47;
    --text-light: #8A7F75;
    --border-soft: #E2D5C5;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--bg-parchment);
    line-height: 1.6;
  }

  /* ===== HERO ===== */
  .hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 24px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(247, 154, 30, 0.08) 0%, transparent 60%);
  }
  .hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(32px, 5vw, 52px);
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: 1px;
  }
  .hero h1 span {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero p {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    line-height: 1.7;
  }

  /* ===== SECTION CONTAINER ===== */
  .section {
    max-width: 900px;
    margin: 0 auto;
    padding: 56px 24px;
  }
  .section-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
  }
  .section-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 36px;
    font-style: italic;
  }
  #form-title { font-family: 'Nunito', sans-serif; text-align: center; }
  #form-title .form-title-sub { display: block; font-size: 16px; font-weight: 400; color: var(--text-light); margin-bottom: 4px; }
  #form-title .form-title-poste { display: block; font-family: 'Cinzel', serif; font-size: 22px; font-weight: 600; color: var(--text-dark); }

  /* ===== VALUES CARDS ===== */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 16px;
  }
  .value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .value-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .value-icon.accueillir { background: linear-gradient(135deg, #519BC020, #5ADEFC20); }
  .value-icon.expliquer { background: linear-gradient(135deg, #F79A1E20, #FFE72720); }
  .value-icon.partager { background: linear-gradient(135deg, #02934520, #88C23F20); }
  .value-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
  }
  .value-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.6;
  }
  .values-note {
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-style: italic;
    color: var(--text-light);
    font-size: 15px;
    margin-top: 24px;
  }

  /* ===== DIVIDER ===== */
  .divider {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .divider hr {
    border: none;
    border-top: 1px solid var(--border-soft);
  }

  /* ===== POSTES SECTION ===== */
  .postes-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .postes-header .section-title { margin-bottom: 0; }
  .postes-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
  }
  .postes-status.open {
    background: #A1C600;
  }
  .postes-status.closed {
    background: var(--text-light);
  }
  .postes-status .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background: #fff;
  }
  .postes-status.open .dot { animation: pulse-dot 2s ease infinite; }

  @keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* ===== BADGE STATUT (sur les cartes) ===== */
  .badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
  }
  .badge-status.open { background: #A1C600; }
  .badge-status.alert { background: #AE2A20; cursor: pointer; transition: background 0.2s, transform 0.15s; }
  .badge-status.alert:hover { background: #c4352a; transform: translateY(-1px); }

  /* ===== AUTRES POSTES SECTION ===== */
  .autres-postes-section {
    margin-top: 12px;
  }
  .autres-postes-section .section-title {
    font-size: 20px;
    color: var(--text-mid);
    margin-bottom: 20px;
  }
  .closed-job-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 12px;
  }
  .closed-job-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .closed-job-card-content { flex: 1; }
  .closed-job-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
  }
  .closed-job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  /* ===== ALERT FORM INLINE ===== */
  .alert-form-inline {
    display: none;
    margin-top: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    animation: slideDown 0.25s ease;
  }
  .alert-form-inline.visible { display: block; }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .alert-form-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  .alert-form-field {
    flex: 1;
    min-width: 140px;
  }
  .alert-form-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
  }
  .alert-form-field input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    background: #fff;
  }
  .alert-form-field input:focus {
    outline: none;
    border-color: #5FA9DE;
  }
  .btn-alert-submit {
    padding: 8px 18px;
    background: #5FA9DE;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    white-space: nowrap;
    transition: background 0.2s;
  }
  .btn-alert-submit:hover { background: #4a95ca; }
  .btn-alert-submit:disabled { opacity: 0.6; cursor: not-allowed; }
  .alert-form-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
  }
  .alert-success-msg {
    display: none;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(161,198,0,0.08), rgba(161,198,0,0.12));
    border: 1px solid rgba(161,198,0,0.2);
    border-radius: 10px;
    margin-top: 12px;
    font-size: 14px;
    color: #5a7000;
    text-align: center;
  }
  .alert-success-msg.visible { display: block; animation: slideDown 0.25s ease; }

  /* ===== CONFIRMATION OVERLAY ===== */
  .alert-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 46, 0.92);
    animation: overlayIn 0.6s ease;
    transition: opacity 1.2s ease;
  }
  .alert-overlay.fading { opacity: 0; pointer-events: none; }
  @keyframes overlayIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .alert-overlay-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 480px;
    width: 90vw;
    text-align: center;
    box-shadow: 0 16px 64px rgba(0,0,0,0.3);
    animation: cardIn 0.6s ease 0.2s both;
  }
  @keyframes cardIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .alert-overlay-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A1C600, #88C23F);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
  }
  .alert-overlay-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
  }
  .alert-overlay-card p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .alert-overlay-btn {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--gold-dark), #e08a15);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
  }
  .alert-overlay-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(247,154,30,0.35);
  }

  /* ===== JOB CARD ===== */
  .job-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  .job-card:hover {
    border-color: var(--blue-dark);
    box-shadow: 0 4px 16px rgba(81, 155, 192, 0.08);
    transform: translateY(-1px);
  }
  .job-card-content { flex: 1; }
  .job-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
  }
  .job-card .job-excerpt {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .job-tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
  }
  .job-tag.contrat {
    background: linear-gradient(135deg, #519BC010, #5ADEFC10);
    color: var(--blue-dark);
    border: 1px solid #519BC025;
  }
  .job-tag.temps {
    background: linear-gradient(135deg, #F79A1E10, #FFE72710);
    color: #c47a10;
    border: 1px solid #F79A1E25;
  }
  .job-tag.date {
    background: #f5f0eb;
    color: var(--text-light);
    border: 1px solid var(--border-soft);
  }
  .job-tag.semaine {
    background: #EDE7DD;
    color: var(--text-mid);
    border: 1px solid #D5CEC5;
  }
  .job-card-arrow {
    color: var(--text-light);
    font-size: 20px;
    margin-top: 4px;
    transition: transform 0.2s, color 0.2s;
  }
  .job-card:hover .job-card-arrow {
    color: var(--blue-dark);
    transform: translateX(4px);
  }

  /* ===== NO POSTS MESSAGE ===== */
  .no-posts {
    background: var(--bg-card);
    border: 1px dashed var(--border-soft);
    border-radius: 12px;
    padding: 48px 24px;
    text-align: center;
  }
  .no-posts .icon { font-size: 36px; margin-bottom: 16px; opacity: 0.6; }
  .no-posts h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
  }
  .no-posts p {
    font-size: 14px;
    color: var(--text-mid);
    max-width: 400px;
    margin: 0 auto 20px;
  }

  /* ===== CANDIDATURE SPONTANÉE ===== */
  .spontanee-cta {
    text-align: center;
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(81,155,192,0.04), rgba(90,222,252,0.04));
    border-radius: 12px;
    border: 1px solid rgba(81,155,192,0.12);
  }
  .spontanee-cta p {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 16px;
  }

  /* ===== BUTTONS ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: 'Nunito', sans-serif;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--blue-dark), #3d8ab3);
    color: #fff;
    box-shadow: 0 2px 8px rgba(81,155,192,0.25);
  }
  .btn-primary:hover {
    box-shadow: 0 4px 16px rgba(81,155,192,0.35);
    transform: translateY(-1px);
  }
  .btn-outline {
    background: transparent;
    color: var(--blue-dark);
    border: 1.5px solid var(--blue-dark);
  }
  .btn-outline:hover {
    background: rgba(81,155,192,0.06);
  }
  .btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), #e08a15);
    color: #fff;
    box-shadow: 0 2px 8px rgba(247,154,30,0.25);
  }
  .btn-gold:hover {
    box-shadow: 0 4px 16px rgba(247,154,30,0.35);
    transform: translateY(-1px);
  }

  /* ===== JOB DETAIL VIEW ===== */
  .job-detail { display: none; }
  .job-detail.active { display: block; }
  .job-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--blue-dark);
    cursor: pointer;
    margin-bottom: 24px;
    text-decoration: none;
    font-weight: 500;
  }
  .job-detail-back:hover { text-decoration: underline; }

  .job-detail-header {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
  }
  .job-detail-header h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
  }
  .job-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
  }
  .job-detail-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-mid);
  }
  .job-detail-meta .meta-icon { font-size: 16px; }

  .competences-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-soft);
  }
  .comp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }
  .comp-label {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
  }
  .comp-legend {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--text-light);
  }
  .legend-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 4px;
  }
  .legend-dot.principal { background: var(--blue-dark); }
  .legend-dot.secondaire { background: var(--gold-dark); border: none; }
  .comp-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .comp-badge {
    font-size: 12px;
    padding: 4px 10px 4px 8px;
    border-radius: 6px;
    font-weight: 500;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .comp-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .comp-badge.principal::before { display: block; background: var(--blue-dark); }
  .comp-badge.secondaire::before { display: block; background: var(--gold-dark); }
  .comp-badge.principal {
    background: linear-gradient(135deg, #519BC00D, #5ADEFC0D);
    color: var(--blue-dark);
    border: 1px solid #519BC030;
  }
  .comp-badge.secondaire {
    background: linear-gradient(135deg, #F79A1E0D, #FFE7270D);
    color: #b07210;
    border: 1px solid #F79A1E30;
  }

  .job-detail-body {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
  }
  .job-detail-body h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--text-dark);
  }
  .job-detail-body h3:first-child { margin-top: 0; }
  .job-detail-body p {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 12px;
    line-height: 1.7;
  }
  .job-detail-body ul {
    list-style: none;
    padding: 0;
  }
  .job-detail-body li {
    font-size: 15px;
    color: var(--text-mid);
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.6;
  }
  .job-detail-body li::before {
    content: '›';
    position: absolute;
    left: 4px;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 18px;
  }

  .job-detail-actions {
    text-align: center;
    padding: 24px 0;
  }

  /* ===== FORM ===== */
  .form-view { display: none; }
  .form-view.active { display: block; }

  .form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 36px 32px;
  }
  .form-section-title {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 28px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-soft);
  }
  .form-section-title:first-child { margin-top: 0; }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .form-row.full { grid-template-columns: 1fr; }

  .form-group { margin-bottom: 0; }
  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 5px;
  }
  .form-group label .req { color: var(--red-dark); margin-left: 2px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--blue-dark);
    box-shadow: 0 0 0 3px rgba(81,155,192,0.1);
  }
  .form-group textarea { resize: vertical; min-height: 80px; }

  .form-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
  }
  .form-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 13px;
    color: var(--text-mid);
    user-select: none;
  }
  .form-checkbox:hover { border-color: var(--blue-dark); color: var(--blue-dark); }
  .form-checkbox.checked {
    border-color: var(--blue-dark);
    background: rgba(81,155,192,0.06);
    color: var(--blue-dark);
    font-weight: 500;
  }
  .form-checkbox input { display: none; }

  .file-upload {
    border: 2px dashed var(--border-soft);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
  }
  .file-upload:hover {
    border-color: var(--blue-dark);
    background: rgba(81,155,192,0.02);
  }
  .file-upload .upload-icon { font-size: 24px; margin-bottom: 6px; opacity: 0.5; }
  .file-upload .upload-text { font-size: 13px; color: var(--text-light); }
  .file-upload .upload-text strong { color: var(--blue-dark); }

  .repeater-block { }
  .repeater-item {
    padding: 16px;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background: rgba(255,255,255,0.5);
    margin-bottom: 8px;
    position: relative;
  }
  .repeater-item .repeater-delete {
    position: absolute;
    top: 12px;
    right: 16px;
    color: #c0392b;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
  }
  .repeater-item .repeater-delete:hover { text-decoration: underline; }
  .repeater-item .repeater-num {
    position: absolute;
    top: 12px;
    left: -12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-warm);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-light);
  }
  .repeater-item .form-row:last-child { margin-bottom: 0; }

  .form-footer {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .form-footer .note {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
  }

  .form-confirm {
    display: none;
    text-align: center;
    padding: 60px 24px;
  }
  .form-confirm.active { display: block; }
  .form-confirm .check-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-dark), var(--green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
  }
  .form-confirm h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    margin-bottom: 12px;
  }
  .form-confirm p {
    font-size: 15px;
    color: var(--text-mid);
    max-width: 420px;
    margin: 0 auto 24px;
    line-height: 1.6;
  }

  /* ===== TEAM CTA (maillage interne) ===== */
  .team-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    margin: 24px 0;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .team-cta:hover {
    border-color: var(--blue-dark);
    box-shadow: 0 4px 16px rgba(81,155,192,0.08);
  }
  .team-cta-icon { font-size: 28px; flex-shrink: 0; }
  .team-cta-text a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue-dark);
    text-decoration: none;
    margin-bottom: 2px;
  }
  .team-cta-text a:hover { text-decoration: underline; }
  .team-cta-text span {
    font-size: 13px;
    color: var(--text-light);
  }

  /* ===== FOOTER QUOTE ===== */
  .footer-quote {
    text-align: center;
    padding: 40px 24px;
    max-width: 600px;
    margin: 0 auto;
  }
  .footer-quote blockquote {
    font-family: 'Nunito', sans-serif;
    font-style: italic;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
    border: none;
    padding-left: 0;
    margin-left: 0;
  }
  .footer-quote cite {
    font-size: 13px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 500;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .job-detail-header { padding: 24px 20px; }
    .job-detail-body { padding: 24px 20px; }
    .form-container { padding: 24px 20px; }
    .postes-header { flex-direction: column; align-items: flex-start; }
  }

  /* ===== VIEW MANAGEMENT ===== */
  .view { display: none; }
  .view.active { display: block; }

